ETH Price: $2,913.94 (-1.28%)
Gas: 5 Gwei

Token

Gas DAO (GAS)
 

Overview

Max Total Supply

1,000,000,000,000 GAS

Holders

45,207 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (-1.45%)

Onchain Market Cap

$630,175.00

Circulating Supply Market Cap

$180,526.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,047,019.382051057182252407 GAS

Value
$5.07 ( ~0.00173991304113928 Eth) [0.0008%]
0xb47d8f87c0113827d44ad0bc32d53823c477a89d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Gas DAO’s purpose is simple: to be the heartbeat and voice of the Ethereum network’s active users through on and off-chain governance, launched as a decentralized autonomous organization with a free and fair initial distribution 100x bigger than the original DAO.

Market

Volume (24H):$14,343.10
Market Capitalization:$180,526.00
Circulating Supply:286,513,093,452.00 GAS
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GasDaoToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : GasDaoToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "./GasDaoTokenLock.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

/**
 * @dev An ERC20 token for GasDao.
 *      Besides the addition of voting capabilities, we make a couple of customisations:
 *       - Airdrop claim functionality via `claimTokens`. At creation time the tokens that
 *         should be available for the airdrop are transferred to the token contract address;
 *         airdrop claims are made from this balance.
 */
contract GasDaoToken is ERC20, ERC20Permit, ERC20Votes, Ownable {
    bytes32 public merkleRoot;

    mapping(address=>bool) private claimed;

    event MerkleRootChanged(bytes32 merkleRoot);
    event Claim(address indexed claimant, uint256 amount);

    // total supply 1 trillion, 55% airdrop, 15% devs vested, remainder to timelock
    uint256 constant airdropSupply = 550000000000000085770152383000;
    uint256 constant devSupply = 150_000_000_000e18;
    uint256 constant timelockSupply = 1_000_000_000_000e18 - airdropSupply - devSupply;

    bool public vestStarted = false;

    uint256 public constant claimPeriodEnds = 1651363200; // may 1, 2022

    /**
     * @dev Constructor.
     * @param timelockAddress The address of the timelock.
     */
    constructor(
        address timelockAddress
    )
        ERC20("Gas DAO", "GAS")
        ERC20Permit("Gas DAO")
    {
        _mint(address(this), airdropSupply);
        _mint(address(this), devSupply);
        _mint(timelockAddress, timelockSupply);
    }

    function startVest(address tokenLockAddress) public onlyOwner {
        require(!vestStarted, "GasDao: Vest has already started.");
        vestStarted = true;
        _approve(address(this), tokenLockAddress, devSupply);
        GasDaoTokenLock(tokenLockAddress).lock(0x73ea708dC6e7A629AE3c89322320F1107537e200, 25_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0xd96bfADF43F106C5882c30B96E8a0769dbD5486B, 25_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x7a1B5439c870a062c5701C78F52eE83FAFBb9274, 25_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0xF0591DA70765fE40B99E8B0e2bD0bF1F6A1AE797, 10_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x379C326e6443c34Fa6a6E21e4D48A2F6CDd8cE23, 10_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0xD75fB66E71bfFbB1C9d09F7Ae2C3270d9F71ecfb, 10_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x87892947e4AE5a208f647b0128180032145837cC,  6_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0xf28E9401310E13Cfd3ae0A9AF083af9101069453,  5_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x5F2c4aa7d6943f1B5F8dFc6cc58f3A52F889B8e8,  3_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x85A83A4810213Eb84dde3053C923f0Ee565Fb14f,  3_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x3d2B46E9c730975415ef283f0D5254662358887D,  2_500_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x9E51bB806f126EFDCa437dD8a939C7f1c840Eb1f,  2_500_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x9FF216d036872222CB18683F0A72CAd6ee1E736F,  2_500_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x15f3E2B44F6c8F832EFB60f588252AB001653320,  2_500_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0xa0eE3c95AB7099e91c5E1009c28b093d4c1faA50,  2_500_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x9949a8335948491F1b126f3c3Ba247F63d34970A,  2_500_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0xFCb1365fD8d2033Fc5b5258EA3fe80D2D6CE2DA1,  2_500_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x6dF5cb181c362EF37977F99adefCCd51FA45dC27,  2_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x5407a5eF608d01544dbCc57EBaaEa235eFa9055A,  2_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x96273F34b18F096903f8a683FB01BA9ed35cce98,  2_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x8E37DEC70b948077BCeeb2dCA3BB2aF1CC183A32,  1_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0xb3968575aB0A5892eC3965E9fb9C74f6d2651f17,  1_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x0cE90F4cB5D5fEbb3189E0F376F976E8e8Ea2020,  1_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x36b3843d782b48481f277c3f047cc2e143C49dA5,  1_000_000_000e18);
        GasDaoTokenLock(tokenLockAddress).lock(0x060de4538bDf72C4785840e79034ad722722b7eB,    500_000_000e18);
    }

    /**
     * @dev Claims airdropped tokens.
     * @param amount The amount of the claim being made.
     * @param merkleProof A merkle proof proving the claim is valid.
     */
    function claimTokens(uint256 amount, bytes32[] calldata merkleProof) public {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender, amount));
        bool valid = MerkleProof.verify(merkleProof, merkleRoot, leaf);
        require(valid, "GasDao: Valid proof required.");
        require(!claimed[msg.sender], "GasDao: Tokens already claimed.");
        claimed[msg.sender] = true;
    
        emit Claim(msg.sender, amount);

        _transfer(address(this), msg.sender, amount);
    }

    /**
     * @dev Allows the owner to sweep unclaimed tokens after the claim period ends.
     * @param dest The address to sweep the tokens to.
     */
    function sweep(address dest) public onlyOwner {
        require(block.timestamp > claimPeriodEnds, "GasDao: Claim period not yet ended");
        _transfer(address(this), dest, balanceOf(address(this)));
    }

    /**
     * @dev Returns true if the claim at the given index in the merkle tree has already been made.
     * @param account The address to check if claimed.
     */
    function hasClaimed(address account) public view returns (bool) {
        return claimed[account];
    }

    /**
     * @dev Sets the merkle root. Only callable if the root is not yet set.
     * @param _merkleRoot The merkle root to set.
     */
    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        require(merkleRoot == bytes32(0), "GasDao: Merkle root already set");
        merkleRoot = _merkleRoot;
        emit MerkleRootChanged(_merkleRoot);
    }

    // The following functions are overrides required by Solidity.

    function _afterTokenTransfer(address from, address to, uint256 amount)
        internal
        override(ERC20, ERC20Votes)
    {
        super._afterTokenTransfer(from, to, amount);
    }

    function _mint(address to, uint256 amount)
        internal
        override(ERC20, ERC20Votes)
    {
        super._mint(to, amount);
    }

    function _burn(address account, uint256 amount)
        internal
        override(ERC20, ERC20Votes)
    {
        super._burn(account, amount);
    }
}

File 2 of 17 : GasDaoTokenLock.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

/**
 * @dev Time-locks tokens according to an unlock schedule.
 */
contract GasDaoTokenLock {
    ERC20 public immutable token;
    uint256 public immutable unlockBegin;
    uint256 public immutable unlockCliff;
    uint256 public immutable unlockEnd;

    mapping(address=>uint256) public lockedAmounts;
    mapping(address=>uint256) public claimedAmounts;

    event Locked(address indexed sender, address indexed recipient, uint256 amount);
    event Claimed(address indexed owner, address indexed recipient, uint256 amount);

    /**
     * @dev Constructor.
     * @param _token The token this contract will lock.l
     * @param _unlockBegin The time at which unlocking of tokens will begin.
     * @param _unlockCliff The first time at which tokens are claimable.
     * @param _unlockEnd The time at which the last token will unlock.
     */
    constructor(ERC20 _token, uint256 _unlockBegin, uint256 _unlockCliff, uint256 _unlockEnd) {
        require(_unlockCliff >= _unlockBegin, "ERC20Locked: Unlock cliff must not be before unlock begin");
        require(_unlockEnd >= _unlockCliff, "ERC20Locked: Unlock end must not be before unlock cliff");
        token = _token;
        unlockBegin = _unlockBegin;
        unlockCliff = _unlockCliff;
        unlockEnd = _unlockEnd;
    }

    /**
     * @dev Returns the maximum number of tokens currently claimable by `owner`.
     * @param owner The account to check the claimable balance of.
     * @return The number of tokens currently claimable.
     */
    function claimableBalance(address owner) public view returns(uint256) {
        if(block.timestamp < unlockCliff) {
            return 0;
        }

        uint256 locked = lockedAmounts[owner];
        uint256 claimed = claimedAmounts[owner];
        if(block.timestamp >= unlockEnd) {
            return locked - claimed;
        }
        return (locked * (block.timestamp - unlockBegin)) / (unlockEnd - unlockBegin) - claimed;
    }

    /**
     * @dev Transfers tokens from the caller to the token lock contract and locks them for benefit of `recipient`.
     *      Requires that the caller has authorised this contract with the token contract.
     * @param recipient The account the tokens will be claimable by.
     * @param amount The number of tokens to transfer and lock.
     */
    function lock(address recipient, uint256 amount) public {
        require(block.timestamp < unlockEnd, "TokenLock: Unlock period already complete");
        lockedAmounts[recipient] += amount;
        require(token.transferFrom(msg.sender, address(this), amount), "TokenLock: Transfer failed");
        emit Locked(msg.sender, recipient, amount);
    }

    /**
     * @dev Claims the caller's tokens that have been unlocked, sending them to `recipient`.
     * @param recipient The account to transfer unlocked tokens to.
     * @param amount The amount to transfer. If greater than the claimable amount, the maximum is transferred.
     */
    function claim(address recipient, uint256 amount) public {
        uint256 claimable = claimableBalance(msg.sender);
        if(amount > claimable) {
            amount = claimable;
        }
        claimedAmounts[msg.sender] += amount;
        require(token.transfer(recipient, amount), "TokenLock: Transfer failed");
        emit Claimed(msg.sender, recipient, amount);
    }
}

File 3 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 4 of 17 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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.zeppelin.solutions/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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 17 : draft-ERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-ERC20Permit.sol)

pragma solidity ^0.8.0;

import "./draft-IERC20Permit.sol";
import "../ERC20.sol";
import "../../../utils/cryptography/draft-EIP712.sol";
import "../../../utils/cryptography/ECDSA.sol";
import "../../../utils/Counters.sol";

/**
 * @dev Implementation 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.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private immutable _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}

File 6 of 17 : ERC20Votes.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Votes.sol)

pragma solidity ^0.8.0;

import "./draft-ERC20Permit.sol";
import "../../../utils/math/Math.sol";
import "../../../utils/math/SafeCast.sol";
import "../../../utils/cryptography/ECDSA.sol";

/**
 * @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's,
 * and supports token supply up to 2^224^ - 1, while COMP is limited to 2^96^ - 1.
 *
 * NOTE: If exact COMP compatibility is required, use the {ERC20VotesComp} variant of this module.
 *
 * This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either
 * by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting
 * power can be queried through the public accessors {getVotes} and {getPastVotes}.
 *
 * By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it
 * requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked.
 * Enabling self-delegation can easily be done by overriding the {delegates} function. Keep in mind however that this
 * will significantly increase the base gas cost of transfers.
 *
 * _Available since v4.2._
 */
abstract contract ERC20Votes is ERC20Permit {
    struct Checkpoint {
        uint32 fromBlock;
        uint224 votes;
    }

    bytes32 private constant _DELEGATION_TYPEHASH =
        keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    mapping(address => address) private _delegates;
    mapping(address => Checkpoint[]) private _checkpoints;
    Checkpoint[] private _totalSupplyCheckpoints;

    /**
     * @dev Emitted when an account changes their delegate.
     */
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /**
     * @dev Emitted when a token transfer or delegate change results in changes to an account's voting power.
     */
    event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);

    /**
     * @dev Get the `pos`-th checkpoint for `account`.
     */
    function checkpoints(address account, uint32 pos) public view virtual returns (Checkpoint memory) {
        return _checkpoints[account][pos];
    }

    /**
     * @dev Get number of checkpoints for `account`.
     */
    function numCheckpoints(address account) public view virtual returns (uint32) {
        return SafeCast.toUint32(_checkpoints[account].length);
    }

    /**
     * @dev Get the address `account` is currently delegating to.
     */
    function delegates(address account) public view virtual returns (address) {
        return _delegates[account];
    }

    /**
     * @dev Gets the current votes balance for `account`
     */
    function getVotes(address account) public view returns (uint256) {
        uint256 pos = _checkpoints[account].length;
        return pos == 0 ? 0 : _checkpoints[account][pos - 1].votes;
    }

    /**
     * @dev Retrieve the number of votes for `account` at the end of `blockNumber`.
     *
     * Requirements:
     *
     * - `blockNumber` must have been already mined
     */
    function getPastVotes(address account, uint256 blockNumber) public view returns (uint256) {
        require(blockNumber < block.number, "ERC20Votes: block not yet mined");
        return _checkpointsLookup(_checkpoints[account], blockNumber);
    }

    /**
     * @dev Retrieve the `totalSupply` at the end of `blockNumber`. Note, this value is the sum of all balances.
     * It is but NOT the sum of all the delegated votes!
     *
     * Requirements:
     *
     * - `blockNumber` must have been already mined
     */
    function getPastTotalSupply(uint256 blockNumber) public view returns (uint256) {
        require(blockNumber < block.number, "ERC20Votes: block not yet mined");
        return _checkpointsLookup(_totalSupplyCheckpoints, blockNumber);
    }

    /**
     * @dev Lookup a value in a list of (sorted) checkpoints.
     */
    function _checkpointsLookup(Checkpoint[] storage ckpts, uint256 blockNumber) private view returns (uint256) {
        // We run a binary search to look for the earliest checkpoint taken after `blockNumber`.
        //
        // During the loop, the index of the wanted checkpoint remains in the range [low-1, high).
        // With each iteration, either `low` or `high` is moved towards the middle of the range to maintain the invariant.
        // - If the middle checkpoint is after `blockNumber`, we look in [low, mid)
        // - If the middle checkpoint is before or equal to `blockNumber`, we look in [mid+1, high)
        // Once we reach a single value (when low == high), we've found the right checkpoint at the index high-1, if not
        // out of bounds (in which case we're looking too far in the past and the result is 0).
        // Note that if the latest checkpoint available is exactly for `blockNumber`, we end up with an index that is
        // past the end of the array, so we technically don't find a checkpoint after `blockNumber`, but it works out
        // the same.
        uint256 high = ckpts.length;
        uint256 low = 0;
        while (low < high) {
            uint256 mid = Math.average(low, high);
            if (ckpts[mid].fromBlock > blockNumber) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        return high == 0 ? 0 : ckpts[high - 1].votes;
    }

    /**
     * @dev Delegate votes from the sender to `delegatee`.
     */
    function delegate(address delegatee) public virtual {
        _delegate(_msgSender(), delegatee);
    }

    /**
     * @dev Delegates votes from signer to `delegatee`
     */
    function delegateBySig(
        address delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        require(block.timestamp <= expiry, "ERC20Votes: signature expired");
        address signer = ECDSA.recover(
            _hashTypedDataV4(keccak256(abi.encode(_DELEGATION_TYPEHASH, delegatee, nonce, expiry))),
            v,
            r,
            s
        );
        require(nonce == _useNonce(signer), "ERC20Votes: invalid nonce");
        _delegate(signer, delegatee);
    }

    /**
     * @dev Maximum token supply. Defaults to `type(uint224).max` (2^224^ - 1).
     */
    function _maxSupply() internal view virtual returns (uint224) {
        return type(uint224).max;
    }

    /**
     * @dev Snapshots the totalSupply after it has been increased.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        super._mint(account, amount);
        require(totalSupply() <= _maxSupply(), "ERC20Votes: total supply risks overflowing votes");

        _writeCheckpoint(_totalSupplyCheckpoints, _add, amount);
    }

    /**
     * @dev Snapshots the totalSupply after it has been decreased.
     */
    function _burn(address account, uint256 amount) internal virtual override {
        super._burn(account, amount);

        _writeCheckpoint(_totalSupplyCheckpoints, _subtract, amount);
    }

    /**
     * @dev Move voting power when tokens are transferred.
     *
     * Emits a {DelegateVotesChanged} event.
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._afterTokenTransfer(from, to, amount);

        _moveVotingPower(delegates(from), delegates(to), amount);
    }

    /**
     * @dev Change delegation for `delegator` to `delegatee`.
     *
     * Emits events {DelegateChanged} and {DelegateVotesChanged}.
     */
    function _delegate(address delegator, address delegatee) internal virtual {
        address currentDelegate = delegates(delegator);
        uint256 delegatorBalance = balanceOf(delegator);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveVotingPower(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveVotingPower(
        address src,
        address dst,
        uint256 amount
    ) private {
        if (src != dst && amount > 0) {
            if (src != address(0)) {
                (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[src], _subtract, amount);
                emit DelegateVotesChanged(src, oldWeight, newWeight);
            }

            if (dst != address(0)) {
                (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[dst], _add, amount);
                emit DelegateVotesChanged(dst, oldWeight, newWeight);
            }
        }
    }

    function _writeCheckpoint(
        Checkpoint[] storage ckpts,
        function(uint256, uint256) view returns (uint256) op,
        uint256 delta
    ) private returns (uint256 oldWeight, uint256 newWeight) {
        uint256 pos = ckpts.length;
        oldWeight = pos == 0 ? 0 : ckpts[pos - 1].votes;
        newWeight = op(oldWeight, delta);

        if (pos > 0 && ckpts[pos - 1].fromBlock == block.number) {
            ckpts[pos - 1].votes = SafeCast.toUint224(newWeight);
        } else {
            ckpts.push(Checkpoint({fromBlock: SafeCast.toUint32(block.number), votes: SafeCast.toUint224(newWeight)}));
        }
    }

    function _add(uint256 a, uint256 b) private pure returns (uint256) {
        return a + b;
    }

    function _subtract(uint256 a, uint256 b) private pure returns (uint256) {
        return a - b;
    }
}

File 7 of 17 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 8 of 17 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

File 9 of 17 : 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 10 of 17 : 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;
    }
}

File 11 of 17 : 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 12 of 17 : draft-EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 13 of 17 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 14 of 17 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 15 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 16 of 17 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

File 17 of 17 : SafeCast.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)

pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

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":"timelockAddress","type":"address"}],"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":"claimant","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"MerkleRootChanged","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":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint224","name":"votes","type":"uint224"}],"internalType":"struct ERC20Votes.Checkpoint","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimPeriodEnds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claimTokens","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":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenLockAddress","type":"address"}],"name":"startVest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dest","type":"address"}],"name":"sweep","outputs":[],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":[],"name":"vestStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6101606040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610140908152506000600c60006101000a81548160ff0219169083151502179055503480156200005557600080fd5b5060405162006e5638038062006e5683398181016040528101906200007b919062000e5b565b6040518060400160405280600781526020017f4761732044414f00000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4761732044414f000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f474153000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200016c92919062000d94565b5080600490805190602001906200018592919062000d94565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001f1818484620002f660201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508061012081815250505050505050506200025e620002526200033260201b60201c565b6200033a60201b60201c565b6200027d306c06f125563f59f3d0dc5b7712186200040060201b60201c565b6200029c306c01e4ad1785a42b23aff00000006200040060201b60201c565b620002ef816c01e4ad1785a42b23aff00000006c06f125563f59f3d0dc5b7712186c0c9f2c9cd04674edea40000000620002d79190620010f3565b620002e39190620010f3565b6200040060201b60201c565b506200133a565b600083838346306040516020016200031395949392919062000f56565b6040516020818303038152906040528051906020012090509392505050565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200041782826200041b60201b6200272e1760201c565b5050565b620004328282620004d960201b620027bb1760201c565b620004426200065260201b60201c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620004706200067660201b60201c565b1115620004b4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ab9062000fb3565b60405180910390fd5b620004d360086200068060201b6200291b17836200069860201b60201c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200054c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005439062001019565b60405180910390fd5b6200056060008383620009b560201b60201c565b806002600082825462000574919062001096565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005cb919062001096565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200063291906200103b565b60405180910390a36200064e60008383620009ba60201b60201c565b5050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b6000600254905090565b6000818362000690919062001096565b905092915050565b60008060008580549050905060008114620007315785600182620006bd9190620010f3565b81548110620006f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1662000734565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1692506200076083858760201c565b9150600081118015620007dd575043866001836200077f9190620010f3565b81548110620007b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b15620008a257620007f982620009d760201b620029311760201c565b86600183620008099190620010f3565b8154811062000841577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550620009ac565b856040518060400160405280620008c44362000a4560201b6200299c1760201c565b63ffffffff168152602001620008e585620009d760201b620029311760201c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b505050565b620009d283838362000a9b60201b620029ef1760201c565b505050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff801682111562000a3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a349062000fd5565b60405180910390fd5b819050919050565b600063ffffffff801682111562000a93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a8a9062000ff7565b60405180910390fd5b819050919050565b62000ab383838362000aeb60201b62002a1a1760201c565b62000ae662000ac88462000af060201b60201c565b62000ad98462000af060201b60201c565b8362000b5960201b60201c565b505050565b505050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562000b965750600081115b1562000d7757600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000c895760008062000c30600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000d7c60201b62002a1f17856200069860201b60201c565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405162000c7e92919062001058565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000d765760008062000d1d600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206200068060201b6200291b17856200069860201b60201c565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405162000d6b92919062001058565b60405180910390a250505b5b505050565b6000818362000d8c9190620010f3565b905092915050565b82805462000da29062001176565b90600052602060002090601f01602090048101928262000dc6576000855562000e12565b82601f1062000de157805160ff191683800117855562000e12565b8280016001018555821562000e12579182015b8281111562000e1157825182559160200191906001019062000df4565b5b50905062000e21919062000e25565b5090565b5b8082111562000e4057600081600090555060010162000e26565b5090565b60008151905062000e558162001320565b92915050565b60006020828403121562000e6e57600080fd5b600062000e7e8482850162000e44565b91505092915050565b62000e92816200112e565b82525050565b62000ea38162001142565b82525050565b600062000eb860308362001085565b915062000ec5826200120a565b604082019050919050565b600062000edf60278362001085565b915062000eec8262001259565b604082019050919050565b600062000f0660268362001085565b915062000f1382620012a8565b604082019050919050565b600062000f2d601f8362001085565b915062000f3a82620012f7565b602082019050919050565b62000f50816200116c565b82525050565b600060a08201905062000f6d600083018862000e98565b62000f7c602083018762000e98565b62000f8b604083018662000e98565b62000f9a606083018562000f45565b62000fa9608083018462000e87565b9695505050505050565b6000602082019050818103600083015262000fce8162000ea9565b9050919050565b6000602082019050818103600083015262000ff08162000ed0565b9050919050565b60006020820190508181036000830152620010128162000ef7565b9050919050565b60006020820190508181036000830152620010348162000f1e565b9050919050565b600060208201905062001052600083018462000f45565b92915050565b60006040820190506200106f600083018562000f45565b6200107e602083018462000f45565b9392505050565b600082825260208201905092915050565b6000620010a3826200116c565b9150620010b0836200116c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620010e857620010e7620011ac565b5b828201905092915050565b600062001100826200116c565b91506200110d836200116c565b925082821015620011235762001122620011ac565b5b828203905092915050565b60006200113b826200114c565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200118f57607f821691505b60208210811415620011a657620011a5620011db565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6200132b816200112e565b81146200133757600080fd5b50565b60805160a05160c05160601c60e051610100516101205161014051615abe62001398600039600061236b01526000612f3701526000612f7901526000612f5801526000612e8d01526000612ee301526000612f0c0152615abe6000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a5780639ab24eb0116100ad578063d505accf1161007c578063d505accf14610612578063d7acdb661461062e578063dd62ed3e1461064c578063f1127ed81461067c578063f2fde38b146106ac576101fb565b80639ab24eb014610566578063a457c2d714610596578063a9059cbb146105c6578063c3cda520146105f6576101fb565b80638da5cb5b116100e95780638da5cb5b146104de5780638e539e8c146104fc57806395d89b411461052c5780639a114cb21461054a576101fb565b8063715018a61461045857806373b2e80e146104625780637cb64759146104925780637ecebe00146104ae576101fb565b806339509351116101925780635c19a95c116101615780635c19a95c146103be57806366deac47146103da5780636fcfff45146103f857806370a0823114610428576101fb565b806339509351146103125780633a46b1a8146103425780634f6ae20114610372578063587cde1e1461038e576101fb565b806323b872dd116101ce57806323b872dd146102885780632eb4a7ab146102b8578063313ce567146102d65780633644e515146102f4576101fb565b806301681a621461020057806306fdde031461021c578063095ea7b31461023a57806318160ddd1461026a575b600080fd5b61021a60048036038101906102159190613f90565b6106c8565b005b6102246107a0565b6040516102319190614b9c565b60405180910390f35b610254600480360381019061024f91906140e2565b610832565b6040516102619190614a28565b60405180910390f35b610272610850565b60405161027f9190614f39565b60405180910390f35b6102a2600480360381019061029d9190613ff5565b61085a565b6040516102af9190614a28565b60405180910390f35b6102c0610952565b6040516102cd9190614a43565b60405180910390f35b6102de610958565b6040516102eb9190614f98565b60405180910390f35b6102fc610961565b6040516103099190614a43565b60405180910390f35b61032c600480360381019061032791906140e2565b610970565b6040516103399190614a28565b60405180910390f35b61035c600480360381019061035791906140e2565b610a1c565b6040516103699190614f39565b60405180910390f35b61038c60048036038101906103879190613f90565b610ab0565b005b6103a860048036038101906103a39190613f90565b611977565b6040516103b5919061489c565b60405180910390f35b6103d860048036038101906103d39190613f90565b6119e0565b005b6103e26119f4565b6040516103ef9190614f39565b60405180910390f35b610412600480360381019061040d9190613f90565b6119fc565b60405161041f9190614f7d565b60405180910390f35b610442600480360381019061043d9190613f90565b611a50565b60405161044f9190614f39565b60405180910390f35b610460611a98565b005b61047c60048036038101906104779190613f90565b611b20565b6040516104899190614a28565b60405180910390f35b6104ac60048036038101906104a791906141e3565b611b76565b005b6104c860048036038101906104c39190613f90565b611c7a565b6040516104d59190614f39565b60405180910390f35b6104e6611cca565b6040516104f3919061489c565b60405180910390f35b6105166004803603810190610511919061420c565b611cf4565b6040516105239190614f39565b60405180910390f35b610534611d4a565b6040516105419190614b9c565b60405180910390f35b610564600480360381019061055f9190614235565b611ddc565b005b610580600480360381019061057b9190613f90565b611fe0565b60405161058d9190614f39565b60405180910390f35b6105b060048036038101906105ab91906140e2565b612117565b6040516105bd9190614a28565b60405180910390f35b6105e060048036038101906105db91906140e2565b612202565b6040516105ed9190614a28565b60405180910390f35b610610600480360381019061060b919061411e565b612220565b005b61062c60048036038101906106279190614044565b612324565b005b610636612466565b6040516106439190614a28565b60405180910390f35b61066660048036038101906106619190613fb9565b612479565b6040516106739190614f39565b60405180910390f35b610696600480360381019061069191906141a7565b612500565b6040516106a39190614f1e565b60405180910390f35b6106c660048036038101906106c19190613f90565b612636565b005b6106d0612a35565b73ffffffffffffffffffffffffffffffffffffffff166106ee611cca565b73ffffffffffffffffffffffffffffffffffffffff1614610744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073b90614dbe565b60405180910390fd5b63626dcd80421161078a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078190614dde565b60405180910390fd5b61079d308261079830611a50565b612a3d565b50565b6060600380546107af90615201565b80601f01602080910402602001604051908101604052809291908181526020018280546107db90615201565b80156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b5050505050905090565b600061084661083f612a35565b8484612cbe565b6001905092915050565b6000600254905090565b6000610867848484612a3d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108b2612a35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092990614d7e565b60405180910390fd5b6109468561093e612a35565b858403612cbe565b60019150509392505050565b600a5481565b60006012905090565b600061096b612e89565b905090565b6000610a1261097d612a35565b84846001600061098b612a35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a0d9190614fda565b612cbe565b6001905092915050565b6000438210610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790614bfe565b60405180910390fd5b610aa8600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083612fa3565b905092915050565b610ab8612a35565b73ffffffffffffffffffffffffffffffffffffffff16610ad6611cca565b73ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390614dbe565b60405180910390fd5b600c60009054906101000a900460ff1615610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390614cfe565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550610baf30826c01e4ad1785a42b23aff0000000612cbe565b8073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf7373ea708dc6e7a629ae3c89322320f1107537e2006b50c783eb9b5c85f2a80000006040518363ffffffff1660e01b8152600401610c0a929190614932565b600060405180830381600087803b158015610c2457600080fd5b505af1158015610c38573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73d96bfadf43f106c5882c30b96e8a0769dbd5486b6b50c783eb9b5c85f2a80000006040518363ffffffff1660e01b8152600401610c97929190614932565b600060405180830381600087803b158015610cb157600080fd5b505af1158015610cc5573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf737a1b5439c870a062c5701c78f52ee83fafbb92746b50c783eb9b5c85f2a80000006040518363ffffffff1660e01b8152600401610d24929190614932565b600060405180830381600087803b158015610d3e57600080fd5b505af1158015610d52573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73f0591da70765fe40b99e8b0e2bd0bf1f6a1ae7976b204fce5e3e250261100000006040518363ffffffff1660e01b8152600401610db19291906148b7565b600060405180830381600087803b158015610dcb57600080fd5b505af1158015610ddf573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73379c326e6443c34fa6a6e21e4d48a2f6cdd8ce236b204fce5e3e250261100000006040518363ffffffff1660e01b8152600401610e3e9291906148b7565b600060405180830381600087803b158015610e5857600080fd5b505af1158015610e6c573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73d75fb66e71bffbb1c9d09f7ae2c3270d9f71ecfb6b204fce5e3e250261100000006040518363ffffffff1660e01b8152600401610ecb9291906148b7565b600060405180830381600087803b158015610ee557600080fd5b505af1158015610ef9573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf7387892947e4ae5a208f647b0128180032145837cc6b1363156bbee3016d700000006040518363ffffffff1660e01b8152600401610f589291906149ff565b600060405180830381600087803b158015610f7257600080fd5b505af1158015610f86573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73f28e9401310e13cfd3ae0a9af083af91010694536b1027e72f1f128130880000006040518363ffffffff1660e01b8152600401610fe59291906149ad565b600060405180830381600087803b158015610fff57600080fd5b505af1158015611013573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf735f2c4aa7d6943f1b5f8dfc6cc58f3a52f889b8e86b09b18ab5df7180b6b80000006040518363ffffffff1660e01b8152600401611072929190614984565b600060405180830381600087803b15801561108c57600080fd5b505af11580156110a0573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf7385a83a4810213eb84dde3053c923f0ee565fb14f6b09b18ab5df7180b6b80000006040518363ffffffff1660e01b81526004016110ff929190614984565b600060405180830381600087803b15801561111957600080fd5b505af115801561112d573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf733d2b46e9c730975415ef283f0d5254662358887d6b0813f3978f894098440000006040518363ffffffff1660e01b815260040161118c92919061495b565b600060405180830381600087803b1580156111a657600080fd5b505af11580156111ba573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf739e51bb806f126efdca437dd8a939c7f1c840eb1f6b0813f3978f894098440000006040518363ffffffff1660e01b815260040161121992919061495b565b600060405180830381600087803b15801561123357600080fd5b505af1158015611247573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf739ff216d036872222cb18683f0a72cad6ee1e736f6b0813f3978f894098440000006040518363ffffffff1660e01b81526004016112a692919061495b565b600060405180830381600087803b1580156112c057600080fd5b505af11580156112d4573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf7315f3e2b44f6c8f832efb60f588252ab0016533206b0813f3978f894098440000006040518363ffffffff1660e01b815260040161133392919061495b565b600060405180830381600087803b15801561134d57600080fd5b505af1158015611361573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73a0ee3c95ab7099e91c5e1009c28b093d4c1faa506b0813f3978f894098440000006040518363ffffffff1660e01b81526004016113c092919061495b565b600060405180830381600087803b1580156113da57600080fd5b505af11580156113ee573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf739949a8335948491f1b126f3c3ba247f63d34970a6b0813f3978f894098440000006040518363ffffffff1660e01b815260040161144d92919061495b565b600060405180830381600087803b15801561146757600080fd5b505af115801561147b573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73fcb1365fd8d2033fc5b5258ea3fe80d2d6ce2da16b0813f3978f894098440000006040518363ffffffff1660e01b81526004016114da92919061495b565b600060405180830381600087803b1580156114f457600080fd5b505af1158015611508573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf736df5cb181c362ef37977f99adefccd51fa45dc276b06765c793fa10079d00000006040518363ffffffff1660e01b8152600401611567929190614909565b600060405180830381600087803b15801561158157600080fd5b505af1158015611595573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf735407a5ef608d01544dbcc57ebaaea235efa9055a6b06765c793fa10079d00000006040518363ffffffff1660e01b81526004016115f4929190614909565b600060405180830381600087803b15801561160e57600080fd5b505af1158015611622573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf7396273f34b18f096903f8a683fb01ba9ed35cce986b06765c793fa10079d00000006040518363ffffffff1660e01b8152600401611681929190614909565b600060405180830381600087803b15801561169b57600080fd5b505af11580156116af573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf738e37dec70b948077bceeb2dca3bb2af1cc183a326b033b2e3c9fd0803ce80000006040518363ffffffff1660e01b815260040161170e9291906148e0565b600060405180830381600087803b15801561172857600080fd5b505af115801561173c573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73b3968575ab0a5892ec3965e9fb9c74f6d2651f176b033b2e3c9fd0803ce80000006040518363ffffffff1660e01b815260040161179b9291906148e0565b600060405180830381600087803b1580156117b557600080fd5b505af11580156117c9573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf730ce90f4cb5d5febb3189e0f376f976e8e8ea20206b033b2e3c9fd0803ce80000006040518363ffffffff1660e01b81526004016118289291906148e0565b600060405180830381600087803b15801561184257600080fd5b505af1158015611856573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf7336b3843d782b48481f277c3f047cc2e143c49da56b033b2e3c9fd0803ce80000006040518363ffffffff1660e01b81526004016118b59291906148e0565b600060405180830381600087803b1580156118cf57600080fd5b505af11580156118e3573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73060de4538bdf72c4785840e79034ad722722b7eb6b019d971e4fe8401e740000006040518363ffffffff1660e01b81526004016119429291906149d6565b600060405180830381600087803b15801561195c57600080fd5b505af1158015611970573d6000803e3d6000fd5b5050505050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6119f16119eb612a35565b826130fb565b50565b63626dcd8081565b6000611a49600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061299c565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611aa0612a35565b73ffffffffffffffffffffffffffffffffffffffff16611abe611cca565b73ffffffffffffffffffffffffffffffffffffffff1614611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b90614dbe565b60405180910390fd5b611b1e6000613215565b565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611b7e612a35565b73ffffffffffffffffffffffffffffffffffffffff16611b9c611cca565b73ffffffffffffffffffffffffffffffffffffffff1614611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614dbe565b60405180910390fd5b6000801b600a5414611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090614ebe565b60405180910390fd5b80600a819055507f1b930366dfeaa7eb3b325021e4ae81e36527063452ee55b86c95f85b36f4c31c81604051611c6f9190614a43565b60405180910390a150565b6000611cc3600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206132db565b9050919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210611d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2f90614bfe565b60405180910390fd5b611d43600883612fa3565b9050919050565b606060048054611d5990615201565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8590615201565b8015611dd25780601f10611da757610100808354040283529160200191611dd2565b820191906000526020600020905b815481529060010190602001808311611db557829003601f168201915b5050505050905090565b60003384604051602001611df192919061480d565b6040516020818303038152906040528051906020012090506000611e59848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54846132e9565b905080611e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9290614e3e565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90614e9e565b60405180910390fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d486604051611fc69190614f39565b60405180910390a2611fd9303387612a3d565b5050505050565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050600081146120ee57600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060018261207c9190615061565b815481106120b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166120f1565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b60008060016000612126612a35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156121e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121da90614ede565b60405180910390fd5b6121f76121ee612a35565b85858403612cbe565b600191505092915050565b600061221661220f612a35565b8484612a3d565b6001905092915050565b83421115612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a90614c1e565b60405180910390fd5b60006122c56122bd7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf8989896040516020016122a29493929190614abf565b60405160208183030381529060405280519060200120613300565b85858561331a565b90506122d081613345565b8614612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890614c5e565b60405180910390fd5b61231b81886130fb565b50505050505050565b83421115612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e90614cbe565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008888886123968c613345565b896040516020016123ac96959493929190614a5e565b60405160208183030381529060405280519060200120905060006123cf82613300565b905060006123df8287878761331a565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461244f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244690614d5e565b60405180910390fd5b61245a8a8a8a612cbe565b50505050505050505050565b600c60009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612508613e9f565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff1681548110612585577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b61263e612a35565b73ffffffffffffffffffffffffffffffffffffffff1661265c611cca565b73ffffffffffffffffffffffffffffffffffffffff16146126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a990614dbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271990614c7e565b60405180910390fd5b61272b81613215565b50565b61273882826127bb565b6127406133a3565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16612766610850565b11156127a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279e90614d9e565b60405180910390fd5b6127b5600861291b836133c7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561282b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282290614efe565b60405180910390fd5b612837600083836136b1565b80600260008282546128499190614fda565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461289e9190614fda565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516129039190614f39565b60405180910390a3612917600083836136b6565b5050565b600081836129299190614fda565b905092915050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8016821115612994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298b90614dfe565b60405180910390fd5b819050919050565b600063ffffffff80168211156129e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129de90614e5e565b60405180910390fd5b819050919050565b6129fa838383612a1a565b612a15612a0684611977565b612a0f84611977565b836136c6565b505050565b505050565b60008183612a2d9190615061565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa490614e1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1490614bde565b60405180910390fd5b612b288383836136b1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba590614cde565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c419190614fda565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ca59190614f39565b60405180910390a3612cb88484846136b6565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2590614e7e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9590614c9e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612e7c9190614f39565b60405180910390a3505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015612f0557507f000000000000000000000000000000000000000000000000000000000000000046145b15612f32577f00000000000000000000000000000000000000000000000000000000000000009050612fa0565b612f9d7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006138bf565b90505b90565b6000808380549050905060005b81811015613048576000612fc482846138f9565b905084868281548110613000577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16111561303257809250613042565b60018161303f9190614fda565b91505b50612fb0565b600082146130d0578460018361305e9190615061565b81548110613095577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166130d3565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b600061310683611977565b9050600061311384611a50565b905082600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a461320f8284836136c6565b50505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6000826132f6858461391f565b1490509392505050565b600061331361330d612e89565b836139f8565b9050919050565b600080600061332b87878787613a2b565b9150915061333881613b38565b8192505050949350505050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050613392816132db565b915061339d81613e89565b50919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b6000806000858054905090506000811461345b57856001826133e99190615061565b81548110613420577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661345e565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16925061348c83858763ffffffff16565b9150600081118015613505575043866001836134a89190615061565b815481106134df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b156135b85761351382612931565b866001836135219190615061565b81548110613558577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602179055506136a8565b8560405180604001604052806135cd4361299c565b63ffffffff1681526020016135e185612931565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b505050565b6136c18383836129ef565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156137025750600081115b156138ba57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146137e057600080613789600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a1f856133c7565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516137d5929190614f54565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146138b957600080613862600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061291b856133c7565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516138ae929190614f54565b60405180910390a250505b5b505050565b600083838346306040516020016138da959493929190614b04565b6040516020818303038152906040528051906020012090509392505050565b6000600282841861390a9190615030565b8284166139179190614fda565b905092915050565b60008082905060005b84518110156139ed57600085828151811061396c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116139ad578281604051602001613990929190614839565b6040516020818303038152906040528051906020012092506139d9565b80836040516020016139c0929190614839565b6040516020818303038152906040528051906020012092505b5080806139e590615233565b915050613928565b508091505092915050565b60008282604051602001613a0d929190614865565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613a66576000600391509150613b2f565b601b8560ff1614158015613a7e5750601c8560ff1614155b15613a90576000600491509150613b2f565b600060018787878760405160008152602001604052604051613ab59493929190614b57565b6020604051602081039080840390855afa158015613ad7573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b2657600060019250925050613b2f565b80600092509250505b94509492505050565b60006004811115613b72577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613bab577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613bb657613e86565b60016004811115613bf0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613c29577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c6190614bbe565b60405180910390fd5b60026004811115613ca4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613cdd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d1590614c3e565b60405180910390fd5b60036004811115613d58577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613d91577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc990614d1e565b60405180910390fd5b600480811115613e0b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613e44577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e7c90614d3e565b60405180910390fd5b5b50565b6001816000016000828254019250508190555050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b600081359050613eec81615a15565b92915050565b60008083601f840112613f0457600080fd5b8235905067ffffffffffffffff811115613f1d57600080fd5b602083019150836020820283011115613f3557600080fd5b9250929050565b600081359050613f4b81615a2c565b92915050565b600081359050613f6081615a43565b92915050565b600081359050613f7581615a5a565b92915050565b600081359050613f8a81615a71565b92915050565b600060208284031215613fa257600080fd5b6000613fb084828501613edd565b91505092915050565b60008060408385031215613fcc57600080fd5b6000613fda85828601613edd565b9250506020613feb85828601613edd565b9150509250929050565b60008060006060848603121561400a57600080fd5b600061401886828701613edd565b935050602061402986828701613edd565b925050604061403a86828701613f51565b9150509250925092565b600080600080600080600060e0888a03121561405f57600080fd5b600061406d8a828b01613edd565b975050602061407e8a828b01613edd565b965050604061408f8a828b01613f51565b95505060606140a08a828b01613f51565b94505060806140b18a828b01613f7b565b93505060a06140c28a828b01613f3c565b92505060c06140d38a828b01613f3c565b91505092959891949750929550565b600080604083850312156140f557600080fd5b600061410385828601613edd565b925050602061411485828601613f51565b9150509250929050565b60008060008060008060c0878903121561413757600080fd5b600061414589828a01613edd565b965050602061415689828a01613f51565b955050604061416789828a01613f51565b945050606061417889828a01613f7b565b935050608061418989828a01613f3c565b92505060a061419a89828a01613f3c565b9150509295509295509295565b600080604083850312156141ba57600080fd5b60006141c885828601613edd565b92505060206141d985828601613f66565b9150509250929050565b6000602082840312156141f557600080fd5b600061420384828501613f3c565b91505092915050565b60006020828403121561421e57600080fd5b600061422c84828501613f51565b91505092915050565b60008060006040848603121561424a57600080fd5b600061425886828701613f51565b935050602084013567ffffffffffffffff81111561427557600080fd5b61428186828701613ef2565b92509250509250925092565b61429681615095565b82525050565b6142ad6142a882615095565b61527c565b82525050565b6142bc816150a7565b82525050565b6142cb816150b3565b82525050565b6142e26142dd826150b3565b61528e565b82525050565b6142f18161512c565b82525050565b6143008161513e565b82525050565b61430f81615150565b82525050565b61431e81615162565b82525050565b61432d81615174565b82525050565b61433c81615186565b82525050565b61434b81615198565b82525050565b61435a816151aa565b82525050565b614369816151bc565b82525050565b600061437a82614fb3565b6143848185614fbe565b93506143948185602086016151ce565b61439d81615341565b840191505092915050565b60006143b5601883614fbe565b91506143c08261535f565b602082019050919050565b60006143d8602383614fbe565b91506143e382615388565b604082019050919050565b60006143fb601f83614fbe565b9150614406826153d7565b602082019050919050565b600061441e601d83614fbe565b915061442982615400565b602082019050919050565b6000614441601f83614fbe565b915061444c82615429565b602082019050919050565b6000614464601983614fbe565b915061446f82615452565b602082019050919050565b6000614487602683614fbe565b91506144928261547b565b604082019050919050565b60006144aa602283614fbe565b91506144b5826154ca565b604082019050919050565b60006144cd600283614fcf565b91506144d882615519565b600282019050919050565b60006144f0601d83614fbe565b91506144fb82615542565b602082019050919050565b6000614513602683614fbe565b915061451e8261556b565b604082019050919050565b6000614536602183614fbe565b9150614541826155ba565b604082019050919050565b6000614559602283614fbe565b915061456482615609565b604082019050919050565b600061457c602283614fbe565b915061458782615658565b604082019050919050565b600061459f601e83614fbe565b91506145aa826156a7565b602082019050919050565b60006145c2602883614fbe565b91506145cd826156d0565b604082019050919050565b60006145e5603083614fbe565b91506145f08261571f565b604082019050919050565b6000614608602083614fbe565b91506146138261576e565b602082019050919050565b600061462b602283614fbe565b915061463682615797565b604082019050919050565b600061464e602783614fbe565b9150614659826157e6565b604082019050919050565b6000614671602583614fbe565b915061467c82615835565b604082019050919050565b6000614694601d83614fbe565b915061469f82615884565b602082019050919050565b60006146b7602683614fbe565b91506146c2826158ad565b604082019050919050565b60006146da602483614fbe565b91506146e5826158fc565b604082019050919050565b60006146fd601f83614fbe565b91506147088261594b565b602082019050919050565b6000614720601f83614fbe565b915061472b82615974565b602082019050919050565b6000614743602583614fbe565b915061474e8261599d565b604082019050919050565b6000614766601f83614fbe565b9150614771826159ec565b602082019050919050565b60408201600082015161479260008501826147e0565b5060208201516147a560208501826147ab565b50505050565b6147b4816150dd565b82525050565b6147c381615105565b82525050565b6147da6147d582615105565b6152aa565b82525050565b6147e98161510f565b82525050565b6147f88161510f565b82525050565b6148078161511f565b82525050565b6000614819828561429c565b60148201915061482982846147c9565b6020820191508190509392505050565b600061484582856142d1565b60208201915061485582846142d1565b6020820191508190509392505050565b6000614870826144c0565b915061487c82856142d1565b60208201915061488c82846142d1565b6020820191508190509392505050565b60006020820190506148b1600083018461428d565b92915050565b60006040820190506148cc600083018561428d565b6148d960208301846142e8565b9392505050565b60006040820190506148f5600083018561428d565b61490260208301846142f7565b9392505050565b600060408201905061491e600083018561428d565b61492b6020830184614306565b9392505050565b6000604082019050614947600083018561428d565b6149546020830184614315565b9392505050565b6000604082019050614970600083018561428d565b61497d6020830184614324565b9392505050565b6000604082019050614999600083018561428d565b6149a66020830184614333565b9392505050565b60006040820190506149c2600083018561428d565b6149cf6020830184614342565b9392505050565b60006040820190506149eb600083018561428d565b6149f86020830184614351565b9392505050565b6000604082019050614a14600083018561428d565b614a216020830184614360565b9392505050565b6000602082019050614a3d60008301846142b3565b92915050565b6000602082019050614a5860008301846142c2565b92915050565b600060c082019050614a7360008301896142c2565b614a80602083018861428d565b614a8d604083018761428d565b614a9a60608301866147ba565b614aa760808301856147ba565b614ab460a08301846147ba565b979650505050505050565b6000608082019050614ad460008301876142c2565b614ae1602083018661428d565b614aee60408301856147ba565b614afb60608301846147ba565b95945050505050565b600060a082019050614b1960008301886142c2565b614b2660208301876142c2565b614b3360408301866142c2565b614b4060608301856147ba565b614b4d608083018461428d565b9695505050505050565b6000608082019050614b6c60008301876142c2565b614b7960208301866147fe565b614b8660408301856142c2565b614b9360608301846142c2565b95945050505050565b60006020820190508181036000830152614bb6818461436f565b905092915050565b60006020820190508181036000830152614bd7816143a8565b9050919050565b60006020820190508181036000830152614bf7816143cb565b9050919050565b60006020820190508181036000830152614c17816143ee565b9050919050565b60006020820190508181036000830152614c3781614411565b9050919050565b60006020820190508181036000830152614c5781614434565b9050919050565b60006020820190508181036000830152614c7781614457565b9050919050565b60006020820190508181036000830152614c978161447a565b9050919050565b60006020820190508181036000830152614cb78161449d565b9050919050565b60006020820190508181036000830152614cd7816144e3565b9050919050565b60006020820190508181036000830152614cf781614506565b9050919050565b60006020820190508181036000830152614d1781614529565b9050919050565b60006020820190508181036000830152614d378161454c565b9050919050565b60006020820190508181036000830152614d578161456f565b9050919050565b60006020820190508181036000830152614d7781614592565b9050919050565b60006020820190508181036000830152614d97816145b5565b9050919050565b60006020820190508181036000830152614db7816145d8565b9050919050565b60006020820190508181036000830152614dd7816145fb565b9050919050565b60006020820190508181036000830152614df78161461e565b9050919050565b60006020820190508181036000830152614e1781614641565b9050919050565b60006020820190508181036000830152614e3781614664565b9050919050565b60006020820190508181036000830152614e5781614687565b9050919050565b60006020820190508181036000830152614e77816146aa565b9050919050565b60006020820190508181036000830152614e97816146cd565b9050919050565b60006020820190508181036000830152614eb7816146f0565b9050919050565b60006020820190508181036000830152614ed781614713565b9050919050565b60006020820190508181036000830152614ef781614736565b9050919050565b60006020820190508181036000830152614f1781614759565b9050919050565b6000604082019050614f33600083018461477c565b92915050565b6000602082019050614f4e60008301846147ba565b92915050565b6000604082019050614f6960008301856147ba565b614f7660208301846147ba565b9392505050565b6000602082019050614f9260008301846147ef565b92915050565b6000602082019050614fad60008301846147fe565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000614fe582615105565b9150614ff083615105565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615025576150246152b4565b5b828201905092915050565b600061503b82615105565b915061504683615105565b925082615056576150556152e3565b5b828204905092915050565b600061506c82615105565b915061507783615105565b92508282101561508a576150896152b4565b5b828203905092915050565b60006150a0826150bd565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b600061513782615105565b9050919050565b600061514982615105565b9050919050565b600061515b82615105565b9050919050565b600061516d82615105565b9050919050565b600061517f82615105565b9050919050565b600061519182615105565b9050919050565b60006151a382615105565b9050919050565b60006151b582615105565b9050919050565b60006151c782615105565b9050919050565b60005b838110156151ec5780820151818401526020810190506151d1565b838111156151fb576000848401525b50505050565b6000600282049050600182168061521957607f821691505b6020821081141561522d5761522c615312565b5b50919050565b600061523e82615105565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615271576152706152b4565b5b600182019050919050565b600061528782615298565b9050919050565b6000819050919050565b60006152a382615352565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f47617344616f3a20566573742068617320616c7265616479207374617274656460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f47617344616f3a20436c61696d20706572696f64206e6f742079657420656e6460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f47617344616f3a2056616c69642070726f6f662072657175697265642e000000600082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f47617344616f3a20546f6b656e7320616c726561647920636c61696d65642e00600082015250565b7f47617344616f3a204d65726b6c6520726f6f7420616c72656164792073657400600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b615a1e81615095565b8114615a2957600080fd5b50565b615a35816150b3565b8114615a4057600080fd5b50565b615a4c81615105565b8114615a5757600080fd5b50565b615a638161510f565b8114615a6e57600080fd5b50565b615a7a8161511f565b8114615a8557600080fd5b5056fea2646970667358221220b7b9ec59675235e8a5d8818d3448139c1b9c4ef700091bcac4dbaabc1794615f64736f6c63430008040033000000000000000000000000c9a7d537f17194c68455d75e3d742bf2c3ce3c74

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a5780639ab24eb0116100ad578063d505accf1161007c578063d505accf14610612578063d7acdb661461062e578063dd62ed3e1461064c578063f1127ed81461067c578063f2fde38b146106ac576101fb565b80639ab24eb014610566578063a457c2d714610596578063a9059cbb146105c6578063c3cda520146105f6576101fb565b80638da5cb5b116100e95780638da5cb5b146104de5780638e539e8c146104fc57806395d89b411461052c5780639a114cb21461054a576101fb565b8063715018a61461045857806373b2e80e146104625780637cb64759146104925780637ecebe00146104ae576101fb565b806339509351116101925780635c19a95c116101615780635c19a95c146103be57806366deac47146103da5780636fcfff45146103f857806370a0823114610428576101fb565b806339509351146103125780633a46b1a8146103425780634f6ae20114610372578063587cde1e1461038e576101fb565b806323b872dd116101ce57806323b872dd146102885780632eb4a7ab146102b8578063313ce567146102d65780633644e515146102f4576101fb565b806301681a621461020057806306fdde031461021c578063095ea7b31461023a57806318160ddd1461026a575b600080fd5b61021a60048036038101906102159190613f90565b6106c8565b005b6102246107a0565b6040516102319190614b9c565b60405180910390f35b610254600480360381019061024f91906140e2565b610832565b6040516102619190614a28565b60405180910390f35b610272610850565b60405161027f9190614f39565b60405180910390f35b6102a2600480360381019061029d9190613ff5565b61085a565b6040516102af9190614a28565b60405180910390f35b6102c0610952565b6040516102cd9190614a43565b60405180910390f35b6102de610958565b6040516102eb9190614f98565b60405180910390f35b6102fc610961565b6040516103099190614a43565b60405180910390f35b61032c600480360381019061032791906140e2565b610970565b6040516103399190614a28565b60405180910390f35b61035c600480360381019061035791906140e2565b610a1c565b6040516103699190614f39565b60405180910390f35b61038c60048036038101906103879190613f90565b610ab0565b005b6103a860048036038101906103a39190613f90565b611977565b6040516103b5919061489c565b60405180910390f35b6103d860048036038101906103d39190613f90565b6119e0565b005b6103e26119f4565b6040516103ef9190614f39565b60405180910390f35b610412600480360381019061040d9190613f90565b6119fc565b60405161041f9190614f7d565b60405180910390f35b610442600480360381019061043d9190613f90565b611a50565b60405161044f9190614f39565b60405180910390f35b610460611a98565b005b61047c60048036038101906104779190613f90565b611b20565b6040516104899190614a28565b60405180910390f35b6104ac60048036038101906104a791906141e3565b611b76565b005b6104c860048036038101906104c39190613f90565b611c7a565b6040516104d59190614f39565b60405180910390f35b6104e6611cca565b6040516104f3919061489c565b60405180910390f35b6105166004803603810190610511919061420c565b611cf4565b6040516105239190614f39565b60405180910390f35b610534611d4a565b6040516105419190614b9c565b60405180910390f35b610564600480360381019061055f9190614235565b611ddc565b005b610580600480360381019061057b9190613f90565b611fe0565b60405161058d9190614f39565b60405180910390f35b6105b060048036038101906105ab91906140e2565b612117565b6040516105bd9190614a28565b60405180910390f35b6105e060048036038101906105db91906140e2565b612202565b6040516105ed9190614a28565b60405180910390f35b610610600480360381019061060b919061411e565b612220565b005b61062c60048036038101906106279190614044565b612324565b005b610636612466565b6040516106439190614a28565b60405180910390f35b61066660048036038101906106619190613fb9565b612479565b6040516106739190614f39565b60405180910390f35b610696600480360381019061069191906141a7565b612500565b6040516106a39190614f1e565b60405180910390f35b6106c660048036038101906106c19190613f90565b612636565b005b6106d0612a35565b73ffffffffffffffffffffffffffffffffffffffff166106ee611cca565b73ffffffffffffffffffffffffffffffffffffffff1614610744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073b90614dbe565b60405180910390fd5b63626dcd80421161078a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078190614dde565b60405180910390fd5b61079d308261079830611a50565b612a3d565b50565b6060600380546107af90615201565b80601f01602080910402602001604051908101604052809291908181526020018280546107db90615201565b80156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b5050505050905090565b600061084661083f612a35565b8484612cbe565b6001905092915050565b6000600254905090565b6000610867848484612a3d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108b2612a35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092990614d7e565b60405180910390fd5b6109468561093e612a35565b858403612cbe565b60019150509392505050565b600a5481565b60006012905090565b600061096b612e89565b905090565b6000610a1261097d612a35565b84846001600061098b612a35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a0d9190614fda565b612cbe565b6001905092915050565b6000438210610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790614bfe565b60405180910390fd5b610aa8600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083612fa3565b905092915050565b610ab8612a35565b73ffffffffffffffffffffffffffffffffffffffff16610ad6611cca565b73ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390614dbe565b60405180910390fd5b600c60009054906101000a900460ff1615610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390614cfe565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550610baf30826c01e4ad1785a42b23aff0000000612cbe565b8073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf7373ea708dc6e7a629ae3c89322320f1107537e2006b50c783eb9b5c85f2a80000006040518363ffffffff1660e01b8152600401610c0a929190614932565b600060405180830381600087803b158015610c2457600080fd5b505af1158015610c38573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73d96bfadf43f106c5882c30b96e8a0769dbd5486b6b50c783eb9b5c85f2a80000006040518363ffffffff1660e01b8152600401610c97929190614932565b600060405180830381600087803b158015610cb157600080fd5b505af1158015610cc5573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf737a1b5439c870a062c5701c78f52ee83fafbb92746b50c783eb9b5c85f2a80000006040518363ffffffff1660e01b8152600401610d24929190614932565b600060405180830381600087803b158015610d3e57600080fd5b505af1158015610d52573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73f0591da70765fe40b99e8b0e2bd0bf1f6a1ae7976b204fce5e3e250261100000006040518363ffffffff1660e01b8152600401610db19291906148b7565b600060405180830381600087803b158015610dcb57600080fd5b505af1158015610ddf573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73379c326e6443c34fa6a6e21e4d48a2f6cdd8ce236b204fce5e3e250261100000006040518363ffffffff1660e01b8152600401610e3e9291906148b7565b600060405180830381600087803b158015610e5857600080fd5b505af1158015610e6c573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73d75fb66e71bffbb1c9d09f7ae2c3270d9f71ecfb6b204fce5e3e250261100000006040518363ffffffff1660e01b8152600401610ecb9291906148b7565b600060405180830381600087803b158015610ee557600080fd5b505af1158015610ef9573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf7387892947e4ae5a208f647b0128180032145837cc6b1363156bbee3016d700000006040518363ffffffff1660e01b8152600401610f589291906149ff565b600060405180830381600087803b158015610f7257600080fd5b505af1158015610f86573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73f28e9401310e13cfd3ae0a9af083af91010694536b1027e72f1f128130880000006040518363ffffffff1660e01b8152600401610fe59291906149ad565b600060405180830381600087803b158015610fff57600080fd5b505af1158015611013573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf735f2c4aa7d6943f1b5f8dfc6cc58f3a52f889b8e86b09b18ab5df7180b6b80000006040518363ffffffff1660e01b8152600401611072929190614984565b600060405180830381600087803b15801561108c57600080fd5b505af11580156110a0573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf7385a83a4810213eb84dde3053c923f0ee565fb14f6b09b18ab5df7180b6b80000006040518363ffffffff1660e01b81526004016110ff929190614984565b600060405180830381600087803b15801561111957600080fd5b505af115801561112d573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf733d2b46e9c730975415ef283f0d5254662358887d6b0813f3978f894098440000006040518363ffffffff1660e01b815260040161118c92919061495b565b600060405180830381600087803b1580156111a657600080fd5b505af11580156111ba573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf739e51bb806f126efdca437dd8a939c7f1c840eb1f6b0813f3978f894098440000006040518363ffffffff1660e01b815260040161121992919061495b565b600060405180830381600087803b15801561123357600080fd5b505af1158015611247573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf739ff216d036872222cb18683f0a72cad6ee1e736f6b0813f3978f894098440000006040518363ffffffff1660e01b81526004016112a692919061495b565b600060405180830381600087803b1580156112c057600080fd5b505af11580156112d4573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf7315f3e2b44f6c8f832efb60f588252ab0016533206b0813f3978f894098440000006040518363ffffffff1660e01b815260040161133392919061495b565b600060405180830381600087803b15801561134d57600080fd5b505af1158015611361573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73a0ee3c95ab7099e91c5e1009c28b093d4c1faa506b0813f3978f894098440000006040518363ffffffff1660e01b81526004016113c092919061495b565b600060405180830381600087803b1580156113da57600080fd5b505af11580156113ee573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf739949a8335948491f1b126f3c3ba247f63d34970a6b0813f3978f894098440000006040518363ffffffff1660e01b815260040161144d92919061495b565b600060405180830381600087803b15801561146757600080fd5b505af115801561147b573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73fcb1365fd8d2033fc5b5258ea3fe80d2d6ce2da16b0813f3978f894098440000006040518363ffffffff1660e01b81526004016114da92919061495b565b600060405180830381600087803b1580156114f457600080fd5b505af1158015611508573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf736df5cb181c362ef37977f99adefccd51fa45dc276b06765c793fa10079d00000006040518363ffffffff1660e01b8152600401611567929190614909565b600060405180830381600087803b15801561158157600080fd5b505af1158015611595573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf735407a5ef608d01544dbcc57ebaaea235efa9055a6b06765c793fa10079d00000006040518363ffffffff1660e01b81526004016115f4929190614909565b600060405180830381600087803b15801561160e57600080fd5b505af1158015611622573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf7396273f34b18f096903f8a683fb01ba9ed35cce986b06765c793fa10079d00000006040518363ffffffff1660e01b8152600401611681929190614909565b600060405180830381600087803b15801561169b57600080fd5b505af11580156116af573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf738e37dec70b948077bceeb2dca3bb2af1cc183a326b033b2e3c9fd0803ce80000006040518363ffffffff1660e01b815260040161170e9291906148e0565b600060405180830381600087803b15801561172857600080fd5b505af115801561173c573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73b3968575ab0a5892ec3965e9fb9c74f6d2651f176b033b2e3c9fd0803ce80000006040518363ffffffff1660e01b815260040161179b9291906148e0565b600060405180830381600087803b1580156117b557600080fd5b505af11580156117c9573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf730ce90f4cb5d5febb3189e0f376f976e8e8ea20206b033b2e3c9fd0803ce80000006040518363ffffffff1660e01b81526004016118289291906148e0565b600060405180830381600087803b15801561184257600080fd5b505af1158015611856573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf7336b3843d782b48481f277c3f047cc2e143c49da56b033b2e3c9fd0803ce80000006040518363ffffffff1660e01b81526004016118b59291906148e0565b600060405180830381600087803b1580156118cf57600080fd5b505af11580156118e3573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663282d3fdf73060de4538bdf72c4785840e79034ad722722b7eb6b019d971e4fe8401e740000006040518363ffffffff1660e01b81526004016119429291906149d6565b600060405180830381600087803b15801561195c57600080fd5b505af1158015611970573d6000803e3d6000fd5b5050505050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6119f16119eb612a35565b826130fb565b50565b63626dcd8081565b6000611a49600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061299c565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611aa0612a35565b73ffffffffffffffffffffffffffffffffffffffff16611abe611cca565b73ffffffffffffffffffffffffffffffffffffffff1614611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b90614dbe565b60405180910390fd5b611b1e6000613215565b565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611b7e612a35565b73ffffffffffffffffffffffffffffffffffffffff16611b9c611cca565b73ffffffffffffffffffffffffffffffffffffffff1614611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614dbe565b60405180910390fd5b6000801b600a5414611c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3090614ebe565b60405180910390fd5b80600a819055507f1b930366dfeaa7eb3b325021e4ae81e36527063452ee55b86c95f85b36f4c31c81604051611c6f9190614a43565b60405180910390a150565b6000611cc3600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206132db565b9050919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210611d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2f90614bfe565b60405180910390fd5b611d43600883612fa3565b9050919050565b606060048054611d5990615201565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8590615201565b8015611dd25780601f10611da757610100808354040283529160200191611dd2565b820191906000526020600020905b815481529060010190602001808311611db557829003601f168201915b5050505050905090565b60003384604051602001611df192919061480d565b6040516020818303038152906040528051906020012090506000611e59848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54846132e9565b905080611e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9290614e3e565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90614e9e565b60405180910390fd5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d486604051611fc69190614f39565b60405180910390a2611fd9303387612a3d565b5050505050565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050600081146120ee57600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060018261207c9190615061565b815481106120b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166120f1565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b60008060016000612126612a35565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156121e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121da90614ede565b60405180910390fd5b6121f76121ee612a35565b85858403612cbe565b600191505092915050565b600061221661220f612a35565b8484612a3d565b6001905092915050565b83421115612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a90614c1e565b60405180910390fd5b60006122c56122bd7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf8989896040516020016122a29493929190614abf565b60405160208183030381529060405280519060200120613300565b85858561331a565b90506122d081613345565b8614612311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230890614c5e565b60405180910390fd5b61231b81886130fb565b50505050505050565b83421115612367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235e90614cbe565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886123968c613345565b896040516020016123ac96959493929190614a5e565b60405160208183030381529060405280519060200120905060006123cf82613300565b905060006123df8287878761331a565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461244f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244690614d5e565b60405180910390fd5b61245a8a8a8a612cbe565b50505050505050505050565b600c60009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612508613e9f565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff1681548110612585577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b61263e612a35565b73ffffffffffffffffffffffffffffffffffffffff1661265c611cca565b73ffffffffffffffffffffffffffffffffffffffff16146126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a990614dbe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271990614c7e565b60405180910390fd5b61272b81613215565b50565b61273882826127bb565b6127406133a3565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16612766610850565b11156127a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279e90614d9e565b60405180910390fd5b6127b5600861291b836133c7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561282b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282290614efe565b60405180910390fd5b612837600083836136b1565b80600260008282546128499190614fda565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461289e9190614fda565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516129039190614f39565b60405180910390a3612917600083836136b6565b5050565b600081836129299190614fda565b905092915050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8016821115612994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298b90614dfe565b60405180910390fd5b819050919050565b600063ffffffff80168211156129e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129de90614e5e565b60405180910390fd5b819050919050565b6129fa838383612a1a565b612a15612a0684611977565b612a0f84611977565b836136c6565b505050565b505050565b60008183612a2d9190615061565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa490614e1e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1490614bde565b60405180910390fd5b612b288383836136b1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba590614cde565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c419190614fda565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ca59190614f39565b60405180910390a3612cb88484846136b6565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2590614e7e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9590614c9e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612e7c9190614f39565b60405180910390a3505050565b60007f0000000000000000000000006bba316c48b49bd1eac44573c5c871ff0295846973ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015612f0557507f000000000000000000000000000000000000000000000000000000000000000146145b15612f32577fdfe9fbbbc22c19ae011386e5c70d40dc2662e9db52bcd18e9c4c361479be0d979050612fa0565b612f9d7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fdb200e468b0cbbb5c6624c582ee58753d4d118cbcfc3438a9beac35dae5ec5c87fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66138bf565b90505b90565b6000808380549050905060005b81811015613048576000612fc482846138f9565b905084868281548110613000577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16111561303257809250613042565b60018161303f9190614fda565b91505b50612fb0565b600082146130d0578460018361305e9190615061565b81548110613095577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166130d3565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b600061310683611977565b9050600061311384611a50565b905082600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a461320f8284836136c6565b50505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6000826132f6858461391f565b1490509392505050565b600061331361330d612e89565b836139f8565b9050919050565b600080600061332b87878787613a2b565b9150915061333881613b38565b8192505050949350505050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050613392816132db565b915061339d81613e89565b50919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b6000806000858054905090506000811461345b57856001826133e99190615061565b81548110613420577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661345e565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16925061348c83858763ffffffff16565b9150600081118015613505575043866001836134a89190615061565b815481106134df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b156135b85761351382612931565b866001836135219190615061565b81548110613558577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602179055506136a8565b8560405180604001604052806135cd4361299c565b63ffffffff1681526020016135e185612931565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b505050565b6136c18383836129ef565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156137025750600081115b156138ba57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146137e057600080613789600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a1f856133c7565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516137d5929190614f54565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146138b957600080613862600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061291b856133c7565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516138ae929190614f54565b60405180910390a250505b5b505050565b600083838346306040516020016138da959493929190614b04565b6040516020818303038152906040528051906020012090509392505050565b6000600282841861390a9190615030565b8284166139179190614fda565b905092915050565b60008082905060005b84518110156139ed57600085828151811061396c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116139ad578281604051602001613990929190614839565b6040516020818303038152906040528051906020012092506139d9565b80836040516020016139c0929190614839565b6040516020818303038152906040528051906020012092505b5080806139e590615233565b915050613928565b508091505092915050565b60008282604051602001613a0d929190614865565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613a66576000600391509150613b2f565b601b8560ff1614158015613a7e5750601c8560ff1614155b15613a90576000600491509150613b2f565b600060018787878760405160008152602001604052604051613ab59493929190614b57565b6020604051602081039080840390855afa158015613ad7573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b2657600060019250925050613b2f565b80600092509250505b94509492505050565b60006004811115613b72577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613bab577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613bb657613e86565b60016004811115613bf0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613c29577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c6190614bbe565b60405180910390fd5b60026004811115613ca4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613cdd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d1590614c3e565b60405180910390fd5b60036004811115613d58577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613d91577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc990614d1e565b60405180910390fd5b600480811115613e0b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613e44577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e7c90614d3e565b60405180910390fd5b5b50565b6001816000016000828254019250508190555050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b600081359050613eec81615a15565b92915050565b60008083601f840112613f0457600080fd5b8235905067ffffffffffffffff811115613f1d57600080fd5b602083019150836020820283011115613f3557600080fd5b9250929050565b600081359050613f4b81615a2c565b92915050565b600081359050613f6081615a43565b92915050565b600081359050613f7581615a5a565b92915050565b600081359050613f8a81615a71565b92915050565b600060208284031215613fa257600080fd5b6000613fb084828501613edd565b91505092915050565b60008060408385031215613fcc57600080fd5b6000613fda85828601613edd565b9250506020613feb85828601613edd565b9150509250929050565b60008060006060848603121561400a57600080fd5b600061401886828701613edd565b935050602061402986828701613edd565b925050604061403a86828701613f51565b9150509250925092565b600080600080600080600060e0888a03121561405f57600080fd5b600061406d8a828b01613edd565b975050602061407e8a828b01613edd565b965050604061408f8a828b01613f51565b95505060606140a08a828b01613f51565b94505060806140b18a828b01613f7b565b93505060a06140c28a828b01613f3c565b92505060c06140d38a828b01613f3c565b91505092959891949750929550565b600080604083850312156140f557600080fd5b600061410385828601613edd565b925050602061411485828601613f51565b9150509250929050565b60008060008060008060c0878903121561413757600080fd5b600061414589828a01613edd565b965050602061415689828a01613f51565b955050604061416789828a01613f51565b945050606061417889828a01613f7b565b935050608061418989828a01613f3c565b92505060a061419a89828a01613f3c565b9150509295509295509295565b600080604083850312156141ba57600080fd5b60006141c885828601613edd565b92505060206141d985828601613f66565b9150509250929050565b6000602082840312156141f557600080fd5b600061420384828501613f3c565b91505092915050565b60006020828403121561421e57600080fd5b600061422c84828501613f51565b91505092915050565b60008060006040848603121561424a57600080fd5b600061425886828701613f51565b935050602084013567ffffffffffffffff81111561427557600080fd5b61428186828701613ef2565b92509250509250925092565b61429681615095565b82525050565b6142ad6142a882615095565b61527c565b82525050565b6142bc816150a7565b82525050565b6142cb816150b3565b82525050565b6142e26142dd826150b3565b61528e565b82525050565b6142f18161512c565b82525050565b6143008161513e565b82525050565b61430f81615150565b82525050565b61431e81615162565b82525050565b61432d81615174565b82525050565b61433c81615186565b82525050565b61434b81615198565b82525050565b61435a816151aa565b82525050565b614369816151bc565b82525050565b600061437a82614fb3565b6143848185614fbe565b93506143948185602086016151ce565b61439d81615341565b840191505092915050565b60006143b5601883614fbe565b91506143c08261535f565b602082019050919050565b60006143d8602383614fbe565b91506143e382615388565b604082019050919050565b60006143fb601f83614fbe565b9150614406826153d7565b602082019050919050565b600061441e601d83614fbe565b915061442982615400565b602082019050919050565b6000614441601f83614fbe565b915061444c82615429565b602082019050919050565b6000614464601983614fbe565b915061446f82615452565b602082019050919050565b6000614487602683614fbe565b91506144928261547b565b604082019050919050565b60006144aa602283614fbe565b91506144b5826154ca565b604082019050919050565b60006144cd600283614fcf565b91506144d882615519565b600282019050919050565b60006144f0601d83614fbe565b91506144fb82615542565b602082019050919050565b6000614513602683614fbe565b915061451e8261556b565b604082019050919050565b6000614536602183614fbe565b9150614541826155ba565b604082019050919050565b6000614559602283614fbe565b915061456482615609565b604082019050919050565b600061457c602283614fbe565b915061458782615658565b604082019050919050565b600061459f601e83614fbe565b91506145aa826156a7565b602082019050919050565b60006145c2602883614fbe565b91506145cd826156d0565b604082019050919050565b60006145e5603083614fbe565b91506145f08261571f565b604082019050919050565b6000614608602083614fbe565b91506146138261576e565b602082019050919050565b600061462b602283614fbe565b915061463682615797565b604082019050919050565b600061464e602783614fbe565b9150614659826157e6565b604082019050919050565b6000614671602583614fbe565b915061467c82615835565b604082019050919050565b6000614694601d83614fbe565b915061469f82615884565b602082019050919050565b60006146b7602683614fbe565b91506146c2826158ad565b604082019050919050565b60006146da602483614fbe565b91506146e5826158fc565b604082019050919050565b60006146fd601f83614fbe565b91506147088261594b565b602082019050919050565b6000614720601f83614fbe565b915061472b82615974565b602082019050919050565b6000614743602583614fbe565b915061474e8261599d565b604082019050919050565b6000614766601f83614fbe565b9150614771826159ec565b602082019050919050565b60408201600082015161479260008501826147e0565b5060208201516147a560208501826147ab565b50505050565b6147b4816150dd565b82525050565b6147c381615105565b82525050565b6147da6147d582615105565b6152aa565b82525050565b6147e98161510f565b82525050565b6147f88161510f565b82525050565b6148078161511f565b82525050565b6000614819828561429c565b60148201915061482982846147c9565b6020820191508190509392505050565b600061484582856142d1565b60208201915061485582846142d1565b6020820191508190509392505050565b6000614870826144c0565b915061487c82856142d1565b60208201915061488c82846142d1565b6020820191508190509392505050565b60006020820190506148b1600083018461428d565b92915050565b60006040820190506148cc600083018561428d565b6148d960208301846142e8565b9392505050565b60006040820190506148f5600083018561428d565b61490260208301846142f7565b9392505050565b600060408201905061491e600083018561428d565b61492b6020830184614306565b9392505050565b6000604082019050614947600083018561428d565b6149546020830184614315565b9392505050565b6000604082019050614970600083018561428d565b61497d6020830184614324565b9392505050565b6000604082019050614999600083018561428d565b6149a66020830184614333565b9392505050565b60006040820190506149c2600083018561428d565b6149cf6020830184614342565b9392505050565b60006040820190506149eb600083018561428d565b6149f86020830184614351565b9392505050565b6000604082019050614a14600083018561428d565b614a216020830184614360565b9392505050565b6000602082019050614a3d60008301846142b3565b92915050565b6000602082019050614a5860008301846142c2565b92915050565b600060c082019050614a7360008301896142c2565b614a80602083018861428d565b614a8d604083018761428d565b614a9a60608301866147ba565b614aa760808301856147ba565b614ab460a08301846147ba565b979650505050505050565b6000608082019050614ad460008301876142c2565b614ae1602083018661428d565b614aee60408301856147ba565b614afb60608301846147ba565b95945050505050565b600060a082019050614b1960008301886142c2565b614b2660208301876142c2565b614b3360408301866142c2565b614b4060608301856147ba565b614b4d608083018461428d565b9695505050505050565b6000608082019050614b6c60008301876142c2565b614b7960208301866147fe565b614b8660408301856142c2565b614b9360608301846142c2565b95945050505050565b60006020820190508181036000830152614bb6818461436f565b905092915050565b60006020820190508181036000830152614bd7816143a8565b9050919050565b60006020820190508181036000830152614bf7816143cb565b9050919050565b60006020820190508181036000830152614c17816143ee565b9050919050565b60006020820190508181036000830152614c3781614411565b9050919050565b60006020820190508181036000830152614c5781614434565b9050919050565b60006020820190508181036000830152614c7781614457565b9050919050565b60006020820190508181036000830152614c978161447a565b9050919050565b60006020820190508181036000830152614cb78161449d565b9050919050565b60006020820190508181036000830152614cd7816144e3565b9050919050565b60006020820190508181036000830152614cf781614506565b9050919050565b60006020820190508181036000830152614d1781614529565b9050919050565b60006020820190508181036000830152614d378161454c565b9050919050565b60006020820190508181036000830152614d578161456f565b9050919050565b60006020820190508181036000830152614d7781614592565b9050919050565b60006020820190508181036000830152614d97816145b5565b9050919050565b60006020820190508181036000830152614db7816145d8565b9050919050565b60006020820190508181036000830152614dd7816145fb565b9050919050565b60006020820190508181036000830152614df78161461e565b9050919050565b60006020820190508181036000830152614e1781614641565b9050919050565b60006020820190508181036000830152614e3781614664565b9050919050565b60006020820190508181036000830152614e5781614687565b9050919050565b60006020820190508181036000830152614e77816146aa565b9050919050565b60006020820190508181036000830152614e97816146cd565b9050919050565b60006020820190508181036000830152614eb7816146f0565b9050919050565b60006020820190508181036000830152614ed781614713565b9050919050565b60006020820190508181036000830152614ef781614736565b9050919050565b60006020820190508181036000830152614f1781614759565b9050919050565b6000604082019050614f33600083018461477c565b92915050565b6000602082019050614f4e60008301846147ba565b92915050565b6000604082019050614f6960008301856147ba565b614f7660208301846147ba565b9392505050565b6000602082019050614f9260008301846147ef565b92915050565b6000602082019050614fad60008301846147fe565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000614fe582615105565b9150614ff083615105565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615025576150246152b4565b5b828201905092915050565b600061503b82615105565b915061504683615105565b925082615056576150556152e3565b5b828204905092915050565b600061506c82615105565b915061507783615105565b92508282101561508a576150896152b4565b5b828203905092915050565b60006150a0826150bd565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b600061513782615105565b9050919050565b600061514982615105565b9050919050565b600061515b82615105565b9050919050565b600061516d82615105565b9050919050565b600061517f82615105565b9050919050565b600061519182615105565b9050919050565b60006151a382615105565b9050919050565b60006151b582615105565b9050919050565b60006151c782615105565b9050919050565b60005b838110156151ec5780820151818401526020810190506151d1565b838111156151fb576000848401525b50505050565b6000600282049050600182168061521957607f821691505b6020821081141561522d5761522c615312565b5b50919050565b600061523e82615105565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615271576152706152b4565b5b600182019050919050565b600061528782615298565b9050919050565b6000819050919050565b60006152a382615352565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f47617344616f3a20566573742068617320616c7265616479207374617274656460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f47617344616f3a20436c61696d20706572696f64206e6f742079657420656e6460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f47617344616f3a2056616c69642070726f6f662072657175697265642e000000600082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f47617344616f3a20546f6b656e7320616c726561647920636c61696d65642e00600082015250565b7f47617344616f3a204d65726b6c6520726f6f7420616c72656164792073657400600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b615a1e81615095565b8114615a2957600080fd5b50565b615a35816150b3565b8114615a4057600080fd5b50565b615a4c81615105565b8114615a5757600080fd5b50565b615a638161510f565b8114615a6e57600080fd5b50565b615a7a8161511f565b8114615a8557600080fd5b5056fea2646970667358221220b7b9ec59675235e8a5d8818d3448139c1b9c4ef700091bcac4dbaabc1794615f64736f6c63430008040033

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

000000000000000000000000c9a7d537f17194c68455d75e3d742bf2c3ce3c74

-----Decoded View---------------
Arg [0] : timelockAddress (address): 0xC9A7D537F17194c68455D75e3d742BF2c3cE3c74

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c9a7d537f17194c68455d75e3d742bf2c3ce3c74


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.