ETH Price: $3,299.70 (+0.43%)
 

Overview

Max Total Supply

10,000,000,000 HYCO

Holders

52

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
HyperUnity

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : HyperUnity.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract HyperUnity is Ownable, ERC20Capped {
    
    address constant public TREASURE_ADDRESS = 0xD57196e9d2D2980647A04aFa5dB83F3919117A5d;
    address constant public DEV_ADDRESS = 0x9A4fA16Cc8eEfE428A0eD0e3feCA1290dF7D32f0;
    address constant public COLLATERAL_ADDRESS = 0xA8e0250eC7F57Ad8107C8Df3138838e02d856434;

    constructor() ERC20("HyperUnity", "HYCO") ERC20Capped(10000 * 10**6 * 10**18) {
        uint256 cap = 10000 * 10**6 * 10**18;
        uint256 treasure = 700 * 10**6 * 10**18;
        uint256 dev = 500 * 10**6* 10**18;
        uint256 collateral = 1000*  10**6* 10**18;
        uint256 owner = 7800 * 10**6* 10**18;
        uint256 initialBalance = treasure + dev + collateral + owner;
        require(initialBalance == cap, "CommonERC20: initial allocations wrong"); 
        ERC20._mint(msg.sender, owner);
        ERC20._mint(TREASURE_ADDRESS, treasure);
        ERC20._mint(DEV_ADDRESS, dev);
        ERC20._mint(COLLATERAL_ADDRESS, collateral);
    }
}

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @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 {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC20.sol";

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

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

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

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

// SPDX-License-Identifier: MIT

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 guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// SPDX-License-Identifier: MIT

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;
    }
}

// SPDX-License-Identifier: MIT

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);
}

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COLLATERAL_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURE_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b506b204fce5e3e250261100000006040518060400160405280600a81526020017f4879706572556e697479000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4859434f00000000000000000000000000000000000000000000000000000000815250620000ab6200009f6200029860201b60201c565b620002a060201b60201c565b8160049080519060200190620000c3929190620004e8565b508060059080519060200190620000dc929190620004e8565b5050506000811162000125576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011c906200061e565b60405180910390fd5b80608081815250505060006b204fce5e3e25026110000000905060006b024306c4097859c43c000000905060006b019d971e4fe8401e74000000905060006b033b2e3c9fd0803ce8000000905060006b1934023f44f3e841780000009050600081838587620001959190620006b2565b620001a19190620006b2565b620001ad9190620006b2565b9050858114620001f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001eb9062000640565b60405180910390fd5b6200020b33836200036460201b62000a8a1760201c565b6200023673d57196e9d2d2980647a04afa5db83f3919117a5d866200036460201b62000a8a1760201c565b62000261739a4fa16cc8eefe428a0ed0e3feca1290df7d32f0856200036460201b62000a8a1760201c565b6200028c73a8e0250ec7f57ad8107c8df3138838e02d856434846200036460201b62000a8a1760201c565b5050505050506200084e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ce9062000662565b60405180910390fd5b620003eb60008383620004de60201b60201c565b8060036000828254620003ff9190620006b2565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004579190620006b2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004be919062000684565b60405180910390a3620004da60008383620004e360201b60201c565b5050565b505050565b505050565b828054620004f69062000719565b90600052602060002090601f0160209004810192826200051a576000855562000566565b82601f106200053557805160ff191683800117855562000566565b8280016001018555821562000566579182015b828111156200056557825182559160200191906001019062000548565b5b50905062000575919062000579565b5090565b5b80821115620005945760008160009055506001016200057a565b5090565b6000620005a7601583620006a1565b9150620005b482620007ad565b602082019050919050565b6000620005ce602683620006a1565b9150620005db82620007d6565b604082019050919050565b6000620005f5601f83620006a1565b9150620006028262000825565b602082019050919050565b62000618816200070f565b82525050565b60006020820190508181036000830152620006398162000598565b9050919050565b600060208201905081810360008301526200065b81620005bf565b9050919050565b600060208201905081810360008301526200067d81620005e6565b9050919050565b60006020820190506200069b60008301846200060d565b92915050565b600082825260208201905092915050565b6000620006bf826200070f565b9150620006cc836200070f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200070457620007036200074f565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200073257607f821691505b602082108114156200074957620007486200077e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b7f436f6d6d6f6e45524332303a20696e697469616c20616c6c6f636174696f6e7360008201527f2077726f6e670000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b608051611a946200086a600039600061055e0152611a946000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a257806395d89b411161007157806395d89b41146102d5578063a457c2d7146102f3578063a9059cbb14610323578063dd62ed3e14610353578063f2fde38b1461038357610116565b8063715018a614610271578063813f79de1461027b5780638da5cb5b1461029957806391cb6e71146102b757610116565b8063313ce567116100e9578063313ce567146101b7578063355274ea146101d557806339509351146101f35780635639e8cf1461022357806370a082311461024157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039f565b6040516101309190611433565b60405180910390f35b610153600480360381019061014e91906111ee565b610431565b6040516101609190611418565b60405180910390f35b61017161044f565b60405161017e9190611595565b60405180910390f35b6101a1600480360381019061019c919061119f565b610459565b6040516101ae9190611418565b60405180910390f35b6101bf610551565b6040516101cc91906115b0565b60405180910390f35b6101dd61055a565b6040516101ea9190611595565b60405180910390f35b61020d600480360381019061020891906111ee565b610582565b60405161021a9190611418565b60405180910390f35b61022b61062e565b60405161023891906113fd565b60405180910390f35b61025b6004803603810190610256919061113a565b610646565b6040516102689190611595565b60405180910390f35b61027961068f565b005b610283610717565b60405161029091906113fd565b60405180910390f35b6102a161072f565b6040516102ae91906113fd565b60405180910390f35b6102bf610758565b6040516102cc91906113fd565b60405180910390f35b6102dd610770565b6040516102ea9190611433565b60405180910390f35b61030d600480360381019061030891906111ee565b610802565b60405161031a9190611418565b60405180910390f35b61033d600480360381019061033891906111ee565b6108ed565b60405161034a9190611418565b60405180910390f35b61036d60048036038101906103689190611163565b61090b565b60405161037a9190611595565b60405180910390f35b61039d6004803603810190610398919061113a565b610992565b005b6060600480546103ae906116c5565b80601f01602080910402602001604051908101604052809291908181526020018280546103da906116c5565b80156104275780601f106103fc57610100808354040283529160200191610427565b820191906000526020600020905b81548152906001019060200180831161040a57829003601f168201915b5050505050905090565b600061044561043e610beb565b8484610bf3565b6001905092915050565b6000600354905090565b6000610466848484610dbe565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104b1610beb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610528906114d5565b60405180910390fd5b6105458561053d610beb565b858403610bf3565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600061062461058f610beb565b84846002600061059d610beb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061f91906115e7565b610bf3565b6001905092915050565b739a4fa16cc8eefe428a0ed0e3feca1290df7d32f081565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610697610beb565b73ffffffffffffffffffffffffffffffffffffffff166106b561072f565b73ffffffffffffffffffffffffffffffffffffffff161461070b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610702906114f5565b60405180910390fd5b6107156000611042565b565b73d57196e9d2d2980647a04afa5db83f3919117a5d81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b73a8e0250ec7f57ad8107c8df3138838e02d85643481565b60606005805461077f906116c5565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab906116c5565b80156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b5050505050905090565b60008060026000610811610beb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c590611555565b60405180910390fd5b6108e26108d9610beb565b85858403610bf3565b600191505092915050565b60006109016108fa610beb565b8484610dbe565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61099a610beb565b73ffffffffffffffffffffffffffffffffffffffff166109b861072f565b73ffffffffffffffffffffffffffffffffffffffff1614610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a05906114f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590611475565b60405180910390fd5b610a8781611042565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190611575565b60405180910390fd5b610b0660008383611106565b8060036000828254610b1891906115e7565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b6e91906115e7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bd39190611595565b60405180910390a3610be76000838361110b565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90611535565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90611495565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610db19190611595565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2590611515565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590611455565b60405180910390fd5b610ea9838383611106565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f27906114b5565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fc591906115e7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110299190611595565b60405180910390a361103c84848461110b565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061111f81611a30565b92915050565b60008135905061113481611a47565b92915050565b60006020828403121561114c57600080fd5b600061115a84828501611110565b91505092915050565b6000806040838503121561117657600080fd5b600061118485828601611110565b925050602061119585828601611110565b9150509250929050565b6000806000606084860312156111b457600080fd5b60006111c286828701611110565b93505060206111d386828701611110565b92505060406111e486828701611125565b9150509250925092565b6000806040838503121561120157600080fd5b600061120f85828601611110565b925050602061122085828601611125565b9150509250929050565b6112338161163d565b82525050565b6112428161164f565b82525050565b6000611253826115cb565b61125d81856115d6565b935061126d818560208601611692565b61127681611755565b840191505092915050565b600061128e6023836115d6565b915061129982611766565b604082019050919050565b60006112b16026836115d6565b91506112bc826117b5565b604082019050919050565b60006112d46022836115d6565b91506112df82611804565b604082019050919050565b60006112f76026836115d6565b915061130282611853565b604082019050919050565b600061131a6028836115d6565b9150611325826118a2565b604082019050919050565b600061133d6020836115d6565b9150611348826118f1565b602082019050919050565b60006113606025836115d6565b915061136b8261191a565b604082019050919050565b60006113836024836115d6565b915061138e82611969565b604082019050919050565b60006113a66025836115d6565b91506113b1826119b8565b604082019050919050565b60006113c9601f836115d6565b91506113d482611a07565b602082019050919050565b6113e88161167b565b82525050565b6113f781611685565b82525050565b6000602082019050611412600083018461122a565b92915050565b600060208201905061142d6000830184611239565b92915050565b6000602082019050818103600083015261144d8184611248565b905092915050565b6000602082019050818103600083015261146e81611281565b9050919050565b6000602082019050818103600083015261148e816112a4565b9050919050565b600060208201905081810360008301526114ae816112c7565b9050919050565b600060208201905081810360008301526114ce816112ea565b9050919050565b600060208201905081810360008301526114ee8161130d565b9050919050565b6000602082019050818103600083015261150e81611330565b9050919050565b6000602082019050818103600083015261152e81611353565b9050919050565b6000602082019050818103600083015261154e81611376565b9050919050565b6000602082019050818103600083015261156e81611399565b9050919050565b6000602082019050818103600083015261158e816113bc565b9050919050565b60006020820190506115aa60008301846113df565b92915050565b60006020820190506115c560008301846113ee565b92915050565b600081519050919050565b600082825260208201905092915050565b60006115f28261167b565b91506115fd8361167b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611632576116316116f7565b5b828201905092915050565b60006116488261165b565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156116b0578082015181840152602081019050611695565b838111156116bf576000848401525b50505050565b600060028204905060018216806116dd57607f821691505b602082108114156116f1576116f0611726565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611a398161163d565b8114611a4457600080fd5b50565b611a508161167b565b8114611a5b57600080fd5b5056fea26469706673582212206b7d24ee0ee7fdb63d503ee0607930b07e44af3b66ee769007fe2bc9f35d515864736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a257806395d89b411161007157806395d89b41146102d5578063a457c2d7146102f3578063a9059cbb14610323578063dd62ed3e14610353578063f2fde38b1461038357610116565b8063715018a614610271578063813f79de1461027b5780638da5cb5b1461029957806391cb6e71146102b757610116565b8063313ce567116100e9578063313ce567146101b7578063355274ea146101d557806339509351146101f35780635639e8cf1461022357806370a082311461024157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039f565b6040516101309190611433565b60405180910390f35b610153600480360381019061014e91906111ee565b610431565b6040516101609190611418565b60405180910390f35b61017161044f565b60405161017e9190611595565b60405180910390f35b6101a1600480360381019061019c919061119f565b610459565b6040516101ae9190611418565b60405180910390f35b6101bf610551565b6040516101cc91906115b0565b60405180910390f35b6101dd61055a565b6040516101ea9190611595565b60405180910390f35b61020d600480360381019061020891906111ee565b610582565b60405161021a9190611418565b60405180910390f35b61022b61062e565b60405161023891906113fd565b60405180910390f35b61025b6004803603810190610256919061113a565b610646565b6040516102689190611595565b60405180910390f35b61027961068f565b005b610283610717565b60405161029091906113fd565b60405180910390f35b6102a161072f565b6040516102ae91906113fd565b60405180910390f35b6102bf610758565b6040516102cc91906113fd565b60405180910390f35b6102dd610770565b6040516102ea9190611433565b60405180910390f35b61030d600480360381019061030891906111ee565b610802565b60405161031a9190611418565b60405180910390f35b61033d600480360381019061033891906111ee565b6108ed565b60405161034a9190611418565b60405180910390f35b61036d60048036038101906103689190611163565b61090b565b60405161037a9190611595565b60405180910390f35b61039d6004803603810190610398919061113a565b610992565b005b6060600480546103ae906116c5565b80601f01602080910402602001604051908101604052809291908181526020018280546103da906116c5565b80156104275780601f106103fc57610100808354040283529160200191610427565b820191906000526020600020905b81548152906001019060200180831161040a57829003601f168201915b5050505050905090565b600061044561043e610beb565b8484610bf3565b6001905092915050565b6000600354905090565b6000610466848484610dbe565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104b1610beb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610528906114d5565b60405180910390fd5b6105458561053d610beb565b858403610bf3565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000204fce5e3e25026110000000905090565b600061062461058f610beb565b84846002600061059d610beb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061f91906115e7565b610bf3565b6001905092915050565b739a4fa16cc8eefe428a0ed0e3feca1290df7d32f081565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610697610beb565b73ffffffffffffffffffffffffffffffffffffffff166106b561072f565b73ffffffffffffffffffffffffffffffffffffffff161461070b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610702906114f5565b60405180910390fd5b6107156000611042565b565b73d57196e9d2d2980647a04afa5db83f3919117a5d81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b73a8e0250ec7f57ad8107c8df3138838e02d85643481565b60606005805461077f906116c5565b80601f01602080910402602001604051908101604052809291908181526020018280546107ab906116c5565b80156107f85780601f106107cd576101008083540402835291602001916107f8565b820191906000526020600020905b8154815290600101906020018083116107db57829003601f168201915b5050505050905090565b60008060026000610811610beb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c590611555565b60405180910390fd5b6108e26108d9610beb565b85858403610bf3565b600191505092915050565b60006109016108fa610beb565b8484610dbe565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61099a610beb565b73ffffffffffffffffffffffffffffffffffffffff166109b861072f565b73ffffffffffffffffffffffffffffffffffffffff1614610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a05906114f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590611475565b60405180910390fd5b610a8781611042565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190611575565b60405180910390fd5b610b0660008383611106565b8060036000828254610b1891906115e7565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b6e91906115e7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bd39190611595565b60405180910390a3610be76000838361110b565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90611535565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90611495565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610db19190611595565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2590611515565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590611455565b60405180910390fd5b610ea9838383611106565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f27906114b5565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fc591906115e7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110299190611595565b60405180910390a361103c84848461110b565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061111f81611a30565b92915050565b60008135905061113481611a47565b92915050565b60006020828403121561114c57600080fd5b600061115a84828501611110565b91505092915050565b6000806040838503121561117657600080fd5b600061118485828601611110565b925050602061119585828601611110565b9150509250929050565b6000806000606084860312156111b457600080fd5b60006111c286828701611110565b93505060206111d386828701611110565b92505060406111e486828701611125565b9150509250925092565b6000806040838503121561120157600080fd5b600061120f85828601611110565b925050602061122085828601611125565b9150509250929050565b6112338161163d565b82525050565b6112428161164f565b82525050565b6000611253826115cb565b61125d81856115d6565b935061126d818560208601611692565b61127681611755565b840191505092915050565b600061128e6023836115d6565b915061129982611766565b604082019050919050565b60006112b16026836115d6565b91506112bc826117b5565b604082019050919050565b60006112d46022836115d6565b91506112df82611804565b604082019050919050565b60006112f76026836115d6565b915061130282611853565b604082019050919050565b600061131a6028836115d6565b9150611325826118a2565b604082019050919050565b600061133d6020836115d6565b9150611348826118f1565b602082019050919050565b60006113606025836115d6565b915061136b8261191a565b604082019050919050565b60006113836024836115d6565b915061138e82611969565b604082019050919050565b60006113a66025836115d6565b91506113b1826119b8565b604082019050919050565b60006113c9601f836115d6565b91506113d482611a07565b602082019050919050565b6113e88161167b565b82525050565b6113f781611685565b82525050565b6000602082019050611412600083018461122a565b92915050565b600060208201905061142d6000830184611239565b92915050565b6000602082019050818103600083015261144d8184611248565b905092915050565b6000602082019050818103600083015261146e81611281565b9050919050565b6000602082019050818103600083015261148e816112a4565b9050919050565b600060208201905081810360008301526114ae816112c7565b9050919050565b600060208201905081810360008301526114ce816112ea565b9050919050565b600060208201905081810360008301526114ee8161130d565b9050919050565b6000602082019050818103600083015261150e81611330565b9050919050565b6000602082019050818103600083015261152e81611353565b9050919050565b6000602082019050818103600083015261154e81611376565b9050919050565b6000602082019050818103600083015261156e81611399565b9050919050565b6000602082019050818103600083015261158e816113bc565b9050919050565b60006020820190506115aa60008301846113df565b92915050565b60006020820190506115c560008301846113ee565b92915050565b600081519050919050565b600082825260208201905092915050565b60006115f28261167b565b91506115fd8361167b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611632576116316116f7565b5b828201905092915050565b60006116488261165b565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156116b0578082015181840152602081019050611695565b838111156116bf576000848401525b50505050565b600060028204905060018216806116dd57607f821691505b602082108114156116f1576116f0611726565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611a398161163d565b8114611a4457600080fd5b50565b611a508161167b565b8114611a5b57600080fd5b5056fea26469706673582212206b7d24ee0ee7fdb63d503ee0607930b07e44af3b66ee769007fe2bc9f35d515864736f6c63430008040033

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.