ETH Price: $2,964.10 (+1.12%)
Gas: 2 Gwei

Token

SpaceShibas (SHIBAS)
 

Overview

Max Total Supply

5,270 SHIBAS

Holders

955

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 SHIBAS
0xe5a8654631b3729f73ca3503ba09a5d3e11b46da
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

10,000 shibas in space

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SpaceShibas

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 901337 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-09
*/

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

// SPDX-License-Identifier: MIT

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/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`, 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 be 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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 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);

    /**
      * @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;
}

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


pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

// File: @openzeppelin/contracts/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: @openzeppelin/contracts/utils/Address.sol


pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

// File: @openzeppelin/contracts/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/ERC721.sol


pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping (uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping (address => mapping (address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        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()))
            : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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


pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/SpaceShibas.sol

pragma solidity ^0.8.0;


contract SpaceShibas is ERC721Enumerable {

  address public immutable owner;
  uint256 public constant MAX_SUPPLY = 10000;
  uint256 public price = 1 ether / 20;
  bool public saleEnabled;
  uint256 public counter = 1;
  uint256 public shibasMinted;
  string private shibasURI; 
  event ShibasBought(address buyer, uint256 shibasBought, uint256[10] shibaIndexes);

  constructor(string memory name, string memory symbol, string memory uri) ERC721(name, symbol) {
    owner = msg.sender;  
    shibasURI = uri;
  }

  function baseURI() public view returns (string memory) {
    return _baseURI();
  }
  
  function _baseURI() internal view override returns (string memory) {
    return shibasURI;
  }

  function mintBunch(uint256[] memory toMint) public {
    require(msg.sender == owner, "Only owner can mint before sale");
    shibasMinted += toMint.length;
    for (uint256 i = 0; i < toMint.length; i++) {
      require(toMint[i] != 0 && toMint[i] <= MAX_SUPPLY, "Invalid tokenId");
      _mint(msg.sender, toMint[i]); 
    }
  }

  function buy(uint256 amountToBuy) public payable {
    require(saleEnabled, "Sale ended");
    require(amountToBuy > 0 && amountToBuy <= 10, "Invalid amount");
    require(msg.value == price * amountToBuy, "Invalid amount of ether for amount to buy");

    uint256[10] memory tokenIdsToMint;
    uint256 tokensToMint;
    uint256 i = counter;

    while (tokensToMint < amountToBuy) {
        if (!_exists(i)) {
            tokenIdsToMint[tokensToMint] = i;
            tokensToMint++;
        }
        counter = ++i;
        if (i > MAX_SUPPLY) {
            saleEnabled = false;
            payable(msg.sender).transfer((amountToBuy - tokensToMint) * price);
            break;
        }
    }
    
    emit ShibasBought(msg.sender, tokensToMint, tokenIdsToMint);
    shibasMinted += tokensToMint;
    
    for (uint256 j = 0; j < tokensToMint; j++) {
      _mint(msg.sender, tokenIdsToMint[j]); 
    }
  }

  function withdraw() public {
    require(msg.sender == owner, "Only owner can withdraw");
    payable(msg.sender).transfer(address(this).balance); 
  }

  function setSaleEnabled(bool to) public {
    require(msg.sender == owner, "Only owner can toggle sale state");
    saleEnabled = to;
  }

  function setCounter(uint256 to) public {
    require(msg.sender == owner, "Only owner can set counter");
    counter = to;
  }

  function setPrice(uint256 to) public {
    require(msg.sender == owner, "Only owner can set prices");
    price = to;
  }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"uri","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":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"shibasBought","type":"uint256"},{"indexed":false,"internalType":"uint256[10]","name":"shibaIndexes","type":"uint256[10]"}],"name":"ShibasBought","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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"amountToBuy","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"toMint","type":"uint256[]"}],"name":"mintBunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"saleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"to","type":"uint256"}],"name":"setCounter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"to","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"to","type":"bool"}],"name":"setSaleEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shibasMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405266b1a2bc2ec50000600a556001600c553480156200002157600080fd5b5060405162002f7738038062002f778339810160408190526200004491620001f9565b8251839083906200005d9060009060208501906200009c565b508051620000739060019060208401906200009c565b5050503360601b60805280516200009290600e9060208401906200009c565b50505050620002dd565b828054620000aa906200028a565b90600052602060002090601f016020900481019282620000ce576000855562000119565b82601f10620000e957805160ff191683800117855562000119565b8280016001018555821562000119579182015b8281111562000119578251825591602001919060010190620000fc565b50620001279291506200012b565b5090565b5b808211156200012757600081556001016200012c565b600082601f8301126200015457600080fd5b81516001600160401b0380821115620001715762000171620002c7565b604051601f8301601f19908116603f011681019082821181831017156200019c576200019c620002c7565b81604052838152602092508683858801011115620001b957600080fd5b600091505b83821015620001dd5785820183015181830184015290820190620001be565b83821115620001ef5760008385830101525b9695505050505050565b6000806000606084860312156200020f57600080fd5b83516001600160401b03808211156200022757600080fd5b620002358783880162000142565b945060208601519150808211156200024c57600080fd5b6200025a8783880162000142565b935060408601519150808211156200027157600080fd5b50620002808682870162000142565b9150509250925092565b600181811c908216806200029f57607f821691505b60208210811415620002c157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c612c586200031f60003960008181610446015281816109a501528181610c1c01528181610cec0152818161102201526110c60152612c586000f3fe6080604052600436106101c25760003560e01c80636352211e116100f757806395d89b4111610095578063bd43abc711610064578063bd43abc7146104f3578063c87b56dd14610509578063d96a094a14610529578063e985e9c51461053c57600080fd5b806395d89b4114610488578063a035b1fe1461049d578063a22cb465146104b3578063b88d4fde146104d357600080fd5b806371b9b646116100d157806371b9b646146103fa5780638bb5d9c3146104145780638da5cb5b1461043457806391b7f5ed1461046857600080fd5b80636352211e146103a55780636c0360eb146103c557806370a08231146103da57600080fd5b80632f745c59116101645780633ccfd60b1161013e5780633ccfd60b1461033a57806342842e0e1461034f5780634f6ccce71461036f57806361bc221a1461038f57600080fd5b80632f745c59146102e45780633020a18e1461030457806332cb6b0c1461032457600080fd5b8063095ea7b3116101a0578063095ea7b31461026357806318160ddd1461028557806323b872dd146102a45780632ca0dd0d146102c457600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046127ed565b610592565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105ee565b6040516101f3919061295a565b34801561022a57600080fd5b5061023e610239366004612827565b610680565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101f3565b34801561026f57600080fd5b5061028361027e3660046126fb565b61075f565b005b34801561029157600080fd5b506008545b6040519081526020016101f3565b3480156102b057600080fd5b506102836102bf3660046125b7565b6108ec565b3480156102d057600080fd5b506102836102df366004612725565b61098d565b3480156102f057600080fd5b506102966102ff3660046126fb565b610b35565b34801561031057600080fd5b5061028361031f3660046127d2565b610c04565b34801561033057600080fd5b5061029661271081565b34801561034657600080fd5b50610283610cd4565b34801561035b57600080fd5b5061028361036a3660046125b7565b610da2565b34801561037b57600080fd5b5061029661038a366004612827565b610dbd565b34801561039b57600080fd5b50610296600c5481565b3480156103b157600080fd5b5061023e6103c0366004612827565b610e7b565b3480156103d157600080fd5b50610211610f2d565b3480156103e657600080fd5b506102966103f5366004612569565b610f3c565b34801561040657600080fd5b50600b546101e79060ff1681565b34801561042057600080fd5b5061028361042f366004612827565b61100a565b34801561044057600080fd5b5061023e7f000000000000000000000000000000000000000000000000000000000000000081565b34801561047457600080fd5b50610283610483366004612827565b6110ae565b34801561049457600080fd5b50610211611152565b3480156104a957600080fd5b50610296600a5481565b3480156104bf57600080fd5b506102836104ce3660046126d1565b611161565b3480156104df57600080fd5b506102836104ee3660046125f3565b611278565b3480156104ff57600080fd5b50610296600d5481565b34801561051557600080fd5b50610211610524366004612827565b611320565b610283610537366004612827565b611430565b34801561054857600080fd5b506101e7610557366004612584565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806105e857506105e88261173e565b92915050565b6060600080546105fd90612a68565b80601f016020809104026020016040519081016040528092919081815260200182805461062990612a68565b80156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061076a82610e7b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161072d565b3373ffffffffffffffffffffffffffffffffffffffff8216148061085157506108518133610557565b6108dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161072d565b6108e78383611821565b505050565b6108f633826118c1565b610982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161072d565b6108e7838383611a31565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614610a2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4f6e6c79206f776e65722063616e206d696e74206265666f72652073616c6500604482015260640161072d565b8051600d6000828254610a3f91906129bc565b90915550600090505b8151811015610b3157818181518110610a6357610a63612b96565b6020026020010151600014158015610a965750612710828281518110610a8b57610a8b612b96565b602002602001015111155b610afc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f496e76616c696420746f6b656e49640000000000000000000000000000000000604482015260640161072d565b610b1f33838381518110610b1257610b12612b96565b6020026020010151611ca3565b80610b2981612abc565b915050610a48565b5050565b6000610b4083610f3c565b8210610bce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161072d565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614610ca3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f6e6c79206f776e65722063616e20746f67676c652073616c65207374617465604482015260640161072d565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614610d73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4f6e6c79206f776e65722063616e207769746864726177000000000000000000604482015260640161072d565b60405133904780156108fc02916000818181858888f19350505050158015610d9f573d6000803e3d6000fd5b50565b6108e783838360405180602001604052806000815250611278565b6000610dc860085490565b8210610e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161072d565b60088281548110610e6957610e69612b96565b90600052602060002001549050919050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806105e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161072d565b6060610f37611e71565b905090565b600073ffffffffffffffffffffffffffffffffffffffff8216610fe1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161072d565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146110a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4f6e6c79206f776e65722063616e2073657420636f756e746572000000000000604482015260640161072d565b600c55565b3373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000161461114d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4f6e6c79206f776e65722063616e207365742070726963657300000000000000604482015260640161072d565b600a55565b6060600180546105fd90612a68565b73ffffffffffffffffffffffffffffffffffffffff82163314156111e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161072d565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61128233836118c1565b61130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161072d565b61131a84848484611e80565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166113d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161072d565b60006113de611e71565b905060008151116113fe5760405180602001604052806000815250611429565b8061140884611f23565b60405160200161141992919061288a565b6040516020818303038152906040525b9392505050565b600b5460ff1661149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f53616c6520656e64656400000000000000000000000000000000000000000000604482015260640161072d565b6000811180156114ad5750600a8111155b611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c696420616d6f756e74000000000000000000000000000000000000604482015260640161072d565b80600a5461152191906129e8565b34146115af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f496e76616c696420616d6f756e74206f6620657468657220666f7220616d6f7560448201527f6e7420746f206275790000000000000000000000000000000000000000000000606482015260840161072d565b6115b7612511565b600c546000905b838210156116a75760008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1661161557808383600a811061160257611602612b96565b60200201528161161181612abc565b9250505b61161e81612abc565b600c81905590506127108111156116a257600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600a5433906108fc9061166a8588612a25565b61167491906129e8565b6040518115909202916000818181858888f1935050505015801561169c573d6000803e3d6000fd5b506116a7565b6115be565b7f4ef10ac6a901000a76b487f03f88fdcdd0dfa27a0fc7cf2cfdc4b22dddcbc2393383856040516116da93929190612902565b60405180910390a181600d60008282546116f491906129bc565b90915550600090505b8281101561173757611725338583600a811061171b5761171b612b96565b6020020151611ca3565b8061172f81612abc565b9150506116fd565b5050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806117d157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105e857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146105e8565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061187b82610e7b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161072d565b600061197d83610e7b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119ec57508373ffffffffffffffffffffffffffffffffffffffff166119d484610680565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a29575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611a5182610e7b565b73ffffffffffffffffffffffffffffffffffffffff1614611af4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161072d565b73ffffffffffffffffffffffffffffffffffffffff8216611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161072d565b611ba1838383612055565b611bac600082611821565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290611be2908490612a25565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611c1d9084906129bc565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b73ffffffffffffffffffffffffffffffffffffffff8216611d20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161072d565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611dac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161072d565b611db860008383612055565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611dee9084906129bc565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060600e80546105fd90612a68565b611e8b848484611a31565b611e978484848461215b565b61131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161072d565b606081611f6357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611f8d5780611f7781612abc565b9150611f869050600a836129d4565b9150611f67565b60008167ffffffffffffffff811115611fa857611fa8612bc5565b6040519080825280601f01601f191660200182016040528015611fd2576020820181803683370190505b5090505b8415611a2957611fe7600183612a25565b9150611ff4600a86612af5565b611fff9060306129bc565b60f81b81838151811061201457612014612b96565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061204e600a866129d4565b9450611fd6565b73ffffffffffffffffffffffffffffffffffffffff83166120bd576120b881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120fa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146120fa576120fa838261235a565b73ffffffffffffffffffffffffffffffffffffffff821661211e576108e781612411565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146108e7576108e782826124c0565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561234f576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906121d29033908990889088906004016128b9565b602060405180830381600087803b1580156121ec57600080fd5b505af192505050801561223a575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526122379181019061280a565b60015b612304573d808015612268576040519150601f19603f3d011682016040523d82523d6000602084013e61226d565b606091505b5080516122fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161072d565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611a29565b506001949350505050565b6000600161236784610f3c565b6123719190612a25565b6000838152600760205260409020549091508082146123d15773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b60085460009061242390600190612a25565b6000838152600960205260408120546008805493945090928490811061244b5761244b612b96565b90600052602060002001549050806008838154811061246c5761246c612b96565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124a4576124a4612b67565b6001900381819060005260206000200160009055905550505050565b60006124cb83610f3c565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b604051806101400160405280600a906020820280368337509192915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461255457600080fd5b919050565b8035801515811461255457600080fd5b60006020828403121561257b57600080fd5b61142982612530565b6000806040838503121561259757600080fd5b6125a083612530565b91506125ae60208401612530565b90509250929050565b6000806000606084860312156125cc57600080fd5b6125d584612530565b92506125e360208501612530565b9150604084013590509250925092565b6000806000806080858703121561260957600080fd5b61261285612530565b93506020612621818701612530565b935060408601359250606086013567ffffffffffffffff8082111561264557600080fd5b818801915088601f83011261265957600080fd5b81358181111561266b5761266b612bc5565b61269b847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8401160161296d565b915080825289848285010111156126b157600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156126e457600080fd5b6126ed83612530565b91506125ae60208401612559565b6000806040838503121561270e57600080fd5b61271783612530565b946020939093013593505050565b6000602080838503121561273857600080fd5b823567ffffffffffffffff8082111561275057600080fd5b818501915085601f83011261276457600080fd5b81358181111561277657612776612bc5565b8060051b915061278784830161296d565b8181528481019084860184860187018a10156127a257600080fd5b600095505b838610156127c55780358352600195909501949186019186016127a7565b5098975050505050505050565b6000602082840312156127e457600080fd5b61142982612559565b6000602082840312156127ff57600080fd5b813561142981612bf4565b60006020828403121561281c57600080fd5b815161142981612bf4565b60006020828403121561283957600080fd5b5035919050565b60008151808452612858816020860160208601612a3c565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000835161289c818460208801612a3c565b8351908301906128b0818360208801612a3c565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526128f86080830184612840565b9695505050505050565b73ffffffffffffffffffffffffffffffffffffffff841681526020808201849052610180820190604083018460005b600a81101561294e57815183529183019190830190600101612931565b50505050949350505050565b6020815260006114296020830184612840565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156129b4576129b4612bc5565b604052919050565b600082198211156129cf576129cf612b09565b500190565b6000826129e3576129e3612b38565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a2057612a20612b09565b500290565b600082821015612a3757612a37612b09565b500390565b60005b83811015612a57578181015183820152602001612a3f565b8381111561131a5750506000910152565b600181811c90821680612a7c57607f821691505b60208210811415612ab6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612aee57612aee612b09565b5060010190565b600082612b0457612b04612b38565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610d9f57600080fdfea2646970667358221220e38a24a66f18af6bc6cf759e4172f73cdf7009799f823c3f08aac3a4fc291ec264736f6c63430008060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b5370616365536869626173000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000653484942415300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d563767784c635a35333746745857686262774752654a73486932417150427a70515556466b6d4453705778622f00000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f757806395d89b4111610095578063bd43abc711610064578063bd43abc7146104f3578063c87b56dd14610509578063d96a094a14610529578063e985e9c51461053c57600080fd5b806395d89b4114610488578063a035b1fe1461049d578063a22cb465146104b3578063b88d4fde146104d357600080fd5b806371b9b646116100d157806371b9b646146103fa5780638bb5d9c3146104145780638da5cb5b1461043457806391b7f5ed1461046857600080fd5b80636352211e146103a55780636c0360eb146103c557806370a08231146103da57600080fd5b80632f745c59116101645780633ccfd60b1161013e5780633ccfd60b1461033a57806342842e0e1461034f5780634f6ccce71461036f57806361bc221a1461038f57600080fd5b80632f745c59146102e45780633020a18e1461030457806332cb6b0c1461032457600080fd5b8063095ea7b3116101a0578063095ea7b31461026357806318160ddd1461028557806323b872dd146102a45780632ca0dd0d146102c457600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046127ed565b610592565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105ee565b6040516101f3919061295a565b34801561022a57600080fd5b5061023e610239366004612827565b610680565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101f3565b34801561026f57600080fd5b5061028361027e3660046126fb565b61075f565b005b34801561029157600080fd5b506008545b6040519081526020016101f3565b3480156102b057600080fd5b506102836102bf3660046125b7565b6108ec565b3480156102d057600080fd5b506102836102df366004612725565b61098d565b3480156102f057600080fd5b506102966102ff3660046126fb565b610b35565b34801561031057600080fd5b5061028361031f3660046127d2565b610c04565b34801561033057600080fd5b5061029661271081565b34801561034657600080fd5b50610283610cd4565b34801561035b57600080fd5b5061028361036a3660046125b7565b610da2565b34801561037b57600080fd5b5061029661038a366004612827565b610dbd565b34801561039b57600080fd5b50610296600c5481565b3480156103b157600080fd5b5061023e6103c0366004612827565b610e7b565b3480156103d157600080fd5b50610211610f2d565b3480156103e657600080fd5b506102966103f5366004612569565b610f3c565b34801561040657600080fd5b50600b546101e79060ff1681565b34801561042057600080fd5b5061028361042f366004612827565b61100a565b34801561044057600080fd5b5061023e7f00000000000000000000000073a8aeb6277bd8a5d22d96d2b20638f946bb36cc81565b34801561047457600080fd5b50610283610483366004612827565b6110ae565b34801561049457600080fd5b50610211611152565b3480156104a957600080fd5b50610296600a5481565b3480156104bf57600080fd5b506102836104ce3660046126d1565b611161565b3480156104df57600080fd5b506102836104ee3660046125f3565b611278565b3480156104ff57600080fd5b50610296600d5481565b34801561051557600080fd5b50610211610524366004612827565b611320565b610283610537366004612827565b611430565b34801561054857600080fd5b506101e7610557366004612584565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806105e857506105e88261173e565b92915050565b6060600080546105fd90612a68565b80601f016020809104026020016040519081016040528092919081815260200182805461062990612a68565b80156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061076a82610e7b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161072d565b3373ffffffffffffffffffffffffffffffffffffffff8216148061085157506108518133610557565b6108dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161072d565b6108e78383611821565b505050565b6108f633826118c1565b610982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161072d565b6108e7838383611a31565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000073a8aeb6277bd8a5d22d96d2b20638f946bb36cc1614610a2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4f6e6c79206f776e65722063616e206d696e74206265666f72652073616c6500604482015260640161072d565b8051600d6000828254610a3f91906129bc565b90915550600090505b8151811015610b3157818181518110610a6357610a63612b96565b6020026020010151600014158015610a965750612710828281518110610a8b57610a8b612b96565b602002602001015111155b610afc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f496e76616c696420746f6b656e49640000000000000000000000000000000000604482015260640161072d565b610b1f33838381518110610b1257610b12612b96565b6020026020010151611ca3565b80610b2981612abc565b915050610a48565b5050565b6000610b4083610f3c565b8210610bce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161072d565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000073a8aeb6277bd8a5d22d96d2b20638f946bb36cc1614610ca3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f6e6c79206f776e65722063616e20746f67676c652073616c65207374617465604482015260640161072d565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000073a8aeb6277bd8a5d22d96d2b20638f946bb36cc1614610d73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4f6e6c79206f776e65722063616e207769746864726177000000000000000000604482015260640161072d565b60405133904780156108fc02916000818181858888f19350505050158015610d9f573d6000803e3d6000fd5b50565b6108e783838360405180602001604052806000815250611278565b6000610dc860085490565b8210610e56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161072d565b60088281548110610e6957610e69612b96565b90600052602060002001549050919050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806105e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161072d565b6060610f37611e71565b905090565b600073ffffffffffffffffffffffffffffffffffffffff8216610fe1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161072d565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000073a8aeb6277bd8a5d22d96d2b20638f946bb36cc16146110a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4f6e6c79206f776e65722063616e2073657420636f756e746572000000000000604482015260640161072d565b600c55565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000073a8aeb6277bd8a5d22d96d2b20638f946bb36cc161461114d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4f6e6c79206f776e65722063616e207365742070726963657300000000000000604482015260640161072d565b600a55565b6060600180546105fd90612a68565b73ffffffffffffffffffffffffffffffffffffffff82163314156111e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161072d565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61128233836118c1565b61130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161072d565b61131a84848484611e80565b50505050565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166113d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161072d565b60006113de611e71565b905060008151116113fe5760405180602001604052806000815250611429565b8061140884611f23565b60405160200161141992919061288a565b6040516020818303038152906040525b9392505050565b600b5460ff1661149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f53616c6520656e64656400000000000000000000000000000000000000000000604482015260640161072d565b6000811180156114ad5750600a8111155b611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f496e76616c696420616d6f756e74000000000000000000000000000000000000604482015260640161072d565b80600a5461152191906129e8565b34146115af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f496e76616c696420616d6f756e74206f6620657468657220666f7220616d6f7560448201527f6e7420746f206275790000000000000000000000000000000000000000000000606482015260840161072d565b6115b7612511565b600c546000905b838210156116a75760008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1661161557808383600a811061160257611602612b96565b60200201528161161181612abc565b9250505b61161e81612abc565b600c81905590506127108111156116a257600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600a5433906108fc9061166a8588612a25565b61167491906129e8565b6040518115909202916000818181858888f1935050505015801561169c573d6000803e3d6000fd5b506116a7565b6115be565b7f4ef10ac6a901000a76b487f03f88fdcdd0dfa27a0fc7cf2cfdc4b22dddcbc2393383856040516116da93929190612902565b60405180910390a181600d60008282546116f491906129bc565b90915550600090505b8281101561173757611725338583600a811061171b5761171b612b96565b6020020151611ca3565b8061172f81612abc565b9150506116fd565b5050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806117d157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105e857507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146105e8565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061187b82610e7b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161072d565b600061197d83610e7b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119ec57508373ffffffffffffffffffffffffffffffffffffffff166119d484610680565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a29575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611a5182610e7b565b73ffffffffffffffffffffffffffffffffffffffff1614611af4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161072d565b73ffffffffffffffffffffffffffffffffffffffff8216611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161072d565b611ba1838383612055565b611bac600082611821565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290611be2908490612a25565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611c1d9084906129bc565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b73ffffffffffffffffffffffffffffffffffffffff8216611d20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161072d565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611dac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161072d565b611db860008383612055565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290611dee9084906129bc565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060600e80546105fd90612a68565b611e8b848484611a31565b611e978484848461215b565b61131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161072d565b606081611f6357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611f8d5780611f7781612abc565b9150611f869050600a836129d4565b9150611f67565b60008167ffffffffffffffff811115611fa857611fa8612bc5565b6040519080825280601f01601f191660200182016040528015611fd2576020820181803683370190505b5090505b8415611a2957611fe7600183612a25565b9150611ff4600a86612af5565b611fff9060306129bc565b60f81b81838151811061201457612014612b96565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061204e600a866129d4565b9450611fd6565b73ffffffffffffffffffffffffffffffffffffffff83166120bd576120b881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120fa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146120fa576120fa838261235a565b73ffffffffffffffffffffffffffffffffffffffff821661211e576108e781612411565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146108e7576108e782826124c0565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561234f576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906121d29033908990889088906004016128b9565b602060405180830381600087803b1580156121ec57600080fd5b505af192505050801561223a575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526122379181019061280a565b60015b612304573d808015612268576040519150601f19603f3d011682016040523d82523d6000602084013e61226d565b606091505b5080516122fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161072d565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611a29565b506001949350505050565b6000600161236784610f3c565b6123719190612a25565b6000838152600760205260409020549091508082146123d15773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b60085460009061242390600190612a25565b6000838152600960205260408120546008805493945090928490811061244b5761244b612b96565b90600052602060002001549050806008838154811061246c5761246c612b96565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124a4576124a4612b67565b6001900381819060005260206000200160009055905550505050565b60006124cb83610f3c565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b604051806101400160405280600a906020820280368337509192915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461255457600080fd5b919050565b8035801515811461255457600080fd5b60006020828403121561257b57600080fd5b61142982612530565b6000806040838503121561259757600080fd5b6125a083612530565b91506125ae60208401612530565b90509250929050565b6000806000606084860312156125cc57600080fd5b6125d584612530565b92506125e360208501612530565b9150604084013590509250925092565b6000806000806080858703121561260957600080fd5b61261285612530565b93506020612621818701612530565b935060408601359250606086013567ffffffffffffffff8082111561264557600080fd5b818801915088601f83011261265957600080fd5b81358181111561266b5761266b612bc5565b61269b847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8401160161296d565b915080825289848285010111156126b157600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156126e457600080fd5b6126ed83612530565b91506125ae60208401612559565b6000806040838503121561270e57600080fd5b61271783612530565b946020939093013593505050565b6000602080838503121561273857600080fd5b823567ffffffffffffffff8082111561275057600080fd5b818501915085601f83011261276457600080fd5b81358181111561277657612776612bc5565b8060051b915061278784830161296d565b8181528481019084860184860187018a10156127a257600080fd5b600095505b838610156127c55780358352600195909501949186019186016127a7565b5098975050505050505050565b6000602082840312156127e457600080fd5b61142982612559565b6000602082840312156127ff57600080fd5b813561142981612bf4565b60006020828403121561281c57600080fd5b815161142981612bf4565b60006020828403121561283957600080fd5b5035919050565b60008151808452612858816020860160208601612a3c565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000835161289c818460208801612a3c565b8351908301906128b0818360208801612a3c565b01949350505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526128f86080830184612840565b9695505050505050565b73ffffffffffffffffffffffffffffffffffffffff841681526020808201849052610180820190604083018460005b600a81101561294e57815183529183019190830190600101612931565b50505050949350505050565b6020815260006114296020830184612840565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156129b4576129b4612bc5565b604052919050565b600082198211156129cf576129cf612b09565b500190565b6000826129e3576129e3612b38565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a2057612a20612b09565b500290565b600082821015612a3757612a37612b09565b500390565b60005b83811015612a57578181015183820152602001612a3f565b8381111561131a5750506000910152565b600181811c90821680612a7c57607f821691505b60208210811415612ab6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612aee57612aee612b09565b5060010190565b600082612b0457612b04612b38565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610d9f57600080fdfea2646970667358221220e38a24a66f18af6bc6cf759e4172f73cdf7009799f823c3f08aac3a4fc291ec264736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b5370616365536869626173000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000653484942415300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d563767784c635a35333746745857686262774752654a73486932417150427a70515556466b6d4453705778622f00000000000000000000

-----Decoded View---------------
Arg [0] : name (string): SpaceShibas
Arg [1] : symbol (string): SHIBAS
Arg [2] : uri (string): ipfs://QmV7gxLcZ537FtXWhbbwGReJsHi2AqPBzpQUVFkmDSpWxb/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 5370616365536869626173000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 5348494241530000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d563767784c635a35333746745857686262774752654a73
Arg [9] : 486932417150427a70515556466b6d4453705778622f00000000000000000000


Deployed Bytecode Sourcemap

40325:2587:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34133:237;;;;;;;;;;-1:-1:-1;34133:237:0;;;;;:::i;:::-;;:::i;:::-;;;6956:14:1;;6949:22;6931:41;;6919:2;6904:18;34133:237:0;;;;;;;;21513:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22973:221::-;;;;;;;;;;-1:-1:-1;22973:221:0;;;;;:::i;:::-;;:::i;:::-;;;5539:42:1;5527:55;;;5509:74;;5497:2;5482:18;22973:221:0;5464:125:1;22510:397:0;;;;;;;;;;-1:-1:-1;22510:397:0;;;;;:::i;:::-;;:::i;:::-;;34786:113;;;;;;;;;;-1:-1:-1;34874:10:0;:17;34786:113;;;17010:25:1;;;16998:2;16983:18;34786:113:0;16965:76:1;23863:305:0;;;;;;;;;;-1:-1:-1;23863:305:0;;;;;:::i;:::-;;:::i;41054:337::-;;;;;;;;;;-1:-1:-1;41054:337:0;;;;;:::i;:::-;;:::i;34454:256::-;;;;;;;;;;-1:-1:-1;34454:256:0;;;;;:::i;:::-;;:::i;42500:140::-;;;;;;;;;;-1:-1:-1;42500:140:0;;;;;:::i;:::-;;:::i;40408:42::-;;;;;;;;;;;;40445:5;40408:42;;42340:154;;;;;;;;;;;;;:::i;24239:151::-;;;;;;;;;;-1:-1:-1;24239:151:0;;;;;:::i;:::-;;:::i;34976:233::-;;;;;;;;;;-1:-1:-1;34976:233:0;;;;;:::i;:::-;;:::i;40523:26::-;;;;;;;;;;;;;;;;21207:239;;;;;;;;;;-1:-1:-1;21207:239:0;;;;;:::i;:::-;;:::i;40859:85::-;;;;;;;;;;;;;:::i;20937:208::-;;;;;;;;;;-1:-1:-1;20937:208:0;;;;;:::i;:::-;;:::i;40495:23::-;;;;;;;;;;-1:-1:-1;40495:23:0;;;;;;;;42646:129;;;;;;;;;;-1:-1:-1;42646:129:0;;;;;:::i;:::-;;:::i;40373:30::-;;;;;;;;;;;;;;;42781:124;;;;;;;;;;-1:-1:-1;42781:124:0;;;;;:::i;:::-;;:::i;21682:104::-;;;;;;;;;;;;;:::i;40455:35::-;;;;;;;;;;;;;;;;23266:295;;;;;;;;;;-1:-1:-1;23266:295:0;;;;;:::i;:::-;;:::i;24461:285::-;;;;;;;;;;-1:-1:-1;24461:285:0;;;;;:::i;:::-;;:::i;40554:27::-;;;;;;;;;;;;;;;;21857:360;;;;;;;;;;-1:-1:-1;21857:360:0;;;;;:::i;:::-;;:::i;41397:937::-;;;;;;:::i;:::-;;:::i;23632:164::-;;;;;;;;;;-1:-1:-1;23632:164:0;;;;;:::i;:::-;23753:25;;;;23729:4;23753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23632:164;34133:237;34235:4;34259:50;;;34274:35;34259:50;;:103;;;34326:36;34350:11;34326:23;:36::i;:::-;34252:110;34133:237;-1:-1:-1;;34133:237:0:o;21513:100::-;21567:13;21600:5;21593:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21513:100;:::o;22973:221::-;23049:7;26302:16;;;:7;:16;;;;;;:30;:16;23069:73;;;;;;;13900:2:1;23069:73:0;;;13882:21:1;13939:2;13919:18;;;13912:30;13978:34;13958:18;;;13951:62;14049:14;14029:18;;;14022:42;14081:19;;23069:73:0;;;;;;;;;-1:-1:-1;23162:24:0;;;;:15;:24;;;;;;;;;22973:221::o;22510:397::-;22591:13;22607:23;22622:7;22607:14;:23::i;:::-;22591:39;;22655:5;22649:11;;:2;:11;;;;22641:57;;;;;;;15833:2:1;22641:57:0;;;15815:21:1;15872:2;15852:18;;;15845:30;15911:34;15891:18;;;15884:62;15982:3;15962:18;;;15955:31;16003:19;;22641:57:0;15805:223:1;22641:57:0;15955:10;22719:21;;;;;:62;;-1:-1:-1;22744:37:0;22761:5;15955:10;23632:164;:::i;22744:37::-;22711:154;;;;;;;12293:2:1;22711:154:0;;;12275:21:1;12332:2;12312:18;;;12305:30;12371:34;12351:18;;;12344:62;12442:26;12422:18;;;12415:54;12486:19;;22711:154:0;12265:246:1;22711:154:0;22878:21;22887:2;22891:7;22878:8;:21::i;:::-;22580:327;22510:397;;:::o;23863:305::-;24024:41;15955:10;24057:7;24024:18;:41::i;:::-;24016:103;;;;;;;16235:2:1;24016:103:0;;;16217:21:1;16274:2;16254:18;;;16247:30;16313:34;16293:18;;;16286:62;16384:19;16364:18;;;16357:47;16421:19;;24016:103:0;16207:239:1;24016:103:0;24132:28;24142:4;24148:2;24152:7;24132:9;:28::i;41054:337::-;41120:10;:19;41134:5;41120:19;;41112:63;;;;;;;7409:2:1;41112:63:0;;;7391:21:1;7448:2;7428:18;;;7421:30;7487:33;7467:18;;;7460:61;7538:18;;41112:63:0;7381:181:1;41112:63:0;41198:6;:13;41182:12;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;41223:9:0;;-1:-1:-1;41218:168:0;41242:6;:13;41238:1;:17;41218:168;;;41279:6;41286:1;41279:9;;;;;;;;:::i;:::-;;;;;;;41292:1;41279:14;;:41;;;;;40445:5;41297:6;41304:1;41297:9;;;;;;;;:::i;:::-;;;;;;;:23;;41279:41;41271:69;;;;;;;10823:2:1;41271:69:0;;;10805:21:1;10862:2;10842:18;;;10835:30;10901:17;10881:18;;;10874:45;10936:18;;41271:69:0;10795:165:1;41271:69:0;41349:28;41355:10;41367:6;41374:1;41367:9;;;;;;;;:::i;:::-;;;;;;;41349:5;:28::i;:::-;41257:3;;;;:::i;:::-;;;;41218:168;;;;41054:337;:::o;34454:256::-;34551:7;34587:23;34604:5;34587:16;:23::i;:::-;34579:5;:31;34571:87;;;;;;;7769:2:1;34571:87:0;;;7751:21:1;7808:2;7788:18;;;7781:30;7847:34;7827:18;;;7820:62;7918:13;7898:18;;;7891:41;7949:19;;34571:87:0;7741:233:1;34571:87:0;-1:-1:-1;34676:19:0;;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34454:256::o;42500:140::-;42555:10;:19;42569:5;42555:19;;42547:64;;;;;;;11932:2:1;42547:64:0;;;11914:21:1;;;11951:18;;;11944:30;12010:34;11990:18;;;11983:62;12062:18;;42547:64:0;11904:182:1;42547:64:0;42618:11;:16;;;;;;;;;;;;;42500:140::o;42340:154::-;42382:10;:19;42396:5;42382:19;;42374:55;;;;;;;11580:2:1;42374:55:0;;;11562:21:1;11619:2;11599:18;;;11592:30;11658:25;11638:18;;;11631:53;11701:18;;42374:55:0;11552:173:1;42374:55:0;42436:51;;42444:10;;42465:21;42436:51;;;;;;;;;42465:21;42444:10;42436:51;;;;;;;;;;;;;;;;;;;;;42340:154::o;24239:151::-;24343:39;24360:4;24366:2;24370:7;24343:39;;;;;;;;;;;;:16;:39::i;34976:233::-;35051:7;35087:30;34874:10;:17;;34786:113;35087:30;35079:5;:38;35071:95;;;;;;;16653:2:1;35071:95:0;;;16635:21:1;16692:2;16672:18;;;16665:30;16731:34;16711:18;;;16704:62;16802:14;16782:18;;;16775:42;16834:19;;35071:95:0;16625:234:1;35071:95:0;35184:10;35195:5;35184:17;;;;;;;;:::i;:::-;;;;;;;;;35177:24;;34976:233;;;:::o;21207:239::-;21279:7;21315:16;;;:7;:16;;;;;;;;21350:19;21342:73;;;;;;;13129:2:1;21342:73:0;;;13111:21:1;13168:2;13148:18;;;13141:30;13207:34;13187:18;;;13180:62;13278:11;13258:18;;;13251:39;13307:19;;21342:73:0;13101:231:1;40859:85:0;40899:13;40928:10;:8;:10::i;:::-;40921:17;;40859:85;:::o;20937:208::-;21009:7;21037:19;;;21029:74;;;;;;;12718:2:1;21029:74:0;;;12700:21:1;12757:2;12737:18;;;12730:30;12796:34;12776:18;;;12769:62;12867:12;12847:18;;;12840:40;12897:19;;21029:74:0;12690:232:1;21029:74:0;-1:-1:-1;21121:16:0;;;;;;:9;:16;;;;;;;20937:208::o;42646:129::-;42700:10;:19;42714:5;42700:19;;42692:58;;;;;;;14313:2:1;42692:58:0;;;14295:21:1;14352:2;14332:18;;;14325:30;14391:28;14371:18;;;14364:56;14437:18;;42692:58:0;14285:176:1;42692:58:0;42757:7;:12;42646:129::o;42781:124::-;42833:10;:19;42847:5;42833:19;;42825:57;;;;;;;8181:2:1;42825:57:0;;;8163:21:1;8220:2;8200:18;;;8193:30;8259:27;8239:18;;;8232:55;8304:18;;42825:57:0;8153:175:1;42825:57:0;42889:5;:10;42781:124::o;21682:104::-;21738:13;21771:7;21764:14;;;;;:::i;23266:295::-;23369:24;;;15955:10;23369:24;;23361:62;;;;;;;10469:2:1;23361:62:0;;;10451:21:1;10508:2;10488:18;;;10481:30;10547:27;10527:18;;;10520:55;10592:18;;23361:62:0;10441:175:1;23361:62:0;15955:10;23436:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;23505:48;;6931:41:1;;;23436:42:0;;15955:10;23505:48;;6904:18:1;23505:48:0;;;;;;;23266:295;;:::o;24461:285::-;24593:41;15955:10;24626:7;24593:18;:41::i;:::-;24585:103;;;;;;;16235:2:1;24585:103:0;;;16217:21:1;16274:2;16254:18;;;16247:30;16313:34;16293:18;;;16286:62;16384:19;16364:18;;;16357:47;16421:19;;24585:103:0;16207:239:1;24585:103:0;24699:39;24713:4;24719:2;24723:7;24732:5;24699:13;:39::i;:::-;24461:285;;;;:::o;21857:360::-;26278:4;26302:16;;;:7;:16;;;;;;21930:13;;26302:30;:16;21956:76;;;;;;;15078:2:1;21956:76:0;;;15060:21:1;15117:2;15097:18;;;15090:30;15156:34;15136:18;;;15129:62;15227:17;15207:18;;;15200:45;15262:19;;21956:76:0;15050:237:1;21956:76:0;22045:21;22069:10;:8;:10::i;:::-;22045:34;;22121:1;22103:7;22097:21;:25;:112;;;;;;;;;;;;;;;;;22162:7;22171:18;:7;:16;:18::i;:::-;22145:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22097:112;22090:119;21857:360;-1:-1:-1;;;21857:360:0:o;41397:937::-;41461:11;;;;41453:34;;;;;;;15494:2:1;41453:34:0;;;15476:21:1;15533:2;15513:18;;;15506:30;15572:12;15552:18;;;15545:40;15602:18;;41453:34:0;15466:160:1;41453:34:0;41516:1;41502:11;:15;:36;;;;;41536:2;41521:11;:17;;41502:36;41494:63;;;;;;;9311:2:1;41494:63:0;;;9293:21:1;9350:2;9330:18;;;9323:30;9389:16;9369:18;;;9362:44;9423:18;;41494:63:0;9283:164:1;41494:63:0;41593:11;41585:5;;:19;;;;:::i;:::-;41572:9;:32;41564:86;;;;;;;9654:2:1;41564:86:0;;;9636:21:1;9693:2;9673:18;;;9666:30;9732:34;9712:18;;;9705:62;9803:11;9783:18;;;9776:39;9832:19;;41564:86:0;9626:231:1;41564:86:0;41659:33;;:::i;:::-;41738:7;;41699:20;;41754:359;41776:11;41761:12;:26;41754:359;;;26278:4;26302:16;;;:7;:16;;;;;;:30;:16;41800:105;;41863:1;41832:14;41847:12;41832:28;;;;;;;:::i;:::-;;;;:32;41879:14;;;;:::i;:::-;;;;41800:105;41925:3;;;:::i;:::-;41915:7;:13;;;41925:3;-1:-1:-1;40445:5:0;41943:14;;41939:167;;;41974:11;:19;;;;;;42068:5;;42016:10;;42008:66;;42038:26;42052:12;42038:11;:26;:::i;:::-;42037:36;;;;:::i;:::-;42008:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42089:5;;41939:167;41754:359;;;42130:54;42143:10;42155:12;42169:14;42130:54;;;;;;;;:::i;:::-;;;;;;;;42207:12;42191;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;42237:9:0;;-1:-1:-1;42232:97:0;42256:12;42252:1;:16;42232:97;;;42284:36;42290:10;42302:14;42317:1;42302:17;;;;;;;:::i;:::-;;;;;42284:5;:36::i;:::-;42270:3;;;;:::i;:::-;;;;42232:97;;;;41446:888;;;41397:937;:::o;20581:292::-;20683:4;20707:40;;;20722:25;20707:40;;:105;;-1:-1:-1;20764:48:0;;;20779:33;20764:48;20707:105;:158;;;-1:-1:-1;19205:25:0;19190:40;;;;20829:36;19081:157;30090:174;30165:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;30219:23;30165:24;30219:14;:23::i;:::-;30210:46;;;;;;;;;;;;30090:174;;:::o;26507:348::-;26600:4;26302:16;;;:7;:16;;;;;;:30;:16;26617:73;;;;;;;11167:2:1;26617:73:0;;;11149:21:1;11206:2;11186:18;;;11179:30;11245:34;11225:18;;;11218:62;11316:14;11296:18;;;11289:42;11348:19;;26617:73:0;11139:234:1;26617:73:0;26701:13;26717:23;26732:7;26717:14;:23::i;:::-;26701:39;;26770:5;26759:16;;:7;:16;;;:51;;;;26803:7;26779:31;;:20;26791:7;26779:11;:20::i;:::-;:31;;;26759:51;:87;;;-1:-1:-1;23753:25:0;;;;23729:4;23753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26814:32;26751:96;26507:348;-1:-1:-1;;;;26507:348:0:o;29428:544::-;29553:4;29526:31;;:23;29541:7;29526:14;:23::i;:::-;:31;;;29518:85;;;;;;;14668:2:1;29518:85:0;;;14650:21:1;14707:2;14687:18;;;14680:30;14746:34;14726:18;;;14719:62;14817:11;14797:18;;;14790:39;14846:19;;29518:85:0;14640:231:1;29518:85:0;29622:16;;;29614:65;;;;;;;10064:2:1;29614:65:0;;;10046:21:1;10103:2;10083:18;;;10076:30;10142:34;10122:18;;;10115:62;10213:6;10193:18;;;10186:34;10237:19;;29614:65:0;10036:226:1;29614:65:0;29692:39;29713:4;29719:2;29723:7;29692:20;:39::i;:::-;29796:29;29813:1;29817:7;29796:8;:29::i;:::-;29838:15;;;;;;;:9;:15;;;;;:20;;29857:1;;29838:15;:20;;29857:1;;29838:20;:::i;:::-;;;;-1:-1:-1;;29869:13:0;;;;;;;:9;:13;;;;;:18;;29886:1;;29869:13;:18;;29886:1;;29869:18;:::i;:::-;;;;-1:-1:-1;;29898:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;29937:27;;29898:16;;29937:27;;;;;;;29428:544;;;:::o;28120:382::-;28200:16;;;28192:61;;;;;;;13539:2:1;28192:61:0;;;13521:21:1;;;13558:18;;;13551:30;13617:34;13597:18;;;13590:62;13669:18;;28192:61:0;13511:182:1;28192:61:0;26278:4;26302:16;;;:7;:16;;;;;;:30;:16;:30;28264:58;;;;;;;8954:2:1;28264:58:0;;;8936:21:1;8993:2;8973:18;;;8966:30;9032;9012:18;;;9005:58;9080:18;;28264:58:0;8926:178:1;28264:58:0;28335:45;28364:1;28368:2;28372:7;28335:20;:45::i;:::-;28393:13;;;;;;;:9;:13;;;;;:18;;28410:1;;28393:13;:18;;28410:1;;28393:18;:::i;:::-;;;;-1:-1:-1;;28422:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;28461:33;;28422:16;;;28461:33;;28422:16;;28461:33;28120:382;;:::o;40952:96::-;41004:13;41033:9;41026:16;;;;;:::i;25628:272::-;25742:28;25752:4;25758:2;25762:7;25742:9;:28::i;:::-;25789:48;25812:4;25818:2;25822:7;25831:5;25789:22;:48::i;:::-;25781:111;;;;;;;8535:2:1;25781:111:0;;;8517:21:1;8574:2;8554:18;;;8547:30;8613:34;8593:18;;;8586:62;8684:20;8664:18;;;8657:48;8722:19;;25781:111:0;8507:240:1;16528:723:0;16584:13;16805:10;16801:53;;-1:-1:-1;;16832:10:0;;;;;;;;;;;;;;;;;;16528:723::o;16801:53::-;16879:5;16864:12;16920:78;16927:9;;16920:78;;16953:8;;;;:::i;:::-;;-1:-1:-1;16976:10:0;;-1:-1:-1;16984:2:0;16976:10;;:::i;:::-;;;16920:78;;;17008:19;17040:6;17030:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17030:17:0;;17008:39;;17058:154;17065:10;;17058:154;;17092:11;17102:1;17092:11;;:::i;:::-;;-1:-1:-1;17161:10:0;17169:2;17161:5;:10;:::i;:::-;17148:24;;:2;:24;:::i;:::-;17135:39;;17118:6;17125;17118:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;17189:11:0;17198:2;17189:11;;:::i;:::-;;;17058:154;;35822:555;35994:18;;;35990:187;;36029:40;36061:7;37204:10;:17;;37177:24;;;;:15;:24;;;;;:44;;;37232:24;;;;;;;;;;;;37100:164;36029:40;35990:187;;;36099:2;36091:10;;:4;:10;;;36087:90;;36118:47;36151:4;36157:7;36118:32;:47::i;:::-;36191:16;;;36187:183;;36224:45;36261:7;36224:36;:45::i;36187:183::-;36297:4;36291:10;;:2;:10;;;36287:83;;36318:40;36346:2;36350:7;36318:27;:40::i;30829:843::-;30950:4;30976:13;;;8361:20;8400:8;30972:693;;31012:72;;;;;:36;;;;;;:72;;15955:10;;31063:4;;31069:7;;31078:5;;31012:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31012:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31008:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31258:13:0;;31254:341;;31301:60;;;;;8535:2:1;31301:60:0;;;8517:21:1;8574:2;8554:18;;;8547:30;8613:34;8593:18;;;8586:62;8684:20;8664:18;;;8657:48;8722:19;;31301:60:0;8507:240:1;31254:341:0;31545:6;31539:13;31530:6;31526:2;31522:15;31515:38;31008:602;31135:55;;31145:45;31135:55;;-1:-1:-1;31128:62:0;;30972:693;-1:-1:-1;31649:4:0;30829:843;;;;;;:::o;37891:988::-;38157:22;38207:1;38182:22;38199:4;38182:16;:22::i;:::-;:26;;;;:::i;:::-;38219:18;38240:26;;;:17;:26;;;;;;38157:51;;-1:-1:-1;38373:28:0;;;38369:328;;38440:18;;;38418:19;38440:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38491:30;;;;;;:44;;;38608:30;;:17;:30;;;;;:43;;;38369:328;-1:-1:-1;38793:26:0;;;;:17;:26;;;;;;;;38786:33;;;38837:18;;;;;;:12;:18;;;;;:34;;;;;;;38830:41;37891:988::o;39174:1077::-;39452:10;:17;39427:22;;39452:21;;39472:1;;39452:21;:::i;:::-;39484:18;39505:24;;;:15;:24;;;;;;39878:10;:26;;39427:46;;-1:-1:-1;39505:24:0;;39427:46;;39878:26;;;;;;:::i;:::-;;;;;;;;;39856:48;;39942:11;39917:10;39928;39917:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40022:28;;;:15;:28;;;;;;;:41;;;40192:24;;;;;40185:31;40227:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39245:1006;;;39174:1077;:::o;36678:221::-;36763:14;36780:20;36797:2;36780:16;:20::i;:::-;36811:16;;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36856:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36678:221:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:196:1:-;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:160::-;280:20;;336:13;;329:21;319:32;;309:2;;365:1;362;355:12;380:186;439:6;492:2;480:9;471:7;467:23;463:32;460:2;;;508:1;505;498:12;460:2;531:29;550:9;531:29;:::i;571:260::-;639:6;647;700:2;688:9;679:7;675:23;671:32;668:2;;;716:1;713;706:12;668:2;739:29;758:9;739:29;:::i;:::-;729:39;;787:38;821:2;810:9;806:18;787:38;:::i;:::-;777:48;;658:173;;;;;:::o;836:328::-;913:6;921;929;982:2;970:9;961:7;957:23;953:32;950:2;;;998:1;995;988:12;950:2;1021:29;1040:9;1021:29;:::i;:::-;1011:39;;1069:38;1103:2;1092:9;1088:18;1069:38;:::i;:::-;1059:48;;1154:2;1143:9;1139:18;1126:32;1116:42;;940:224;;;;;:::o;1169:1039::-;1264:6;1272;1280;1288;1341:3;1329:9;1320:7;1316:23;1312:33;1309:2;;;1358:1;1355;1348:12;1309:2;1381:29;1400:9;1381:29;:::i;:::-;1371:39;;1429:2;1450:38;1484:2;1473:9;1469:18;1450:38;:::i;:::-;1440:48;;1535:2;1524:9;1520:18;1507:32;1497:42;;1590:2;1579:9;1575:18;1562:32;1613:18;1654:2;1646:6;1643:14;1640:2;;;1670:1;1667;1660:12;1640:2;1708:6;1697:9;1693:22;1683:32;;1753:7;1746:4;1742:2;1738:13;1734:27;1724:2;;1775:1;1772;1765:12;1724:2;1811;1798:16;1833:2;1829;1826:10;1823:2;;;1839:18;;:::i;:::-;1881:112;1989:2;1920:66;1913:4;1909:2;1905:13;1901:86;1897:95;1881:112;:::i;:::-;1868:125;;2016:2;2009:5;2002:17;2056:7;2051:2;2046;2042;2038:11;2034:20;2031:33;2028:2;;;2077:1;2074;2067:12;2028:2;2132;2127;2123;2119:11;2114:2;2107:5;2103:14;2090:45;2176:1;2171:2;2166;2159:5;2155:14;2151:23;2144:34;;2197:5;2187:15;;;;;1299:909;;;;;;;:::o;2213:254::-;2278:6;2286;2339:2;2327:9;2318:7;2314:23;2310:32;2307:2;;;2355:1;2352;2345:12;2307:2;2378:29;2397:9;2378:29;:::i;:::-;2368:39;;2426:35;2457:2;2446:9;2442:18;2426:35;:::i;2472:254::-;2540:6;2548;2601:2;2589:9;2580:7;2576:23;2572:32;2569:2;;;2617:1;2614;2607:12;2569:2;2640:29;2659:9;2640:29;:::i;:::-;2630:39;2716:2;2701:18;;;;2688:32;;-1:-1:-1;;;2559:167:1:o;2731:957::-;2815:6;2846:2;2889;2877:9;2868:7;2864:23;2860:32;2857:2;;;2905:1;2902;2895:12;2857:2;2945:9;2932:23;2974:18;3015:2;3007:6;3004:14;3001:2;;;3031:1;3028;3021:12;3001:2;3069:6;3058:9;3054:22;3044:32;;3114:7;3107:4;3103:2;3099:13;3095:27;3085:2;;3136:1;3133;3126:12;3085:2;3172;3159:16;3194:2;3190;3187:10;3184:2;;;3200:18;;:::i;:::-;3246:2;3243:1;3239:10;3229:20;;3269:28;3293:2;3289;3285:11;3269:28;:::i;:::-;3331:15;;;3362:12;;;;3394:11;;;3424;;;3420:20;;3417:33;-1:-1:-1;3414:2:1;;;3463:1;3460;3453:12;3414:2;3485:1;3476:10;;3495:163;3509:2;3506:1;3503:9;3495:163;;;3566:17;;3554:30;;3527:1;3520:9;;;;;3604:12;;;;3636;;3495:163;;;-1:-1:-1;3677:5:1;2826:862;-1:-1:-1;;;;;;;;2826:862:1:o;3693:180::-;3749:6;3802:2;3790:9;3781:7;3777:23;3773:32;3770:2;;;3818:1;3815;3808:12;3770:2;3841:26;3857:9;3841:26;:::i;3878:245::-;3936:6;3989:2;3977:9;3968:7;3964:23;3960:32;3957:2;;;4005:1;4002;3995:12;3957:2;4044:9;4031:23;4063:30;4087:5;4063:30;:::i;4128:249::-;4197:6;4250:2;4238:9;4229:7;4225:23;4221:32;4218:2;;;4266:1;4263;4256:12;4218:2;4298:9;4292:16;4317:30;4341:5;4317:30;:::i;4382:180::-;4441:6;4494:2;4482:9;4473:7;4469:23;4465:32;4462:2;;;4510:1;4507;4500:12;4462:2;-1:-1:-1;4533:23:1;;4452:110;-1:-1:-1;4452:110:1:o;4567:316::-;4608:3;4646:5;4640:12;4673:6;4668:3;4661:19;4689:63;4745:6;4738:4;4733:3;4729:14;4722:4;4715:5;4711:16;4689:63;:::i;:::-;4797:2;4785:15;4802:66;4781:88;4772:98;;;;4872:4;4768:109;;4616:267;-1:-1:-1;;4616:267:1:o;4888:470::-;5067:3;5105:6;5099:13;5121:53;5167:6;5162:3;5155:4;5147:6;5143:17;5121:53;:::i;:::-;5237:13;;5196:16;;;;5259:57;5237:13;5196:16;5293:4;5281:17;;5259:57;:::i;:::-;5332:20;;5075:283;-1:-1:-1;;;;5075:283:1:o;5594:511::-;5788:4;5817:42;5898:2;5890:6;5886:15;5875:9;5868:34;5950:2;5942:6;5938:15;5933:2;5922:9;5918:18;5911:43;;5990:6;5985:2;5974:9;5970:18;5963:34;6033:3;6028:2;6017:9;6013:18;6006:31;6054:45;6094:3;6083:9;6079:19;6071:6;6054:45;:::i;:::-;6046:53;5797:308;-1:-1:-1;;;;;;5797:308:1:o;6110:676::-;6391:42;6379:55;;6361:74;;6454:2;6472:18;;;6465:34;;;6348:3;6333:19;;;6534:2;6519:18;;6579:6;6306:4;6613:167;6627:4;6624:1;6621:11;6613:167;;;6686:13;;6674:26;;6720:12;;;;6755:15;;;;6647:1;6640:9;6613:167;;;6617:3;;;;6315:471;;;;;;:::o;6983:219::-;7132:2;7121:9;7114:21;7095:4;7152:44;7192:2;7181:9;7177:18;7169:6;7152:44;:::i;17046:334::-;17117:2;17111:9;17173:2;17163:13;;17178:66;17159:86;17147:99;;17276:18;17261:34;;17297:22;;;17258:62;17255:2;;;17323:18;;:::i;:::-;17359:2;17352:22;17091:289;;-1:-1:-1;17091:289:1:o;17385:128::-;17425:3;17456:1;17452:6;17449:1;17446:13;17443:2;;;17462:18;;:::i;:::-;-1:-1:-1;17498:9:1;;17433:80::o;17518:120::-;17558:1;17584;17574:2;;17589:18;;:::i;:::-;-1:-1:-1;17623:9:1;;17564:74::o;17643:228::-;17683:7;17809:1;17741:66;17737:74;17734:1;17731:81;17726:1;17719:9;17712:17;17708:105;17705:2;;;17816:18;;:::i;:::-;-1:-1:-1;17856:9:1;;17695:176::o;17876:125::-;17916:4;17944:1;17941;17938:8;17935:2;;;17949:18;;:::i;:::-;-1:-1:-1;17986:9:1;;17925:76::o;18006:258::-;18078:1;18088:113;18102:6;18099:1;18096:13;18088:113;;;18178:11;;;18172:18;18159:11;;;18152:39;18124:2;18117:10;18088:113;;;18219:6;18216:1;18213:13;18210:2;;;-1:-1:-1;;18254:1:1;18236:16;;18229:27;18059:205::o;18269:437::-;18348:1;18344:12;;;;18391;;;18412:2;;18466:4;18458:6;18454:17;18444:27;;18412:2;18519;18511:6;18508:14;18488:18;18485:38;18482:2;;;18556:77;18553:1;18546:88;18657:4;18654:1;18647:15;18685:4;18682:1;18675:15;18482:2;;18324:382;;;:::o;18711:195::-;18750:3;18781:66;18774:5;18771:77;18768:2;;;18851:18;;:::i;:::-;-1:-1:-1;18898:1:1;18887:13;;18758:148::o;18911:112::-;18943:1;18969;18959:2;;18974:18;;:::i;:::-;-1:-1:-1;19008:9:1;;18949:74::o;19028:184::-;19080:77;19077:1;19070:88;19177:4;19174:1;19167:15;19201:4;19198:1;19191:15;19217:184;19269:77;19266:1;19259:88;19366:4;19363:1;19356:15;19390:4;19387:1;19380:15;19406:184;19458:77;19455:1;19448:88;19555:4;19552:1;19545:15;19579:4;19576:1;19569:15;19595:184;19647:77;19644:1;19637:88;19744:4;19741:1;19734:15;19768:4;19765:1;19758:15;19784:184;19836:77;19833:1;19826:88;19933:4;19930:1;19923:15;19957:4;19954:1;19947:15;19973:177;20058:66;20051:5;20047:78;20040:5;20037:89;20027:2;;20140:1;20137;20130:12

Swarm Source

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