ETH Price: $2,418.48 (+3.44%)

Token

ERC20 ***
 

Overview

Max Total Supply

0 ERC20 ***

Holders

255

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Board 2 Death Club: Deployer
Balance
10 ERC20 ***
0x5610b0afa7586b9156848d728a64bd8fbdb7de96
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:
AiBois

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-24
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


// 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/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

// File: contracts/MultisigOwnable.sol


pragma solidity ^0.8.0;


/*
Opensea only allows EOAs to make changes to collections,
which makes it impossible to use multisigs to secure these NFT contracts
since when you want to make changes you need to transfer ownership to an EOA, who can rug.

This contract establishes a second owner that can change the EOA owner,
this way a multisig can give ownership to an EOA and later claim it back.
*/
abstract contract MultisigOwnable is Ownable {
    address public realOwner;

    constructor() {
        realOwner = msg.sender;
    }

    modifier onlyRealOwner() {
        require(realOwner == msg.sender, "MultisigOwnable: caller is not the real owner");
        _;
    }

    function transferRealOwnership(address newRealOwner) public onlyRealOwner {
        realOwner = newRealOwner;
    }

    function transferLowerOwnership(address newOwner) public onlyRealOwner {
        _transferOwnership(newOwner);
    }
}
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: contracts/B2DC.sol


pragma solidity ^0.8.4;






contract AiBois is ERC165, IERC721, IERC721Metadata, MultisigOwnable {
    using Strings for uint256;

    string private _name;
    string private _symbol;
    IERC721 immutable public AiBoisNFT;
    IERC721 immutable public portalAiboisNFT;
    address public portalAibois;
    string public baseURI;

    // EIP2309 Events
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed fromAddress, address indexed toAddress);

    constructor(string memory name_, string memory symbol_, address _AiBois, address _portalAibois, string memory baseURI_) {
        _name = name_;
        _symbol = symbol_;
        AiBoisNFT = IERC721(_AiBois);
        portalAiboisNFT = IERC721(_portalAibois);
        portalAibois = _portalAibois;
        baseURI = baseURI_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) external view virtual override returns (uint256) {
        uint256 balance = AiBoisNFT.balanceOf(owner);
        balance += portalAiboisNFT.balanceOf(owner);
        return balance;
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address owner) {
        address owner = AiBoisNFT.ownerOf(tokenId);
        if (owner == portalAibois) {
            return portalAiboisNFT.ownerOf(tokenId);
        }
        return owner;
    }
    
    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string memory newuri) external onlyRealOwner {
        baseURI = newuri;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        revert("Companion tokens can not be transferred");
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        revert("Companion tokens can not be transferred");
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        revert("Companion tokens can not be transferred");
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return false;
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        revert("Companion tokens can not be transferred");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        revert("Companion tokens can not be transferred");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        revert("Companion tokens can not be manually transferred");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     */
    function exists(uint256 tokenId) public view returns (bool) {
        return ownerOf(tokenId) != address(0);
    }

    function claim(uint256[] calldata tokenIds) external {
        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(exists(tokenIds[i]), "Token doesn't exist");
            emit Transfer(address(0), ownerOf(tokenIds[i]), tokenIds[i]);
        }
    }

    function initializeToOwners(uint256 start_, uint256 end_) external onlyRealOwner {
        for (uint256 i = start_; i <= end_; i++) {
            emit Transfer(address(0), ownerOf(i), i);
        }
    }

    function initializeBulkSimple(uint256 start_, uint256 end_) external onlyRealOwner {
        emit ConsecutiveTransfer(start_, end_, address(0), address(this));
    }

    function initializeBulk(uint256 start_, uint256 end_, uint256 batchSize) external onlyRealOwner {
        initializeBulkTo(start_, end_, batchSize, address(this));
    }
    
    function initializeBulkTo(uint256 start_, uint256 end_, uint256 batchSize, address to_) public onlyRealOwner  {
        require(end_ > start_, "ending token id must be larger than the starting token id");
        require(end_ - start_ + 1 >= batchSize, "the range of tokens must be bigger than the desired batch size");
        uint256 numOfBatches = (end_ - start_ + 1) / batchSize;
        uint256 lastBatchSize = (end_ - start_ + 1) % batchSize;
        for (uint256 i = 0; i < numOfBatches; i++) {
            emit ConsecutiveTransfer(start_ + batchSize * i, start_ + batchSize * (i+1) - 1, address(0), to_);
        }

        if (lastBatchSize > 0) {
            emit ConsecutiveTransfer(end_ - lastBatchSize + 1, end_, address(0), to_);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_AiBois","type":"address"},{"internalType":"address","name":"_portalAibois","type":"address"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"fromAddress","type":"address"},{"indexed":true,"internalType":"address","name":"toAddress","type":"address"}],"name":"ConsecutiveTransfer","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AiBoisNFT","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"start_","type":"uint256"},{"internalType":"uint256","name":"end_","type":"uint256"},{"internalType":"uint256","name":"batchSize","type":"uint256"}],"name":"initializeBulk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start_","type":"uint256"},{"internalType":"uint256","name":"end_","type":"uint256"}],"name":"initializeBulkSimple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start_","type":"uint256"},{"internalType":"uint256","name":"end_","type":"uint256"},{"internalType":"uint256","name":"batchSize","type":"uint256"},{"internalType":"address","name":"to_","type":"address"}],"name":"initializeBulkTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start_","type":"uint256"},{"internalType":"uint256","name":"end_","type":"uint256"}],"name":"initializeToOwners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"portalAibois","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"portalAiboisNFT","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"realOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferLowerOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRealOwner","type":"address"}],"name":"transferRealOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040523480156200001157600080fd5b5060405162001c5e38038062001c5e83398101604081905262000034916200029d565b6200003f33620000d3565b600180546001600160a01b0319163317905584516200006690600290602088019062000123565b5083516200007c90600390602087019062000123565b506001600160601b0319606084811b821660805283901b1660a052600480546001600160a01b0319166001600160a01b0384161790558051620000c790600590602084019062000123565b505050505050620003a7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001319062000354565b90600052602060002090601f016020900481019282620001555760008555620001a0565b82601f106200017057805160ff1916838001178555620001a0565b82800160010185558215620001a0579182015b82811115620001a057825182559160200191906001019062000183565b50620001ae929150620001b2565b5090565b5b80821115620001ae5760008155600101620001b3565b80516001600160a01b0381168114620001e157600080fd5b919050565b600082601f830112620001f857600080fd5b81516001600160401b038082111562000215576200021562000391565b604051601f8301601f19908116603f0116810190828211818310171562000240576200024062000391565b816040528381526020925086838588010111156200025d57600080fd5b600091505b8382101562000281578582018301518183018401529082019062000262565b83821115620002935760008385830101525b9695505050505050565b600080600080600060a08688031215620002b657600080fd5b85516001600160401b0380821115620002ce57600080fd5b620002dc89838a01620001e6565b96506020880151915080821115620002f357600080fd5b6200030189838a01620001e6565b95506200031160408901620001c9565b94506200032160608901620001c9565b935060808801519150808211156200033857600080fd5b506200034788828901620001e6565b9150509295509295909350565b600181811c908216806200036957607f821691505b602082108114156200038b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160601c61186f620003ef6000396000818161038b0152818161097c0152610c520152600081816102bb015281816108d30152610bb6015261186f6000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80636ba4c13811610104578063a1c3aa6d116100a2578063e985e9c511610071578063e985e9c5146103f4578063f2fde38b1461040a578063f3c8ce111461041d578063fe3d4c141461043057600080fd5b8063a1c3aa6d146103ad578063a22cb465146103c0578063b88d4fde146103ce578063c87b56dd146103e157600080fd5b8063715018a6116100de578063715018a6146103655780638da5cb5b1461036d57806395d89b411461037e5780639d9b7e011461038657600080fd5b80636ba4c138146103295780636c0360eb1461033c57806370a082311461034457600080fd5b80632cff67701161017c5780634f558e791161014b5780634f558e79146102dd578063529d2557146102f057806355f804b3146103035780636352211e1461031657600080fd5b80632cff67701461029057806335f8710e146102a35780633c53bd12146102b657806342842e0e1461028257600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806309af3f9a1461025c5780631df270f31461026f57806323b872dd1461028257600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611496565b610443565b60405190151581526020015b60405180910390f35b61020f610495565b6040516101fe9190611609565b61022f61022a366004611509565b610527565b6040516001600160a01b0390911681526020016101fe565b61025a6102553660046113f5565b61054a565b005b61025a61026a36600461128e565b610562565b60015461022f906001600160a01b031681565b61025a610255366004611301565b61025a61029e36600461128e565b610598565b60045461022f906001600160a01b031681565b61022f7f000000000000000000000000000000000000000000000000000000000000000081565b6101f26102eb366004611509565b6105e4565b61025a6102fe366004611589565b610601565b61025a6103113660046114c0565b61086f565b61022f610324366004611509565b6108b0565b61025a610337366004611421565b610a05565b61020f610b04565b61035761035236600461128e565b610b92565b6040519081526020016101fe565b61025a610cd8565b6000546001600160a01b031661022f565b61020f610cec565b61022f7f000000000000000000000000000000000000000000000000000000000000000081565b61025a6103bb36600461155d565b610cfb565b61025a6102553660046113c2565b61025a6103dc366004611342565b610d31565b61020f6103ef366004611509565b610d92565b6101f26104023660046112c8565b600092915050565b61025a61041836600461128e565b610e5c565b61025a61042b36600461153b565b610ec9565b61025a61043e36600461153b565b610f58565b60006001600160e01b031982166380ac58cd60e01b148061047457506001600160e01b03198216635b5e139f60e01b145b8061048f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104a490611762565b80601f01602080910402602001604051908101604052809291908181526020018280546104d090611762565b801561051d5780601f106104f25761010080835404028352916020019161051d565b820191906000526020600020905b81548152906001019060200180831161050057829003601f168201915b5050505050905090565b600060405162461bcd60e51b815260040161054190611689565b60405180910390fd5b60405162461bcd60e51b815260040161054190611689565b6001546001600160a01b0316331461058c5760405162461bcd60e51b81526004016105419061163c565b61059581610fc0565b50565b6001546001600160a01b031633146105c25760405162461bcd60e51b81526004016105419061163c565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000806105f0836108b0565b6001600160a01b0316141592915050565b6001546001600160a01b0316331461062b5760405162461bcd60e51b81526004016105419061163c565b8383116106a05760405162461bcd60e51b815260206004820152603960248201527f656e64696e6720746f6b656e206964206d757374206265206c6172676572207460448201527f68616e20746865207374617274696e6720746f6b656e206964000000000000006064820152608401610541565b816106ab858561171b565b6106b69060016116d0565b101561072a5760405162461bcd60e51b815260206004820152603e60248201527f7468652072616e6765206f6620746f6b656e73206d757374206265206269676760448201527f6572207468616e2074686520646573697265642062617463682073697a6500006064820152608401610541565b600082610737868661171b565b6107429060016116d0565b61074c91906116e8565b905060008361075b878761171b565b6107669060016116d0565b61077091906117b8565b905060005b8281101561080b576001600160a01b038416600061079383886116fc565b61079d908a6116d0565b7fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d60016107ca86826116d0565b6107d4908b6116fc565b6107de908d6116d0565b6107e8919061171b565b60405190815260200160405180910390a4806108038161179d565b915050610775565b508015610867576001600160a01b0383166000610828838861171b565b6108339060016116d0565b6040518881527fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d9060200160405180910390a45b505050505050565b6001546001600160a01b031633146108995760405162461bcd60e51b81526004016105419061163c565b80516108ac90600590602084019061117f565b5050565b6040516331a9108f60e11b81526004810182905260009081906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636352211e9060240160206040518083038186803b15801561091557600080fd5b505afa158015610929573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094d91906112ab565b6004549091506001600160a01b038083169116141561048f576040516331a9108f60e11b8152600481018490527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690636352211e9060240160206040518083038186803b1580156109c657600080fd5b505afa1580156109da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109fe91906112ab565b9392505050565b60005b81811015610aff57610a31838383818110610a2557610a256117f8565b905060200201356105e4565b610a735760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88191bd95cdb89dd08195e1a5cdd606a1b6044820152606401610541565b828282818110610a8557610a856117f8565b90506020020135610aad848484818110610aa157610aa16117f8565b905060200201356108b0565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480610af78161179d565b915050610a08565b505050565b60058054610b1190611762565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3d90611762565b8015610b8a5780601f10610b5f57610100808354040283529160200191610b8a565b820191906000526020600020905b815481529060010190602001808311610b6d57829003601f168201915b505050505081565b6040516370a0823160e01b81526001600160a01b03828116600483015260009182917f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b158015610bf857600080fd5b505afa158015610c0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c309190611522565b6040516370a0823160e01b81526001600160a01b0385811660048301529192507f0000000000000000000000000000000000000000000000000000000000000000909116906370a082319060240160206040518083038186803b158015610c9657600080fd5b505afa158015610caa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cce9190611522565b6109fe90826116d0565b610ce0611010565b610cea6000610fc0565b565b6060600380546104a490611762565b6001546001600160a01b03163314610d255760405162461bcd60e51b81526004016105419061163c565b610aff83838330610601565b60405162461bcd60e51b815260206004820152603060248201527f436f6d70616e696f6e20746f6b656e732063616e206e6f74206265206d616e7560448201526f185b1b1e481d1c985b9cd9995c9c995960821b6064820152608401610541565b6060610d9d826105e4565b610e015760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610541565b6000610e0b61106a565b90506000815111610e2b57604051806020016040528060008152506109fe565b80610e3584611079565b604051602001610e469291906115ca565b6040516020818303038152906040529392505050565b610e64611010565b6001600160a01b03811661058c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610541565b6001546001600160a01b03163314610ef35760405162461bcd60e51b81526004016105419061163c565b815b818111610aff5780610f06826108b0565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480610f508161179d565b915050610ef5565b6001546001600160a01b03163314610f825760405162461bcd60e51b81526004016105419061163c565b604051818152309060009084907fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d9060200160405180910390a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314610cea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610541565b6060600580546104a490611762565b60608161109d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110c757806110b18161179d565b91506110c09050600a836116e8565b91506110a1565b60008167ffffffffffffffff8111156110e2576110e261180e565b6040519080825280601f01601f19166020018201604052801561110c576020820181803683370190505b5090505b84156111775761112160018361171b565b915061112e600a866117b8565b6111399060306116d0565b60f81b81838151811061114e5761114e6117f8565b60200101906001600160f81b031916908160001a905350611170600a866116e8565b9450611110565b949350505050565b82805461118b90611762565b90600052602060002090601f0160209004810192826111ad57600085556111f3565b82601f106111c657805160ff19168380011785556111f3565b828001600101855582156111f3579182015b828111156111f35782518255916020019190600101906111d8565b506111ff929150611203565b5090565b5b808211156111ff5760008155600101611204565b600067ffffffffffffffff808411156112335761123361180e565b604051601f8501601f19908116603f0116810190828211818310171561125b5761125b61180e565b8160405280935085815286868601111561127457600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156112a057600080fd5b81356109fe81611824565b6000602082840312156112bd57600080fd5b81516109fe81611824565b600080604083850312156112db57600080fd5b82356112e681611824565b915060208301356112f681611824565b809150509250929050565b60008060006060848603121561131657600080fd5b833561132181611824565b9250602084013561133181611824565b929592945050506040919091013590565b6000806000806080858703121561135857600080fd5b843561136381611824565b9350602085013561137381611824565b925060408501359150606085013567ffffffffffffffff81111561139657600080fd5b8501601f810187136113a757600080fd5b6113b687823560208401611218565b91505092959194509250565b600080604083850312156113d557600080fd5b82356113e081611824565b9150602083013580151581146112f657600080fd5b6000806040838503121561140857600080fd5b823561141381611824565b946020939093013593505050565b6000806020838503121561143457600080fd5b823567ffffffffffffffff8082111561144c57600080fd5b818501915085601f83011261146057600080fd5b81358181111561146f57600080fd5b8660208260051b850101111561148457600080fd5b60209290920196919550909350505050565b6000602082840312156114a857600080fd5b81356001600160e01b0319811681146109fe57600080fd5b6000602082840312156114d257600080fd5b813567ffffffffffffffff8111156114e957600080fd5b8201601f810184136114fa57600080fd5b61117784823560208401611218565b60006020828403121561151b57600080fd5b5035919050565b60006020828403121561153457600080fd5b5051919050565b6000806040838503121561154e57600080fd5b50508035926020909101359150565b60008060006060848603121561157257600080fd5b505081359360208301359350604090920135919050565b6000806000806080858703121561159f57600080fd5b84359350602085013592506040850135915060608501356115bf81611824565b939692955090935050565b600083516115dc818460208801611732565b8351908301906115f0818360208801611732565b64173539b7b760d91b9101908152600501949350505050565b6020815260008251806020840152611628816040850160208701611732565b601f01601f19169190910160400192915050565b6020808252602d908201527f4d756c74697369674f776e61626c653a2063616c6c6572206973206e6f74207460408201526c3432903932b0b61037bbb732b960991b606082015260800190565b60208082526027908201527f436f6d70616e696f6e20746f6b656e732063616e206e6f74206265207472616e6040820152661cd9995c9c995960ca1b606082015260800190565b600082198211156116e3576116e36117cc565b500190565b6000826116f7576116f76117e2565b500490565b6000816000190483118215151615611716576117166117cc565b500290565b60008282101561172d5761172d6117cc565b500390565b60005b8381101561174d578181015183820152602001611735565b8381111561175c576000848401525b50505050565b600181811c9082168061177657607f821691505b6020821081141561179757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156117b1576117b16117cc565b5060010190565b6000826117c7576117c76117e2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461059557600080fdfea2646970667358221220e0f9421200cb6d41aed3fbbdd65159180189208718bd69e7de172e0062bfc1bf64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000664c52a8be09134d7f92701ebc12f34772e97474000000000000000000000000664c52a8be09134d7f92701ebc12f34772e9747400000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000014426f6172642032204465617468204169626f6973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000542324441690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d526476447745547579373834683559345a455a3436464a66716648785a576b48474a44535067794c576b5a5a2f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80636ba4c13811610104578063a1c3aa6d116100a2578063e985e9c511610071578063e985e9c5146103f4578063f2fde38b1461040a578063f3c8ce111461041d578063fe3d4c141461043057600080fd5b8063a1c3aa6d146103ad578063a22cb465146103c0578063b88d4fde146103ce578063c87b56dd146103e157600080fd5b8063715018a6116100de578063715018a6146103655780638da5cb5b1461036d57806395d89b411461037e5780639d9b7e011461038657600080fd5b80636ba4c138146103295780636c0360eb1461033c57806370a082311461034457600080fd5b80632cff67701161017c5780634f558e791161014b5780634f558e79146102dd578063529d2557146102f057806355f804b3146103035780636352211e1461031657600080fd5b80632cff67701461029057806335f8710e146102a35780633c53bd12146102b657806342842e0e1461028257600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806309af3f9a1461025c5780631df270f31461026f57806323b872dd1461028257600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611496565b610443565b60405190151581526020015b60405180910390f35b61020f610495565b6040516101fe9190611609565b61022f61022a366004611509565b610527565b6040516001600160a01b0390911681526020016101fe565b61025a6102553660046113f5565b61054a565b005b61025a61026a36600461128e565b610562565b60015461022f906001600160a01b031681565b61025a610255366004611301565b61025a61029e36600461128e565b610598565b60045461022f906001600160a01b031681565b61022f7f000000000000000000000000664c52a8be09134d7f92701ebc12f34772e9747481565b6101f26102eb366004611509565b6105e4565b61025a6102fe366004611589565b610601565b61025a6103113660046114c0565b61086f565b61022f610324366004611509565b6108b0565b61025a610337366004611421565b610a05565b61020f610b04565b61035761035236600461128e565b610b92565b6040519081526020016101fe565b61025a610cd8565b6000546001600160a01b031661022f565b61020f610cec565b61022f7f000000000000000000000000664c52a8be09134d7f92701ebc12f34772e9747481565b61025a6103bb36600461155d565b610cfb565b61025a6102553660046113c2565b61025a6103dc366004611342565b610d31565b61020f6103ef366004611509565b610d92565b6101f26104023660046112c8565b600092915050565b61025a61041836600461128e565b610e5c565b61025a61042b36600461153b565b610ec9565b61025a61043e36600461153b565b610f58565b60006001600160e01b031982166380ac58cd60e01b148061047457506001600160e01b03198216635b5e139f60e01b145b8061048f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104a490611762565b80601f01602080910402602001604051908101604052809291908181526020018280546104d090611762565b801561051d5780601f106104f25761010080835404028352916020019161051d565b820191906000526020600020905b81548152906001019060200180831161050057829003601f168201915b5050505050905090565b600060405162461bcd60e51b815260040161054190611689565b60405180910390fd5b60405162461bcd60e51b815260040161054190611689565b6001546001600160a01b0316331461058c5760405162461bcd60e51b81526004016105419061163c565b61059581610fc0565b50565b6001546001600160a01b031633146105c25760405162461bcd60e51b81526004016105419061163c565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000806105f0836108b0565b6001600160a01b0316141592915050565b6001546001600160a01b0316331461062b5760405162461bcd60e51b81526004016105419061163c565b8383116106a05760405162461bcd60e51b815260206004820152603960248201527f656e64696e6720746f6b656e206964206d757374206265206c6172676572207460448201527f68616e20746865207374617274696e6720746f6b656e206964000000000000006064820152608401610541565b816106ab858561171b565b6106b69060016116d0565b101561072a5760405162461bcd60e51b815260206004820152603e60248201527f7468652072616e6765206f6620746f6b656e73206d757374206265206269676760448201527f6572207468616e2074686520646573697265642062617463682073697a6500006064820152608401610541565b600082610737868661171b565b6107429060016116d0565b61074c91906116e8565b905060008361075b878761171b565b6107669060016116d0565b61077091906117b8565b905060005b8281101561080b576001600160a01b038416600061079383886116fc565b61079d908a6116d0565b7fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d60016107ca86826116d0565b6107d4908b6116fc565b6107de908d6116d0565b6107e8919061171b565b60405190815260200160405180910390a4806108038161179d565b915050610775565b508015610867576001600160a01b0383166000610828838861171b565b6108339060016116d0565b6040518881527fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d9060200160405180910390a45b505050505050565b6001546001600160a01b031633146108995760405162461bcd60e51b81526004016105419061163c565b80516108ac90600590602084019061117f565b5050565b6040516331a9108f60e11b81526004810182905260009081906001600160a01b037f000000000000000000000000664c52a8be09134d7f92701ebc12f34772e974741690636352211e9060240160206040518083038186803b15801561091557600080fd5b505afa158015610929573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094d91906112ab565b6004549091506001600160a01b038083169116141561048f576040516331a9108f60e11b8152600481018490527f000000000000000000000000664c52a8be09134d7f92701ebc12f34772e974746001600160a01b031690636352211e9060240160206040518083038186803b1580156109c657600080fd5b505afa1580156109da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109fe91906112ab565b9392505050565b60005b81811015610aff57610a31838383818110610a2557610a256117f8565b905060200201356105e4565b610a735760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88191bd95cdb89dd08195e1a5cdd606a1b6044820152606401610541565b828282818110610a8557610a856117f8565b90506020020135610aad848484818110610aa157610aa16117f8565b905060200201356108b0565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480610af78161179d565b915050610a08565b505050565b60058054610b1190611762565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3d90611762565b8015610b8a5780601f10610b5f57610100808354040283529160200191610b8a565b820191906000526020600020905b815481529060010190602001808311610b6d57829003601f168201915b505050505081565b6040516370a0823160e01b81526001600160a01b03828116600483015260009182917f000000000000000000000000664c52a8be09134d7f92701ebc12f34772e9747416906370a082319060240160206040518083038186803b158015610bf857600080fd5b505afa158015610c0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c309190611522565b6040516370a0823160e01b81526001600160a01b0385811660048301529192507f000000000000000000000000664c52a8be09134d7f92701ebc12f34772e97474909116906370a082319060240160206040518083038186803b158015610c9657600080fd5b505afa158015610caa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cce9190611522565b6109fe90826116d0565b610ce0611010565b610cea6000610fc0565b565b6060600380546104a490611762565b6001546001600160a01b03163314610d255760405162461bcd60e51b81526004016105419061163c565b610aff83838330610601565b60405162461bcd60e51b815260206004820152603060248201527f436f6d70616e696f6e20746f6b656e732063616e206e6f74206265206d616e7560448201526f185b1b1e481d1c985b9cd9995c9c995960821b6064820152608401610541565b6060610d9d826105e4565b610e015760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610541565b6000610e0b61106a565b90506000815111610e2b57604051806020016040528060008152506109fe565b80610e3584611079565b604051602001610e469291906115ca565b6040516020818303038152906040529392505050565b610e64611010565b6001600160a01b03811661058c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610541565b6001546001600160a01b03163314610ef35760405162461bcd60e51b81526004016105419061163c565b815b818111610aff5780610f06826108b0565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480610f508161179d565b915050610ef5565b6001546001600160a01b03163314610f825760405162461bcd60e51b81526004016105419061163c565b604051818152309060009084907fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d9060200160405180910390a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314610cea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610541565b6060600580546104a490611762565b60608161109d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110c757806110b18161179d565b91506110c09050600a836116e8565b91506110a1565b60008167ffffffffffffffff8111156110e2576110e261180e565b6040519080825280601f01601f19166020018201604052801561110c576020820181803683370190505b5090505b84156111775761112160018361171b565b915061112e600a866117b8565b6111399060306116d0565b60f81b81838151811061114e5761114e6117f8565b60200101906001600160f81b031916908160001a905350611170600a866116e8565b9450611110565b949350505050565b82805461118b90611762565b90600052602060002090601f0160209004810192826111ad57600085556111f3565b82601f106111c657805160ff19168380011785556111f3565b828001600101855582156111f3579182015b828111156111f35782518255916020019190600101906111d8565b506111ff929150611203565b5090565b5b808211156111ff5760008155600101611204565b600067ffffffffffffffff808411156112335761123361180e565b604051601f8501601f19908116603f0116810190828211818310171561125b5761125b61180e565b8160405280935085815286868601111561127457600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156112a057600080fd5b81356109fe81611824565b6000602082840312156112bd57600080fd5b81516109fe81611824565b600080604083850312156112db57600080fd5b82356112e681611824565b915060208301356112f681611824565b809150509250929050565b60008060006060848603121561131657600080fd5b833561132181611824565b9250602084013561133181611824565b929592945050506040919091013590565b6000806000806080858703121561135857600080fd5b843561136381611824565b9350602085013561137381611824565b925060408501359150606085013567ffffffffffffffff81111561139657600080fd5b8501601f810187136113a757600080fd5b6113b687823560208401611218565b91505092959194509250565b600080604083850312156113d557600080fd5b82356113e081611824565b9150602083013580151581146112f657600080fd5b6000806040838503121561140857600080fd5b823561141381611824565b946020939093013593505050565b6000806020838503121561143457600080fd5b823567ffffffffffffffff8082111561144c57600080fd5b818501915085601f83011261146057600080fd5b81358181111561146f57600080fd5b8660208260051b850101111561148457600080fd5b60209290920196919550909350505050565b6000602082840312156114a857600080fd5b81356001600160e01b0319811681146109fe57600080fd5b6000602082840312156114d257600080fd5b813567ffffffffffffffff8111156114e957600080fd5b8201601f810184136114fa57600080fd5b61117784823560208401611218565b60006020828403121561151b57600080fd5b5035919050565b60006020828403121561153457600080fd5b5051919050565b6000806040838503121561154e57600080fd5b50508035926020909101359150565b60008060006060848603121561157257600080fd5b505081359360208301359350604090920135919050565b6000806000806080858703121561159f57600080fd5b84359350602085013592506040850135915060608501356115bf81611824565b939692955090935050565b600083516115dc818460208801611732565b8351908301906115f0818360208801611732565b64173539b7b760d91b9101908152600501949350505050565b6020815260008251806020840152611628816040850160208701611732565b601f01601f19169190910160400192915050565b6020808252602d908201527f4d756c74697369674f776e61626c653a2063616c6c6572206973206e6f74207460408201526c3432903932b0b61037bbb732b960991b606082015260800190565b60208082526027908201527f436f6d70616e696f6e20746f6b656e732063616e206e6f74206265207472616e6040820152661cd9995c9c995960ca1b606082015260800190565b600082198211156116e3576116e36117cc565b500190565b6000826116f7576116f76117e2565b500490565b6000816000190483118215151615611716576117166117cc565b500290565b60008282101561172d5761172d6117cc565b500390565b60005b8381101561174d578181015183820152602001611735565b8381111561175c576000848401525b50505050565b600181811c9082168061177657607f821691505b6020821081141561179757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156117b1576117b16117cc565b5060010190565b6000826117c7576117c76117e2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461059557600080fdfea2646970667358221220e0f9421200cb6d41aed3fbbdd65159180189208718bd69e7de172e0062bfc1bf64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000664c52a8be09134d7f92701ebc12f34772e97474000000000000000000000000664c52a8be09134d7f92701ebc12f34772e9747400000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000014426f6172642032204465617468204169626f6973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000542324441690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d526476447745547579373834683559345a455a3436464a66716648785a576b48474a44535067794c576b5a5a2f00000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Board 2 Death Aibois
Arg [1] : symbol_ (string): B2DAi
Arg [2] : _AiBois (address): 0x664c52a8bE09134D7f92701Ebc12f34772e97474
Arg [3] : _portalAibois (address): 0x664c52a8bE09134D7f92701Ebc12f34772e97474
Arg [4] : baseURI_ (string): ipfs://QmRdvDwETuy784h5Y4ZEZ46FJfqfHxZWkHGJDSPgyLWkZZ/

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000664c52a8be09134d7f92701ebc12f34772e97474
Arg [3] : 000000000000000000000000664c52a8be09134d7f92701ebc12f34772e97474
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [6] : 426f6172642032204465617468204169626f6973000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 4232444169000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d526476447745547579373834683559345a455a3436464a
Arg [11] : 66716648785a576b48474a44535067794c576b5a5a2f00000000000000000000


Deployed Bytecode Sourcemap

14822:6530:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15711:305;;;;;;:::i;:::-;;:::i;:::-;;;7338:14:1;;7331:22;7313:41;;7301:2;7286:18;15711:305:0;;;;;;;;16712:100;;;:::i;:::-;;;;;;;:::i;18120:153::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7129:32:1;;;7111:51;;7099:2;7084:18;18120:153:0;6965:203:1;17916:138:0;;;;;;:::i;:::-;;:::i;:::-;;4499:118;;;;;;:::i;:::-;;:::i;4133:24::-;;;;;-1:-1:-1;;;;;4133:24:0;;;18769:191;;;;;;:::i;4374:117::-;;;;;;:::i;:::-;;:::i;15076:27::-;;;;;-1:-1:-1;;;;;15076:27:0;;;14988:34;;;;;19603:116;;;;;;:::i;:::-;;:::i;20578:771::-;;;;;;:::i;:::-;;:::i;17754:100::-;;;;;;:::i;:::-;;:::i;16367:274::-;;;;;;:::i;:::-;;:::i;19727:270::-;;;;;;:::i;:::-;;:::i;15110:21::-;;;:::i;16080:225::-;;;;;;:::i;:::-;;:::i;:::-;;;11750:25:1;;;11738:2;11723:18;16080:225:0;11604:177:1;2809:103:0;;;:::i;2161:87::-;2207:7;2234:6;-1:-1:-1;;;;;2234:6:0;2161:87;;16881:104;;;:::i;15029:40::-;;;;;20395:171;;;;;;:::i;:::-;;:::i;18345:152::-;;;;;;:::i;19297:233::-;;;;;;:::i;:::-;;:::i;17056:342::-;;;;;;:::i;:::-;;:::i;18568:134::-;;;;;;:::i;:::-;18665:4;18568:134;;;;;3067:201;;;;;;:::i;:::-;;:::i;20005:207::-;;;;;;:::i;:::-;;:::i;20220:167::-;;;;;;:::i;:::-;;:::i;15711:305::-;15813:4;-1:-1:-1;;;;;;15850:40:0;;-1:-1:-1;;;15850:40:0;;:105;;-1:-1:-1;;;;;;;15907:48:0;;-1:-1:-1;;;15907:48:0;15850:105;:158;;;-1:-1:-1;;;;;;;;;;9010:40:0;;;15972:36;15830:178;15711:305;-1:-1:-1;;15711:305:0:o;16712:100::-;16766:13;16799:5;16792:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16712:100;:::o;18120:153::-;18196:7;18216:49;;-1:-1:-1;;;18216:49:0;;;;;;;:::i;:::-;;;;;;;;17916:138;17997:49;;-1:-1:-1;;;17997:49:0;;;;;;;:::i;4499:118::-;4273:9;;-1:-1:-1;;;;;4273:9:0;4286:10;4273:23;4265:81;;;;-1:-1:-1;;;4265:81:0;;;;;;;:::i;:::-;4581:28:::1;4600:8;4581:18;:28::i;:::-;4499:118:::0;:::o;4374:117::-;4273:9;;-1:-1:-1;;;;;4273:9:0;4286:10;4273:23;4265:81;;;;-1:-1:-1;;;4265:81:0;;;;;;;:::i;:::-;4459:9:::1;:24:::0;;-1:-1:-1;;;;;;4459:24:0::1;-1:-1:-1::0;;;;;4459:24:0;;;::::1;::::0;;;::::1;::::0;;4374:117::o;19603:116::-;19657:4;;19681:16;19689:7;19681;:16::i;:::-;-1:-1:-1;;;;;19681:30:0;;;;19603:116;-1:-1:-1;;19603:116:0:o;20578:771::-;4273:9;;-1:-1:-1;;;;;4273:9:0;4286:10;4273:23;4265:81;;;;-1:-1:-1;;;4265:81:0;;;;;;;:::i;:::-;20714:6:::1;20707:4;:13;20699:83;;;::::0;-1:-1:-1;;;20699:83:0;;10533:2:1;20699:83:0::1;::::0;::::1;10515:21:1::0;10572:2;10552:18;;;10545:30;10611:34;10591:18;;;10584:62;10682:27;10662:18;;;10655:55;10727:19;;20699:83:0::1;10331:421:1::0;20699:83:0::1;20822:9:::0;20801:13:::1;20808:6:::0;20801:4;:13:::1;:::i;:::-;:17;::::0;20817:1:::1;20801:17;:::i;:::-;:30;;20793:105;;;::::0;-1:-1:-1;;;20793:105:0;;11375:2:1;20793:105:0::1;::::0;::::1;11357:21:1::0;11414:2;11394:18;;;11387:30;11453:34;11433:18;;;11426:62;11524:32;11504:18;;;11497:60;11574:19;;20793:105:0::1;11173:426:1::0;20793:105:0::1;20909:20;20954:9:::0;20933:13:::1;20940:6:::0;20933:4;:13:::1;:::i;:::-;:17;::::0;20949:1:::1;20933:17;:::i;:::-;20932:31;;;;:::i;:::-;20909:54:::0;-1:-1:-1;20974:21:0::1;21020:9:::0;20999:13:::1;21006:6:::0;20999:4;:13:::1;:::i;:::-;:17;::::0;21015:1:::1;20999:17;:::i;:::-;20998:31;;;;:::i;:::-;20974:55;;21045:9;21040:167;21064:12;21060:1;:16;21040:167;;;-1:-1:-1::0;;;;;21103:92:0;::::1;21187:1;21132:13;21144:1:::0;21132:9;:13:::1;:::i;:::-;21123:22;::::0;:6;:22:::1;:::i;:::-;21103:92;21176:1;21169:3;:1:::0;21176;21169:3:::1;:::i;:::-;21156:17;::::0;:9;:17:::1;:::i;:::-;21147:26;::::0;:6;:26:::1;:::i;:::-;:30;;;;:::i;:::-;21103:92;::::0;11750:25:1;;;11738:2;11723:18;21103:92:0::1;;;;;;;21078:3:::0;::::1;::::0;::::1;:::i;:::-;;;;21040:167;;;-1:-1:-1::0;21223:17:0;;21219:123:::1;;-1:-1:-1::0;;;;;21262:68:0;::::1;21322:1;21282:20;21289:13:::0;21282:4;:20:::1;:::i;:::-;:24;::::0;21305:1:::1;21282:24;:::i;:::-;21262:68;::::0;11750:25:1;;;21262:68:0::1;::::0;11738:2:1;11723:18;21262:68:0::1;;;;;;;21219:123;20688:661;;20578:771:::0;;;;:::o;17754:100::-;4273:9;;-1:-1:-1;;;;;4273:9:0;4286:10;4273:23;4265:81;;;;-1:-1:-1;;;4265:81:0;;;;;;;:::i;:::-;17830:16;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;;17754:100:::0;:::o;16367:274::-;16481:26;;-1:-1:-1;;;16481:26:0;;;;;11750:25:1;;;16439:13:0;;;;-1:-1:-1;;;;;16481:9:0;:17;;;;11723:18:1;;16481:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16531:12;;16465:42;;-1:-1:-1;;;;;;16522:21:0;;;16531:12;;16522:21;16518:93;;;16567:32;;-1:-1:-1;;;16567:32:0;;;;;11750:25:1;;;16567:15:0;-1:-1:-1;;;;;16567:23:0;;;;11723:18:1;;16567:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16560:39;16367:274;-1:-1:-1;;;16367:274:0:o;19727:270::-;19796:9;19791:199;19811:19;;;19791:199;;;19860:19;19867:8;;19876:1;19867:11;;;;;;;:::i;:::-;;;;;;;19860:6;:19::i;:::-;19852:51;;;;-1:-1:-1;;;19852:51:0;;8178:2:1;19852:51:0;;;8160:21:1;8217:2;8197:18;;;8190:30;-1:-1:-1;;;8236:18:1;;;8229:49;8295:18;;19852:51:0;7976:343:1;19852:51:0;19966:8;;19975:1;19966:11;;;;;;;:::i;:::-;;;;;;;19944:20;19952:8;;19961:1;19952:11;;;;;;;:::i;:::-;;;;;;;19944:7;:20::i;:::-;-1:-1:-1;;;;;19923:55:0;19940:1;-1:-1:-1;;;;;19923:55:0;;;;;;;;;;;19832:3;;;;:::i;:::-;;;;19791:199;;;;19727:270;;:::o;15110:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16080:225::-;16192:26;;-1:-1:-1;;;16192:26:0;;-1:-1:-1;;;;;7129:32:1;;;16192:26:0;;;7111:51:1;16154:7:0;;;;16192:9;:19;;;;7084:18:1;;16192:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16240:32;;-1:-1:-1;;;16240:32:0;;-1:-1:-1;;;;;7129:32:1;;;16240::0;;;7111:51:1;16174:44:0;;-1:-1:-1;16240:15:0;:25;;;;;;7084:18:1;;16240:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16229:43;;;;:::i;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;16881:104::-;16937:13;16970:7;16963:14;;;;;:::i;20395:171::-;4273:9;;-1:-1:-1;;;;;4273:9:0;4286:10;4273:23;4265:81;;;;-1:-1:-1;;;4265:81:0;;;;;;;:::i;:::-;20502:56:::1;20519:6;20527:4;20533:9;20552:4;20502:16;:56::i;19297:233::-:0;19464:58;;-1:-1:-1;;;19464:58:0;;9347:2:1;19464:58:0;;;9329:21:1;9386:2;9366:18;;;9359:30;9425:34;9405:18;;;9398:62;-1:-1:-1;;;9476:18:1;;;9469:46;9532:19;;19464:58:0;9145:412:1;17056:342:0;17129:13;17163:15;17170:7;17163:6;:15::i;:::-;17155:75;;;;-1:-1:-1;;;17155:75:0;;10959:2:1;17155:75:0;;;10941:21:1;10998:2;10978:18;;;10971:30;11037:34;11017:18;;;11010:62;-1:-1:-1;;;11088:18:1;;;11081:45;11143:19;;17155:75:0;10757:411:1;17155:75:0;17243:21;17267:10;:8;:10::i;:::-;17243:34;;17319:1;17301:7;17295:21;:25;:95;;;;;;;;;;;;;;;;;17347:7;17356:18;:7;:16;:18::i;:::-;17330:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17288:102;17056:342;-1:-1:-1;;;17056:342:0:o;3067:201::-;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;3156:22:0;::::1;3148:73;;;::::0;-1:-1:-1;;;3148:73:0;;8526:2:1;3148:73:0::1;::::0;::::1;8508:21:1::0;8565:2;8545:18;;;8538:30;8604:34;8584:18;;;8577:62;-1:-1:-1;;;8655:18:1;;;8648:36;8701:19;;3148:73:0::1;8324:402:1::0;20005:207:0;4273:9;;-1:-1:-1;;;;;4273:9:0;4286:10;4273:23;4265:81;;;;-1:-1:-1;;;4265:81:0;;;;;;;:::i;:::-;20114:6;20097:108:::1;20127:4;20122:1;:9;20097:108;;20191:1;20179:10;20187:1;20179:7;:10::i;:::-;-1:-1:-1::0;;;;;20158:35:0::1;20175:1;-1:-1:-1::0;;;;;20158:35:0::1;;;;;;;;;;;20133:3:::0;::::1;::::0;::::1;:::i;:::-;;;;20097:108;;20220:167:::0;4273:9;;-1:-1:-1;;;;;4273:9:0;4286:10;4273:23;4265:81;;;;-1:-1:-1;;;4265:81:0;;;;;;;:::i;:::-;20319:60:::1;::::0;11750:25:1;;;20373:4:0::1;::::0;20361:1:::1;::::0;20339:6;;20319:60:::1;::::0;11738:2:1;11723:18;20319:60:0::1;;;;;;;20220:167:::0;;:::o;3428:191::-;3502:16;3521:6;;-1:-1:-1;;;;;3538:17:0;;;-1:-1:-1;;;;;;3538:17:0;;;;;;3571:40;;3521:6;;;;;;;3571:40;;3502:16;3571:40;3491:128;3428:191;:::o;2326:132::-;2207:7;2234:6;-1:-1:-1;;;;;2234:6:0;792:10;2390:23;2382:68;;;;-1:-1:-1;;;2382:68:0;;10172:2:1;2382:68:0;;;10154:21:1;;;10191:18;;;10184:30;10250:34;10230:18;;;10223:62;10302:18;;2382:68:0;9970:356:1;17647:99:0;17698:13;17731:7;17724:14;;;;;:::i;5052:723::-;5108:13;5329:10;5325:53;;-1:-1:-1;;5356:10:0;;;;;;;;;;;;-1:-1:-1;;;5356:10:0;;;;;5052:723::o;5325:53::-;5403:5;5388:12;5444:78;5451:9;;5444:78;;5477:8;;;;:::i;:::-;;-1:-1:-1;5500:10:0;;-1:-1:-1;5508:2:0;5500:10;;:::i;:::-;;;5444:78;;;5532:19;5564:6;5554:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5554:17:0;;5532:39;;5582:154;5589:10;;5582:154;;5616:11;5626:1;5616:11;;:::i;:::-;;-1:-1:-1;5685:10:0;5693:2;5685:5;:10;:::i;:::-;5672:24;;:2;:24;:::i;:::-;5659:39;;5642:6;5649;5642:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5642:56:0;;;;;;;;-1:-1:-1;5713:11:0;5722:2;5713:11;;:::i;:::-;;;5582:154;;;5760:6;5052:723;-1:-1:-1;;;;5052:723:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:251::-;972:6;1025:2;1013:9;1004:7;1000:23;996:32;993:52;;;1041:1;1038;1031:12;993:52;1073:9;1067:16;1092:31;1117:5;1092:31;:::i;1158:388::-;1226:6;1234;1287:2;1275:9;1266:7;1262:23;1258:32;1255:52;;;1303:1;1300;1293:12;1255:52;1342:9;1329:23;1361:31;1386:5;1361:31;:::i;:::-;1411:5;-1:-1:-1;1468:2:1;1453:18;;1440:32;1481:33;1440:32;1481:33;:::i;:::-;1533:7;1523:17;;;1158:388;;;;;:::o;1551:456::-;1628:6;1636;1644;1697:2;1685:9;1676:7;1672:23;1668:32;1665:52;;;1713:1;1710;1703:12;1665:52;1752:9;1739:23;1771:31;1796:5;1771:31;:::i;:::-;1821:5;-1:-1:-1;1878:2:1;1863:18;;1850:32;1891:33;1850:32;1891:33;:::i;:::-;1551:456;;1943:7;;-1:-1:-1;;;1997:2:1;1982:18;;;;1969:32;;1551:456::o;2012:794::-;2107:6;2115;2123;2131;2184:3;2172:9;2163:7;2159:23;2155:33;2152:53;;;2201:1;2198;2191:12;2152:53;2240:9;2227:23;2259:31;2284:5;2259:31;:::i;:::-;2309:5;-1:-1:-1;2366:2:1;2351:18;;2338:32;2379:33;2338:32;2379:33;:::i;:::-;2431:7;-1:-1:-1;2485:2:1;2470:18;;2457:32;;-1:-1:-1;2540:2:1;2525:18;;2512:32;2567:18;2556:30;;2553:50;;;2599:1;2596;2589:12;2553:50;2622:22;;2675:4;2667:13;;2663:27;-1:-1:-1;2653:55:1;;2704:1;2701;2694:12;2653:55;2727:73;2792:7;2787:2;2774:16;2769:2;2765;2761:11;2727:73;:::i;:::-;2717:83;;;2012:794;;;;;;;:::o;2811:416::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2992:9;2979:23;3011:31;3036:5;3011:31;:::i;:::-;3061:5;-1:-1:-1;3118:2:1;3103:18;;3090:32;3160:15;;3153:23;3141:36;;3131:64;;3191:1;3188;3181:12;3232:315;3300:6;3308;3361:2;3349:9;3340:7;3336:23;3332:32;3329:52;;;3377:1;3374;3367:12;3329:52;3416:9;3403:23;3435:31;3460:5;3435:31;:::i;:::-;3485:5;3537:2;3522:18;;;;3509:32;;-1:-1:-1;;;3232:315:1:o;3552:615::-;3638:6;3646;3699:2;3687:9;3678:7;3674:23;3670:32;3667:52;;;3715:1;3712;3705:12;3667:52;3755:9;3742:23;3784:18;3825:2;3817:6;3814:14;3811:34;;;3841:1;3838;3831:12;3811:34;3879:6;3868:9;3864:22;3854:32;;3924:7;3917:4;3913:2;3909:13;3905:27;3895:55;;3946:1;3943;3936:12;3895:55;3986:2;3973:16;4012:2;4004:6;4001:14;3998:34;;;4028:1;4025;4018:12;3998:34;4081:7;4076:2;4066:6;4063:1;4059:14;4055:2;4051:23;4047:32;4044:45;4041:65;;;4102:1;4099;4092:12;4041:65;4133:2;4125:11;;;;;4155:6;;-1:-1:-1;3552:615:1;;-1:-1:-1;;;;3552:615:1:o;4172:286::-;4230:6;4283:2;4271:9;4262:7;4258:23;4254:32;4251:52;;;4299:1;4296;4289:12;4251:52;4325:23;;-1:-1:-1;;;;;;4377:32:1;;4367:43;;4357:71;;4424:1;4421;4414:12;4463:450;4532:6;4585:2;4573:9;4564:7;4560:23;4556:32;4553:52;;;4601:1;4598;4591:12;4553:52;4641:9;4628:23;4674:18;4666:6;4663:30;4660:50;;;4706:1;4703;4696:12;4660:50;4729:22;;4782:4;4774:13;;4770:27;-1:-1:-1;4760:55:1;;4811:1;4808;4801:12;4760:55;4834:73;4899:7;4894:2;4881:16;4876:2;4872;4868:11;4834:73;:::i;4918:180::-;4977:6;5030:2;5018:9;5009:7;5005:23;5001:32;4998:52;;;5046:1;5043;5036:12;4998:52;-1:-1:-1;5069:23:1;;4918:180;-1:-1:-1;4918:180:1:o;5103:184::-;5173:6;5226:2;5214:9;5205:7;5201:23;5197:32;5194:52;;;5242:1;5239;5232:12;5194:52;-1:-1:-1;5265:16:1;;5103:184;-1:-1:-1;5103:184:1:o;5292:248::-;5360:6;5368;5421:2;5409:9;5400:7;5396:23;5392:32;5389:52;;;5437:1;5434;5427:12;5389:52;-1:-1:-1;;5460:23:1;;;5530:2;5515:18;;;5502:32;;-1:-1:-1;5292:248:1:o;5545:316::-;5622:6;5630;5638;5691:2;5679:9;5670:7;5666:23;5662:32;5659:52;;;5707:1;5704;5697:12;5659:52;-1:-1:-1;;5730:23:1;;;5800:2;5785:18;;5772:32;;-1:-1:-1;5851:2:1;5836:18;;;5823:32;;5545:316;-1:-1:-1;5545:316:1:o;5866:452::-;5952:6;5960;5968;5976;6029:3;6017:9;6008:7;6004:23;6000:33;5997:53;;;6046:1;6043;6036:12;5997:53;6082:9;6069:23;6059:33;;6139:2;6128:9;6124:18;6111:32;6101:42;;6190:2;6179:9;6175:18;6162:32;6152:42;;6244:2;6233:9;6229:18;6216:32;6257:31;6282:5;6257:31;:::i;:::-;5866:452;;;;-1:-1:-1;5866:452:1;;-1:-1:-1;;5866:452:1:o;6323:637::-;6603:3;6641:6;6635:13;6657:53;6703:6;6698:3;6691:4;6683:6;6679:17;6657:53;:::i;:::-;6773:13;;6732:16;;;;6795:57;6773:13;6732:16;6829:4;6817:17;;6795:57;:::i;:::-;-1:-1:-1;;;6874:20:1;;6903:22;;;6952:1;6941:13;;6323:637;-1:-1:-1;;;;6323:637:1:o;7588:383::-;7737:2;7726:9;7719:21;7700:4;7769:6;7763:13;7812:6;7807:2;7796:9;7792:18;7785:34;7828:66;7887:6;7882:2;7871:9;7867:18;7862:2;7854:6;7850:15;7828:66;:::i;:::-;7955:2;7934:15;-1:-1:-1;;7930:29:1;7915:45;;;;7962:2;7911:54;;7588:383;-1:-1:-1;;7588:383:1:o;8731:409::-;8933:2;8915:21;;;8972:2;8952:18;;;8945:30;9011:34;9006:2;8991:18;;8984:62;-1:-1:-1;;;9077:2:1;9062:18;;9055:43;9130:3;9115:19;;8731:409::o;9562:403::-;9764:2;9746:21;;;9803:2;9783:18;;;9776:30;9842:34;9837:2;9822:18;;9815:62;-1:-1:-1;;;9908:2:1;9893:18;;9886:37;9955:3;9940:19;;9562:403::o;11786:128::-;11826:3;11857:1;11853:6;11850:1;11847:13;11844:39;;;11863:18;;:::i;:::-;-1:-1:-1;11899:9:1;;11786:128::o;11919:120::-;11959:1;11985;11975:35;;11990:18;;:::i;:::-;-1:-1:-1;12024:9:1;;11919:120::o;12044:168::-;12084:7;12150:1;12146;12142:6;12138:14;12135:1;12132:21;12127:1;12120:9;12113:17;12109:45;12106:71;;;12157:18;;:::i;:::-;-1:-1:-1;12197:9:1;;12044:168::o;12217:125::-;12257:4;12285:1;12282;12279:8;12276:34;;;12290:18;;:::i;:::-;-1:-1:-1;12327:9:1;;12217:125::o;12347:258::-;12419:1;12429:113;12443:6;12440:1;12437:13;12429:113;;;12519:11;;;12513:18;12500:11;;;12493:39;12465:2;12458:10;12429:113;;;12560:6;12557:1;12554:13;12551:48;;;12595:1;12586:6;12581:3;12577:16;12570:27;12551:48;;12347:258;;;:::o;12610:380::-;12689:1;12685:12;;;;12732;;;12753:61;;12807:4;12799:6;12795:17;12785:27;;12753:61;12860:2;12852:6;12849:14;12829:18;12826:38;12823:161;;;12906:10;12901:3;12897:20;12894:1;12887:31;12941:4;12938:1;12931:15;12969:4;12966:1;12959:15;12823:161;;12610:380;;;:::o;12995:135::-;13034:3;-1:-1:-1;;13055:17:1;;13052:43;;;13075:18;;:::i;:::-;-1:-1:-1;13122:1:1;13111:13;;12995:135::o;13135:112::-;13167:1;13193;13183:35;;13198:18;;:::i;:::-;-1:-1:-1;13232:9:1;;13135:112::o;13252:127::-;13313:10;13308:3;13304:20;13301:1;13294:31;13344:4;13341:1;13334:15;13368:4;13365:1;13358:15;13384:127;13445:10;13440:3;13436:20;13433:1;13426:31;13476:4;13473:1;13466:15;13500:4;13497:1;13490:15;13516:127;13577:10;13572:3;13568:20;13565:1;13558:31;13608:4;13605:1;13598:15;13632:4;13629:1;13622:15;13648:127;13709:10;13704:3;13700:20;13697:1;13690:31;13740:4;13737:1;13730:15;13764:4;13761:1;13754:15;13780:131;-1:-1:-1;;;;;13855:31:1;;13845:42;;13835:70;;13901:1;13898;13891:12

Swarm Source

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