ETH Price: $3,448.98 (-0.01%)
Gas: 6 Gwei

Token

Troverse Galaxy Bucks (G-Bucks)
 

Overview

Max Total Supply

148,918,171.339259259259259023 G-Bucks

Holders

425 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
risheng.eth
Balance
36,278.555588139216918959 G-Bucks

Value
$0.00
0xbfbaecbc4266e8fcc52c6d1ef5e987932dccbc5f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Troverse is a galactic metaverse of Play-and-Earn game where players can own, explore, collect, trade, compete and earn in a massive open-world treasure-hunting game, set in a galaxy of 10,000 procedurally generated planets.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TroverseGalaxyBucks

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : TroverseGalaxyBucks.sol
// contracts/TroverseGalaxyBucks.sol
// SPDX-License-Identifier: MIT

// ████████╗██████╗  ██████╗ ██╗   ██╗███████╗██████╗ ███████╗███████╗    
// ╚══██╔══╝██╔══██╗██╔═══██╗██║   ██║██╔════╝██╔══██╗██╔════╝██╔════╝    
//    ██║   ██████╔╝██║   ██║██║   ██║█████╗  ██████╔╝███████╗█████╗      
//    ██║   ██╔══██╗██║   ██║╚██╗ ██╔╝██╔══╝  ██╔══██╗╚════██║██╔══╝      
//    ██║   ██║  ██║╚██████╔╝ ╚████╔╝ ███████╗██║  ██║███████║███████╗    
//    ╚═╝   ╚═╝  ╚═╝ ╚═════╝   ╚═══╝  ╚══════╝╚═╝  ╚═╝╚══════╝╚══════╝    

pragma solidity ^0.8.0;

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


interface IRootChainManager {
    function depositFor(address user, address rootToken, bytes calldata depositData) external;
}


contract TroverseGalaxyBucks is ERC20, Ownable {
    mapping(address => bool) public operators;
    address public manager;

    address public erc20PredicateProxy;
    address public erc20Polygon;
    address public erc20PolygonManager;

    IRootChainManager public rootChainManager;

    event OperatorStateChanged(address _operator, bool _state);
    event ManagerChanged(address _manager);
    event RefilledPolygonToken(uint256 _amount);

    event UpdatedErc20PredicateProxy(address _newErc20PredicateProxy);
    event UpdatedRootChainManager(address _newRootChainManager);
    event UpdatedErc20PolygonManager(address _erc20PolygonManager);
    event UpdatedErc20Polygon(address _erc20Polygon);


    constructor() ERC20("Troverse Galaxy Bucks", "G-Bucks") { }


    modifier onlyOperator() {
        require(operators[_msgSender()], "The caller is not an operator");
        _;
    }

    function updateOperatorState(address _operator, bool _state) external onlyOwner {
        require(_operator != address(0), "Bad Operator address");
        operators[_operator] = _state;

        emit OperatorStateChanged(_operator, _state);
    }

    function updateManager(address _manager) external onlyOwner {
        operators[manager] = false;

        if (_manager != address(0)) {
            operators[_manager] = true;

            emit OperatorStateChanged(_manager, true);
        }

        manager = _manager;
        
        emit ManagerChanged(_manager);
    }

    function mint(address _to, uint256 _amount) external onlyOperator {
        _mint(_to, _amount);
    }

    function burn(address _from, uint256 _amount) external onlyOperator {
        _burn(_from, _amount);
    }

    function refillPolygonToken(uint256 _amount) external onlyOwner {
        _mint(address(this), _amount);
        _approve(address(this), erc20PredicateProxy, _amount);
        rootChainManager.depositFor(
            erc20PolygonManager,
            erc20Polygon,
            abi.encode(_amount)
        );

        emit RefilledPolygonToken(_amount);
    }

    function updateErc20PredicateProxy(address _newErc20PredicateProxy) external onlyOwner {
        require(_newErc20PredicateProxy != address(0), "Bad Erc20PredicateProxy address");
        erc20PredicateProxy = _newErc20PredicateProxy;
        
        emit UpdatedErc20PredicateProxy(_newErc20PredicateProxy);
    }

    function updateRootChainManager(address _newRootChainManager) external onlyOwner {
        require(_newRootChainManager != address(0), "Bad RootChainManager address");
        rootChainManager = IRootChainManager(_newRootChainManager);
        
        emit UpdatedRootChainManager(_newRootChainManager);
    }

    function updateErc20PolygonManager(address _erc20PolygonManager) external onlyOwner {
        require(_erc20PolygonManager != address(0), "Bad ERC20PolygonManager address");
        erc20PolygonManager = _erc20PolygonManager;

        emit UpdatedErc20PolygonManager(_erc20PolygonManager);
    }

    function updateErc20Polygon(address _erc20Polygon) external onlyOwner {
        require(_erc20Polygon != address(0), "Bad ERC20Polygon address");
        erc20Polygon = _erc20Polygon;

        emit UpdatedErc20Polygon(_erc20Polygon);
    }
}

File 2 of 6 : 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 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 6 : 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 5 of 6 : 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 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"address","name":"_manager","type":"address"}],"name":"ManagerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"OperatorStateChanged","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":"uint256","name":"_amount","type":"uint256"}],"name":"RefilledPolygonToken","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":"_erc20Polygon","type":"address"}],"name":"UpdatedErc20Polygon","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_erc20PolygonManager","type":"address"}],"name":"UpdatedErc20PolygonManager","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_newErc20PredicateProxy","type":"address"}],"name":"UpdatedErc20PredicateProxy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_newRootChainManager","type":"address"}],"name":"UpdatedRootChainManager","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"erc20Polygon","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"erc20PolygonManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"erc20PredicateProxy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"operators","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"refillPolygonToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rootChainManager","outputs":[{"internalType":"contract IRootChainManager","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":[{"internalType":"address","name":"_erc20Polygon","type":"address"}],"name":"updateErc20Polygon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20PolygonManager","type":"address"}],"name":"updateErc20PolygonManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newErc20PredicateProxy","type":"address"}],"name":"updateErc20PredicateProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"updateManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"updateOperatorState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newRootChainManager","type":"address"}],"name":"updateRootChainManager","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601581526020017f54726f76657273652047616c617879204275636b7300000000000000000000008152506040518060400160405280600781526020017f472d4275636b7300000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001a6565b508060049080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61308d80620002cb6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80634c1a207c116101045780639dc29fac116100a2578063cbaae55811610071578063cbaae5581461051e578063cdda54cf1461053a578063dd62ed3e14610556578063f2fde38b14610586576101cf565b80639dc29fac14610484578063a457c2d7146104a0578063a9059cbb146104d0578063bd07018d14610500576101cf565b8063715018a6116100de578063715018a61461042057806381c508d11461042a5780638da5cb5b1461044857806395d89b4114610466576101cf565b80634c1a207c146103b857806358aba00f146103d457806370a08231146103f0576101cf565b806323b872dd11610171578063395093511161014b578063395093511461033257806339f382b61461036257806340c10f191461037e578063481c6a751461039a576101cf565b806323b872dd146102c8578063313ce567146102f857806338d6a91f14610316576101cf565b80630cfc1c33116101ad5780630cfc1c331461024057806313e7c9d81461025e57806317d375441461028e57806318160ddd146102aa576101cf565b806306fdde03146101d45780630850fce8146101f2578063095ea7b314610210575b600080fd5b6101dc6105a2565b6040516101e9919061272e565b60405180910390f35b6101fa610634565b6040516102079190612676565b60405180910390f35b61022a600480360381019061022591906122d6565b61065a565b60405161023791906126f8565b60405180910390f35b61024861067d565b6040516102559190612676565b60405180910390f35b610278600480360381019061027391906121d6565b6106a3565b60405161028591906126f8565b60405180910390f35b6102a860048036038101906102a39190612296565b6106c3565b005b6102b2610843565b6040516102bf9190612990565b60405180910390f35b6102e260048036038101906102dd9190612243565b61084d565b6040516102ef91906126f8565b60405180910390f35b61030061087c565b60405161030d91906129ab565b60405180910390f35b610330600480360381019061032b91906121d6565b610885565b005b61034c600480360381019061034791906122d6565b6109ec565b60405161035991906126f8565b60405180910390f35b61037c60048036038101906103779190612316565b610a96565b005b610398600480360381019061039391906122d6565b610c77565b005b6103a2610d18565b6040516103af9190612676565b60405180910390f35b6103d260048036038101906103cd91906121d6565b610d3e565b005b6103ee60048036038101906103e991906121d6565b610ea5565b005b61040a600480360381019061040591906121d6565b6110dd565b6040516104179190612990565b60405180910390f35b610428611125565b005b6104326111ad565b60405161043f9190612676565b60405180910390f35b6104506111d3565b60405161045d9190612676565b60405180910390f35b61046e6111fd565b60405161047b919061272e565b60405180910390f35b61049e600480360381019061049991906122d6565b61128f565b005b6104ba60048036038101906104b591906122d6565b611330565b6040516104c791906126f8565b60405180910390f35b6104ea60048036038101906104e591906122d6565b61141a565b6040516104f791906126f8565b60405180910390f35b61050861143d565b6040516105159190612713565b60405180910390f35b610538600480360381019061053391906121d6565b611463565b005b610554600480360381019061054f91906121d6565b6115ca565b005b610570600480360381019061056b9190612203565b611731565b60405161057d9190612990565b60405180910390f35b6105a0600480360381019061059b91906121d6565b6117b8565b005b6060600380546105b190612b34565b80601f01602080910402602001604051908101604052809291908181526020018280546105dd90612b34565b801561062a5780601f106105ff5761010080835404028352916020019161062a565b820191906000526020600020905b81548152906001019060200180831161060d57829003601f168201915b5050505050905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806106656118b0565b90506106728185856118b8565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60066020528060005260406000206000915054906101000a900460ff1681565b6106cb6118b0565b73ffffffffffffffffffffffffffffffffffffffff166106e96111d3565b73ffffffffffffffffffffffffffffffffffffffff161461073f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073690612890565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a690612850565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fae50a16e921cc359c9548003899f106e8dabdbd1f268c0b7ae8bd10e4ca56a7f82826040516108379291906126cf565b60405180910390a15050565b6000600254905090565b6000806108586118b0565b9050610865858285611a83565b610870858585611b0f565b60019150509392505050565b60006012905090565b61088d6118b0565b73ffffffffffffffffffffffffffffffffffffffff166108ab6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f890612890565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096890612870565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f0cfa2e3d599e8f12211005201d3035673b916eb311975b6bfa9945bb805fc26d816040516109e19190612676565b60405180910390a150565b6000806109f76118b0565b9050610a8b818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a8691906129fe565b6118b8565b600191505092915050565b610a9e6118b0565b73ffffffffffffffffffffffffffffffffffffffff16610abc6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990612890565b60405180910390fd5b610b1c3082611d90565b610b4930600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836118b8565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e3dec8fb600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684604051602001610bde9190612990565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401610c0b93929190612691565b600060405180830381600087803b158015610c2557600080fd5b505af1158015610c39573d6000803e3d6000fd5b505050507fb65b2cda582cfcde246e250f0ba8205f9e6a04eeed82d2e612a1ee88c6ce6fee81604051610c6c9190612990565b60405180910390a150565b60066000610c836118b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190612830565b60405180910390fd5b610d148282611d90565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d466118b0565b73ffffffffffffffffffffffffffffffffffffffff16610d646111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190612890565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190612910565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ff60b4c293d92adf41ba82b69331f134664cdf9a262dbc96bc70c9bf7dd61f78781604051610e9a9190612676565b60405180910390a150565b610ead6118b0565b73ffffffffffffffffffffffffffffffffffffffff16610ecb6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890612890565b60405180910390fd5b600060066000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611062576001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fae50a16e921cc359c9548003899f106e8dabdbd1f268c0b7ae8bd10e4ca56a7f8160016040516110599291906126cf565b60405180910390a15b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f198db6e425fb8aafd1823c6ca50be2d51e5764571a5ae0f0f21c6812e45def0b816040516110d29190612676565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61112d6118b0565b73ffffffffffffffffffffffffffffffffffffffff1661114b6111d3565b73ffffffffffffffffffffffffffffffffffffffff16146111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890612890565b60405180910390fd5b6111ab6000611ef0565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461120c90612b34565b80601f016020809104026020016040519081016040528092919081815260200182805461123890612b34565b80156112855780601f1061125a57610100808354040283529160200191611285565b820191906000526020600020905b81548152906001019060200180831161126857829003601f168201915b5050505050905090565b6006600061129b6118b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990612830565b60405180910390fd5b61132c8282611fb6565b5050565b60008061133b6118b0565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890612950565b60405180910390fd5b61140e82868684036118b8565b60019250505092915050565b6000806114256118b0565b9050611432818585611b0f565b600191505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61146b6118b0565b73ffffffffffffffffffffffffffffffffffffffff166114896111d3565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690612890565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561154f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154690612930565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f402edb92d371388a1119f9b597378f2cf8eb3c56cd90353930eb1c1fb77e8fa4816040516115bf9190612676565b60405180910390a150565b6115d26118b0565b73ffffffffffffffffffffffffffffffffffffffff166115f06111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d90612890565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad906127d0565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa2594f7548b836127f93ae33a265916e5091a062e468e9505fd1092a1f144595816040516117269190612676565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6117c06118b0565b73ffffffffffffffffffffffffffffffffffffffff166117de6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90612890565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90612790565b60405180910390fd5b6118ad81611ef0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f906128f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f906127b0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a769190612990565b60405180910390a3505050565b6000611a8f8484611731565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b095781811015611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af2906127f0565b60405180910390fd5b611b0884848484036118b8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b76906128d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be690612750565b60405180910390fd5b611bfa83838361218d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7790612810565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d1391906129fe565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d779190612990565b60405180910390a3611d8a848484612192565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df790612970565b60405180910390fd5b611e0c6000838361218d565b8060026000828254611e1e91906129fe565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e7391906129fe565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ed89190612990565b60405180910390a3611eec60008383612192565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d906128b0565b60405180910390fd5b6120328260008361218d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120af90612770565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461210f9190612a54565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121749190612990565b60405180910390a361218883600084612192565b505050565b505050565b505050565b6000813590506121a681613012565b92915050565b6000813590506121bb81613029565b92915050565b6000813590506121d081613040565b92915050565b6000602082840312156121ec576121eb612bc4565b5b60006121fa84828501612197565b91505092915050565b6000806040838503121561221a57612219612bc4565b5b600061222885828601612197565b925050602061223985828601612197565b9150509250929050565b60008060006060848603121561225c5761225b612bc4565b5b600061226a86828701612197565b935050602061227b86828701612197565b925050604061228c868287016121c1565b9150509250925092565b600080604083850312156122ad576122ac612bc4565b5b60006122bb85828601612197565b92505060206122cc858286016121ac565b9150509250929050565b600080604083850312156122ed576122ec612bc4565b5b60006122fb85828601612197565b925050602061230c858286016121c1565b9150509250929050565b60006020828403121561232c5761232b612bc4565b5b600061233a848285016121c1565b91505092915050565b61234c81612a88565b82525050565b61235b81612a9a565b82525050565b600061236c826129c6565b61237681856129dc565b9350612386818560208601612b01565b61238f81612bc9565b840191505092915050565b6123a381612add565b82525050565b60006123b4826129d1565b6123be81856129ed565b93506123ce818560208601612b01565b6123d781612bc9565b840191505092915050565b60006123ef6023836129ed565b91506123fa82612bda565b604082019050919050565b60006124126022836129ed565b915061241d82612c29565b604082019050919050565b60006124356026836129ed565b915061244082612c78565b604082019050919050565b60006124586022836129ed565b915061246382612cc7565b604082019050919050565b600061247b6018836129ed565b915061248682612d16565b602082019050919050565b600061249e601d836129ed565b91506124a982612d3f565b602082019050919050565b60006124c16026836129ed565b91506124cc82612d68565b604082019050919050565b60006124e4601d836129ed565b91506124ef82612db7565b602082019050919050565b60006125076014836129ed565b915061251282612de0565b602082019050919050565b600061252a601f836129ed565b915061253582612e09565b602082019050919050565b600061254d6020836129ed565b915061255882612e32565b602082019050919050565b60006125706021836129ed565b915061257b82612e5b565b604082019050919050565b60006125936025836129ed565b915061259e82612eaa565b604082019050919050565b60006125b66024836129ed565b91506125c182612ef9565b604082019050919050565b60006125d9601f836129ed565b91506125e482612f48565b602082019050919050565b60006125fc601c836129ed565b915061260782612f71565b602082019050919050565b600061261f6025836129ed565b915061262a82612f9a565b604082019050919050565b6000612642601f836129ed565b915061264d82612fe9565b602082019050919050565b61266181612ac6565b82525050565b61267081612ad0565b82525050565b600060208201905061268b6000830184612343565b92915050565b60006060820190506126a66000830186612343565b6126b36020830185612343565b81810360408301526126c58184612361565b9050949350505050565b60006040820190506126e46000830185612343565b6126f16020830184612352565b9392505050565b600060208201905061270d6000830184612352565b92915050565b6000602082019050612728600083018461239a565b92915050565b6000602082019050818103600083015261274881846123a9565b905092915050565b60006020820190508181036000830152612769816123e2565b9050919050565b6000602082019050818103600083015261278981612405565b9050919050565b600060208201905081810360008301526127a981612428565b9050919050565b600060208201905081810360008301526127c98161244b565b9050919050565b600060208201905081810360008301526127e98161246e565b9050919050565b6000602082019050818103600083015261280981612491565b9050919050565b60006020820190508181036000830152612829816124b4565b9050919050565b60006020820190508181036000830152612849816124d7565b9050919050565b60006020820190508181036000830152612869816124fa565b9050919050565b600060208201905081810360008301526128898161251d565b9050919050565b600060208201905081810360008301526128a981612540565b9050919050565b600060208201905081810360008301526128c981612563565b9050919050565b600060208201905081810360008301526128e981612586565b9050919050565b60006020820190508181036000830152612909816125a9565b9050919050565b60006020820190508181036000830152612929816125cc565b9050919050565b60006020820190508181036000830152612949816125ef565b9050919050565b6000602082019050818103600083015261296981612612565b9050919050565b6000602082019050818103600083015261298981612635565b9050919050565b60006020820190506129a56000830184612658565b92915050565b60006020820190506129c06000830184612667565b92915050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612a0982612ac6565b9150612a1483612ac6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a4957612a48612b66565b5b828201905092915050565b6000612a5f82612ac6565b9150612a6a83612ac6565b925082821015612a7d57612a7c612b66565b5b828203905092915050565b6000612a9382612aa6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612ae882612aef565b9050919050565b6000612afa82612aa6565b9050919050565b60005b83811015612b1f578082015181840152602081019050612b04565b83811115612b2e576000848401525b50505050565b60006002820490506001821680612b4c57607f821691505b60208210811415612b6057612b5f612b95565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f426164204552433230506f6c79676f6e20616464726573730000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c6572206973206e6f7420616e206f70657261746f72000000600082015250565b7f426164204f70657261746f722061646472657373000000000000000000000000600082015250565b7f42616420457263323050726564696361746550726f7879206164647265737300600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f426164204552433230506f6c79676f6e4d616e61676572206164647265737300600082015250565b7f42616420526f6f74436861696e4d616e61676572206164647265737300000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61301b81612a88565b811461302657600080fd5b50565b61303281612a9a565b811461303d57600080fd5b50565b61304981612ac6565b811461305457600080fd5b5056fea26469706673582212204db6accc0811e009ad99632ca953c5d269ae2515918e58a05baa66c0cdceb47f64736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80634c1a207c116101045780639dc29fac116100a2578063cbaae55811610071578063cbaae5581461051e578063cdda54cf1461053a578063dd62ed3e14610556578063f2fde38b14610586576101cf565b80639dc29fac14610484578063a457c2d7146104a0578063a9059cbb146104d0578063bd07018d14610500576101cf565b8063715018a6116100de578063715018a61461042057806381c508d11461042a5780638da5cb5b1461044857806395d89b4114610466576101cf565b80634c1a207c146103b857806358aba00f146103d457806370a08231146103f0576101cf565b806323b872dd11610171578063395093511161014b578063395093511461033257806339f382b61461036257806340c10f191461037e578063481c6a751461039a576101cf565b806323b872dd146102c8578063313ce567146102f857806338d6a91f14610316576101cf565b80630cfc1c33116101ad5780630cfc1c331461024057806313e7c9d81461025e57806317d375441461028e57806318160ddd146102aa576101cf565b806306fdde03146101d45780630850fce8146101f2578063095ea7b314610210575b600080fd5b6101dc6105a2565b6040516101e9919061272e565b60405180910390f35b6101fa610634565b6040516102079190612676565b60405180910390f35b61022a600480360381019061022591906122d6565b61065a565b60405161023791906126f8565b60405180910390f35b61024861067d565b6040516102559190612676565b60405180910390f35b610278600480360381019061027391906121d6565b6106a3565b60405161028591906126f8565b60405180910390f35b6102a860048036038101906102a39190612296565b6106c3565b005b6102b2610843565b6040516102bf9190612990565b60405180910390f35b6102e260048036038101906102dd9190612243565b61084d565b6040516102ef91906126f8565b60405180910390f35b61030061087c565b60405161030d91906129ab565b60405180910390f35b610330600480360381019061032b91906121d6565b610885565b005b61034c600480360381019061034791906122d6565b6109ec565b60405161035991906126f8565b60405180910390f35b61037c60048036038101906103779190612316565b610a96565b005b610398600480360381019061039391906122d6565b610c77565b005b6103a2610d18565b6040516103af9190612676565b60405180910390f35b6103d260048036038101906103cd91906121d6565b610d3e565b005b6103ee60048036038101906103e991906121d6565b610ea5565b005b61040a600480360381019061040591906121d6565b6110dd565b6040516104179190612990565b60405180910390f35b610428611125565b005b6104326111ad565b60405161043f9190612676565b60405180910390f35b6104506111d3565b60405161045d9190612676565b60405180910390f35b61046e6111fd565b60405161047b919061272e565b60405180910390f35b61049e600480360381019061049991906122d6565b61128f565b005b6104ba60048036038101906104b591906122d6565b611330565b6040516104c791906126f8565b60405180910390f35b6104ea60048036038101906104e591906122d6565b61141a565b6040516104f791906126f8565b60405180910390f35b61050861143d565b6040516105159190612713565b60405180910390f35b610538600480360381019061053391906121d6565b611463565b005b610554600480360381019061054f91906121d6565b6115ca565b005b610570600480360381019061056b9190612203565b611731565b60405161057d9190612990565b60405180910390f35b6105a0600480360381019061059b91906121d6565b6117b8565b005b6060600380546105b190612b34565b80601f01602080910402602001604051908101604052809291908181526020018280546105dd90612b34565b801561062a5780601f106105ff5761010080835404028352916020019161062a565b820191906000526020600020905b81548152906001019060200180831161060d57829003601f168201915b5050505050905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806106656118b0565b90506106728185856118b8565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60066020528060005260406000206000915054906101000a900460ff1681565b6106cb6118b0565b73ffffffffffffffffffffffffffffffffffffffff166106e96111d3565b73ffffffffffffffffffffffffffffffffffffffff161461073f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073690612890565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a690612850565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fae50a16e921cc359c9548003899f106e8dabdbd1f268c0b7ae8bd10e4ca56a7f82826040516108379291906126cf565b60405180910390a15050565b6000600254905090565b6000806108586118b0565b9050610865858285611a83565b610870858585611b0f565b60019150509392505050565b60006012905090565b61088d6118b0565b73ffffffffffffffffffffffffffffffffffffffff166108ab6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f890612890565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096890612870565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f0cfa2e3d599e8f12211005201d3035673b916eb311975b6bfa9945bb805fc26d816040516109e19190612676565b60405180910390a150565b6000806109f76118b0565b9050610a8b818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a8691906129fe565b6118b8565b600191505092915050565b610a9e6118b0565b73ffffffffffffffffffffffffffffffffffffffff16610abc6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0990612890565b60405180910390fd5b610b1c3082611d90565b610b4930600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836118b8565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e3dec8fb600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684604051602001610bde9190612990565b6040516020818303038152906040526040518463ffffffff1660e01b8152600401610c0b93929190612691565b600060405180830381600087803b158015610c2557600080fd5b505af1158015610c39573d6000803e3d6000fd5b505050507fb65b2cda582cfcde246e250f0ba8205f9e6a04eeed82d2e612a1ee88c6ce6fee81604051610c6c9190612990565b60405180910390a150565b60066000610c836118b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190612830565b60405180910390fd5b610d148282611d90565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d466118b0565b73ffffffffffffffffffffffffffffffffffffffff16610d646111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190612890565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2190612910565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ff60b4c293d92adf41ba82b69331f134664cdf9a262dbc96bc70c9bf7dd61f78781604051610e9a9190612676565b60405180910390a150565b610ead6118b0565b73ffffffffffffffffffffffffffffffffffffffff16610ecb6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1890612890565b60405180910390fd5b600060066000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611062576001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fae50a16e921cc359c9548003899f106e8dabdbd1f268c0b7ae8bd10e4ca56a7f8160016040516110599291906126cf565b60405180910390a15b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f198db6e425fb8aafd1823c6ca50be2d51e5764571a5ae0f0f21c6812e45def0b816040516110d29190612676565b60405180910390a150565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61112d6118b0565b73ffffffffffffffffffffffffffffffffffffffff1661114b6111d3565b73ffffffffffffffffffffffffffffffffffffffff16146111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890612890565b60405180910390fd5b6111ab6000611ef0565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461120c90612b34565b80601f016020809104026020016040519081016040528092919081815260200182805461123890612b34565b80156112855780601f1061125a57610100808354040283529160200191611285565b820191906000526020600020905b81548152906001019060200180831161126857829003601f168201915b5050505050905090565b6006600061129b6118b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990612830565b60405180910390fd5b61132c8282611fb6565b5050565b60008061133b6118b0565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890612950565b60405180910390fd5b61140e82868684036118b8565b60019250505092915050565b6000806114256118b0565b9050611432818585611b0f565b600191505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61146b6118b0565b73ffffffffffffffffffffffffffffffffffffffff166114896111d3565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690612890565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561154f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154690612930565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f402edb92d371388a1119f9b597378f2cf8eb3c56cd90353930eb1c1fb77e8fa4816040516115bf9190612676565b60405180910390a150565b6115d26118b0565b73ffffffffffffffffffffffffffffffffffffffff166115f06111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d90612890565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad906127d0565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa2594f7548b836127f93ae33a265916e5091a062e468e9505fd1092a1f144595816040516117269190612676565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6117c06118b0565b73ffffffffffffffffffffffffffffffffffffffff166117de6111d3565b73ffffffffffffffffffffffffffffffffffffffff1614611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90612890565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90612790565b60405180910390fd5b6118ad81611ef0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f906128f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f906127b0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a769190612990565b60405180910390a3505050565b6000611a8f8484611731565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b095781811015611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af2906127f0565b60405180910390fd5b611b0884848484036118b8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b76906128d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be690612750565b60405180910390fd5b611bfa83838361218d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7790612810565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d1391906129fe565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d779190612990565b60405180910390a3611d8a848484612192565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df790612970565b60405180910390fd5b611e0c6000838361218d565b8060026000828254611e1e91906129fe565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e7391906129fe565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ed89190612990565b60405180910390a3611eec60008383612192565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d906128b0565b60405180910390fd5b6120328260008361218d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120af90612770565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461210f9190612a54565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121749190612990565b60405180910390a361218883600084612192565b505050565b505050565b505050565b6000813590506121a681613012565b92915050565b6000813590506121bb81613029565b92915050565b6000813590506121d081613040565b92915050565b6000602082840312156121ec576121eb612bc4565b5b60006121fa84828501612197565b91505092915050565b6000806040838503121561221a57612219612bc4565b5b600061222885828601612197565b925050602061223985828601612197565b9150509250929050565b60008060006060848603121561225c5761225b612bc4565b5b600061226a86828701612197565b935050602061227b86828701612197565b925050604061228c868287016121c1565b9150509250925092565b600080604083850312156122ad576122ac612bc4565b5b60006122bb85828601612197565b92505060206122cc858286016121ac565b9150509250929050565b600080604083850312156122ed576122ec612bc4565b5b60006122fb85828601612197565b925050602061230c858286016121c1565b9150509250929050565b60006020828403121561232c5761232b612bc4565b5b600061233a848285016121c1565b91505092915050565b61234c81612a88565b82525050565b61235b81612a9a565b82525050565b600061236c826129c6565b61237681856129dc565b9350612386818560208601612b01565b61238f81612bc9565b840191505092915050565b6123a381612add565b82525050565b60006123b4826129d1565b6123be81856129ed565b93506123ce818560208601612b01565b6123d781612bc9565b840191505092915050565b60006123ef6023836129ed565b91506123fa82612bda565b604082019050919050565b60006124126022836129ed565b915061241d82612c29565b604082019050919050565b60006124356026836129ed565b915061244082612c78565b604082019050919050565b60006124586022836129ed565b915061246382612cc7565b604082019050919050565b600061247b6018836129ed565b915061248682612d16565b602082019050919050565b600061249e601d836129ed565b91506124a982612d3f565b602082019050919050565b60006124c16026836129ed565b91506124cc82612d68565b604082019050919050565b60006124e4601d836129ed565b91506124ef82612db7565b602082019050919050565b60006125076014836129ed565b915061251282612de0565b602082019050919050565b600061252a601f836129ed565b915061253582612e09565b602082019050919050565b600061254d6020836129ed565b915061255882612e32565b602082019050919050565b60006125706021836129ed565b915061257b82612e5b565b604082019050919050565b60006125936025836129ed565b915061259e82612eaa565b604082019050919050565b60006125b66024836129ed565b91506125c182612ef9565b604082019050919050565b60006125d9601f836129ed565b91506125e482612f48565b602082019050919050565b60006125fc601c836129ed565b915061260782612f71565b602082019050919050565b600061261f6025836129ed565b915061262a82612f9a565b604082019050919050565b6000612642601f836129ed565b915061264d82612fe9565b602082019050919050565b61266181612ac6565b82525050565b61267081612ad0565b82525050565b600060208201905061268b6000830184612343565b92915050565b60006060820190506126a66000830186612343565b6126b36020830185612343565b81810360408301526126c58184612361565b9050949350505050565b60006040820190506126e46000830185612343565b6126f16020830184612352565b9392505050565b600060208201905061270d6000830184612352565b92915050565b6000602082019050612728600083018461239a565b92915050565b6000602082019050818103600083015261274881846123a9565b905092915050565b60006020820190508181036000830152612769816123e2565b9050919050565b6000602082019050818103600083015261278981612405565b9050919050565b600060208201905081810360008301526127a981612428565b9050919050565b600060208201905081810360008301526127c98161244b565b9050919050565b600060208201905081810360008301526127e98161246e565b9050919050565b6000602082019050818103600083015261280981612491565b9050919050565b60006020820190508181036000830152612829816124b4565b9050919050565b60006020820190508181036000830152612849816124d7565b9050919050565b60006020820190508181036000830152612869816124fa565b9050919050565b600060208201905081810360008301526128898161251d565b9050919050565b600060208201905081810360008301526128a981612540565b9050919050565b600060208201905081810360008301526128c981612563565b9050919050565b600060208201905081810360008301526128e981612586565b9050919050565b60006020820190508181036000830152612909816125a9565b9050919050565b60006020820190508181036000830152612929816125cc565b9050919050565b60006020820190508181036000830152612949816125ef565b9050919050565b6000602082019050818103600083015261296981612612565b9050919050565b6000602082019050818103600083015261298981612635565b9050919050565b60006020820190506129a56000830184612658565b92915050565b60006020820190506129c06000830184612667565b92915050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612a0982612ac6565b9150612a1483612ac6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a4957612a48612b66565b5b828201905092915050565b6000612a5f82612ac6565b9150612a6a83612ac6565b925082821015612a7d57612a7c612b66565b5b828203905092915050565b6000612a9382612aa6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612ae882612aef565b9050919050565b6000612afa82612aa6565b9050919050565b60005b83811015612b1f578082015181840152602081019050612b04565b83811115612b2e576000848401525b50505050565b60006002820490506001821680612b4c57607f821691505b60208210811415612b6057612b5f612b95565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f426164204552433230506f6c79676f6e20616464726573730000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c6572206973206e6f7420616e206f70657261746f72000000600082015250565b7f426164204f70657261746f722061646472657373000000000000000000000000600082015250565b7f42616420457263323050726564696361746550726f7879206164647265737300600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f426164204552433230506f6c79676f6e4d616e61676572206164647265737300600082015250565b7f42616420526f6f74436861696e4d616e61676572206164647265737300000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61301b81612a88565b811461302657600080fd5b50565b61303281612a9a565b811461303d57600080fd5b50565b61304981612ac6565b811461305457600080fd5b5056fea26469706673582212204db6accc0811e009ad99632ca953c5d269ae2515918e58a05baa66c0cdceb47f64736f6c63430008060033

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.