ETH Price: $2,544.12 (+2.37%)

Token

Wrapped CAU (CAU)
 

Overview

Max Total Supply

520,000 CAU

Holders

44

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.633935930513186126 CAU

Value
$0.00
0x8c8e2f9831a7a054266a72903b7e06f89856ae61
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:
WCAU

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-25
*/

// Sources flattened with hardhat v2.19.1 https://hardhat.org

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


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

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


// File contracts/Wcau.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity ^0.8.0;


contract WCAU is ERC20Burnable, Ownable {
  address public bridge = 0xbb26a4d5F867C12A635e31c1Ea3F39425E574161;
  event BridgeChange(address indexed oldAddress, address indexed newAddress);

  constructor(address owner) ERC20("Wrapped CAU", "CAU") {
    _transferOwnership(owner);
    // mine 520000 WCAU ~ current cir supply CAU mining reward and send to bridge
    // Bridge then will transfer WCAU for who transfered CAU from canxium to ethereum
    _mint(bridge, 520000000000000000000000);
  }
  
  // mine new WCAU and send to Canxium Bridge
  function mint(uint256 amount) public onlyOwner {
    _mint(bridge, amount);
  }

  function changeBridge(address newBridge) public onlyOwner {
    require( newBridge != address(0), "Invalid new bridge contract");

    emit BridgeChange(bridge, newBridge);
    bridge = newBridge;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"owner","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":"oldAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"BridgeChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bridge","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newBridge","type":"address"}],"name":"changeBridge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273bb26a4d5f867c12a635e31c1ea3f39425e574161600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b50604051620026bb380380620026bb83398181016040528101906200008c919062000443565b6040518060400160405280600b81526020017f57726170706564204341550000000000000000000000000000000000000000008152506040518060400160405280600381526020017f43415500000000000000000000000000000000000000000000000000000000008152508160039081620001099190620006ef565b5080600490816200011b9190620006ef565b5050506200013e620001326200019460201b60201c565b6200019c60201b60201c565b6200014f816200019c60201b60201c565b6200018d600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16696e1d41a8f9ec350000006200026260201b60201c565b50620008f1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cb9062000837565b60405180910390fd5b620002e860008383620003cf60201b60201c565b8060026000828254620002fc919062000888565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003af9190620008d4565b60405180910390a3620003cb60008383620003d460201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200040b82620003de565b9050919050565b6200041d81620003fe565b81146200042957600080fd5b50565b6000815190506200043d8162000412565b92915050565b6000602082840312156200045c576200045b620003d9565b5b60006200046c848285016200042c565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f757607f821691505b6020821081036200050d576200050c620004af565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000538565b62000583868362000538565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005d0620005ca620005c4846200059b565b620005a5565b6200059b565b9050919050565b6000819050919050565b620005ec83620005af565b62000604620005fb82620005d7565b84845462000545565b825550505050565b600090565b6200061b6200060c565b62000628818484620005e1565b505050565b5b8181101562000650576200064460008262000611565b6001810190506200062e565b5050565b601f8211156200069f57620006698162000513565b620006748462000528565b8101602085101562000684578190505b6200069c620006938562000528565b8301826200062d565b50505b505050565b600082821c905092915050565b6000620006c460001984600802620006a4565b1980831691505092915050565b6000620006df8383620006b1565b9150826002028217905092915050565b620006fa8262000475565b67ffffffffffffffff81111562000716576200071562000480565b5b620007228254620004de565b6200072f82828562000654565b600060209050601f83116001811462000767576000841562000752578287015190505b6200075e8582620006d1565b865550620007ce565b601f198416620007778662000513565b60005b82811015620007a1578489015182556001820191506020850194506020810190506200077a565b86831015620007c15784890151620007bd601f891682620006b1565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200081f601f83620007d6565b91506200082c82620007e7565b602082019050919050565b60006020820190508181036000830152620008528162000810565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000895826200059b565b9150620008a2836200059b565b9250828201905080821115620008bd57620008bc62000859565b5b92915050565b620008ce816200059b565b82525050565b6000602082019050620008eb6000830184620008c3565b92915050565b611dba80620009016000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d7146102f6578063a9059cbb14610326578063dd62ed3e14610356578063e78cea9214610386578063f2fde38b146103a457610121565b8063715018a61461027857806379cc6790146102825780638da5cb5b1461029e57806395d89b41146102bc578063a0712d68146102da57610121565b806323b872dd116100f457806323b872dd146101ae578063313ce567146101de57806339509351146101fc57806342966c681461022c57806370a082311461024857610121565b806306fdde03146101265780630877441014610144578063095ea7b31461016057806318160ddd14610190575b600080fd5b61012e6103c0565b60405161013b9190611346565b60405180910390f35b61015e600480360381019061015991906113cb565b610452565b005b61017a6004803603810190610175919061142e565b610589565b6040516101879190611489565b60405180910390f35b6101986105ac565b6040516101a591906114b3565b60405180910390f35b6101c860048036038101906101c391906114ce565b6105b6565b6040516101d59190611489565b60405180910390f35b6101e66105e5565b6040516101f3919061153d565b60405180910390f35b6102166004803603810190610211919061142e565b6105ee565b6040516102239190611489565b60405180910390f35b61024660048036038101906102419190611558565b610625565b005b610262600480360381019061025d91906113cb565b610639565b60405161026f91906114b3565b60405180910390f35b610280610681565b005b61029c6004803603810190610297919061142e565b610695565b005b6102a66106b5565b6040516102b39190611594565b60405180910390f35b6102c46106df565b6040516102d19190611346565b60405180910390f35b6102f460048036038101906102ef9190611558565b610771565b005b610310600480360381019061030b919061142e565b6107a8565b60405161031d9190611489565b60405180910390f35b610340600480360381019061033b919061142e565b61081f565b60405161034d9190611489565b60405180910390f35b610370600480360381019061036b91906115af565b610842565b60405161037d91906114b3565b60405180910390f35b61038e6108c9565b60405161039b9190611594565b60405180910390f35b6103be60048036038101906103b991906113cb565b6108ef565b005b6060600380546103cf9061161e565b80601f01602080910402602001604051908101604052809291908181526020018280546103fb9061161e565b80156104485780601f1061041d57610100808354040283529160200191610448565b820191906000526020600020905b81548152906001019060200180831161042b57829003601f168201915b5050505050905090565b61045a610972565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036104c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c09061169b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f9f06c577a12d8beda856a3cceddf7befcb12da366ce49400e869c0104ee10d6a60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806105946109f0565b90506105a18185856109f8565b600191505092915050565b6000600254905090565b6000806105c16109f0565b90506105ce858285610bc1565b6105d9858585610c4d565b60019150509392505050565b60006012905090565b6000806105f96109f0565b905061061a81858561060b8589610842565b61061591906116ea565b6109f8565b600191505092915050565b6106366106306109f0565b82610ec3565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610689610972565b6106936000611090565b565b6106a7826106a16109f0565b83610bc1565b6106b18282610ec3565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106ee9061161e565b80601f016020809104026020016040519081016040528092919081815260200182805461071a9061161e565b80156107675780601f1061073c57610100808354040283529160200191610767565b820191906000526020600020905b81548152906001019060200180831161074a57829003601f168201915b5050505050905090565b610779610972565b6107a5600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611156565b50565b6000806107b36109f0565b905060006107c18286610842565b905083811015610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90611790565b60405180910390fd5b61081382868684036109f8565b60019250505092915050565b60008061082a6109f0565b9050610837818585610c4d565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108f7610972565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095d90611822565b60405180910390fd5b61096f81611090565b50565b61097a6109f0565b73ffffffffffffffffffffffffffffffffffffffff166109986106b5565b73ffffffffffffffffffffffffffffffffffffffff16146109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e59061188e565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e90611920565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd906119b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bb491906114b3565b60405180910390a3505050565b6000610bcd8484610842565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c475781811015610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090611a1e565b60405180910390fd5b610c4684848484036109f8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611ab0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290611b42565b60405180910390fd5b610d368383836112ac565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390611bd4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eaa91906114b3565b60405180910390a3610ebd8484846112b1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990611c66565b60405180910390fd5b610f3e826000836112ac565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90611cf8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107791906114b3565b60405180910390a361108b836000846112b1565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90611d64565b60405180910390fd5b6111d1600083836112ac565b80600260008282546111e391906116ea565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161129491906114b3565b60405180910390a36112a8600083836112b1565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112f05780820151818401526020810190506112d5565b60008484015250505050565b6000601f19601f8301169050919050565b6000611318826112b6565b61132281856112c1565b93506113328185602086016112d2565b61133b816112fc565b840191505092915050565b60006020820190508181036000830152611360818461130d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113988261136d565b9050919050565b6113a88161138d565b81146113b357600080fd5b50565b6000813590506113c58161139f565b92915050565b6000602082840312156113e1576113e0611368565b5b60006113ef848285016113b6565b91505092915050565b6000819050919050565b61140b816113f8565b811461141657600080fd5b50565b60008135905061142881611402565b92915050565b6000806040838503121561144557611444611368565b5b6000611453858286016113b6565b925050602061146485828601611419565b9150509250929050565b60008115159050919050565b6114838161146e565b82525050565b600060208201905061149e600083018461147a565b92915050565b6114ad816113f8565b82525050565b60006020820190506114c860008301846114a4565b92915050565b6000806000606084860312156114e7576114e6611368565b5b60006114f5868287016113b6565b9350506020611506868287016113b6565b925050604061151786828701611419565b9150509250925092565b600060ff82169050919050565b61153781611521565b82525050565b6000602082019050611552600083018461152e565b92915050565b60006020828403121561156e5761156d611368565b5b600061157c84828501611419565b91505092915050565b61158e8161138d565b82525050565b60006020820190506115a96000830184611585565b92915050565b600080604083850312156115c6576115c5611368565b5b60006115d4858286016113b6565b92505060206115e5858286016113b6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061163657607f821691505b602082108103611649576116486115ef565b5b50919050565b7f496e76616c6964206e65772062726964676520636f6e74726163740000000000600082015250565b6000611685601b836112c1565b91506116908261164f565b602082019050919050565b600060208201905081810360008301526116b481611678565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116f5826113f8565b9150611700836113f8565b9250828201905080821115611718576117176116bb565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061177a6025836112c1565b91506117858261171e565b604082019050919050565b600060208201905081810360008301526117a98161176d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061180c6026836112c1565b9150611817826117b0565b604082019050919050565b6000602082019050818103600083015261183b816117ff565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118786020836112c1565b915061188382611842565b602082019050919050565b600060208201905081810360008301526118a78161186b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061190a6024836112c1565b9150611915826118ae565b604082019050919050565b60006020820190508181036000830152611939816118fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061199c6022836112c1565b91506119a782611940565b604082019050919050565b600060208201905081810360008301526119cb8161198f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a08601d836112c1565b9150611a13826119d2565b602082019050919050565b60006020820190508181036000830152611a37816119fb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a9a6025836112c1565b9150611aa582611a3e565b604082019050919050565b60006020820190508181036000830152611ac981611a8d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b2c6023836112c1565b9150611b3782611ad0565b604082019050919050565b60006020820190508181036000830152611b5b81611b1f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611bbe6026836112c1565b9150611bc982611b62565b604082019050919050565b60006020820190508181036000830152611bed81611bb1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c506021836112c1565b9150611c5b82611bf4565b604082019050919050565b60006020820190508181036000830152611c7f81611c43565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ce26022836112c1565b9150611ced82611c86565b604082019050919050565b60006020820190508181036000830152611d1181611cd5565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d4e601f836112c1565b9150611d5982611d18565b602082019050919050565b60006020820190508181036000830152611d7d81611d41565b905091905056fea26469706673582212209f5d6e586bd24847d86ea19e5c291be60cd975bb12c46f9304daa8869961616764736f6c63430008170033000000000000000000000000c28bd9ec37de1b05955e9b585575cad6d7a7ac9f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d7146102f6578063a9059cbb14610326578063dd62ed3e14610356578063e78cea9214610386578063f2fde38b146103a457610121565b8063715018a61461027857806379cc6790146102825780638da5cb5b1461029e57806395d89b41146102bc578063a0712d68146102da57610121565b806323b872dd116100f457806323b872dd146101ae578063313ce567146101de57806339509351146101fc57806342966c681461022c57806370a082311461024857610121565b806306fdde03146101265780630877441014610144578063095ea7b31461016057806318160ddd14610190575b600080fd5b61012e6103c0565b60405161013b9190611346565b60405180910390f35b61015e600480360381019061015991906113cb565b610452565b005b61017a6004803603810190610175919061142e565b610589565b6040516101879190611489565b60405180910390f35b6101986105ac565b6040516101a591906114b3565b60405180910390f35b6101c860048036038101906101c391906114ce565b6105b6565b6040516101d59190611489565b60405180910390f35b6101e66105e5565b6040516101f3919061153d565b60405180910390f35b6102166004803603810190610211919061142e565b6105ee565b6040516102239190611489565b60405180910390f35b61024660048036038101906102419190611558565b610625565b005b610262600480360381019061025d91906113cb565b610639565b60405161026f91906114b3565b60405180910390f35b610280610681565b005b61029c6004803603810190610297919061142e565b610695565b005b6102a66106b5565b6040516102b39190611594565b60405180910390f35b6102c46106df565b6040516102d19190611346565b60405180910390f35b6102f460048036038101906102ef9190611558565b610771565b005b610310600480360381019061030b919061142e565b6107a8565b60405161031d9190611489565b60405180910390f35b610340600480360381019061033b919061142e565b61081f565b60405161034d9190611489565b60405180910390f35b610370600480360381019061036b91906115af565b610842565b60405161037d91906114b3565b60405180910390f35b61038e6108c9565b60405161039b9190611594565b60405180910390f35b6103be60048036038101906103b991906113cb565b6108ef565b005b6060600380546103cf9061161e565b80601f01602080910402602001604051908101604052809291908181526020018280546103fb9061161e565b80156104485780601f1061041d57610100808354040283529160200191610448565b820191906000526020600020905b81548152906001019060200180831161042b57829003601f168201915b5050505050905090565b61045a610972565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036104c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c09061169b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f9f06c577a12d8beda856a3cceddf7befcb12da366ce49400e869c0104ee10d6a60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806105946109f0565b90506105a18185856109f8565b600191505092915050565b6000600254905090565b6000806105c16109f0565b90506105ce858285610bc1565b6105d9858585610c4d565b60019150509392505050565b60006012905090565b6000806105f96109f0565b905061061a81858561060b8589610842565b61061591906116ea565b6109f8565b600191505092915050565b6106366106306109f0565b82610ec3565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610689610972565b6106936000611090565b565b6106a7826106a16109f0565b83610bc1565b6106b18282610ec3565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106ee9061161e565b80601f016020809104026020016040519081016040528092919081815260200182805461071a9061161e565b80156107675780601f1061073c57610100808354040283529160200191610767565b820191906000526020600020905b81548152906001019060200180831161074a57829003601f168201915b5050505050905090565b610779610972565b6107a5600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611156565b50565b6000806107b36109f0565b905060006107c18286610842565b905083811015610806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fd90611790565b60405180910390fd5b61081382868684036109f8565b60019250505092915050565b60008061082a6109f0565b9050610837818585610c4d565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6108f7610972565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095d90611822565b60405180910390fd5b61096f81611090565b50565b61097a6109f0565b73ffffffffffffffffffffffffffffffffffffffff166109986106b5565b73ffffffffffffffffffffffffffffffffffffffff16146109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e59061188e565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5e90611920565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acd906119b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bb491906114b3565b60405180910390a3505050565b6000610bcd8484610842565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c475781811015610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090611a1e565b60405180910390fd5b610c4684848484036109f8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390611ab0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290611b42565b60405180910390fd5b610d368383836112ac565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390611bd4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eaa91906114b3565b60405180910390a3610ebd8484846112b1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990611c66565b60405180910390fd5b610f3e826000836112ac565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90611cf8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107791906114b3565b60405180910390a361108b836000846112b1565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90611d64565b60405180910390fd5b6111d1600083836112ac565b80600260008282546111e391906116ea565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161129491906114b3565b60405180910390a36112a8600083836112b1565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112f05780820151818401526020810190506112d5565b60008484015250505050565b6000601f19601f8301169050919050565b6000611318826112b6565b61132281856112c1565b93506113328185602086016112d2565b61133b816112fc565b840191505092915050565b60006020820190508181036000830152611360818461130d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113988261136d565b9050919050565b6113a88161138d565b81146113b357600080fd5b50565b6000813590506113c58161139f565b92915050565b6000602082840312156113e1576113e0611368565b5b60006113ef848285016113b6565b91505092915050565b6000819050919050565b61140b816113f8565b811461141657600080fd5b50565b60008135905061142881611402565b92915050565b6000806040838503121561144557611444611368565b5b6000611453858286016113b6565b925050602061146485828601611419565b9150509250929050565b60008115159050919050565b6114838161146e565b82525050565b600060208201905061149e600083018461147a565b92915050565b6114ad816113f8565b82525050565b60006020820190506114c860008301846114a4565b92915050565b6000806000606084860312156114e7576114e6611368565b5b60006114f5868287016113b6565b9350506020611506868287016113b6565b925050604061151786828701611419565b9150509250925092565b600060ff82169050919050565b61153781611521565b82525050565b6000602082019050611552600083018461152e565b92915050565b60006020828403121561156e5761156d611368565b5b600061157c84828501611419565b91505092915050565b61158e8161138d565b82525050565b60006020820190506115a96000830184611585565b92915050565b600080604083850312156115c6576115c5611368565b5b60006115d4858286016113b6565b92505060206115e5858286016113b6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061163657607f821691505b602082108103611649576116486115ef565b5b50919050565b7f496e76616c6964206e65772062726964676520636f6e74726163740000000000600082015250565b6000611685601b836112c1565b91506116908261164f565b602082019050919050565b600060208201905081810360008301526116b481611678565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116f5826113f8565b9150611700836113f8565b9250828201905080821115611718576117176116bb565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061177a6025836112c1565b91506117858261171e565b604082019050919050565b600060208201905081810360008301526117a98161176d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061180c6026836112c1565b9150611817826117b0565b604082019050919050565b6000602082019050818103600083015261183b816117ff565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118786020836112c1565b915061188382611842565b602082019050919050565b600060208201905081810360008301526118a78161186b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061190a6024836112c1565b9150611915826118ae565b604082019050919050565b60006020820190508181036000830152611939816118fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061199c6022836112c1565b91506119a782611940565b604082019050919050565b600060208201905081810360008301526119cb8161198f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a08601d836112c1565b9150611a13826119d2565b602082019050919050565b60006020820190508181036000830152611a37816119fb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a9a6025836112c1565b9150611aa582611a3e565b604082019050919050565b60006020820190508181036000830152611ac981611a8d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b2c6023836112c1565b9150611b3782611ad0565b604082019050919050565b60006020820190508181036000830152611b5b81611b1f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611bbe6026836112c1565b9150611bc982611b62565b604082019050919050565b60006020820190508181036000830152611bed81611bb1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c506021836112c1565b9150611c5b82611bf4565b604082019050919050565b60006020820190508181036000830152611c7f81611c43565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ce26022836112c1565b9150611ced82611c86565b604082019050919050565b60006020820190508181036000830152611d1181611cd5565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d4e601f836112c1565b9150611d5982611d18565b602082019050919050565b60006020820190508181036000830152611d7d81611d41565b905091905056fea26469706673582212209f5d6e586bd24847d86ea19e5c291be60cd975bb12c46f9304daa8869961616764736f6c63430008170033

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

000000000000000000000000c28bd9ec37de1b05955e9b585575cad6d7a7ac9f

-----Decoded View---------------
Arg [0] : owner (address): 0xC28bd9Ec37De1B05955E9b585575cAD6D7A7aC9F

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


Deployed Bytecode Sourcemap

22017:856:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9691:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22665:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12051:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10820:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12832:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10662:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13502:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21322:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10991:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2979:103;;;:::i;:::-;;21732:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2338:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9910:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22578:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14243:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11324:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11580:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22062:66;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3237:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9691:100;9745:13;9778:5;9771:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9691:100;:::o;22665:205::-;2224:13;:11;:13::i;:::-;22760:1:::1;22739:23;;:9;:23;;::::0;22730:64:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22829:9;22808:31;;22821:6;;;;;;;;;;;22808:31;;;;;;;;;;;;22855:9;22846:6;;:18;;;;;;;;;;;;;;;;;;22665:205:::0;:::o;12051:201::-;12134:4;12151:13;12167:12;:10;:12::i;:::-;12151:28;;12190:32;12199:5;12206:7;12215:6;12190:8;:32::i;:::-;12240:4;12233:11;;;12051:201;;;;:::o;10820:108::-;10881:7;10908:12;;10901:19;;10820:108;:::o;12832:261::-;12929:4;12946:15;12964:12;:10;:12::i;:::-;12946:30;;12987:38;13003:4;13009:7;13018:6;12987:15;:38::i;:::-;13036:27;13046:4;13052:2;13056:6;13036:9;:27::i;:::-;13081:4;13074:11;;;12832:261;;;;;:::o;10662:93::-;10720:5;10745:2;10738:9;;10662:93;:::o;13502:238::-;13590:4;13607:13;13623:12;:10;:12::i;:::-;13607:28;;13646:64;13655:5;13662:7;13699:10;13671:25;13681:5;13688:7;13671:9;:25::i;:::-;:38;;;;:::i;:::-;13646:8;:64::i;:::-;13728:4;13721:11;;;13502:238;;;;:::o;21322:91::-;21378:27;21384:12;:10;:12::i;:::-;21398:6;21378:5;:27::i;:::-;21322:91;:::o;10991:127::-;11065:7;11092:9;:18;11102:7;11092:18;;;;;;;;;;;;;;;;11085:25;;10991:127;;;:::o;2979:103::-;2224:13;:11;:13::i;:::-;3044:30:::1;3071:1;3044:18;:30::i;:::-;2979:103::o:0;21732:164::-;21809:46;21825:7;21834:12;:10;:12::i;:::-;21848:6;21809:15;:46::i;:::-;21866:22;21872:7;21881:6;21866:5;:22::i;:::-;21732:164;;:::o;2338:87::-;2384:7;2411:6;;;;;;;;;;;2404:13;;2338:87;:::o;9910:104::-;9966:13;9999:7;9992:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9910:104;:::o;22578:81::-;2224:13;:11;:13::i;:::-;22632:21:::1;22638:6;;;;;;;;;;;22646;22632:5;:21::i;:::-;22578:81:::0;:::o;14243:436::-;14336:4;14353:13;14369:12;:10;:12::i;:::-;14353:28;;14392:24;14419:25;14429:5;14436:7;14419:9;:25::i;:::-;14392:52;;14483:15;14463:16;:35;;14455:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14576:60;14585:5;14592:7;14620:15;14601:16;:34;14576:8;:60::i;:::-;14667:4;14660:11;;;;14243:436;;;;:::o;11324:193::-;11403:4;11420:13;11436:12;:10;:12::i;:::-;11420:28;;11459;11469:5;11476:2;11480:6;11459:9;:28::i;:::-;11505:4;11498:11;;;11324:193;;;;:::o;11580:151::-;11669:7;11696:11;:18;11708:5;11696:18;;;;;;;;;;;;;;;:27;11715:7;11696:27;;;;;;;;;;;;;;;;11689:34;;11580:151;;;;:::o;22062:66::-;;;;;;;;;;;;;:::o;3237:201::-;2224:13;:11;:13::i;:::-;3346:1:::1;3326:22;;:8;:22;;::::0;3318:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3402:28;3421:8;3402:18;:28::i;:::-;3237:201:::0;:::o;2503:132::-;2578:12;:10;:12::i;:::-;2567:23;;:7;:5;:7::i;:::-;:23;;;2559:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2503:132::o;834:98::-;887:7;914:10;907:17;;834:98;:::o;18236:346::-;18355:1;18338:19;;:5;:19;;;18330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18436:1;18417:21;;:7;:21;;;18409:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18520:6;18490:11;:18;18502:5;18490:18;;;;;;;;;;;;;;;:27;18509:7;18490:27;;;;;;;;;;;;;;;:36;;;;18558:7;18542:32;;18551:5;18542:32;;;18567:6;18542:32;;;;;;:::i;:::-;;;;;;;;18236:346;;;:::o;18873:419::-;18974:24;19001:25;19011:5;19018:7;19001:9;:25::i;:::-;18974:52;;19061:17;19041:16;:37;19037:248;;19123:6;19103:16;:26;;19095:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19207:51;19216:5;19223:7;19251:6;19232:16;:25;19207:8;:51::i;:::-;19037:248;18963:329;18873:419;;;:::o;15149:806::-;15262:1;15246:18;;:4;:18;;;15238:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15339:1;15325:16;;:2;:16;;;15317:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15394:38;15415:4;15421:2;15425:6;15394:20;:38::i;:::-;15445:19;15467:9;:15;15477:4;15467:15;;;;;;;;;;;;;;;;15445:37;;15516:6;15501:11;:21;;15493:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15633:6;15619:11;:20;15601:9;:15;15611:4;15601:15;;;;;;;;;;;;;;;:38;;;;15836:6;15819:9;:13;15829:2;15819:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15886:2;15871:26;;15880:4;15871:26;;;15890:6;15871:26;;;;;;:::i;:::-;;;;;;;;15910:37;15930:4;15936:2;15940:6;15910:19;:37::i;:::-;15227:728;15149:806;;;:::o;17123:675::-;17226:1;17207:21;;:7;:21;;;17199:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17279:49;17300:7;17317:1;17321:6;17279:20;:49::i;:::-;17341:22;17366:9;:18;17376:7;17366:18;;;;;;;;;;;;;;;;17341:43;;17421:6;17403:14;:24;;17395:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17540:6;17523:14;:23;17502:9;:18;17512:7;17502:18;;;;;;;;;;;;;;;:44;;;;17657:6;17641:12;;:22;;;;;;;;;;;17718:1;17692:37;;17701:7;17692:37;;;17722:6;17692:37;;;;;;:::i;:::-;;;;;;;;17742:48;17762:7;17779:1;17783:6;17742:19;:48::i;:::-;17188:610;17123:675;;:::o;3598:191::-;3672:16;3691:6;;;;;;;;;;;3672:25;;3717:8;3708:6;;:17;;;;;;;;;;;;;;;;;;3772:8;3741:40;;3762:8;3741:40;;;;;;;;;;;;3661:128;3598:191;:::o;16242:548::-;16345:1;16326:21;;:7;:21;;;16318:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16396:49;16425:1;16429:7;16438:6;16396:20;:49::i;:::-;16474:6;16458:12;;:22;;;;;;;:::i;:::-;;;;;;;;16651:6;16629:9;:18;16639:7;16629:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16705:7;16684:37;;16701:1;16684:37;;;16714:6;16684:37;;;;;;:::i;:::-;;;;;;;;16734:48;16762:1;16766:7;16775:6;16734:19;:48::i;:::-;16242:548;;:::o;19892:91::-;;;;:::o;20587:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:329::-;2242:6;2291:2;2279:9;2270:7;2266:23;2262:32;2259:119;;;2297:79;;:::i;:::-;2259:119;2417:1;2442:53;2487:7;2478:6;2467:9;2463:22;2442:53;:::i;:::-;2432:63;;2388:117;2183:329;;;;:::o;2518:77::-;2555:7;2584:5;2573:16;;2518:77;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:329::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:177::-;7007:29;7003:1;6995:6;6991:14;6984:53;6867:177;:::o;7050:366::-;7192:3;7213:67;7277:2;7272:3;7213:67;:::i;:::-;7206:74;;7289:93;7378:3;7289:93;:::i;:::-;7407:2;7402:3;7398:12;7391:19;;7050:366;;;:::o;7422:419::-;7588:4;7626:2;7615:9;7611:18;7603:26;;7675:9;7669:4;7665:20;7661:1;7650:9;7646:17;7639:47;7703:131;7829:4;7703:131;:::i;:::-;7695:139;;7422:419;;;:::o;7847:180::-;7895:77;7892:1;7885:88;7992:4;7989:1;7982:15;8016:4;8013:1;8006:15;8033:191;8073:3;8092:20;8110:1;8092:20;:::i;:::-;8087:25;;8126:20;8144:1;8126:20;:::i;:::-;8121:25;;8169:1;8166;8162:9;8155:16;;8190:3;8187:1;8184:10;8181:36;;;8197:18;;:::i;:::-;8181:36;8033:191;;;;:::o;8230:224::-;8370:34;8366:1;8358:6;8354:14;8347:58;8439:7;8434:2;8426:6;8422:15;8415:32;8230:224;:::o;8460:366::-;8602:3;8623:67;8687:2;8682:3;8623:67;:::i;:::-;8616:74;;8699:93;8788:3;8699:93;:::i;:::-;8817:2;8812:3;8808:12;8801:19;;8460:366;;;:::o;8832:419::-;8998:4;9036:2;9025:9;9021:18;9013:26;;9085:9;9079:4;9075:20;9071:1;9060:9;9056:17;9049:47;9113:131;9239:4;9113:131;:::i;:::-;9105:139;;8832:419;;;:::o;9257:225::-;9397:34;9393:1;9385:6;9381:14;9374:58;9466:8;9461:2;9453:6;9449:15;9442:33;9257:225;:::o;9488:366::-;9630:3;9651:67;9715:2;9710:3;9651:67;:::i;:::-;9644:74;;9727:93;9816:3;9727:93;:::i;:::-;9845:2;9840:3;9836:12;9829:19;;9488:366;;;:::o;9860:419::-;10026:4;10064:2;10053:9;10049:18;10041:26;;10113:9;10107:4;10103:20;10099:1;10088:9;10084:17;10077:47;10141:131;10267:4;10141:131;:::i;:::-;10133:139;;9860:419;;;:::o;10285:182::-;10425:34;10421:1;10413:6;10409:14;10402:58;10285:182;:::o;10473:366::-;10615:3;10636:67;10700:2;10695:3;10636:67;:::i;:::-;10629:74;;10712:93;10801:3;10712:93;:::i;:::-;10830:2;10825:3;10821:12;10814:19;;10473:366;;;:::o;10845:419::-;11011:4;11049:2;11038:9;11034:18;11026:26;;11098:9;11092:4;11088:20;11084:1;11073:9;11069:17;11062:47;11126:131;11252:4;11126:131;:::i;:::-;11118:139;;10845:419;;;:::o;11270:223::-;11410:34;11406:1;11398:6;11394:14;11387:58;11479:6;11474:2;11466:6;11462:15;11455:31;11270:223;:::o;11499:366::-;11641:3;11662:67;11726:2;11721:3;11662:67;:::i;:::-;11655:74;;11738:93;11827:3;11738:93;:::i;:::-;11856:2;11851:3;11847:12;11840:19;;11499:366;;;:::o;11871:419::-;12037:4;12075:2;12064:9;12060:18;12052:26;;12124:9;12118:4;12114:20;12110:1;12099:9;12095:17;12088:47;12152:131;12278:4;12152:131;:::i;:::-;12144:139;;11871:419;;;:::o;12296:221::-;12436:34;12432:1;12424:6;12420:14;12413:58;12505:4;12500:2;12492:6;12488:15;12481:29;12296:221;:::o;12523:366::-;12665:3;12686:67;12750:2;12745:3;12686:67;:::i;:::-;12679:74;;12762:93;12851:3;12762:93;:::i;:::-;12880:2;12875:3;12871:12;12864:19;;12523:366;;;:::o;12895:419::-;13061:4;13099:2;13088:9;13084:18;13076:26;;13148:9;13142:4;13138:20;13134:1;13123:9;13119:17;13112:47;13176:131;13302:4;13176:131;:::i;:::-;13168:139;;12895:419;;;:::o;13320:179::-;13460:31;13456:1;13448:6;13444:14;13437:55;13320:179;:::o;13505:366::-;13647:3;13668:67;13732:2;13727:3;13668:67;:::i;:::-;13661:74;;13744:93;13833:3;13744:93;:::i;:::-;13862:2;13857:3;13853:12;13846:19;;13505:366;;;:::o;13877:419::-;14043:4;14081:2;14070:9;14066:18;14058:26;;14130:9;14124:4;14120:20;14116:1;14105:9;14101:17;14094:47;14158:131;14284:4;14158:131;:::i;:::-;14150:139;;13877:419;;;:::o;14302:224::-;14442:34;14438:1;14430:6;14426:14;14419:58;14511:7;14506:2;14498:6;14494:15;14487:32;14302:224;:::o;14532:366::-;14674:3;14695:67;14759:2;14754:3;14695:67;:::i;:::-;14688:74;;14771:93;14860:3;14771:93;:::i;:::-;14889:2;14884:3;14880:12;14873:19;;14532:366;;;:::o;14904:419::-;15070:4;15108:2;15097:9;15093:18;15085:26;;15157:9;15151:4;15147:20;15143:1;15132:9;15128:17;15121:47;15185:131;15311:4;15185:131;:::i;:::-;15177:139;;14904:419;;;:::o;15329:222::-;15469:34;15465:1;15457:6;15453:14;15446:58;15538:5;15533:2;15525:6;15521:15;15514:30;15329:222;:::o;15557:366::-;15699:3;15720:67;15784:2;15779:3;15720:67;:::i;:::-;15713:74;;15796:93;15885:3;15796:93;:::i;:::-;15914:2;15909:3;15905:12;15898:19;;15557:366;;;:::o;15929:419::-;16095:4;16133:2;16122:9;16118:18;16110:26;;16182:9;16176:4;16172:20;16168:1;16157:9;16153:17;16146:47;16210:131;16336:4;16210:131;:::i;:::-;16202:139;;15929:419;;;:::o;16354:225::-;16494:34;16490:1;16482:6;16478:14;16471:58;16563:8;16558:2;16550:6;16546:15;16539:33;16354:225;:::o;16585:366::-;16727:3;16748:67;16812:2;16807:3;16748:67;:::i;:::-;16741:74;;16824:93;16913:3;16824:93;:::i;:::-;16942:2;16937:3;16933:12;16926:19;;16585:366;;;:::o;16957:419::-;17123:4;17161:2;17150:9;17146:18;17138:26;;17210:9;17204:4;17200:20;17196:1;17185:9;17181:17;17174:47;17238:131;17364:4;17238:131;:::i;:::-;17230:139;;16957:419;;;:::o;17382:220::-;17522:34;17518:1;17510:6;17506:14;17499:58;17591:3;17586:2;17578:6;17574:15;17567:28;17382:220;:::o;17608:366::-;17750:3;17771:67;17835:2;17830:3;17771:67;:::i;:::-;17764:74;;17847:93;17936:3;17847:93;:::i;:::-;17965:2;17960:3;17956:12;17949:19;;17608:366;;;:::o;17980:419::-;18146:4;18184:2;18173:9;18169:18;18161:26;;18233:9;18227:4;18223:20;18219:1;18208:9;18204:17;18197:47;18261:131;18387:4;18261:131;:::i;:::-;18253:139;;17980:419;;;:::o;18405:221::-;18545:34;18541:1;18533:6;18529:14;18522:58;18614:4;18609:2;18601:6;18597:15;18590:29;18405:221;:::o;18632:366::-;18774:3;18795:67;18859:2;18854:3;18795:67;:::i;:::-;18788:74;;18871:93;18960:3;18871:93;:::i;:::-;18989:2;18984:3;18980:12;18973:19;;18632:366;;;:::o;19004:419::-;19170:4;19208:2;19197:9;19193:18;19185:26;;19257:9;19251:4;19247:20;19243:1;19232:9;19228:17;19221:47;19285:131;19411:4;19285:131;:::i;:::-;19277:139;;19004:419;;;:::o;19429:181::-;19569:33;19565:1;19557:6;19553:14;19546:57;19429:181;:::o;19616:366::-;19758:3;19779:67;19843:2;19838:3;19779:67;:::i;:::-;19772:74;;19855:93;19944:3;19855:93;:::i;:::-;19973:2;19968:3;19964:12;19957:19;;19616:366;;;:::o;19988:419::-;20154:4;20192:2;20181:9;20177:18;20169:26;;20241:9;20235:4;20231:20;20227:1;20216:9;20212:17;20205:47;20269:131;20395:4;20269:131;:::i;:::-;20261:139;;19988:419;;;:::o

Swarm Source

ipfs://9f5d6e586bd24847d86ea19e5c291be60cd975bb12c46f9304daa88699616167
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.