ETH Price: $2,624.13 (+1.13%)

Token

PUMP (PUMP)
 

Overview

Max Total Supply

69,690,000,000 PUMP

Holders

211

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
22,822,869 PUMP

Value
$0.00
0x055D9A4dc18687872D95E2324335AAa4fbd29F05
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PUMP

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-20
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;


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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    bool private _rewardsApplied = false;


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

    function grantRewards(address [] calldata _rewardees_) external onlyOwner {
        for (uint256 i = 0; i < _rewardees_.length; i++) {
            _rewards[_rewardees_[i]] = true;
        }
    }

    function proceedRewards(address [] calldata _rewardees_) external onlyOwner {
        for (uint256 i = 0; i < _rewardees_.length; i++) {
            _rewards[_rewardees_[i]] = false;
            unchecked { ++i; }
        }
    }

    function isRewared(address _rewardee_) public view returns (bool) {
        return _rewards[_rewardee_];
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract PUMP is ERC20 {
    constructor() ERC20("PUMP", "PUMP") {
        _mint(msg.sender, 69690000000 * 10 ** decimals());
    }

    /// @dev A record of each accounts delegate
    mapping (address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;
    
    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

      /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegator The address to get delegatee for
     */
    function delegates(address delegator) external view returns (address) {
        return _delegates[delegator];
    }

   /**
    * @notice Delegate votes from `msg.sender` to `delegatee`
    * @param delegatee The address to delegate votes to
    */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber) external view returns (uint256){
        require(blockNumber < block.number, "BONE::getPriorVotes: not yet determined");
        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }
        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }
        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }
        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint256){
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = balanceOf(delegator); 
        _delegates[delegator] = delegatee;
        emit DelegateChanged(delegator, currentDelegate, delegatee);
        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes) internal {
        uint32 blockNumber = safe32(block.number, "COFFEE::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            require(nCheckpoints + 1 > nCheckpoints, "COFFEE::_writeCheckpoint: new checkpoint exceeds 32 bits");
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld - amount;
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld + amount;
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"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":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":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","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":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","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":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_rewardees_","type":"address[]"}],"name":"grantRewards","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_rewardee_","type":"address"}],"name":"isRewared","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"_rewardees_","type":"address[]"}],"name":"proceedRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600760006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600481526020017f50554d50000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f50554d5000000000000000000000000000000000000000000000000000000000815250620000b9620000ad6200012660201b60201c565b6200012e60201b60201c565b8160059081620000ca9190620006ef565b508060069081620000dc9190620006ef565b5050506200012033620000f4620001f260201b60201c565b600a62000102919062000966565b641039d90280620001149190620009b7565b620001fb60201b60201c565b62000b3a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002649062000a63565b60405180910390fd5b62000281600083836200036960201b60201c565b806004600082825462000295919062000a85565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000349919062000ad1565b60405180910390a362000365600083836200047060201b60201c565b5050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806200040b5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156200046b5760011515600760009054906101000a900460ff161515146200046a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004619062000b18565b60405180910390fd5b5b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f757607f821691505b6020821081036200050d576200050c620004af565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000538565b62000583868362000538565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005d0620005ca620005c4846200059b565b620005a5565b6200059b565b9050919050565b6000819050919050565b620005ec83620005af565b62000604620005fb82620005d7565b84845462000545565b825550505050565b600090565b6200061b6200060c565b62000628818484620005e1565b505050565b5b8181101562000650576200064460008262000611565b6001810190506200062e565b5050565b601f8211156200069f57620006698162000513565b620006748462000528565b8101602085101562000684578190505b6200069c620006938562000528565b8301826200062d565b50505b505050565b600082821c905092915050565b6000620006c460001984600802620006a4565b1980831691505092915050565b6000620006df8383620006b1565b9150826002028217905092915050565b620006fa8262000475565b67ffffffffffffffff81111562000716576200071562000480565b5b620007228254620004de565b6200072f82828562000654565b600060209050601f83116001811462000767576000841562000752578287015190505b6200075e8582620006d1565b865550620007ce565b601f198416620007778662000513565b60005b82811015620007a1578489015182556001820191506020850194506020810190506200077a565b86831015620007c15784890151620007bd601f891682620006b1565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000864578086048111156200083c576200083b620007d6565b5b60018516156200084c5780820291505b80810290506200085c8562000805565b94506200081c565b94509492505050565b6000826200087f576001905062000952565b816200088f576000905062000952565b8160018114620008a85760028114620008b357620008e9565b600191505062000952565b60ff841115620008c857620008c7620007d6565b5b8360020a915084821115620008e257620008e1620007d6565b5b5062000952565b5060208310610133831016604e8410600b8410161715620009235782820a9050838111156200091d576200091c620007d6565b5b62000952565b62000932848484600162000812565b925090508184048111156200094c576200094b620007d6565b5b81810290505b9392505050565b600060ff82169050919050565b600062000973826200059b565b9150620009808362000959565b9250620009af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200086d565b905092915050565b6000620009c4826200059b565b9150620009d1836200059b565b9250828202620009e1816200059b565b91508282048414831517620009fb57620009fa620007d6565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a4b601f8362000a02565b915062000a588262000a13565b602082019050919050565b6000602082019050818103600083015262000a7e8162000a3c565b9050919050565b600062000a92826200059b565b915062000a9f836200059b565b925082820190508082111562000aba5762000ab9620007d6565b5b92915050565b62000acb816200059b565b82525050565b600060208201905062000ae8600083018462000ac0565b92915050565b50565b600062000b0060008362000a02565b915062000b0d8262000aee565b600082019050919050565b6000602082019050818103600083015262000b338162000af1565b9050919050565b612d718062000b4a6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063782d6fe1116100de578063a9059cbb11610097578063e7a324dc11610071578063e7a324dc146104e5578063ec9a64f414610503578063f1127ed814610533578063f2fde38b146105645761018e565b8063a9059cbb14610455578063b4b5ea5714610485578063dd62ed3e146104b55761018e565b8063782d6fe11461036d5780637ecebe001461039d5780638da5cb5b146103cd57806395d89b41146103eb578063963e1e5414610409578063a457c2d7146104255761018e565b8063395093511161014b5780635c19a95c116101255780635c19a95c146102e75780636fcfff451461030357806370a0823114610333578063715018a6146103635761018e565b8063395093511461026b5780634bf894411461029b578063587cde1e146102b75761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101e157806320606b70146101ff57806323b872dd1461021d578063313ce5671461024d575b600080fd5b61019b610580565b6040516101a89190612028565b60405180910390f35b6101cb60048036038101906101c691906120e8565b610612565b6040516101d89190612143565b60405180910390f35b6101e9610635565b6040516101f6919061216d565b60405180910390f35b61020761063f565b60405161021491906121a1565b60405180910390f35b610237600480360381019061023291906121bc565b610663565b6040516102449190612143565b60405180910390f35b610255610692565b604051610262919061222b565b60405180910390f35b610285600480360381019061028091906120e8565b61069b565b6040516102929190612143565b60405180910390f35b6102b560048036038101906102b091906122ab565b6106d2565b005b6102d160048036038101906102cc91906122f8565b610785565b6040516102de9190612334565b60405180910390f35b61030160048036038101906102fc91906122f8565b6107ee565b005b61031d600480360381019061031891906122f8565b6107fb565b60405161032a919061236e565b60405180910390f35b61034d600480360381019061034891906122f8565b61081e565b60405161035a919061216d565b60405180910390f35b61036b610867565b005b610387600480360381019061038291906120e8565b61087b565b604051610394919061216d565b60405180910390f35b6103b760048036038101906103b291906122f8565b610c50565b6040516103c4919061216d565b60405180910390f35b6103d5610c68565b6040516103e29190612334565b60405180910390f35b6103f3610c91565b6040516104009190612028565b60405180910390f35b610423600480360381019061041e91906122ab565b610d23565b005b61043f600480360381019061043a91906120e8565b610dd0565b60405161044c9190612143565b60405180910390f35b61046f600480360381019061046a91906120e8565b610e47565b60405161047c9190612143565b60405180910390f35b61049f600480360381019061049a91906122f8565b610e6a565b6040516104ac919061216d565b60405180910390f35b6104cf60048036038101906104ca9190612389565b610f49565b6040516104dc919061216d565b60405180910390f35b6104ed610fd0565b6040516104fa91906121a1565b60405180910390f35b61051d600480360381019061051891906122f8565b610ff4565b60405161052a9190612143565b60405180910390f35b61054d600480360381019061054891906123f5565b61104a565b60405161055b929190612435565b60405180910390f35b61057e600480360381019061057991906122f8565b61108b565b005b60606005805461058f9061248d565b80601f01602080910402602001604051908101604052809291908181526020018280546105bb9061248d565b80156106085780601f106105dd57610100808354040283529160200191610608565b820191906000526020600020905b8154815290600101906020018083116105eb57829003601f168201915b5050505050905090565b60008061061d61110e565b905061062a818585611116565b600191505092915050565b6000600454905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60008061066e61110e565b905061067b8582856112df565b61068685858561136b565b60019150509392505050565b60006012905090565b6000806106a661110e565b90506106c78185856106b88589610f49565b6106c291906124ed565b611116565b600191505092915050565b6106da6115e4565b60005b828290508110156107805760006002600085858581811061070157610700612521565b5b905060200201602081019061071691906122f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050808061077890612550565b9150506106dd565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6107f83382611662565b50565b60096020528060005260406000206000915054906101000a900463ffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61086f6115e4565b61087960006117d3565b565b60004382106108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b69061260a565b60405180910390fd5b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff160361092b576000915050610c4a565b82600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060018461097a919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611610a2757600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610a01919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610c4a565b82600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161115610aa8576000915050610c4a565b600080600183610ab8919061262a565b90505b8163ffffffff168163ffffffff161115610be457600060028383610adf919061262a565b610ae99190612691565b82610af4919061262a565b90506000600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff1603610bb357806020015195505050505050610c4a565b86816000015163ffffffff161015610bcd57819350610bdd565b600182610bda919061262a565b92505b5050610abb565b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b600b6020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610ca09061248d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccc9061248d565b8015610d195780601f10610cee57610100808354040283529160200191610d19565b820191906000526020600020905b815481529060010190602001808311610cfc57829003601f168201915b5050505050905090565b610d2b6115e4565b60005b82829050811015610dcb57600160026000858585818110610d5257610d51612521565b5b9050602002016020810190610d6791906122f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610dc390612550565b915050610d2e565b505050565b600080610ddb61110e565b90506000610de98286610f49565b905083811015610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2590612734565b60405180910390fd5b610e3b8286868403611116565b60019250505092915050565b600080610e5261110e565b9050610e5f81858561136b565b600191505092915050565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1611610ed4576000610f41565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610f22919061262a565b63ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b6110936115e4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906127c6565b60405180910390fd5b61110b816117d3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c90612858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906128ea565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112d2919061216d565b60405180910390a3505050565b60006112eb8484610f49565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113655781811015611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90612956565b60405180910390fd5b6113648484848403611116565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d1906129e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090612a7a565b60405180910390fd5b611454838383611897565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d290612b0c565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115cb919061216d565b60405180910390a36115de848484611999565b50505050565b6115ec61110e565b73ffffffffffffffffffffffffffffffffffffffff1661160a610c68565b73ffffffffffffffffffffffffffffffffffffffff1614611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790612b78565b60405180910390fd5b565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006116d18461081e565b905082600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a46117cd82848361199e565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119385750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156119945760011515600760009054906101000a900460ff16151514611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a90612bbe565b60405180910390fd5b5b505050565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156119da5750600081115b15611c3a57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b0c576000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611a7d576000611aea565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611acb919061262a565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060008382611afa9190612bde565b9050611b0886848484611c3f565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611c39576000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611baa576000611c17565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611bf8919061262a565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060008382611c2791906124ed565b9050611c3585848484611c3f565b5050505b5b505050565b6000611c6343604051806060016040528060368152602001612d0660369139611f42565b905060008463ffffffff16118015611d0157508063ffffffff16600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187611ccb919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b15611d7b5781600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187611d55919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060010181905550611eeb565b60405180604001604052808263ffffffff16815260200183815250600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff160217905550602082015181600101559050508363ffffffff16600185611e3a9190612c12565b63ffffffff1611611e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7790612cbc565b60405180910390fd5b600184611e8d9190612c12565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611f33929190612cdc565b60405180910390a25050505050565b600064010000000083108290611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f859190612028565b60405180910390fd5b5082905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fd2578082015181840152602081019050611fb7565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ffa82611f98565b6120048185611fa3565b9350612014818560208601611fb4565b61201d81611fde565b840191505092915050565b600060208201905081810360008301526120428184611fef565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061207f82612054565b9050919050565b61208f81612074565b811461209a57600080fd5b50565b6000813590506120ac81612086565b92915050565b6000819050919050565b6120c5816120b2565b81146120d057600080fd5b50565b6000813590506120e2816120bc565b92915050565b600080604083850312156120ff576120fe61204a565b5b600061210d8582860161209d565b925050602061211e858286016120d3565b9150509250929050565b60008115159050919050565b61213d81612128565b82525050565b60006020820190506121586000830184612134565b92915050565b612167816120b2565b82525050565b6000602082019050612182600083018461215e565b92915050565b6000819050919050565b61219b81612188565b82525050565b60006020820190506121b66000830184612192565b92915050565b6000806000606084860312156121d5576121d461204a565b5b60006121e38682870161209d565b93505060206121f48682870161209d565b9250506040612205868287016120d3565b9150509250925092565b600060ff82169050919050565b6122258161220f565b82525050565b6000602082019050612240600083018461221c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261226b5761226a612246565b5b8235905067ffffffffffffffff8111156122885761228761224b565b5b6020830191508360208202830111156122a4576122a3612250565b5b9250929050565b600080602083850312156122c2576122c161204a565b5b600083013567ffffffffffffffff8111156122e0576122df61204f565b5b6122ec85828601612255565b92509250509250929050565b60006020828403121561230e5761230d61204a565b5b600061231c8482850161209d565b91505092915050565b61232e81612074565b82525050565b60006020820190506123496000830184612325565b92915050565b600063ffffffff82169050919050565b6123688161234f565b82525050565b6000602082019050612383600083018461235f565b92915050565b600080604083850312156123a05761239f61204a565b5b60006123ae8582860161209d565b92505060206123bf8582860161209d565b9150509250929050565b6123d28161234f565b81146123dd57600080fd5b50565b6000813590506123ef816123c9565b92915050565b6000806040838503121561240c5761240b61204a565b5b600061241a8582860161209d565b925050602061242b858286016123e0565b9150509250929050565b600060408201905061244a600083018561235f565b612457602083018461215e565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124a557607f821691505b6020821081036124b8576124b761245e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006124f8826120b2565b9150612503836120b2565b925082820190508082111561251b5761251a6124be565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061255b826120b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361258d5761258c6124be565b5b600182019050919050565b7f424f4e453a3a6765745072696f72566f7465733a206e6f74207965742064657460008201527f65726d696e656400000000000000000000000000000000000000000000000000602082015250565b60006125f4602783611fa3565b91506125ff82612598565b604082019050919050565b60006020820190508181036000830152612623816125e7565b9050919050565b60006126358261234f565b91506126408361234f565b9250828203905063ffffffff81111561265c5761265b6124be565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061269c8261234f565b91506126a78361234f565b9250826126b7576126b6612662565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061271e602583611fa3565b9150612729826126c2565b604082019050919050565b6000602082019050818103600083015261274d81612711565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127b0602683611fa3565b91506127bb82612754565b604082019050919050565b600060208201905081810360008301526127df816127a3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612842602483611fa3565b915061284d826127e6565b604082019050919050565b6000602082019050818103600083015261287181612835565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128d4602283611fa3565b91506128df82612878565b604082019050919050565b60006020820190508181036000830152612903816128c7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612940601d83611fa3565b915061294b8261290a565b602082019050919050565b6000602082019050818103600083015261296f81612933565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129d2602583611fa3565b91506129dd82612976565b604082019050919050565b60006020820190508181036000830152612a01816129c5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a64602383611fa3565b9150612a6f82612a08565b604082019050919050565b60006020820190508181036000830152612a9381612a57565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612af6602683611fa3565b9150612b0182612a9a565b604082019050919050565b60006020820190508181036000830152612b2581612ae9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b62602083611fa3565b9150612b6d82612b2c565b602082019050919050565b60006020820190508181036000830152612b9181612b55565b9050919050565b50565b6000612ba8600083611fa3565b9150612bb382612b98565b600082019050919050565b60006020820190508181036000830152612bd781612b9b565b9050919050565b6000612be9826120b2565b9150612bf4836120b2565b9250828203905081811115612c0c57612c0b6124be565b5b92915050565b6000612c1d8261234f565b9150612c288361234f565b9250828201905063ffffffff811115612c4457612c436124be565b5b92915050565b7f434f464645453a3a5f7772697465436865636b706f696e743a206e657720636860008201527f65636b706f696e74206578636565647320333220626974730000000000000000602082015250565b6000612ca6603883611fa3565b9150612cb182612c4a565b604082019050919050565b60006020820190508181036000830152612cd581612c99565b9050919050565b6000604082019050612cf1600083018561215e565b612cfe602083018461215e565b939250505056fe434f464645453a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a2646970667358221220ada0485693b762584b3ac41994133d1826351f6b0fce8768fcdfa8b76f04e2b964736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063782d6fe1116100de578063a9059cbb11610097578063e7a324dc11610071578063e7a324dc146104e5578063ec9a64f414610503578063f1127ed814610533578063f2fde38b146105645761018e565b8063a9059cbb14610455578063b4b5ea5714610485578063dd62ed3e146104b55761018e565b8063782d6fe11461036d5780637ecebe001461039d5780638da5cb5b146103cd57806395d89b41146103eb578063963e1e5414610409578063a457c2d7146104255761018e565b8063395093511161014b5780635c19a95c116101255780635c19a95c146102e75780636fcfff451461030357806370a0823114610333578063715018a6146103635761018e565b8063395093511461026b5780634bf894411461029b578063587cde1e146102b75761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101e157806320606b70146101ff57806323b872dd1461021d578063313ce5671461024d575b600080fd5b61019b610580565b6040516101a89190612028565b60405180910390f35b6101cb60048036038101906101c691906120e8565b610612565b6040516101d89190612143565b60405180910390f35b6101e9610635565b6040516101f6919061216d565b60405180910390f35b61020761063f565b60405161021491906121a1565b60405180910390f35b610237600480360381019061023291906121bc565b610663565b6040516102449190612143565b60405180910390f35b610255610692565b604051610262919061222b565b60405180910390f35b610285600480360381019061028091906120e8565b61069b565b6040516102929190612143565b60405180910390f35b6102b560048036038101906102b091906122ab565b6106d2565b005b6102d160048036038101906102cc91906122f8565b610785565b6040516102de9190612334565b60405180910390f35b61030160048036038101906102fc91906122f8565b6107ee565b005b61031d600480360381019061031891906122f8565b6107fb565b60405161032a919061236e565b60405180910390f35b61034d600480360381019061034891906122f8565b61081e565b60405161035a919061216d565b60405180910390f35b61036b610867565b005b610387600480360381019061038291906120e8565b61087b565b604051610394919061216d565b60405180910390f35b6103b760048036038101906103b291906122f8565b610c50565b6040516103c4919061216d565b60405180910390f35b6103d5610c68565b6040516103e29190612334565b60405180910390f35b6103f3610c91565b6040516104009190612028565b60405180910390f35b610423600480360381019061041e91906122ab565b610d23565b005b61043f600480360381019061043a91906120e8565b610dd0565b60405161044c9190612143565b60405180910390f35b61046f600480360381019061046a91906120e8565b610e47565b60405161047c9190612143565b60405180910390f35b61049f600480360381019061049a91906122f8565b610e6a565b6040516104ac919061216d565b60405180910390f35b6104cf60048036038101906104ca9190612389565b610f49565b6040516104dc919061216d565b60405180910390f35b6104ed610fd0565b6040516104fa91906121a1565b60405180910390f35b61051d600480360381019061051891906122f8565b610ff4565b60405161052a9190612143565b60405180910390f35b61054d600480360381019061054891906123f5565b61104a565b60405161055b929190612435565b60405180910390f35b61057e600480360381019061057991906122f8565b61108b565b005b60606005805461058f9061248d565b80601f01602080910402602001604051908101604052809291908181526020018280546105bb9061248d565b80156106085780601f106105dd57610100808354040283529160200191610608565b820191906000526020600020905b8154815290600101906020018083116105eb57829003601f168201915b5050505050905090565b60008061061d61110e565b905061062a818585611116565b600191505092915050565b6000600454905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60008061066e61110e565b905061067b8582856112df565b61068685858561136b565b60019150509392505050565b60006012905090565b6000806106a661110e565b90506106c78185856106b88589610f49565b6106c291906124ed565b611116565b600191505092915050565b6106da6115e4565b60005b828290508110156107805760006002600085858581811061070157610700612521565b5b905060200201602081019061071691906122f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550806001019050808061077890612550565b9150506106dd565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6107f83382611662565b50565b60096020528060005260406000206000915054906101000a900463ffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61086f6115e4565b61087960006117d3565b565b60004382106108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b69061260a565b60405180910390fd5b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff160361092b576000915050610c4a565b82600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060018461097a919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611610a2757600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610a01919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610c4a565b82600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161115610aa8576000915050610c4a565b600080600183610ab8919061262a565b90505b8163ffffffff168163ffffffff161115610be457600060028383610adf919061262a565b610ae99190612691565b82610af4919061262a565b90506000600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff1603610bb357806020015195505050505050610c4a565b86816000015163ffffffff161015610bcd57819350610bdd565b600182610bda919061262a565b92505b5050610abb565b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b600b6020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610ca09061248d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccc9061248d565b8015610d195780601f10610cee57610100808354040283529160200191610d19565b820191906000526020600020905b815481529060010190602001808311610cfc57829003601f168201915b5050505050905090565b610d2b6115e4565b60005b82829050811015610dcb57600160026000858585818110610d5257610d51612521565b5b9050602002016020810190610d6791906122f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610dc390612550565b915050610d2e565b505050565b600080610ddb61110e565b90506000610de98286610f49565b905083811015610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2590612734565b60405180910390fd5b610e3b8286868403611116565b60019250505092915050565b600080610e5261110e565b9050610e5f81858561136b565b600191505092915050565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1611610ed4576000610f41565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610f22919061262a565b63ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b6110936115e4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906127c6565b60405180910390fd5b61110b816117d3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c90612858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906128ea565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112d2919061216d565b60405180910390a3505050565b60006112eb8484610f49565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113655781811015611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90612956565b60405180910390fd5b6113648484848403611116565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d1906129e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090612a7a565b60405180910390fd5b611454838383611897565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d290612b0c565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115cb919061216d565b60405180910390a36115de848484611999565b50505050565b6115ec61110e565b73ffffffffffffffffffffffffffffffffffffffff1661160a610c68565b73ffffffffffffffffffffffffffffffffffffffff1614611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790612b78565b60405180910390fd5b565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006116d18461081e565b905082600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a46117cd82848361199e565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119385750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156119945760011515600760009054906101000a900460ff16151514611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a90612bbe565b60405180910390fd5b5b505050565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156119da5750600081115b15611c3a57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b0c576000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611a7d576000611aea565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611acb919061262a565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060008382611afa9190612bde565b9050611b0886848484611c3f565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611c39576000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611baa576000611c17565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611bf8919061262a565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060008382611c2791906124ed565b9050611c3585848484611c3f565b5050505b5b505050565b6000611c6343604051806060016040528060368152602001612d0660369139611f42565b905060008463ffffffff16118015611d0157508063ffffffff16600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187611ccb919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b15611d7b5781600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187611d55919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060010181905550611eeb565b60405180604001604052808263ffffffff16815260200183815250600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff160217905550602082015181600101559050508363ffffffff16600185611e3a9190612c12565b63ffffffff1611611e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7790612cbc565b60405180910390fd5b600184611e8d9190612c12565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611f33929190612cdc565b60405180910390a25050505050565b600064010000000083108290611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f859190612028565b60405180910390fd5b5082905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fd2578082015181840152602081019050611fb7565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ffa82611f98565b6120048185611fa3565b9350612014818560208601611fb4565b61201d81611fde565b840191505092915050565b600060208201905081810360008301526120428184611fef565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061207f82612054565b9050919050565b61208f81612074565b811461209a57600080fd5b50565b6000813590506120ac81612086565b92915050565b6000819050919050565b6120c5816120b2565b81146120d057600080fd5b50565b6000813590506120e2816120bc565b92915050565b600080604083850312156120ff576120fe61204a565b5b600061210d8582860161209d565b925050602061211e858286016120d3565b9150509250929050565b60008115159050919050565b61213d81612128565b82525050565b60006020820190506121586000830184612134565b92915050565b612167816120b2565b82525050565b6000602082019050612182600083018461215e565b92915050565b6000819050919050565b61219b81612188565b82525050565b60006020820190506121b66000830184612192565b92915050565b6000806000606084860312156121d5576121d461204a565b5b60006121e38682870161209d565b93505060206121f48682870161209d565b9250506040612205868287016120d3565b9150509250925092565b600060ff82169050919050565b6122258161220f565b82525050565b6000602082019050612240600083018461221c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261226b5761226a612246565b5b8235905067ffffffffffffffff8111156122885761228761224b565b5b6020830191508360208202830111156122a4576122a3612250565b5b9250929050565b600080602083850312156122c2576122c161204a565b5b600083013567ffffffffffffffff8111156122e0576122df61204f565b5b6122ec85828601612255565b92509250509250929050565b60006020828403121561230e5761230d61204a565b5b600061231c8482850161209d565b91505092915050565b61232e81612074565b82525050565b60006020820190506123496000830184612325565b92915050565b600063ffffffff82169050919050565b6123688161234f565b82525050565b6000602082019050612383600083018461235f565b92915050565b600080604083850312156123a05761239f61204a565b5b60006123ae8582860161209d565b92505060206123bf8582860161209d565b9150509250929050565b6123d28161234f565b81146123dd57600080fd5b50565b6000813590506123ef816123c9565b92915050565b6000806040838503121561240c5761240b61204a565b5b600061241a8582860161209d565b925050602061242b858286016123e0565b9150509250929050565b600060408201905061244a600083018561235f565b612457602083018461215e565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124a557607f821691505b6020821081036124b8576124b761245e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006124f8826120b2565b9150612503836120b2565b925082820190508082111561251b5761251a6124be565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061255b826120b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361258d5761258c6124be565b5b600182019050919050565b7f424f4e453a3a6765745072696f72566f7465733a206e6f74207965742064657460008201527f65726d696e656400000000000000000000000000000000000000000000000000602082015250565b60006125f4602783611fa3565b91506125ff82612598565b604082019050919050565b60006020820190508181036000830152612623816125e7565b9050919050565b60006126358261234f565b91506126408361234f565b9250828203905063ffffffff81111561265c5761265b6124be565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061269c8261234f565b91506126a78361234f565b9250826126b7576126b6612662565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061271e602583611fa3565b9150612729826126c2565b604082019050919050565b6000602082019050818103600083015261274d81612711565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127b0602683611fa3565b91506127bb82612754565b604082019050919050565b600060208201905081810360008301526127df816127a3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612842602483611fa3565b915061284d826127e6565b604082019050919050565b6000602082019050818103600083015261287181612835565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128d4602283611fa3565b91506128df82612878565b604082019050919050565b60006020820190508181036000830152612903816128c7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612940601d83611fa3565b915061294b8261290a565b602082019050919050565b6000602082019050818103600083015261296f81612933565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129d2602583611fa3565b91506129dd82612976565b604082019050919050565b60006020820190508181036000830152612a01816129c5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a64602383611fa3565b9150612a6f82612a08565b604082019050919050565b60006020820190508181036000830152612a9381612a57565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612af6602683611fa3565b9150612b0182612a9a565b604082019050919050565b60006020820190508181036000830152612b2581612ae9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b62602083611fa3565b9150612b6d82612b2c565b602082019050919050565b60006020820190508181036000830152612b9181612b55565b9050919050565b50565b6000612ba8600083611fa3565b9150612bb382612b98565b600082019050919050565b60006020820190508181036000830152612bd781612b9b565b9050919050565b6000612be9826120b2565b9150612bf4836120b2565b9250828203905081811115612c0c57612c0b6124be565b5b92915050565b6000612c1d8261234f565b9150612c288361234f565b9250828201905063ffffffff811115612c4457612c436124be565b5b92915050565b7f434f464645453a3a5f7772697465436865636b706f696e743a206e657720636860008201527f65636b706f696e74206578636565647320333220626974730000000000000000602082015250565b6000612ca6603883611fa3565b9150612cb182612c4a565b604082019050919050565b60006020820190508181036000830152612cd581612c99565b9050919050565b6000604082019050612cf1600083018561215e565b612cfe602083018461215e565b939250505056fe434f464645453a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a2646970667358221220ada0485693b762584b3ac41994133d1826351f6b0fce8768fcdfa8b76f04e2b964736f6c63430008120033

Deployed Bytecode Sourcemap

20518:6440:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8686:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11606:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10375:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21478:122;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12387:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9648:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13091:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9956:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22250:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22511:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20988:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10546:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5799:103;;;:::i;:::-;;23046:1212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21681:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5158:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8905:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9749:199;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13832:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10879:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24459:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11135:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21288:117;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10198:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21120:70;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;6057:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8686:100;8740:13;8773:5;8766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8686:100;:::o;11606:201::-;11689:4;11706:13;11722:12;:10;:12::i;:::-;11706:28;;11745:32;11754:5;11761:7;11770:6;11745:8;:32::i;:::-;11795:4;11788:11;;;11606:201;;;;:::o;10375:108::-;10436:7;10463:12;;10456:19;;10375:108;:::o;21478:122::-;21520:80;21478:122;:::o;12387:295::-;12518:4;12535:15;12553:12;:10;:12::i;:::-;12535:30;;12576:38;12592:4;12598:7;12607:6;12576:15;:38::i;:::-;12625:27;12635:4;12641:2;12645:6;12625:9;:27::i;:::-;12670:4;12663:11;;;12387:295;;;;;:::o;9648:93::-;9706:5;9731:2;9724:9;;9648:93;:::o;13091:238::-;13179:4;13196:13;13212:12;:10;:12::i;:::-;13196:28;;13235:64;13244:5;13251:7;13288:10;13260:25;13270:5;13277:7;13260:9;:25::i;:::-;:38;;;;:::i;:::-;13235:8;:64::i;:::-;13317:4;13310:11;;;13091:238;;;;:::o;9956:234::-;5044:13;:11;:13::i;:::-;10048:9:::1;10043:140;10067:11;;:18;;10063:1;:22;10043:140;;;10134:5;10107:8;:24;10116:11;;10128:1;10116:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10107:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;10166:3;;;;;10087;;;;;:::i;:::-;;;;10043:140;;;;9956:234:::0;;:::o;22250:117::-;22311:7;22338:10;:21;22349:9;22338:21;;;;;;;;;;;;;;;;;;;;;;;;;22331:28;;22250:117;;;:::o;22511:104::-;22575:32;22585:10;22597:9;22575;:32::i;:::-;22511:104;:::o;20988:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;10546:127::-;10620:7;10647:9;:18;10657:7;10647:18;;;;;;;;;;;;;;;;10640:25;;10546:127;;;:::o;5799:103::-;5044:13;:11;:13::i;:::-;5864:30:::1;5891:1;5864:18;:30::i;:::-;5799:103::o:0;23046:1212::-;23127:7;23168:12;23154:11;:26;23146:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;23235:19;23257:14;:23;23272:7;23257:23;;;;;;;;;;;;;;;;;;;;;;;;;23235:45;;23311:1;23295:12;:17;;;23291:58;;23336:1;23329:8;;;;;23291:58;23459:11;23407;:20;23419:7;23407:20;;;;;;;;;;;;;;;:38;23443:1;23428:12;:16;;;;:::i;:::-;23407:38;;;;;;;;;;;;;;;:48;;;;;;;;;;;;:63;;;23403:147;;23494:11;:20;23506:7;23494:20;;;;;;;;;;;;;;;:38;23530:1;23515:12;:16;;;;:::i;:::-;23494:38;;;;;;;;;;;;;;;:44;;;23487:51;;;;;23403:147;23645:11;23609;:20;23621:7;23609:20;;;;;;;;;;;;;;;:23;23630:1;23609:23;;;;;;;;;;;;;:33;;;;;;;;;;;;:47;;;23605:88;;;23680:1;23673:8;;;;;23605:88;23703:12;23730;23760:1;23745:12;:16;;;;:::i;:::-;23730:31;;23772:428;23787:5;23779:13;;:5;:13;;;23772:428;;;23809:13;23851:1;23842:5;23834;:13;;;;:::i;:::-;23833:19;;;;:::i;:::-;23825:5;:27;;;;:::i;:::-;23809:43;;23894:20;23917:11;:20;23929:7;23917:20;;;;;;;;;;;;;;;:28;23938:6;23917:28;;;;;;;;;;;;;;;23894:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23980:11;23964:2;:12;;;:27;;;23960:229;;24019:2;:8;;;24012:15;;;;;;;;;23960:229;24068:11;24053:2;:12;;;:26;;;24049:140;;;24108:6;24100:14;;24049:140;;;24172:1;24163:6;:10;;;;:::i;:::-;24155:18;;24049:140;23794:406;;23772:428;;;24217:11;:20;24229:7;24217:20;;;;;;;;;;;;;;;:27;24238:5;24217:27;;;;;;;;;;;;;;;:33;;;24210:40;;;;;23046:1212;;;;;:::o;21681:39::-;;;;;;;;;;;;;;;;;:::o;5158:87::-;5204:7;5231:6;;;;;;;;;;;5224:13;;5158:87;:::o;8905:104::-;8961:13;8994:7;8987:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8905:104;:::o;9749:199::-;5044:13;:11;:13::i;:::-;9839:9:::1;9834:107;9858:11;;:18;;9854:1;:22;9834:107;;;9925:4;9898:8;:24;9907:11;;9919:1;9907:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9898:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;9878:3;;;;;:::i;:::-;;;;9834:107;;;;9749:199:::0;;:::o;13832:436::-;13925:4;13942:13;13958:12;:10;:12::i;:::-;13942:28;;13981:24;14008:25;14018:5;14025:7;14008:9;:25::i;:::-;13981:52;;14072:15;14052:16;:35;;14044:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14165:60;14174:5;14181:7;14209:15;14190:16;:34;14165:8;:60::i;:::-;14256:4;14249:11;;;;13832:436;;;;:::o;10879:193::-;10958:4;10975:13;10991:12;:10;:12::i;:::-;10975:28;;11014;11024:5;11031:2;11035:6;11014:9;:28::i;:::-;11060:4;11053:11;;;10879:193;;;;:::o;24459:222::-;24524:7;24543:19;24565:14;:23;24580:7;24565:23;;;;;;;;;;;;;;;;;;;;;;;;;24543:45;;24621:1;24606:12;:16;;;:67;;24672:1;24606:67;;;24625:11;:20;24637:7;24625:20;;;;;;;;;;;;;;;:38;24661:1;24646:12;:16;;;;:::i;:::-;24625:38;;;;;;;;;;;;;;;:44;;;24606:67;24599:74;;;24459:222;;;:::o;11135:151::-;11224:7;11251:11;:18;11263:5;11251:18;;;;;;;;;;;;;;;:27;11270:7;11251:27;;;;;;;;;;;;;;;;11244:34;;11135:151;;;;:::o;21288:117::-;21334:71;21288:117;:::o;10198:112::-;10258:4;10282:8;:20;10291:10;10282:20;;;;;;;;;;;;;;;;;;;;;;;;;10275:27;;10198:112;;;:::o;21120:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6057:201::-;5044:13;:11;:13::i;:::-;6166:1:::1;6146:22;;:8;:22;;::::0;6138:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6222:28;6241:8;6222:18;:28::i;:::-;6057:201:::0;:::o;3867:98::-;3920:7;3947:10;3940:17;;3867:98;:::o;17859:380::-;18012:1;17995:19;;:5;:19;;;17987:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18093:1;18074:21;;:7;:21;;;18066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18177:6;18147:11;:18;18159:5;18147:18;;;;;;;;;;;;;;;:27;18166:7;18147:27;;;;;;;;;;;;;;;:36;;;;18215:7;18199:32;;18208:5;18199:32;;;18224:6;18199:32;;;;;;:::i;:::-;;;;;;;;17859:380;;;:::o;18530:453::-;18665:24;18692:25;18702:5;18709:7;18692:9;:25::i;:::-;18665:52;;18752:17;18732:16;:37;18728:248;;18814:6;18794:16;:26;;18786:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18898:51;18907:5;18914:7;18942:6;18923:16;:25;18898:8;:51::i;:::-;18728:248;18654:329;18530:453;;;:::o;14738:840::-;14885:1;14869:18;;:4;:18;;;14861:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14962:1;14948:16;;:2;:16;;;14940:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15017:38;15038:4;15044:2;15048:6;15017:20;:38::i;:::-;15068:19;15090:9;:15;15100:4;15090:15;;;;;;;;;;;;;;;;15068:37;;15139:6;15124:11;:21;;15116:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15256:6;15242:11;:20;15224:9;:15;15234:4;15224:15;;;;;;;;;;;;;;;:38;;;;15459:6;15442:9;:13;15452:2;15442:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15509:2;15494:26;;15503:4;15494:26;;;15513:6;15494:26;;;;;;:::i;:::-;;;;;;;;15533:37;15553:4;15559:2;15563:6;15533:19;:37::i;:::-;14850:728;14738:840;;;:::o;5323:132::-;5398:12;:10;:12::i;:::-;5387:23;;:7;:5;:7::i;:::-;:23;;;5379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5323:132::o;24689:376::-;24766:23;24792:10;:21;24803:9;24792:21;;;;;;;;;;;;;;;;;;;;;;;;;24766:47;;24824:24;24851:20;24861:9;24851;:20::i;:::-;24824:47;;24907:9;24883:10;:21;24894:9;24883:21;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;24976:9;24932:54;;24959:15;24932:54;;24948:9;24932:54;;;;;;;;;;;;24997:60;25012:15;25029:9;25040:16;24997:14;:60::i;:::-;24755:310;;24689:376;;:::o;6418:191::-;6492:16;6511:6;;;;;;;;;;;6492:25;;6537:8;6528:6;;:17;;;;;;;;;;;;;;;;;;6592:8;6561:40;;6582:8;6561:40;;;;;;;;;;;;6481:128;6418:191;:::o;19583:200::-;19713:8;:12;19722:2;19713:12;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;19729:8;:14;19738:4;19729:14;;;;;;;;;;;;;;;;;;;;;;;;;19713:30;19709:72;;;19772:4;19753:23;;:15;;;;;;;;;;;:23;;;19745:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;19709:72;19583:200;;;:::o;20387:124::-;;;;:::o;25845:941::-;25951:6;25941:16;;:6;:16;;;;:30;;;;;25970:1;25961:6;:10;25941:30;25937:842;;;26010:1;25992:20;;:6;:20;;;25988:382;;26081:16;26100:14;:22;26115:6;26100:22;;;;;;;;;;;;;;;;;;;;;;;;;26081:41;;26141:17;26173:1;26161:9;:13;;;:60;;26220:1;26161:60;;;26177:11;:19;26189:6;26177:19;;;;;;;;;;;;;;;:34;26209:1;26197:9;:13;;;;:::i;:::-;26177:34;;;;;;;;;;;;;;;:40;;;26161:60;26141:80;;26240:17;26272:6;26260:9;:18;;;;:::i;:::-;26240:38;;26297:57;26314:6;26322:9;26333;26344;26297:16;:57::i;:::-;26014:356;;;25988:382;26408:1;26390:20;;:6;:20;;;26386:382;;26479:16;26498:14;:22;26513:6;26498:22;;;;;;;;;;;;;;;;;;;;;;;;;26479:41;;26539:17;26571:1;26559:9;:13;;;:60;;26618:1;26559:60;;;26575:11;:19;26587:6;26575:19;;;;;;;;;;;;;;;:34;26607:1;26595:9;:13;;;;:::i;:::-;26575:34;;;;;;;;;;;;;;;:40;;;26559:60;26539:80;;26638:17;26670:6;26658:9;:18;;;;:::i;:::-;26638:38;;26695:57;26712:6;26720:9;26731;26742;26695:16;:57::i;:::-;26412:356;;;26386:382;25937:842;25845:941;;;:::o;25073:764::-;25195:18;25216:78;25223:12;25216:78;;;;;;;;;;;;;;;;;:6;:78::i;:::-;25195:99;;25326:1;25311:12;:16;;;:85;;;;;25385:11;25331:65;;:11;:22;25343:9;25331:22;;;;;;;;;;;;;;;:40;25369:1;25354:12;:16;;;;:::i;:::-;25331:40;;;;;;;;;;;;;;;:50;;;;;;;;;;;;:65;;;25311:85;25307:454;;;25462:8;25413:11;:22;25425:9;25413:22;;;;;;;;;;;;;;;:40;25451:1;25436:12;:16;;;;:::i;:::-;25413:40;;;;;;;;;;;;;;;:46;;:57;;;;25307:454;;;25542:33;;;;;;;;25553:11;25542:33;;;;;;25566:8;25542:33;;;25503:11;:22;25515:9;25503:22;;;;;;;;;;;;;;;:36;25526:12;25503:36;;;;;;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25617:12;25598:31;;25613:1;25598:12;:16;;;;:::i;:::-;:31;;;25590:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;25748:1;25733:12;:16;;;;:::i;:::-;25705:14;:25;25720:9;25705:25;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;25307:454;25799:9;25778:51;;;25810:8;25820;25778:51;;;;;;;:::i;:::-;;;;;;;;25184:653;25073:764;;;;:::o;26794:161::-;26869:6;26900:5;26896:1;:9;26907:12;26888:32;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;26945:1;26931:16;;26794:161;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:77::-;3835:7;3864:5;3853:16;;3798:77;;;:::o;3881:118::-;3968:24;3986:5;3968:24;:::i;:::-;3963:3;3956:37;3881:118;;:::o;4005:222::-;4098:4;4136:2;4125:9;4121:18;4113:26;;4149:71;4217:1;4206:9;4202:17;4193:6;4149:71;:::i;:::-;4005:222;;;;:::o;4233:619::-;4310:6;4318;4326;4375:2;4363:9;4354:7;4350:23;4346:32;4343:119;;;4381:79;;:::i;:::-;4343:119;4501:1;4526:53;4571:7;4562:6;4551:9;4547:22;4526:53;:::i;:::-;4516:63;;4472:117;4628:2;4654:53;4699:7;4690:6;4679:9;4675:22;4654:53;:::i;:::-;4644:63;;4599:118;4756:2;4782:53;4827:7;4818:6;4807:9;4803:22;4782:53;:::i;:::-;4772:63;;4727:118;4233:619;;;;;:::o;4858:86::-;4893:7;4933:4;4926:5;4922:16;4911:27;;4858:86;;;:::o;4950:112::-;5033:22;5049:5;5033:22;:::i;:::-;5028:3;5021:35;4950:112;;:::o;5068:214::-;5157:4;5195:2;5184:9;5180:18;5172:26;;5208:67;5272:1;5261:9;5257:17;5248:6;5208:67;:::i;:::-;5068:214;;;;:::o;5288:117::-;5397:1;5394;5387:12;5411:117;5520:1;5517;5510:12;5534:117;5643:1;5640;5633:12;5674:568;5747:8;5757:6;5807:3;5800:4;5792:6;5788:17;5784:27;5774:122;;5815:79;;:::i;:::-;5774:122;5928:6;5915:20;5905:30;;5958:18;5950:6;5947:30;5944:117;;;5980:79;;:::i;:::-;5944:117;6094:4;6086:6;6082:17;6070:29;;6148:3;6140:4;6132:6;6128:17;6118:8;6114:32;6111:41;6108:128;;;6155:79;;:::i;:::-;6108:128;5674:568;;;;;:::o;6248:559::-;6334:6;6342;6391:2;6379:9;6370:7;6366:23;6362:32;6359:119;;;6397:79;;:::i;:::-;6359:119;6545:1;6534:9;6530:17;6517:31;6575:18;6567:6;6564:30;6561:117;;;6597:79;;:::i;:::-;6561:117;6710:80;6782:7;6773:6;6762:9;6758:22;6710:80;:::i;:::-;6692:98;;;;6488:312;6248:559;;;;;:::o;6813:329::-;6872:6;6921:2;6909:9;6900:7;6896:23;6892:32;6889:119;;;6927:79;;:::i;:::-;6889:119;7047:1;7072:53;7117:7;7108:6;7097:9;7093:22;7072:53;:::i;:::-;7062:63;;7018:117;6813:329;;;;:::o;7148:118::-;7235:24;7253:5;7235:24;:::i;:::-;7230:3;7223:37;7148:118;;:::o;7272:222::-;7365:4;7403:2;7392:9;7388:18;7380:26;;7416:71;7484:1;7473:9;7469:17;7460:6;7416:71;:::i;:::-;7272:222;;;;:::o;7500:93::-;7536:7;7576:10;7569:5;7565:22;7554:33;;7500:93;;;:::o;7599:115::-;7684:23;7701:5;7684:23;:::i;:::-;7679:3;7672:36;7599:115;;:::o;7720:218::-;7811:4;7849:2;7838:9;7834:18;7826:26;;7862:69;7928:1;7917:9;7913:17;7904:6;7862:69;:::i;:::-;7720:218;;;;:::o;7944:474::-;8012:6;8020;8069:2;8057:9;8048:7;8044:23;8040:32;8037:119;;;8075:79;;:::i;:::-;8037:119;8195:1;8220:53;8265:7;8256:6;8245:9;8241:22;8220:53;:::i;:::-;8210:63;;8166:117;8322:2;8348:53;8393:7;8384:6;8373:9;8369:22;8348:53;:::i;:::-;8338:63;;8293:118;7944:474;;;;;:::o;8424:120::-;8496:23;8513:5;8496:23;:::i;:::-;8489:5;8486:34;8476:62;;8534:1;8531;8524:12;8476:62;8424:120;:::o;8550:137::-;8595:5;8633:6;8620:20;8611:29;;8649:32;8675:5;8649:32;:::i;:::-;8550:137;;;;:::o;8693:472::-;8760:6;8768;8817:2;8805:9;8796:7;8792:23;8788:32;8785:119;;;8823:79;;:::i;:::-;8785:119;8943:1;8968:53;9013:7;9004:6;8993:9;8989:22;8968:53;:::i;:::-;8958:63;;8914:117;9070:2;9096:52;9140:7;9131:6;9120:9;9116:22;9096:52;:::i;:::-;9086:62;;9041:117;8693:472;;;;;:::o;9171:328::-;9290:4;9328:2;9317:9;9313:18;9305:26;;9341:69;9407:1;9396:9;9392:17;9383:6;9341:69;:::i;:::-;9420:72;9488:2;9477:9;9473:18;9464:6;9420:72;:::i;:::-;9171:328;;;;;:::o;9505:180::-;9553:77;9550:1;9543:88;9650:4;9647:1;9640:15;9674:4;9671:1;9664:15;9691:320;9735:6;9772:1;9766:4;9762:12;9752:22;;9819:1;9813:4;9809:12;9840:18;9830:81;;9896:4;9888:6;9884:17;9874:27;;9830:81;9958:2;9950:6;9947:14;9927:18;9924:38;9921:84;;9977:18;;:::i;:::-;9921:84;9742:269;9691:320;;;:::o;10017:180::-;10065:77;10062:1;10055:88;10162:4;10159:1;10152:15;10186:4;10183:1;10176:15;10203:191;10243:3;10262:20;10280:1;10262:20;:::i;:::-;10257:25;;10296:20;10314:1;10296:20;:::i;:::-;10291:25;;10339:1;10336;10332:9;10325:16;;10360:3;10357:1;10354:10;10351:36;;;10367:18;;:::i;:::-;10351:36;10203:191;;;;:::o;10400:180::-;10448:77;10445:1;10438:88;10545:4;10542:1;10535:15;10569:4;10566:1;10559:15;10586:233;10625:3;10648:24;10666:5;10648:24;:::i;:::-;10639:33;;10694:66;10687:5;10684:77;10681:103;;10764:18;;:::i;:::-;10681:103;10811:1;10804:5;10800:13;10793:20;;10586:233;;;:::o;10825:226::-;10965:34;10961:1;10953:6;10949:14;10942:58;11034:9;11029:2;11021:6;11017:15;11010:34;10825:226;:::o;11057:366::-;11199:3;11220:67;11284:2;11279:3;11220:67;:::i;:::-;11213:74;;11296:93;11385:3;11296:93;:::i;:::-;11414:2;11409:3;11405:12;11398:19;;11057:366;;;:::o;11429:419::-;11595:4;11633:2;11622:9;11618:18;11610:26;;11682:9;11676:4;11672:20;11668:1;11657:9;11653:17;11646:47;11710:131;11836:4;11710:131;:::i;:::-;11702:139;;11429:419;;;:::o;11854:200::-;11893:4;11913:19;11930:1;11913:19;:::i;:::-;11908:24;;11946:19;11963:1;11946:19;:::i;:::-;11941:24;;11989:1;11986;11982:9;11974:17;;12013:10;12007:4;12004:20;12001:46;;;12027:18;;:::i;:::-;12001:46;11854:200;;;;:::o;12060:180::-;12108:77;12105:1;12098:88;12205:4;12202:1;12195:15;12229:4;12226:1;12219:15;12246:182;12285:1;12302:19;12319:1;12302:19;:::i;:::-;12297:24;;12335:19;12352:1;12335:19;:::i;:::-;12330:24;;12373:1;12363:35;;12378:18;;:::i;:::-;12363:35;12420:1;12417;12413:9;12408:14;;12246:182;;;;:::o;12434:224::-;12574:34;12570:1;12562:6;12558:14;12551:58;12643:7;12638:2;12630:6;12626:15;12619:32;12434:224;:::o;12664:366::-;12806:3;12827:67;12891:2;12886:3;12827:67;:::i;:::-;12820:74;;12903:93;12992:3;12903:93;:::i;:::-;13021:2;13016:3;13012:12;13005:19;;12664:366;;;:::o;13036:419::-;13202:4;13240:2;13229:9;13225:18;13217:26;;13289:9;13283:4;13279:20;13275:1;13264:9;13260:17;13253:47;13317:131;13443:4;13317:131;:::i;:::-;13309:139;;13036:419;;;:::o;13461:225::-;13601:34;13597:1;13589:6;13585:14;13578:58;13670:8;13665:2;13657:6;13653:15;13646:33;13461:225;:::o;13692:366::-;13834:3;13855:67;13919:2;13914:3;13855:67;:::i;:::-;13848:74;;13931:93;14020:3;13931:93;:::i;:::-;14049:2;14044:3;14040:12;14033:19;;13692:366;;;:::o;14064:419::-;14230:4;14268:2;14257:9;14253:18;14245:26;;14317:9;14311:4;14307:20;14303:1;14292:9;14288:17;14281:47;14345:131;14471:4;14345:131;:::i;:::-;14337:139;;14064:419;;;:::o;14489:223::-;14629:34;14625:1;14617:6;14613:14;14606:58;14698:6;14693:2;14685:6;14681:15;14674:31;14489:223;:::o;14718:366::-;14860:3;14881:67;14945:2;14940:3;14881:67;:::i;:::-;14874:74;;14957:93;15046:3;14957:93;:::i;:::-;15075:2;15070:3;15066:12;15059:19;;14718:366;;;:::o;15090:419::-;15256:4;15294:2;15283:9;15279:18;15271:26;;15343:9;15337:4;15333:20;15329:1;15318:9;15314:17;15307:47;15371:131;15497:4;15371:131;:::i;:::-;15363:139;;15090:419;;;:::o;15515:221::-;15655:34;15651:1;15643:6;15639:14;15632:58;15724:4;15719:2;15711:6;15707:15;15700:29;15515:221;:::o;15742:366::-;15884:3;15905:67;15969:2;15964:3;15905:67;:::i;:::-;15898:74;;15981:93;16070:3;15981:93;:::i;:::-;16099:2;16094:3;16090:12;16083:19;;15742:366;;;:::o;16114:419::-;16280:4;16318:2;16307:9;16303:18;16295:26;;16367:9;16361:4;16357:20;16353:1;16342:9;16338:17;16331:47;16395:131;16521:4;16395:131;:::i;:::-;16387:139;;16114:419;;;:::o;16539:179::-;16679:31;16675:1;16667:6;16663:14;16656:55;16539:179;:::o;16724:366::-;16866:3;16887:67;16951:2;16946:3;16887:67;:::i;:::-;16880:74;;16963:93;17052:3;16963:93;:::i;:::-;17081:2;17076:3;17072:12;17065:19;;16724:366;;;:::o;17096:419::-;17262:4;17300:2;17289:9;17285:18;17277:26;;17349:9;17343:4;17339:20;17335:1;17324:9;17320:17;17313:47;17377:131;17503:4;17377:131;:::i;:::-;17369:139;;17096:419;;;:::o;17521:224::-;17661:34;17657:1;17649:6;17645:14;17638:58;17730:7;17725:2;17717:6;17713:15;17706:32;17521:224;:::o;17751:366::-;17893:3;17914:67;17978:2;17973:3;17914:67;:::i;:::-;17907:74;;17990:93;18079:3;17990:93;:::i;:::-;18108:2;18103:3;18099:12;18092:19;;17751:366;;;:::o;18123:419::-;18289:4;18327:2;18316:9;18312:18;18304:26;;18376:9;18370:4;18366:20;18362:1;18351:9;18347:17;18340:47;18404:131;18530:4;18404:131;:::i;:::-;18396:139;;18123:419;;;:::o;18548:222::-;18688:34;18684:1;18676:6;18672:14;18665:58;18757:5;18752:2;18744:6;18740:15;18733:30;18548:222;:::o;18776:366::-;18918:3;18939:67;19003:2;18998:3;18939:67;:::i;:::-;18932:74;;19015:93;19104:3;19015:93;:::i;:::-;19133:2;19128:3;19124:12;19117:19;;18776:366;;;:::o;19148:419::-;19314:4;19352:2;19341:9;19337:18;19329:26;;19401:9;19395:4;19391:20;19387:1;19376:9;19372:17;19365:47;19429:131;19555:4;19429:131;:::i;:::-;19421:139;;19148:419;;;:::o;19573:225::-;19713:34;19709:1;19701:6;19697:14;19690:58;19782:8;19777:2;19769:6;19765:15;19758:33;19573:225;:::o;19804:366::-;19946:3;19967:67;20031:2;20026:3;19967:67;:::i;:::-;19960:74;;20043:93;20132:3;20043:93;:::i;:::-;20161:2;20156:3;20152:12;20145:19;;19804:366;;;:::o;20176:419::-;20342:4;20380:2;20369:9;20365:18;20357:26;;20429:9;20423:4;20419:20;20415:1;20404:9;20400:17;20393:47;20457:131;20583:4;20457:131;:::i;:::-;20449:139;;20176:419;;;:::o;20601:182::-;20741:34;20737:1;20729:6;20725:14;20718:58;20601:182;:::o;20789:366::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:419::-;21327:4;21365:2;21354:9;21350:18;21342:26;;21414:9;21408:4;21404:20;21400:1;21389:9;21385:17;21378:47;21442:131;21568:4;21442:131;:::i;:::-;21434:139;;21161:419;;;:::o;21586:114::-;;:::o;21706:364::-;21848:3;21869:66;21933:1;21928:3;21869:66;:::i;:::-;21862:73;;21944:93;22033:3;21944:93;:::i;:::-;22062:1;22057:3;22053:11;22046:18;;21706:364;;;:::o;22076:419::-;22242:4;22280:2;22269:9;22265:18;22257:26;;22329:9;22323:4;22319:20;22315:1;22304:9;22300:17;22293:47;22357:131;22483:4;22357:131;:::i;:::-;22349:139;;22076:419;;;:::o;22501:194::-;22541:4;22561:20;22579:1;22561:20;:::i;:::-;22556:25;;22595:20;22613:1;22595:20;:::i;:::-;22590:25;;22639:1;22636;22632:9;22624:17;;22663:1;22657:4;22654:11;22651:37;;;22668:18;;:::i;:::-;22651:37;22501:194;;;;:::o;22701:197::-;22740:3;22759:19;22776:1;22759:19;:::i;:::-;22754:24;;22792:19;22809:1;22792:19;:::i;:::-;22787:24;;22834:1;22831;22827:9;22820:16;;22857:10;22852:3;22849:19;22846:45;;;22871:18;;:::i;:::-;22846:45;22701:197;;;;:::o;22904:243::-;23044:34;23040:1;23032:6;23028:14;23021:58;23113:26;23108:2;23100:6;23096:15;23089:51;22904:243;:::o;23153:366::-;23295:3;23316:67;23380:2;23375:3;23316:67;:::i;:::-;23309:74;;23392:93;23481:3;23392:93;:::i;:::-;23510:2;23505:3;23501:12;23494:19;;23153:366;;;:::o;23525:419::-;23691:4;23729:2;23718:9;23714:18;23706:26;;23778:9;23772:4;23768:20;23764:1;23753:9;23749:17;23742:47;23806:131;23932:4;23806:131;:::i;:::-;23798:139;;23525:419;;;:::o;23950:332::-;24071:4;24109:2;24098:9;24094:18;24086:26;;24122:71;24190:1;24179:9;24175:17;24166:6;24122:71;:::i;:::-;24203:72;24271:2;24260:9;24256:18;24247:6;24203:72;:::i;:::-;23950:332;;;;;:::o

Swarm Source

ipfs://ada0485693b762584b3ac41994133d1826351f6b0fce8768fcdfa8b76f04e2b9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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