ETH Price: $3,310.02 (-3.61%)
Gas: 14 Gwei

Token

PEACH (PEACH)
 

Overview

Max Total Supply

22,851,690 PEACH

Holders

820

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
Peach

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, None license
File 1 of 8 : Peach.sol
// contracts/Peach.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

/*
                       j╫╫╫╫╫╫ ]╫╫╫╫╫H                                          
                        ```╫╫╫ ]╫╫````                                          
    ▄▄▄▄      ▄▄▄▄  ÑÑÑÑÑÑÑ╫╫╫ ]╫╫ÑÑÑÑÑÑÑH ▄▄▄▄                                 
   ▐████      ████⌐ `````````` ``````````  ████▌                                
   ▐█████▌  ▐█████⌐▐██████████ ╫█████████▌ ████▌▐████ ▐██████████ ████▌ ████▌   
   ▐██████████████⌐▐████Γ▐████ ╫███▌└████▌ ████▌ ████ ▐████│█████ ████▌ ████▌   
   ▐████▀████▀████⌐▐████ ▐████ ╫███▌ ████▌ █████████▄ ▐██████████ ████▌ ████▌   
   ▐████ ▐██▌ ████⌐▐████ ▐████ ╫███▌ ████▌ ████▌▐████ ▐████│││││└ ██████████▌   
   ▐████      ████⌐▐██████████ ╫███▌ ████▌ ████▌▐████ ▐██████████ ▀▀▀▀▀▀████▌   
    ''''      ''''  '''''''''' `'''  `'''  ''''  ''''  '''''''''` ██████████▌   
╓╓╓╓  ╓╓╓╓  ╓╓╓╓                              .╓╓╓╓               ▀▀▀▀▀▀▀▀▀▀Γ   ===
████▌ ████=▐████                              ▐████                             
████▌ ████= ▄▄▄▄ ▐█████████▌ ██████████▌▐██████████ ║█████████▌ ███████▌▄███████
█████▄███▀ ▐████ ▐████▀████▌ ████▌▀████▌▐████▀▀████ ║████▀████▌ ████▌▀████▀▀████
█████▀████⌐▐████ ▐████ ╫███▌ ████▌ ████▌▐████ ▐████ ║████ ████▌ ████▌ ████=▐████
████▌ ████=▐████ ▐████ ╫███▌ █████▄████▌▐████ ▐████ ║████ ████▌ ████▌ ████=▐████
████▌ ████=▐████ ▐████ ╫███▌ ▀▀▀▀▀▀████▌▐██████████ ║█████████▌ ████▌ ████=▐████
▀▀▀▀` ▀▀▀▀  └└└└ `▀▀▀▀ "▀▀▀╘ ▄▄▄▄▄▄████▌ ▀▀▀▀▀▀▀▀▀▀ `▀▀▀▀▀▀▀▀▀└ ▀▀▀▀` ▀▀▀▀  ▀▀▀▀
                             ▀▀▀▀▀▀▀▀▀▀U                                      
*/

contract Peach is ERC20, Pausable, Ownable {
    uint256 public constant RESERVE = 6727500 ether;
    uint256 public constant MAX_SUPPLY = 250000000 ether;
    uint256 public constant WUKONG_DAILY_REWARD = 20 ether;
    uint256 public constant BAEPE_DAILY_REWARD = 10 ether;

    uint256 public constant NUM_WUKONGS = 2222;
    uint256 public constant NUM_BAEPES = 2221;

    address public authSigner;

    mapping(uint256 => uint256) public stakedTime;
    mapping(uint256 => address) public staker;

    event AuthSignerSet(address indexed newSigner);

    constructor(address _authSigner) ERC20("PEACH", "PEACH") {
        require(_authSigner != address(0), "Invalid addr");
        authSigner = _authSigner;
        _mint(msg.sender, RESERVE);
        // Set stakedTime of token ID 0 to max uint256 value to effectively disable staking of this tokenID 
        stakedTime[
            0
        ] = 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff;
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function setAuthSigner(address _authSigner) external onlyOwner {
        require(_authSigner != address(0), "Invalid addr");
        authSigner = _authSigner;
        emit AuthSignerSet(_authSigner);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);
        require(!paused(), "Token paused");
    }

    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= MAX_SUPPLY, "MAX_SUPPLY");
        super._mint(account, amount);
    }

    function splitSignature(bytes memory sig)
        internal
        pure
        returns (
            uint8,
            bytes32,
            bytes32
        )
    {
        require(sig.length == 65, "invalid sig");

        bytes32 r;
        bytes32 s;
        uint8 v;

        assembly {
            r := mload(add(sig, 32))
            s := mload(add(sig, 64))
            v := byte(0, mload(add(sig, 96)))
        }

        return (v, r, s);
    }

    function recoverSigner(bytes32 message, bytes memory sig)
        internal
        pure
        returns (address)
    {
        uint8 v;
        bytes32 r;
        bytes32 s;

        (v, r, s) = splitSignature(sig);
        return ecrecover(message, v, r, s);
    }

    function sendPrevEarnings(uint256 tokenId) private {
        _mint(staker[tokenId], claimable(tokenId));
    }

    function claim(uint256[] calldata tokenIds) external {
        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(staker[tokenIds[i]] == msg.sender, "Access denied.");
            _mint(msg.sender, claimable(tokenIds[i]));
            stakedTime[tokenIds[i]] = block.timestamp - (block.timestamp - stakedTime[tokenIds[i]]) % 1 days;
        }
    }

    function claimable(uint256 tokenId) public view returns (uint256 sum) {
        if (stakedTime[tokenId] == 0) return 0;
        uint256 daysStaked = (block.timestamp - stakedTime[tokenId]) / 1 days;
        uint256 dailyReward = isBaepe(tokenId)
            ? BAEPE_DAILY_REWARD
            : WUKONG_DAILY_REWARD;
        sum = daysStaked * dailyReward;
    }

    function isBaepe(uint256 tokenId) internal pure returns (bool) {
        return tokenId > NUM_WUKONGS ? true : false;
    }

    function stake(
        uint256[] calldata tokenIds,
        uint256 ts,
        bytes memory sig
    ) external {
        bytes memory b = abi.encodePacked(tokenIds, msg.sender, ts);
        require(recoverSigner(keccak256(b), sig) == authSigner, "Invalid sig");
        require(ts <= block.timestamp, "Invalid ts");

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(staker[tokenIds[i]] != msg.sender, "Staked");
            require(
                tokenIds[i] <= NUM_BAEPES + NUM_WUKONGS,
                "Invalid token id"
            );
            require(stakedTime[tokenIds[i]] < ts, "Time is a river");
            if (stakedTime[tokenIds[i]] > 0) sendPrevEarnings(tokenIds[i]);
            stakedTime[tokenIds[i]] = ts;
            staker[tokenIds[i]] = msg.sender;
        }
    }

    function listStakedTokens(address wallet)
        external
        view
        returns (uint256[] memory, uint256[] memory)
    {
        uint256 count = countStakedTokens(wallet);
        uint256[] memory staked = new uint256[](count);
        uint256[] memory stakeTimes = new uint256[](count);
        uint256 j;
        for (uint256 i = 0; i <= NUM_BAEPES + NUM_WUKONGS; i++) {
            if (staker[i] == wallet) {
                staked[j] = i;
                stakeTimes[j++] = stakedTime[i];
            }
        }
        return (staked, stakeTimes);
    }

    function countStakedTokens(address wallet)
        public
        view
        returns (uint256 count)
    {
        count = 0;
        for (uint256 i = 0; i <= NUM_BAEPES + NUM_WUKONGS; i++) {
            if (staker[i] == wallet) count++;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

File 4 of 8 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `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 Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 10000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_authSigner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newSigner","type":"address"}],"name":"AuthSignerSet","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BAEPE_DAILY_REWARD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_BAEPES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_WUKONGS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WUKONG_DAILY_REWARD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"authSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimable","outputs":[{"internalType":"uint256","name":"sum","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"countStakedTokens","outputs":[{"internalType":"uint256","name":"count","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":"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":"wallet","type":"address"}],"name":"listStakedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_authSigner","type":"address"}],"name":"setAuthSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"ts","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakedTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"staker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200269938038062002699833981016040819052620000349162000434565b6040805180820182526005808252640a08a8286960db1b60208084018281528551808701909652928552840152815191929162000074916003916200038e565b5080516200008a9060049060208401906200038e565b50506005805460ff1916905550620000a23362000154565b6001600160a01b038116620000ed5760405162461bcd60e51b815260206004820152600c60248201526b24b73b30b634b21030b2323960a11b60448201526064015b60405180910390fd5b600680546001600160a01b0319166001600160a01b0383161790556200011f336a05909a817a215fedb00000620001ae565b506000805260076020526000197f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df55620004ca565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6acecb8f27f4200f3a00000081620001d06200023460201b620006e01760201c565b620001dc919062000466565b1115620002195760405162461bcd60e51b815260206004820152600a6024820152694d41585f535550504c5960b01b6044820152606401620000e4565b6200023082826200023a60201b620011ff1760201c565b5050565b60025490565b6001600160a01b038216620002925760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000e4565b620002a0600083836200032d565b8060026000828254620002b4919062000466565b90915550506001600160a01b03821660009081526020819052604081208054839290620002e390849062000466565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b620003458383836200038960201b62000ce81760201c565b60055460ff1615620003895760405162461bcd60e51b815260206004820152600c60248201526b151bdad95b881c185d5cd95960a21b6044820152606401620000e4565b505050565b8280546200039c906200048d565b90600052602060002090601f016020900481019282620003c057600085556200040b565b82601f10620003db57805160ff19168380011785556200040b565b828001600101855582156200040b579182015b828111156200040b578251825591602001919060010190620003ee565b50620004199291506200041d565b5090565b5b808211156200041957600081556001016200041e565b6000602082840312156200044757600080fd5b81516001600160a01b03811681146200045f57600080fd5b9392505050565b600082198211156200048857634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620004a257607f821691505b60208210811415620004c457634e487b7160e01b600052602260045260246000fd5b50919050565b6121bf80620004da6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80638748d4771161010f578063b16658bb116100a2578063dd62ed3e11610071578063dd62ed3e14610454578063e4cd874f1461049a578063ea38fab0146104a9578063f2fde38b146104df57600080fd5b8063b16658bb14610405578063b42348ac1461040e578063c12e6f161461042e578063d1d58b251461044157600080fd5b806395d89b41116100de57806395d89b41146103c55780639d2cc436146103cd578063a457c2d7146103df578063a9059cbb146103f257600080fd5b80638748d4771461034757806389967d51146103685780638da5cb5b1461037857806393994314146103bc57600080fd5b806339509351116101875780636ba4c138116101565780636ba4c138146102ee57806370a0823114610301578063715018a6146103375780638456cb591461033f57600080fd5b806339509351146102b55780633f4ba83a146102c8578063463b2eee146102d05780635c975abb146102e357600080fd5b806318160ddd116101c357806318160ddd1461027957806323b872dd14610281578063313ce5671461029457806332cb6b0c146102a357600080fd5b80630532bca1146101f557806306fdde031461020a578063095ea7b3146102285780631781bd481461024b575b600080fd5b610208610203366004611bf9565b6104f2565b005b610212610636565b60405161021f9190611c1b565b60405180910390f35b61023b610236366004611c8e565b6106c8565b604051901515815260200161021f565b61026b610259366004611cb8565b60076020526000908152604090205481565b60405190815260200161021f565b60025461026b565b61023b61028f366004611cd1565b6106e6565b6040516012815260200161021f565b61026b6acecb8f27f4200f3a00000081565b61023b6102c3366004611c8e565b61070a565b610208610756565b6102086102de366004611d88565b6107cd565b60055460ff1661023b565b6102086102fc366004611e8b565b610b8e565b61026b61030f366004611bf9565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b610208610ced565b610208610d64565b61035a610355366004611bf9565b610dd9565b60405161021f929190611f08565b61026b6801158e460913d0000081565b600554610100900473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161021f565b61026b6108ad81565b610212610f3b565b61026b6a05909a817a215fedb0000081565b61023b6103ed366004611c8e565b610f4a565b61023b610400366004611c8e565b611001565b61026b6108ae81565b6006546103979073ffffffffffffffffffffffffffffffffffffffff1681565b61026b61043c366004611bf9565b61100f565b61026b61044f366004611cb8565b61107c565b61026b610462366004611f36565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b61026b678ac7230489e8000081565b6103976104b7366004611cb8565b60086020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6102086104ed366004611bf9565b6110fd565b60055473ffffffffffffffffffffffffffffffffffffffff6101009091041633146105645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166105c75760405162461bcd60e51b815260206004820152600c60248201527f496e76616c696420616464720000000000000000000000000000000000000000604482015260640161055b565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f9ee0f407fe781f489d612b2879aea89a7ce73492166d123f0b55ec4295626e4d90600090a250565b60606003805461064590611f69565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611f69565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b5050505050905090565b6000336106d6818585611312565b5060019392505050565b60025490565b6000336106f4858285611491565b6106ff85858561154e565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906106d69082908690610751908790611fe6565b611312565b60055473ffffffffffffffffffffffffffffffffffffffff6101009091041633146107c35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055b565b6107cb6117be565b565b6000848433856040516020016107e69493929190611ffe565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526006548151602083012091925073ffffffffffffffffffffffffffffffffffffffff16906108429084611885565b73ffffffffffffffffffffffffffffffffffffffff16146108a55760405162461bcd60e51b815260206004820152600b60248201527f496e76616c696420736967000000000000000000000000000000000000000000604482015260640161055b565b428311156108f55760405162461bcd60e51b815260206004820152600a60248201527f496e76616c696420747300000000000000000000000000000000000000000000604482015260640161055b565b60005b84811015610b8657336008600088888581811061091757610917612076565b602090810292909201358352508101919091526040016000205473ffffffffffffffffffffffffffffffffffffffff1614156109955760405162461bcd60e51b815260206004820152600660248201527f5374616b65640000000000000000000000000000000000000000000000000000604482015260640161055b565b6109a36108ae6108ad611fe6565b8686838181106109b5576109b5612076565b905060200201351115610a0a5760405162461bcd60e51b815260206004820152601060248201527f496e76616c696420746f6b656e20696400000000000000000000000000000000604482015260640161055b565b8360076000888885818110610a2157610a21612076565b9050602002013581526020019081526020016000205410610a845760405162461bcd60e51b815260206004820152600f60248201527f54696d6520697320612072697665720000000000000000000000000000000000604482015260640161055b565b600060076000888885818110610a9c57610a9c612076565b905060200201358152602001908152602001600020541115610ad957610ad9868683818110610acd57610acd612076565b90506020020135611922565b8360076000888885818110610af057610af0612076565b905060200201358152602001908152602001600020819055503360086000888885818110610b2057610b20612076565b90506020020135815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080610b7e906120a5565b9150506108f8565b505050505050565b60005b81811015610ce8573360086000858585818110610bb057610bb0612076565b602090810292909201358352508101919091526040016000205473ffffffffffffffffffffffffffffffffffffffff1614610c2d5760405162461bcd60e51b815260206004820152600e60248201527f4163636573732064656e6965642e000000000000000000000000000000000000604482015260640161055b565b610c5733610c52858585818110610c4657610c46612076565b9050602002013561107c565b611954565b6201518060076000858585818110610c7157610c71612076565b9050602002013581526020019081526020016000205442610c9291906120de565b610c9c9190612124565b610ca690426120de565b60076000858585818110610cbc57610cbc612076565b905060200201358152602001908152602001600020819055508080610ce0906120a5565b915050610b91565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610d5a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055b565b6107cb60006119cc565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610dd15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055b565b6107cb611a4a565b6060806000610de78461100f565b905060008167ffffffffffffffff811115610e0457610e04611d59565b604051908082528060200260200182016040528015610e2d578160200160208202803683370190505b50905060008267ffffffffffffffff811115610e4b57610e4b611d59565b604051908082528060200260200182016040528015610e74578160200160208202803683370190505b5090506000805b610e896108ae6108ad611fe6565b8111610f2e5760008181526008602052604090205473ffffffffffffffffffffffffffffffffffffffff89811691161415610f1c5780848381518110610ed157610ed1612076565b6020026020010181815250506007600082815260200190815260200160002054838380610efd906120a5565b945081518110610f0f57610f0f612076565b6020026020010181815250505b80610f26816120a5565b915050610e7b565b5091969095509350505050565b60606004805461064590611f69565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610ff45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161055b565b6106ff8286868403611312565b6000336106d681858561154e565b6000805b6110216108ae6108ad611fe6565b81116110765760008181526008602052604090205473ffffffffffffffffffffffffffffffffffffffff848116911614156110645781611060816120a5565b9250505b8061106e816120a5565b915050611013565b50919050565b60008181526007602052604081205461109757506000919050565b60008281526007602052604081205462015180906110b590426120de565b6110bf9190612138565b905060006110cc84611af0565b6110df576801158e460913d000006110e9565b678ac7230489e800005b90506110f5818361214c565b949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff61010090910416331461116a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055b565b73ffffffffffffffffffffffffffffffffffffffff81166111f35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161055b565b6111fc816119cc565b50565b73ffffffffffffffffffffffffffffffffffffffff82166112625760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161055b565b61126e60008383611b0b565b80600260008282546112809190611fe6565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040812080548392906112ba908490611fe6565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b73ffffffffffffffffffffffffffffffffffffffff831661139a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161055b565b73ffffffffffffffffffffffffffffffffffffffff82166114235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161055b565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611548578181101561153b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161055b565b6115488484848403611312565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166115d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161055b565b73ffffffffffffffffffffffffffffffffffffffff82166116605760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161055b565b61166b838383611b0b565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156117075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161055b565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822085850390559185168152908120805484929061174b908490611fe6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117b191815260200190565b60405180910390a3611548565b60055460ff166118105760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640161055b565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b60008060008061189485611b5e565b6040805160008152602081018083528b905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa1580156118ef573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00151979650505050505050565b6000818152600860205260409020546111fc9073ffffffffffffffffffffffffffffffffffffffff16610c528361107c565b6acecb8f27f4200f3a0000008161196a60025490565b6119749190611fe6565b11156119c25760405162461bcd60e51b815260206004820152600a60248201527f4d41585f535550504c5900000000000000000000000000000000000000000000604482015260640161055b565b61130e82826111ff565b6005805473ffffffffffffffffffffffffffffffffffffffff8381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff1615611a9d5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015260640161055b565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861185b3390565b60006108ae8211611b02576000611b05565b60015b92915050565b60055460ff1615610ce85760405162461bcd60e51b815260206004820152600c60248201527f546f6b656e207061757365640000000000000000000000000000000000000000604482015260640161055b565b60008060008351604114611bb45760405162461bcd60e51b815260206004820152600b60248201527f696e76616c696420736967000000000000000000000000000000000000000000604482015260640161055b565b5050506020810151604082015160609092015160001a92909190565b803573ffffffffffffffffffffffffffffffffffffffff81168114611bf457600080fd5b919050565b600060208284031215611c0b57600080fd5b611c1482611bd0565b9392505050565b600060208083528351808285015260005b81811015611c4857858101830151858201604001528201611c2c565b81811115611c5a576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008060408385031215611ca157600080fd5b611caa83611bd0565b946020939093013593505050565b600060208284031215611cca57600080fd5b5035919050565b600080600060608486031215611ce657600080fd5b611cef84611bd0565b9250611cfd60208501611bd0565b9150604084013590509250925092565b60008083601f840112611d1f57600080fd5b50813567ffffffffffffffff811115611d3757600080fd5b6020830191508360208260051b8501011115611d5257600080fd5b9250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060008060608587031215611d9e57600080fd5b843567ffffffffffffffff80821115611db657600080fd5b611dc288838901611d0d565b9096509450602087013593506040870135915080821115611de257600080fd5b818701915087601f830112611df657600080fd5b813581811115611e0857611e08611d59565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715611e4e57611e4e611d59565b816040528281528a6020848701011115611e6757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060208385031215611e9e57600080fd5b823567ffffffffffffffff811115611eb557600080fd5b611ec185828601611d0d565b90969095509350505050565b600081518084526020808501945080840160005b83811015611efd57815187529582019590820190600101611ee1565b509495945050505050565b604081526000611f1b6040830185611ecd565b8281036020840152611f2d8185611ecd565b95945050505050565b60008060408385031215611f4957600080fd5b611f5283611bd0565b9150611f6060208401611bd0565b90509250929050565b600181811c90821680611f7d57607f821691505b60208210811415611076577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115611ff957611ff9611fb7565b500190565b60007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85111561202d57600080fd5b8460051b8087843760609490941b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190930190815260148101919091526034019392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156120d7576120d7611fb7565b5060010190565b6000828210156120f0576120f0611fb7565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612133576121336120f5565b500690565b600082612147576121476120f5565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561218457612184611fb7565b50029056fea264697066735822122075a947008530cea2db5899ef6fb48cdeade585156ca26bc9d98c9632eca7b6c264736f6c63430008090033000000000000000000000000802612b1c3cb78b0e5e12c98ac6d071e0186eb3a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80638748d4771161010f578063b16658bb116100a2578063dd62ed3e11610071578063dd62ed3e14610454578063e4cd874f1461049a578063ea38fab0146104a9578063f2fde38b146104df57600080fd5b8063b16658bb14610405578063b42348ac1461040e578063c12e6f161461042e578063d1d58b251461044157600080fd5b806395d89b41116100de57806395d89b41146103c55780639d2cc436146103cd578063a457c2d7146103df578063a9059cbb146103f257600080fd5b80638748d4771461034757806389967d51146103685780638da5cb5b1461037857806393994314146103bc57600080fd5b806339509351116101875780636ba4c138116101565780636ba4c138146102ee57806370a0823114610301578063715018a6146103375780638456cb591461033f57600080fd5b806339509351146102b55780633f4ba83a146102c8578063463b2eee146102d05780635c975abb146102e357600080fd5b806318160ddd116101c357806318160ddd1461027957806323b872dd14610281578063313ce5671461029457806332cb6b0c146102a357600080fd5b80630532bca1146101f557806306fdde031461020a578063095ea7b3146102285780631781bd481461024b575b600080fd5b610208610203366004611bf9565b6104f2565b005b610212610636565b60405161021f9190611c1b565b60405180910390f35b61023b610236366004611c8e565b6106c8565b604051901515815260200161021f565b61026b610259366004611cb8565b60076020526000908152604090205481565b60405190815260200161021f565b60025461026b565b61023b61028f366004611cd1565b6106e6565b6040516012815260200161021f565b61026b6acecb8f27f4200f3a00000081565b61023b6102c3366004611c8e565b61070a565b610208610756565b6102086102de366004611d88565b6107cd565b60055460ff1661023b565b6102086102fc366004611e8b565b610b8e565b61026b61030f366004611bf9565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b610208610ced565b610208610d64565b61035a610355366004611bf9565b610dd9565b60405161021f929190611f08565b61026b6801158e460913d0000081565b600554610100900473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161021f565b61026b6108ad81565b610212610f3b565b61026b6a05909a817a215fedb0000081565b61023b6103ed366004611c8e565b610f4a565b61023b610400366004611c8e565b611001565b61026b6108ae81565b6006546103979073ffffffffffffffffffffffffffffffffffffffff1681565b61026b61043c366004611bf9565b61100f565b61026b61044f366004611cb8565b61107c565b61026b610462366004611f36565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b61026b678ac7230489e8000081565b6103976104b7366004611cb8565b60086020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6102086104ed366004611bf9565b6110fd565b60055473ffffffffffffffffffffffffffffffffffffffff6101009091041633146105645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166105c75760405162461bcd60e51b815260206004820152600c60248201527f496e76616c696420616464720000000000000000000000000000000000000000604482015260640161055b565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f9ee0f407fe781f489d612b2879aea89a7ce73492166d123f0b55ec4295626e4d90600090a250565b60606003805461064590611f69565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611f69565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b5050505050905090565b6000336106d6818585611312565b5060019392505050565b60025490565b6000336106f4858285611491565b6106ff85858561154e565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906106d69082908690610751908790611fe6565b611312565b60055473ffffffffffffffffffffffffffffffffffffffff6101009091041633146107c35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055b565b6107cb6117be565b565b6000848433856040516020016107e69493929190611ffe565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526006548151602083012091925073ffffffffffffffffffffffffffffffffffffffff16906108429084611885565b73ffffffffffffffffffffffffffffffffffffffff16146108a55760405162461bcd60e51b815260206004820152600b60248201527f496e76616c696420736967000000000000000000000000000000000000000000604482015260640161055b565b428311156108f55760405162461bcd60e51b815260206004820152600a60248201527f496e76616c696420747300000000000000000000000000000000000000000000604482015260640161055b565b60005b84811015610b8657336008600088888581811061091757610917612076565b602090810292909201358352508101919091526040016000205473ffffffffffffffffffffffffffffffffffffffff1614156109955760405162461bcd60e51b815260206004820152600660248201527f5374616b65640000000000000000000000000000000000000000000000000000604482015260640161055b565b6109a36108ae6108ad611fe6565b8686838181106109b5576109b5612076565b905060200201351115610a0a5760405162461bcd60e51b815260206004820152601060248201527f496e76616c696420746f6b656e20696400000000000000000000000000000000604482015260640161055b565b8360076000888885818110610a2157610a21612076565b9050602002013581526020019081526020016000205410610a845760405162461bcd60e51b815260206004820152600f60248201527f54696d6520697320612072697665720000000000000000000000000000000000604482015260640161055b565b600060076000888885818110610a9c57610a9c612076565b905060200201358152602001908152602001600020541115610ad957610ad9868683818110610acd57610acd612076565b90506020020135611922565b8360076000888885818110610af057610af0612076565b905060200201358152602001908152602001600020819055503360086000888885818110610b2057610b20612076565b90506020020135815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080610b7e906120a5565b9150506108f8565b505050505050565b60005b81811015610ce8573360086000858585818110610bb057610bb0612076565b602090810292909201358352508101919091526040016000205473ffffffffffffffffffffffffffffffffffffffff1614610c2d5760405162461bcd60e51b815260206004820152600e60248201527f4163636573732064656e6965642e000000000000000000000000000000000000604482015260640161055b565b610c5733610c52858585818110610c4657610c46612076565b9050602002013561107c565b611954565b6201518060076000858585818110610c7157610c71612076565b9050602002013581526020019081526020016000205442610c9291906120de565b610c9c9190612124565b610ca690426120de565b60076000858585818110610cbc57610cbc612076565b905060200201358152602001908152602001600020819055508080610ce0906120a5565b915050610b91565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610d5a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055b565b6107cb60006119cc565b60055473ffffffffffffffffffffffffffffffffffffffff610100909104163314610dd15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055b565b6107cb611a4a565b6060806000610de78461100f565b905060008167ffffffffffffffff811115610e0457610e04611d59565b604051908082528060200260200182016040528015610e2d578160200160208202803683370190505b50905060008267ffffffffffffffff811115610e4b57610e4b611d59565b604051908082528060200260200182016040528015610e74578160200160208202803683370190505b5090506000805b610e896108ae6108ad611fe6565b8111610f2e5760008181526008602052604090205473ffffffffffffffffffffffffffffffffffffffff89811691161415610f1c5780848381518110610ed157610ed1612076565b6020026020010181815250506007600082815260200190815260200160002054838380610efd906120a5565b945081518110610f0f57610f0f612076565b6020026020010181815250505b80610f26816120a5565b915050610e7b565b5091969095509350505050565b60606004805461064590611f69565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610ff45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161055b565b6106ff8286868403611312565b6000336106d681858561154e565b6000805b6110216108ae6108ad611fe6565b81116110765760008181526008602052604090205473ffffffffffffffffffffffffffffffffffffffff848116911614156110645781611060816120a5565b9250505b8061106e816120a5565b915050611013565b50919050565b60008181526007602052604081205461109757506000919050565b60008281526007602052604081205462015180906110b590426120de565b6110bf9190612138565b905060006110cc84611af0565b6110df576801158e460913d000006110e9565b678ac7230489e800005b90506110f5818361214c565b949350505050565b60055473ffffffffffffffffffffffffffffffffffffffff61010090910416331461116a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161055b565b73ffffffffffffffffffffffffffffffffffffffff81166111f35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161055b565b6111fc816119cc565b50565b73ffffffffffffffffffffffffffffffffffffffff82166112625760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161055b565b61126e60008383611b0b565b80600260008282546112809190611fe6565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040812080548392906112ba908490611fe6565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b73ffffffffffffffffffffffffffffffffffffffff831661139a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161055b565b73ffffffffffffffffffffffffffffffffffffffff82166114235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161055b565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611548578181101561153b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161055b565b6115488484848403611312565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166115d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161055b565b73ffffffffffffffffffffffffffffffffffffffff82166116605760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161055b565b61166b838383611b0b565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156117075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161055b565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526020819052604080822085850390559185168152908120805484929061174b908490611fe6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117b191815260200190565b60405180910390a3611548565b60055460ff166118105760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015260640161055b565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b60008060008061189485611b5e565b6040805160008152602081018083528b905260ff8516918101919091526060810183905260808101829052929550909350915060019060a0016020604051602081039080840390855afa1580156118ef573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00151979650505050505050565b6000818152600860205260409020546111fc9073ffffffffffffffffffffffffffffffffffffffff16610c528361107c565b6acecb8f27f4200f3a0000008161196a60025490565b6119749190611fe6565b11156119c25760405162461bcd60e51b815260206004820152600a60248201527f4d41585f535550504c5900000000000000000000000000000000000000000000604482015260640161055b565b61130e82826111ff565b6005805473ffffffffffffffffffffffffffffffffffffffff8381166101008181027fffffffffffffffffffffff0000000000000000000000000000000000000000ff85161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff1615611a9d5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015260640161055b565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861185b3390565b60006108ae8211611b02576000611b05565b60015b92915050565b60055460ff1615610ce85760405162461bcd60e51b815260206004820152600c60248201527f546f6b656e207061757365640000000000000000000000000000000000000000604482015260640161055b565b60008060008351604114611bb45760405162461bcd60e51b815260206004820152600b60248201527f696e76616c696420736967000000000000000000000000000000000000000000604482015260640161055b565b5050506020810151604082015160609092015160001a92909190565b803573ffffffffffffffffffffffffffffffffffffffff81168114611bf457600080fd5b919050565b600060208284031215611c0b57600080fd5b611c1482611bd0565b9392505050565b600060208083528351808285015260005b81811015611c4857858101830151858201604001528201611c2c565b81811115611c5a576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008060408385031215611ca157600080fd5b611caa83611bd0565b946020939093013593505050565b600060208284031215611cca57600080fd5b5035919050565b600080600060608486031215611ce657600080fd5b611cef84611bd0565b9250611cfd60208501611bd0565b9150604084013590509250925092565b60008083601f840112611d1f57600080fd5b50813567ffffffffffffffff811115611d3757600080fd5b6020830191508360208260051b8501011115611d5257600080fd5b9250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060008060608587031215611d9e57600080fd5b843567ffffffffffffffff80821115611db657600080fd5b611dc288838901611d0d565b9096509450602087013593506040870135915080821115611de257600080fd5b818701915087601f830112611df657600080fd5b813581811115611e0857611e08611d59565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715611e4e57611e4e611d59565b816040528281528a6020848701011115611e6757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060208385031215611e9e57600080fd5b823567ffffffffffffffff811115611eb557600080fd5b611ec185828601611d0d565b90969095509350505050565b600081518084526020808501945080840160005b83811015611efd57815187529582019590820190600101611ee1565b509495945050505050565b604081526000611f1b6040830185611ecd565b8281036020840152611f2d8185611ecd565b95945050505050565b60008060408385031215611f4957600080fd5b611f5283611bd0565b9150611f6060208401611bd0565b90509250929050565b600181811c90821680611f7d57607f821691505b60208210811415611076577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115611ff957611ff9611fb7565b500190565b60007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85111561202d57600080fd5b8460051b8087843760609490941b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190930190815260148101919091526034019392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156120d7576120d7611fb7565b5060010190565b6000828210156120f0576120f0611fb7565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612133576121336120f5565b500690565b600082612147576121476120f5565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561218457612184611fb7565b50029056fea264697066735822122075a947008530cea2db5899ef6fb48cdeade585156ca26bc9d98c9632eca7b6c264736f6c63430008090033

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

000000000000000000000000802612b1c3cb78b0e5e12c98ac6d071e0186eb3a

-----Decoded View---------------
Arg [0] : _authSigner (address): 0x802612B1C3cb78B0E5E12c98aC6D071e0186eb3a

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000802612b1c3cb78b0e5e12c98ac6d071e0186eb3a


Deployed Bytecode Sourcemap

3618:5139:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4739:205;;;;;;:::i;:::-;;:::i;:::-;;2156:98:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4433:197;;;;;;:::i;:::-;;:::i;:::-;;;1491:14:8;;1484:22;1466:41;;1454:2;1439:18;4433:197:2;1326:187:8;4026:45:7;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1849:25:8;;;1837:2;1822:18;4026:45:7;1703:177:8;3244:106:2;3331:12;;3244:106;;5192:286;;;;;;:::i;:::-;;:::i;3093:91::-;;;3175:2;2360:36:8;;2348:2;2333:18;3093:91:2;2218:184:8;3720:52:7;;3757:15;3720:52;;5873:236:2;;;;;;:::i;:::-;;:::i;4668:65:7:-;;;:::i;7102:818::-;;;;;;:::i;:::-;;:::i;1098:84:1:-;1168:7;;;;1098:84;;6237:365:7;;;;;;:::i;:::-;;:::i;3408:125:2:-;;;;;;:::i;:::-;3508:18;;3482:7;3508:18;;;;;;;;;;;;3408:125;1668:101:0;;;:::i;4601:61:7:-;;;:::i;7926:568::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;3778:54::-;;3824:8;3778:54;;1036:85:0;1108:6;;;;;;;1036:85;;;5864:42:8;5852:55;;;5834:74;;5822:2;5807:18;1036:85:0;5688:226:8;3946:41:7;;3983:4;3946:41;;2367:102:2;;;:::i;3667:47:7:-;;3701:13;3667:47;;6596:429:2;;;;;;:::i;:::-;;:::i;3729:189::-;;;;;;:::i;:::-;;:::i;3898:42:7:-;;3936:4;3898:42;;3994:25;;;;;;;;;8500:255;;;;;;:::i;:::-;;:::i;6608:359::-;;;;;;:::i;:::-;;:::i;3976:149:2:-;;;;;;:::i;:::-;4091:18;;;;4065:7;4091:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3976:149;3838:53:7;;3883:8;3838:53;;4077:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;1918:198:0;;;;;;:::i;:::-;;:::i;4739:205:7:-;1108:6:0;;1248:23;1108:6;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6386:2:8;1240:68:0;;;6368:21:8;;;6405:18;;;6398:30;6464:34;6444:18;;;6437:62;6516:18;;1240:68:0;;;;;;;;;4820:25:7::1;::::0;::::1;4812:50;;;::::0;-1:-1:-1;;;4812:50:7;;6747:2:8;4812:50:7::1;::::0;::::1;6729:21:8::0;6786:2;6766:18;;;6759:30;6825:14;6805:18;;;6798:42;6857:18;;4812:50:7::1;6545:336:8::0;4812:50:7::1;4872:10;:24:::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;4911:26:::1;::::0;::::1;::::0;-1:-1:-1;;4911:26:7::1;4739:205:::0;:::o;2156:98:2:-;2210:13;2242:5;2235:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2156:98;:::o;4433:197::-;4516:4;719:10:6;4570:32:2;719:10:6;4586:7:2;4595:6;4570:8;:32::i;:::-;-1:-1:-1;4619:4:2;;4433:197;-1:-1:-1;;;4433:197:2:o;3244:106::-;3331:12;;;3244:106::o;5192:286::-;5319:4;719:10:6;5375:38:2;5391:4;719:10:6;5406:6:2;5375:15;:38::i;:::-;5423:27;5433:4;5439:2;5443:6;5423:9;:27::i;:::-;-1:-1:-1;5467:4:2;;5192:286;-1:-1:-1;;;;5192:286:2:o;5873:236::-;719:10:6;5961:4:2;6040:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;5961:4;;719:10:6;6015:66:2;;719:10:6;;6040:27:2;;:40;;6070:10;;6040:40;:::i;:::-;6015:8;:66::i;4668:65:7:-;1108:6:0;;1248:23;1108:6;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6386:2:8;1240:68:0;;;6368:21:8;;;6405:18;;;6398:30;6464:34;6444:18;;;6437:62;6516:18;;1240:68:0;6184:356:8;1240:68:0;4716:10:7::1;:8;:10::i;:::-;4668:65::o:0;7102:818::-;7225:14;7259:8;;7269:10;7281:2;7242:42;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;7338:10;;7316:12;;7242:42;7316:12;;;7242:42;;-1:-1:-1;7338:10:7;;;7302:32;;7330:3;7302:13;:32::i;:::-;:46;;;7294:70;;;;-1:-1:-1;;;7294:70:7;;8514:2:8;7294:70:7;;;8496:21:8;8553:2;8533:18;;;8526:30;8592:13;8572:18;;;8565:41;8623:18;;7294:70:7;8312:335:8;7294:70:7;7388:15;7382:2;:21;;7374:44;;;;-1:-1:-1;;;7374:44:7;;8854:2:8;7374:44:7;;;8836:21:8;8893:2;8873:18;;;8866:30;8932:12;8912:18;;;8905:40;8962:18;;7374:44:7;8652:334:8;7374:44:7;7434:9;7429:485;7449:19;;;7429:485;;;7520:10;7497:6;:19;7504:8;;7513:1;7504:11;;;;;;;:::i;:::-;;;;;;;;;;7497:19;;-1:-1:-1;7497:19:7;;;;;;;;-1:-1:-1;7497:19:7;;;;:33;;7489:52;;;;-1:-1:-1;;;7489:52:7;;9382:2:8;7489:52:7;;;9364:21:8;9421:1;9401:18;;;9394:29;9459:8;9439:18;;;9432:36;9485:18;;7489:52:7;9180:329:8;7489:52:7;7595:24;3936:4;3983;7595:24;:::i;:::-;7580:8;;7589:1;7580:11;;;;;;;:::i;:::-;;;;;;;:39;;7555:114;;;;-1:-1:-1;;;7555:114:7;;9716:2:8;7555:114:7;;;9698:21:8;9755:2;9735:18;;;9728:30;9794:18;9774;;;9767:46;9830:18;;7555:114:7;9514:340:8;7555:114:7;7717:2;7691:10;:23;7702:8;;7711:1;7702:11;;;;;;;:::i;:::-;;;;;;;7691:23;;;;;;;;;;;;:28;7683:56;;;;-1:-1:-1;;;7683:56:7;;10061:2:8;7683:56:7;;;10043:21:8;10100:2;10080:18;;;10073:30;10139:17;10119:18;;;10112:45;10174:18;;7683:56:7;9859:339:8;7683:56:7;7783:1;7757:10;:23;7768:8;;7777:1;7768:11;;;;;;;:::i;:::-;;;;;;;7757:23;;;;;;;;;;;;:27;7753:62;;;7786:29;7803:8;;7812:1;7803:11;;;;;;;:::i;:::-;;;;;;;7786:16;:29::i;:::-;7855:2;7829:10;:23;7840:8;;7849:1;7840:11;;;;;;;:::i;:::-;;;;;;;7829:23;;;;;;;;;;;:28;;;;7893:10;7871:6;:19;7878:8;;7887:1;7878:11;;;;;;;:::i;:::-;;;;;;;7871:19;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;7470:3;;;;;:::i;:::-;;;;7429:485;;;;7215:705;7102:818;;;;:::o;6237:365::-;6305:9;6300:296;6320:19;;;6300:296;;;6391:10;6368:6;:19;6375:8;;6384:1;6375:11;;;;;;;:::i;:::-;;;;;;;;;;6368:19;;-1:-1:-1;6368:19:7;;;;;;;;-1:-1:-1;6368:19:7;;;;:33;6360:60;;;;-1:-1:-1;;;6360:60:7;;10605:2:8;6360:60:7;;;10587:21:8;10644:2;10624:18;;;10617:30;10683:16;10663:18;;;10656:44;10717:18;;6360:60:7;10403:338:8;6360:60:7;6434:41;6440:10;6452:22;6462:8;;6471:1;6462:11;;;;;;;:::i;:::-;;;;;;;6452:9;:22::i;:::-;6434:5;:41::i;:::-;6579:6;6552:10;:23;6563:8;;6572:1;6563:11;;;;;;;:::i;:::-;;;;;;;6552:23;;;;;;;;;;;;6534:15;:41;;;;:::i;:::-;6533:52;;;;:::i;:::-;6515:70;;:15;:70;:::i;:::-;6489:10;:23;6500:8;;6509:1;6500:11;;;;;;;:::i;:::-;;;;;;;6489:23;;;;;;;;;;;:96;;;;6341:3;;;;;:::i;:::-;;;;6300:296;;;;6237:365;;:::o;1668:101:0:-;1108:6;;1248:23;1108:6;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6386:2:8;1240:68:0;;;6368:21:8;;;6405:18;;;6398:30;6464:34;6444:18;;;6437:62;6516:18;;1240:68:0;6184:356:8;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;4601:61:7:-:0;1108:6:0;;1248:23;1108:6;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6386:2:8;1240:68:0;;;6368:21:8;;;6405:18;;;6398:30;6464:34;6444:18;;;6437:62;6516:18;;1240:68:0;6184:356:8;1240:68:0;4647:8:7::1;:6;:8::i;7926:568::-:0;8015:16;8033;8065:13;8081:25;8099:6;8081:17;:25::i;:::-;8065:41;;8116:23;8156:5;8142:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8142:20:7;;8116:46;;8172:27;8216:5;8202:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8202:20:7;-1:-1:-1;8172:50:7;-1:-1:-1;8232:9:7;;8251:200;8276:24;3936:4;3983;8276:24;:::i;:::-;8271:1;:29;8251:200;;8325:9;;;;:6;:9;;;;;;:19;;;;:9;;:19;8321:120;;;8376:1;8364:6;8371:1;8364:9;;;;;;;;:::i;:::-;;;;;;:13;;;;;8413:10;:13;8424:1;8413:13;;;;;;;;;;;;8395:10;8406:3;;;;;:::i;:::-;;;8395:15;;;;;;;;:::i;:::-;;;;;;:31;;;;;8321:120;8302:3;;;;:::i;:::-;;;;8251:200;;;-1:-1:-1;8468:6:7;;8476:10;;-1:-1:-1;7926:568:7;-1:-1:-1;;;;7926:568:7:o;2367:102:2:-;2423:13;2455:7;2448:14;;;;;:::i;6596:429::-;719:10:6;6689:4:2;6770:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;6689:4;;719:10:6;6815:35:2;;;;6807:85;;;;-1:-1:-1;;;6807:85:2;;11384:2:8;6807:85:2;;;11366:21:8;11423:2;11403:18;;;11396:30;11462:34;11442:18;;;11435:62;11533:7;11513:18;;;11506:35;11558:19;;6807:85:2;11182:401:8;6807:85:2;6926:60;6935:5;6942:7;6970:15;6951:16;:34;6926:8;:60::i;3729:189::-;3808:4;719:10:6;3862:28:2;719:10:6;3879:2:2;3883:6;3862:9;:28::i;8500:255:7:-;8588:13;8641:9;8636:113;8661:24;3936:4;3983;8661:24;:::i;:::-;8656:1;:29;8636:113;;8710:9;;;;:6;:9;;;;;;:19;;;;:9;;:19;8706:32;;;8731:7;;;;:::i;:::-;;;;8706:32;8687:3;;;;:::i;:::-;;;;8636:113;;;;8500:255;;;:::o;6608:359::-;6665:11;6692:19;;;:10;:19;;;;;;6688:38;;-1:-1:-1;6725:1:7;;6608:359;-1:-1:-1;6608:359:7:o;6688:38::-;6736:18;6776:19;;;:10;:19;;;;;;6799:6;;6758:37;;:15;:37;:::i;:::-;6757:48;;;;:::i;:::-;6736:69;;6815:19;6837:16;6845:7;6837;:16::i;:::-;:83;;3824:8;6837:83;;;3883:8;6837:83;6815:105;-1:-1:-1;6936:24:7;6815:105;6936:10;:24;:::i;:::-;6930:30;6608:359;-1:-1:-1;;;;6608:359:7:o;1918:198:0:-;1108:6;;1248:23;1108:6;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;6386:2:8;1240:68:0;;;6368:21:8;;;6405:18;;;6398:30;6464:34;6444:18;;;6437:62;6516:18;;1240:68:0;6184:356:8;1240:68:0;2006:22:::1;::::0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;12148:2:8;1998:73:0::1;::::0;::::1;12130:21:8::0;12187:2;12167:18;;;12160:30;12226:34;12206:18;;;12199:62;12297:8;12277:18;;;12270:36;12323:19;;1998:73:0::1;11946:402:8::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;8415:389:2:-;8498:21;;;8490:65;;;;-1:-1:-1;;;8490:65:2;;12555:2:8;8490:65:2;;;12537:21:8;12594:2;12574:18;;;12567:30;12633:33;12613:18;;;12606:61;12684:18;;8490:65:2;12353:355:8;8490:65:2;8566:49;8595:1;8599:7;8608:6;8566:20;:49::i;:::-;8642:6;8626:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;8658:18:2;;;:9;:18;;;;;;;;;;:28;;8680:6;;8658:9;:28;;8680:6;;8658:28;:::i;:::-;;;;-1:-1:-1;;8701:37:2;;1849:25:8;;;8701:37:2;;;;8718:1;;8701:37;;1837:2:8;1822:18;8701:37:2;;;;;;;8749:48;8415:389;;:::o;10123:370::-;10254:19;;;10246:68;;;;-1:-1:-1;;;10246:68:2;;12915:2:8;10246:68:2;;;12897:21:8;12954:2;12934:18;;;12927:30;12993:34;12973:18;;;12966:62;13064:6;13044:18;;;13037:34;13088:19;;10246:68:2;12713:400:8;10246:68:2;10332:21;;;10324:68;;;;-1:-1:-1;;;10324:68:2;;13320:2:8;10324:68:2;;;13302:21:8;13359:2;13339:18;;;13332:30;13398:34;13378:18;;;13371:62;13469:4;13449:18;;;13442:32;13491:19;;10324:68:2;13118:398:8;10324:68:2;10403:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10454:32;;1849:25:8;;;10454:32:2;;1822:18:8;10454:32:2;;;;;;;10123:370;;;:::o;10770:441::-;4091:18;;;;10900:24;4091:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;10986:17;10966:37;;10962:243;;11047:6;11027:16;:26;;11019:68;;;;-1:-1:-1;;;11019:68:2;;13723:2:8;11019:68:2;;;13705:21:8;13762:2;13742:18;;;13735:30;13801:31;13781:18;;;13774:59;13850:18;;11019:68:2;13521:353:8;11019:68:2;11129:51;11138:5;11145:7;11173:6;11154:16;:25;11129:8;:51::i;:::-;10890:321;10770:441;;;:::o;7488:651::-;7614:18;;;7606:68;;;;-1:-1:-1;;;7606:68:2;;14081:2:8;7606:68:2;;;14063:21:8;14120:2;14100:18;;;14093:30;14159:34;14139:18;;;14132:62;14230:7;14210:18;;;14203:35;14255:19;;7606:68:2;13879:401:8;7606:68:2;7692:16;;;7684:64;;;;-1:-1:-1;;;7684:64:2;;14487:2:8;7684:64:2;;;14469:21:8;14526:2;14506:18;;;14499:30;14565:34;14545:18;;;14538:62;14636:5;14616:18;;;14609:33;14659:19;;7684:64:2;14285:399:8;7684:64:2;7759:38;7780:4;7786:2;7790:6;7759:20;:38::i;:::-;7830:15;;;7808:19;7830:15;;;;;;;;;;;7863:21;;;;7855:72;;;;-1:-1:-1;;;7855:72:2;;14891:2:8;7855:72:2;;;14873:21:8;14930:2;14910:18;;;14903:30;14969:34;14949:18;;;14942:62;15040:8;15020:18;;;15013:36;15066:19;;7855:72:2;14689:402:8;7855:72:2;7961:15;;;;:9;:15;;;;;;;;;;;7979:20;;;7961:38;;8019:13;;;;;;;;:23;;7993:6;;7961:9;8019:23;;7993:6;;8019:23;:::i;:::-;;;;;;;;8073:2;8058:26;;8067:4;8058:26;;;8077:6;8058:26;;;;1849:25:8;;1837:2;1822:18;;1703:177;8058:26:2;;;;;;;;8095:37;6237:365:7;2110:117:1;1168:7;;;;1669:41;;;;-1:-1:-1;;;1669:41:1;;15298:2:8;1669:41:1;;;15280:21:8;15337:2;15317:18;;;15310:30;15376:22;15356:18;;;15349:50;15416:18;;1669:41:1;15096:344:8;1669:41:1;2168:7:::1;:15:::0;;;::::1;::::0;;2198:22:::1;719:10:6::0;2207:12:1::1;2198:22;::::0;5864:42:8;5852:55;;;5834:74;;5822:2;5807:18;2198:22:1::1;;;;;;;2110:117::o:0;5849:266:7:-;5954:7;5977;5994:9;6013;6045:19;6060:3;6045:14;:19::i;:::-;6081:27;;;;;;;;;;;;15672:25:8;;;15745:4;15733:17;;15713:18;;;15706:45;;;;15767:18;;;15760:34;;;15810:18;;;15803:34;;;6033:31:7;;-1:-1:-1;6033:31:7;;-1:-1:-1;6033:31:7;-1:-1:-1;6081:27:7;;15644:19:8;;6081:27:7;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6081:27:7;;;;;;5849:266;-1:-1:-1;;;;;;;5849:266:7:o;6121:110::-;6188:15;;;;:6;:15;;;;;;6182:42;;6188:15;;6205:18;6195:7;6205:9;:18::i;5189:194::-;3757:15;5303:6;5281:19;3331:12:2;;;3244:106;5281:19:7;:28;;;;:::i;:::-;:42;;5273:65;;;;-1:-1:-1;;;5273:65:7;;16050:2:8;5273:65:7;;;16032:21:8;16089:2;16069:18;;;16062:30;16128:12;16108:18;;;16101:40;16158:18;;5273:65:7;15848:334:8;5273:65:7;5348:28;5360:7;5369:6;5348:11;:28::i;2270:187:0:-;2362:6;;;;2378:17;;;2362:6;2378:17;;;;;;;;;;2410:40;;2362:6;;;;;;;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;1863:115:1:-;1168:7;;;;1411:9;1403:38;;;;-1:-1:-1;;;1403:38:1;;16389:2:8;1403:38:1;;;16371:21:8;16428:2;16408:18;;;16401:30;16467:18;16447;;;16440:46;16503:18;;1403:38:1;16187:340:8;1403:38:1;1922:7:::1;:14:::0;;;::::1;1932:4;1922:14;::::0;;1951:20:::1;1958:12;719:10:6::0;;640:96;6973:123:7;7030:4;3936;7053:7;:21;:36;;7084:5;7053:36;;;7077:4;7053:36;7046:43;6973:123;-1:-1:-1;;6973:123:7:o;4950:233::-;1168:7:1;;;;5150:9:7;5142:34;;;;-1:-1:-1;;;5142:34:7;;16734:2:8;5142:34:7;;;16716:21:8;16773:2;16753:18;;;16746:30;16812:14;16792:18;;;16785:42;16844:18;;5142:34:7;16532:336:8;5389:454:7;5491:5;5510:7;5531;5571:3;:10;5585:2;5571:16;5563:40;;;;-1:-1:-1;;;5563:40:7;;17075:2:8;5563:40:7;;;17057:21:8;17114:2;17094:18;;;17087:30;17153:13;17133:18;;;17126:41;17184:18;;5563:40:7;16873:335:8;5563:40:7;-1:-1:-1;;;5713:2:7;5704:12;;5698:19;5750:2;5741:12;;5735:19;5795:2;5786:12;;;5780:19;5614:9;5772:28;;5698:19;;5735;5389:454::o;14:196:8:-;82:20;;142:42;131:54;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;:::-;356:39;215:186;-1:-1:-1;;;215:186:8:o;406:656::-;518:4;547:2;576;565:9;558:21;608:6;602:13;651:6;646:2;635:9;631:18;624:34;676:1;686:140;700:6;697:1;694:13;686:140;;;795:14;;;791:23;;785:30;761:17;;;780:2;757:26;750:66;715:10;;686:140;;;844:6;841:1;838:13;835:91;;;914:1;909:2;900:6;889:9;885:22;881:31;874:42;835:91;-1:-1:-1;978:2:8;966:15;983:66;962:88;947:104;;;;1053:2;943:113;;406:656;-1:-1:-1;;;406:656:8:o;1067:254::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1235:29;1254:9;1235:29;:::i;:::-;1225:39;1311:2;1296:18;;;;1283:32;;-1:-1:-1;;;1067:254:8:o;1518:180::-;1577:6;1630:2;1618:9;1609:7;1605:23;1601:32;1598:52;;;1646:1;1643;1636:12;1598:52;-1:-1:-1;1669:23:8;;1518:180;-1:-1:-1;1518:180:8:o;1885:328::-;1962:6;1970;1978;2031:2;2019:9;2010:7;2006:23;2002:32;1999:52;;;2047:1;2044;2037:12;1999:52;2070:29;2089:9;2070:29;:::i;:::-;2060:39;;2118:38;2152:2;2141:9;2137:18;2118:38;:::i;:::-;2108:48;;2203:2;2192:9;2188:18;2175:32;2165:42;;1885:328;;;;;:::o;2407:367::-;2470:8;2480:6;2534:3;2527:4;2519:6;2515:17;2511:27;2501:55;;2552:1;2549;2542:12;2501:55;-1:-1:-1;2575:20:8;;2618:18;2607:30;;2604:50;;;2650:1;2647;2640:12;2604:50;2687:4;2679:6;2675:17;2663:29;;2747:3;2740:4;2730:6;2727:1;2723:14;2715:6;2711:27;2707:38;2704:47;2701:67;;;2764:1;2761;2754:12;2701:67;2407:367;;;;;:::o;2779:184::-;2831:77;2828:1;2821:88;2928:4;2925:1;2918:15;2952:4;2949:1;2942:15;2968:1363;3081:6;3089;3097;3105;3158:2;3146:9;3137:7;3133:23;3129:32;3126:52;;;3174:1;3171;3164:12;3126:52;3214:9;3201:23;3243:18;3284:2;3276:6;3273:14;3270:34;;;3300:1;3297;3290:12;3270:34;3339:70;3401:7;3392:6;3381:9;3377:22;3339:70;:::i;:::-;3428:8;;-1:-1:-1;3313:96:8;-1:-1:-1;3510:2:8;3495:18;;3482:32;;-1:-1:-1;3567:2:8;3552:18;;3539:32;;-1:-1:-1;3583:16:8;;;3580:36;;;3612:1;3609;3602:12;3580:36;3650:8;3639:9;3635:24;3625:34;;3697:7;3690:4;3686:2;3682:13;3678:27;3668:55;;3719:1;3716;3709:12;3668:55;3755:2;3742:16;3777:2;3773;3770:10;3767:36;;;3783:18;;:::i;:::-;3917:2;3911:9;3979:4;3971:13;;3822:66;3967:22;;;3991:2;3963:31;3959:40;3947:53;;;4015:18;;;4035:22;;;4012:46;4009:72;;;4061:18;;:::i;:::-;4101:10;4097:2;4090:22;4136:2;4128:6;4121:18;4176:7;4171:2;4166;4162;4158:11;4154:20;4151:33;4148:53;;;4197:1;4194;4187:12;4148:53;4253:2;4248;4244;4240:11;4235:2;4227:6;4223:15;4210:46;4298:1;4293:2;4288;4280:6;4276:15;4272:24;4265:35;4319:6;4309:16;;;;;;;2968:1363;;;;;;;:::o;4336:437::-;4422:6;4430;4483:2;4471:9;4462:7;4458:23;4454:32;4451:52;;;4499:1;4496;4489:12;4451:52;4539:9;4526:23;4572:18;4564:6;4561:30;4558:50;;;4604:1;4601;4594:12;4558:50;4643:70;4705:7;4696:6;4685:9;4681:22;4643:70;:::i;:::-;4732:8;;4617:96;;-1:-1:-1;4336:437:8;-1:-1:-1;;;;4336:437:8:o;4778:435::-;4831:3;4869:5;4863:12;4896:6;4891:3;4884:19;4922:4;4951:2;4946:3;4942:12;4935:19;;4988:2;4981:5;4977:14;5009:1;5019:169;5033:6;5030:1;5027:13;5019:169;;;5094:13;;5082:26;;5128:12;;;;5163:15;;;;5055:1;5048:9;5019:169;;;-1:-1:-1;5204:3:8;;4778:435;-1:-1:-1;;;;;4778:435:8:o;5218:465::-;5475:2;5464:9;5457:21;5438:4;5501:56;5553:2;5542:9;5538:18;5530:6;5501:56;:::i;:::-;5605:9;5597:6;5593:22;5588:2;5577:9;5573:18;5566:50;5633:44;5670:6;5662;5633:44;:::i;:::-;5625:52;5218:465;-1:-1:-1;;;;;5218:465:8:o;5919:260::-;5987:6;5995;6048:2;6036:9;6027:7;6023:23;6019:32;6016:52;;;6064:1;6061;6054:12;6016:52;6087:29;6106:9;6087:29;:::i;:::-;6077:39;;6135:38;6169:2;6158:9;6154:18;6135:38;:::i;:::-;6125:48;;5919:260;;;;;:::o;6886:437::-;6965:1;6961:12;;;;7008;;;7029:61;;7083:4;7075:6;7071:17;7061:27;;7029:61;7136:2;7128:6;7125:14;7105:18;7102:38;7099:218;;;7173:77;7170:1;7163:88;7274:4;7271:1;7264:15;7302:4;7299:1;7292:15;7328:184;7380:77;7377:1;7370:88;7477:4;7474:1;7467:15;7501:4;7498:1;7491:15;7517:128;7557:3;7588:1;7584:6;7581:1;7578:13;7575:39;;;7594:18;;:::i;:::-;-1:-1:-1;7630:9:8;;7517:128::o;7650:657::-;7877:3;7909:66;7901:6;7898:78;7895:98;;;7989:1;7986;7979:12;7895:98;8023:6;8020:1;8016:14;8065:6;8057;8052:3;8039:33;8157:2;8153:15;;;;8170:66;8149:88;8091:16;;;;8138:100;;;8262:2;8254:11;;8247:27;;;;8298:2;8290:11;;7650:657;-1:-1:-1;;;7650:657:8:o;8991:184::-;9043:77;9040:1;9033:88;9140:4;9137:1;9130:15;9164:4;9161:1;9154:15;10203:195;10242:3;10273:66;10266:5;10263:77;10260:103;;;10343:18;;:::i;:::-;-1:-1:-1;10390:1:8;10379:13;;10203:195::o;10746:125::-;10786:4;10814:1;10811;10808:8;10805:34;;;10819:18;;:::i;:::-;-1:-1:-1;10856:9:8;;10746:125::o;10876:184::-;10928:77;10925:1;10918:88;11025:4;11022:1;11015:15;11049:4;11046:1;11039:15;11065:112;11097:1;11123;11113:35;;11128:18;;:::i;:::-;-1:-1:-1;11162:9:8;;11065:112::o;11588:120::-;11628:1;11654;11644:35;;11659:18;;:::i;:::-;-1:-1:-1;11693:9:8;;11588:120::o;11713:228::-;11753:7;11879:1;11811:66;11807:74;11804:1;11801:81;11796:1;11789:9;11782:17;11778:105;11775:131;;;11886:18;;:::i;:::-;-1:-1:-1;11926:9:8;;11713:228::o

Swarm Source

ipfs://75a947008530cea2db5899ef6fb48cdeade585156ca26bc9d98c9632eca7b6c2
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.