ETH Price: $2,376.75 (+1.03%)

Token

CyberKaijuz (CyberKaijuz)
 

Overview

Max Total Supply

104 CyberKaijuz

Holders

37

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 CyberKaijuz
0xa32ea9FbDE477E277e9B00a15a4293EB5C4a0307
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CyberKaijuzDeployer

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 11 of 13: NFTDeploy.sol
// SPDX-License-Identifier: MIT
/*
 _______  __   __  _______  _______  ______    ___   _  _______  ___       ___  __   __  _______ 
|       ||  | |  ||  _    ||       ||    _ |  |   | | ||   _   ||   |     |   ||  | |  ||       |
|       ||  |_|  || |_|   ||    ___||   | ||  |   |_| ||  |_|  ||   |     |   ||  | |  ||____   |
|       ||       ||       ||   |___ |   |_||_ |      _||       ||   |     |   ||  |_|  | ____|  |
|      _||_     _||  _   | |    ___||    __  ||     |_ |       ||   |  ___|   ||       || ______|
|     |_   |   |  | |_|   ||   |___ |   |  | ||    _  ||   _   ||   | |       ||       || |_____ 
|_______|  |___|  |_______||_______||___|  |_||___| |_||__| |__||___| |_______||_______||_______|

Discord: https://discord.gg/UtrRQavuzR
Twitter: https://twitter.com/cyberkaijuz

*/

pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ERC721Enumerable.sol";
import "./Strings.sol";


contract CyberKaijuzDeployer is ERC721Enumerable, Ownable {
    using Strings for uint256;
    event MintNft(address indexed sender, uint256 startWith, uint256 times);

    //Important Variables
    uint256 public priceToMint = 0.05 * 10 ** 18;
    uint256 public totalNfts;
    uint256 public totalCount = 9999;
    uint256 public maxBatchPurchase = 20;
    bool private saleStarted;
    string public baseURI;
    

    constructor(string memory name_, string memory symbol_, string memory baseURI_) ERC721(name_, symbol_) {
        baseURI = baseURI_;
    }

    //Using a modifier to check minting paramaters 
    modifier canMint(uint256 _times) {
        require(saleStarted, "The minting sale has not started yet!");
        require(_times > 0 && _times <= maxBatchPurchase, "The maxmium minting batch is 20!");
        require(totalNfts + _times <= totalCount, "We have sold out!");
        require(msg.value == _times * priceToMint, "Incorrect ETH value received!");
        _;
    }
    
    function hasStarted() public view returns (bool)  {
        return saleStarted;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
    function setBaseURI(string memory _newURI) public onlyOwner {
        baseURI = _newURI;
    }


    //erc721
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token.");

        string memory baseURI2 = _baseURI();
        return bytes(baseURI2).length > 0 ? string(abi.encodePacked(baseURI2, tokenId.toString(), ".json")) : '.json';
    }
    
    function setPrice(uint256 newPrice) public onlyOwner {
        priceToMint = newPrice;
    }
    
    function startSale(bool _start) public onlyOwner {
        saleStarted = _start;
    }
    
    function amountTokensOwned(address owner) public view returns (uint256) {
        uint256 count = balanceOf(owner);
        return count;
    }
    
    function mint(uint256 _times) payable public canMint(_times) {
        payable(owner()).transfer(msg.value);
       _mintToken(_times);
    }

    
    function _mintToken(uint256 _times) private {
        emit MintNft(_msgSender(), totalNfts + 1, _times);
        for(uint256 i = 0; i< _times; i++){
            _mint(_msgSender(), 1 + totalNfts++);
        }
    }
    
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        uint256 count = balanceOf(owner);
        uint256[] memory ids = new uint256[](count);
        for (uint256 i = 0; i < count; i++) {
            ids[i] = tokenOfOwnerByIndex(owner, i);
        }
        return ids;
    }

    
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT

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

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 13: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. 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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    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` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 13: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @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 6 of 13: 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 7 of 13: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 8 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

File 9 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 10 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 12 of 13: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"}],"name":"MintNft","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"amountTokensOwned","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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"maxBatchPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"priceToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalNfts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266b1a2bc2ec50000600b5561270f600d556014600e553480156200002757600080fd5b5060405162002577380380620025778339810160408190526200004a9162000268565b825183908390620000639060009060208501906200010b565b508051620000799060019060208401906200010b565b5050506200009662000090620000b560201b60201c565b620000b9565b8051620000ab9060109060208401906200010b565b505050506200034c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011990620002f9565b90600052602060002090601f0160209004810192826200013d576000855562000188565b82601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b5b808211156200019657600081556001016200019b565b600082601f830112620001c357600080fd5b81516001600160401b0380821115620001e057620001e062000336565b604051601f8301601f19908116603f011681019082821181831017156200020b576200020b62000336565b816040528381526020925086838588010111156200022857600080fd5b600091505b838210156200024c57858201830151818301840152908201906200022d565b838211156200025e5760008385830101525b9695505050505050565b6000806000606084860312156200027e57600080fd5b83516001600160401b03808211156200029657600080fd5b620002a487838801620001b1565b94506020860151915080821115620002bb57600080fd5b620002c987838801620001b1565b93506040860151915080821115620002e057600080fd5b50620002ef86828701620001b1565b9150509250925092565b600181811c908216806200030e57607f821691505b602082108114156200033057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61221b806200035c6000396000f3fe6080604052600436106101d85760003560e01c80636352211e1161010257806395d89b4111610095578063b88d4fde11610064578063b88d4fde1461051e578063c87b56dd1461053e578063e985e9c51461055e578063f2fde38b146105a757600080fd5b806395d89b41146104b65780639c4c557c146104cb578063a0712d68146104eb578063a22cb465146104fe57600080fd5b80637e736259116100d15780637e736259146104355780638462151c1461044b5780638da5cb5b1461047857806391b7f5ed1461049657600080fd5b80636352211e146103cb5780636c0360eb146103eb57806370a0823114610400578063715018a61461042057600080fd5b80632f745c591161017a578063477984971161014957806347798497146103555780634dc1dbec146103755780634f6ccce71461038b57806355f804b3146103ab57600080fd5b80632f745c59146102e757806334eafb111461030757806342842e0e1461031d57806344691f7e1461033d57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c5780630d4f9ddb1461028e57806318160ddd146102b257806323b872dd146102c757600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611df6565b6105c7565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105f2565b6040516102099190611f7e565b34801561024057600080fd5b5061025461024f366004611e79565b610684565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611db1565b61071e565b005b34801561029a57600080fd5b506102a4600c5481565b604051908152602001610209565b3480156102be57600080fd5b506008546102a4565b3480156102d357600080fd5b5061028c6102e2366004611ccf565b610834565b3480156102f357600080fd5b506102a4610302366004611db1565b610865565b34801561031357600080fd5b506102a4600d5481565b34801561032957600080fd5b5061028c610338366004611ccf565b6108fb565b34801561034957600080fd5b50600f5460ff166101fd565b34801561036157600080fd5b506102a4610370366004611c81565b610916565b34801561038157600080fd5b506102a4600b5481565b34801561039757600080fd5b506102a46103a6366004611e79565b610929565b3480156103b757600080fd5b5061028c6103c6366004611e30565b6109bc565b3480156103d757600080fd5b506102546103e6366004611e79565b6109fd565b3480156103f757600080fd5b50610227610a74565b34801561040c57600080fd5b506102a461041b366004611c81565b610b02565b34801561042c57600080fd5b5061028c610b89565b34801561044157600080fd5b506102a4600e5481565b34801561045757600080fd5b5061046b610466366004611c81565b610bbf565b6040516102099190611f3a565b34801561048457600080fd5b50600a546001600160a01b0316610254565b3480156104a257600080fd5b5061028c6104b1366004611e79565b610c61565b3480156104c257600080fd5b50610227610c90565b3480156104d757600080fd5b5061028c6104e6366004611ddb565b610c9f565b61028c6104f9366004611e79565b610cdc565b34801561050a57600080fd5b5061028c610519366004611d87565b610e8d565b34801561052a57600080fd5b5061028c610539366004611d0b565b610e98565b34801561054a57600080fd5b50610227610559366004611e79565b610ed0565b34801561056a57600080fd5b506101fd610579366004611c9c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105b357600080fd5b5061028c6105c2366004611c81565b610fb9565b60006001600160e01b0319821663780e9d6360e01b14806105ec57506105ec82611054565b92915050565b606060008054610601906120f7565b80601f016020809104026020016040519081016040528092919081815260200182805461062d906120f7565b801561067a5780601f1061064f5761010080835404028352916020019161067a565b820191906000526020600020905b81548152906001019060200180831161065d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610729826109fd565b9050806001600160a01b0316836001600160a01b031614156107975760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f9565b336001600160a01b03821614806107b357506107b38133610579565b6108255760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f9565b61082f83836110a4565b505050565b61083e3382611112565b61085a5760405162461bcd60e51b81526004016106f990612018565b61082f838383611209565b600061087083610b02565b82106108d25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106f9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61082f83838360405180602001604052806000815250610e98565b60008061092283610b02565b9392505050565b600061093460085490565b82106109975760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106f9565b600882815481106109aa576109aa6121a3565b90600052602060002001549050919050565b600a546001600160a01b031633146109e65760405162461bcd60e51b81526004016106f990611fe3565b80516109f9906010906020840190611b46565b5050565b6000818152600260205260408120546001600160a01b0316806105ec5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106f9565b60108054610a81906120f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610aad906120f7565b8015610afa5780601f10610acf57610100808354040283529160200191610afa565b820191906000526020600020905b815481529060010190602001808311610add57829003601f168201915b505050505081565b60006001600160a01b038216610b6d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610bb35760405162461bcd60e51b81526004016106f990611fe3565b610bbd60006113b4565b565b60606000610bcc83610b02565b905060008167ffffffffffffffff811115610be957610be96121b9565b604051908082528060200260200182016040528015610c12578160200160208202803683370190505b50905060005b82811015610c5957610c2a8582610865565b828281518110610c3c57610c3c6121a3565b602090810291909101015280610c5181612132565b915050610c18565b509392505050565b600a546001600160a01b03163314610c8b5760405162461bcd60e51b81526004016106f990611fe3565b600b55565b606060018054610601906120f7565b600a546001600160a01b03163314610cc95760405162461bcd60e51b81526004016106f990611fe3565b600f805460ff1916911515919091179055565b600f54819060ff16610d3e5760405162461bcd60e51b815260206004820152602560248201527f546865206d696e74696e672073616c6520686173206e6f742073746172746564604482015264207965742160d81b60648201526084016106f9565b600081118015610d505750600e548111155b610d9c5760405162461bcd60e51b815260206004820181905260248201527f546865206d61786d69756d206d696e74696e672062617463682069732032302160448201526064016106f9565b600d5481600c54610dad9190612069565b1115610def5760405162461bcd60e51b81526020600482015260116024820152705765206861766520736f6c64206f75742160781b60448201526064016106f9565b600b54610dfc9082612095565b3414610e4a5760405162461bcd60e51b815260206004820152601d60248201527f496e636f7272656374204554482076616c75652072656365697665642100000060448201526064016106f9565b600a546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610e83573d6000803e3d6000fd5b506109f982611406565b6109f9338383611494565b610ea23383611112565b610ebe5760405162461bcd60e51b81526004016106f990612018565b610eca84848484611563565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f505760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3732bc34b9ba32b73a103a37b5b2b71760811b60648201526084016106f9565b6000610f5a611596565b90506000815111610f885760405180604001604052806005815260200164173539b7b760d91b815250610922565b80610f92846115a5565b604051602001610fa3929190611ebe565b6040516020818303038152906040529392505050565b600a546001600160a01b03163314610fe35760405162461bcd60e51b81526004016106f990611fe3565b6001600160a01b0381166110485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f9565b611051816113b4565b50565b60006001600160e01b031982166380ac58cd60e01b148061108557506001600160e01b03198216635b5e139f60e01b145b806105ec57506301ffc9a760e01b6001600160e01b03198316146105ec565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110d9826109fd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661118b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f9565b6000611196836109fd565b9050806001600160a01b0316846001600160a01b031614806111d15750836001600160a01b03166111c684610684565b6001600160a01b0316145b8061120157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661121c826109fd565b6001600160a01b0316146112845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f9565b6001600160a01b0382166112e65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f9565b6112f18383836116a3565b6112fc6000826110a4565b6001600160a01b03831660009081526003602052604081208054600192906113259084906120b4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611353908490612069565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600c5433907f3c6130d2a575e1fba0e5564658cbb29e1b0434776e2acadcdaf7e303a97da0c890611438906001612069565b60408051918252602082018590520160405180910390a260005b818110156109f95761148233600c805490600061146e83612132565b9091555061147d906001612069565b61175b565b8061148c81612132565b915050611452565b816001600160a01b0316836001600160a01b031614156114f65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f9565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61156e848484611209565b61157a848484846118a9565b610eca5760405162461bcd60e51b81526004016106f990611f91565b606060108054610601906120f7565b6060816115c95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115f357806115dd81612132565b91506115ec9050600a83612081565b91506115cd565b60008167ffffffffffffffff81111561160e5761160e6121b9565b6040519080825280601f01601f191660200182016040528015611638576020820181803683370190505b5090505b84156112015761164d6001836120b4565b915061165a600a8661214d565b611665906030612069565b60f81b81838151811061167a5761167a6121a3565b60200101906001600160f81b031916908160001a90535061169c600a86612081565b945061163c565b6001600160a01b0383166116fe576116f981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611721565b816001600160a01b0316836001600160a01b0316146117215761172183826119b6565b6001600160a01b0382166117385761082f81611a53565b826001600160a01b0316826001600160a01b03161461082f5761082f8282611b02565b6001600160a01b0382166117b15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f9565b6000818152600260205260409020546001600160a01b0316156118165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f9565b611822600083836116a3565b6001600160a01b038216600090815260036020526040812080546001929061184b908490612069565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156119ab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118ed903390899088908890600401611efd565b602060405180830381600087803b15801561190757600080fd5b505af1925050508015611937575060408051601f3d908101601f1916820190925261193491810190611e13565b60015b611991573d808015611965576040519150601f19603f3d011682016040523d82523d6000602084013e61196a565b606091505b5080516119895760405162461bcd60e51b81526004016106f990611f91565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611201565b506001949350505050565b600060016119c384610b02565b6119cd91906120b4565b600083815260076020526040902054909150808214611a20576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a65906001906120b4565b60008381526009602052604081205460088054939450909284908110611a8d57611a8d6121a3565b906000526020600020015490508060088381548110611aae57611aae6121a3565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ae657611ae661218d565b6001900381819060005260206000200160009055905550505050565b6000611b0d83610b02565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611b52906120f7565b90600052602060002090601f016020900481019282611b745760008555611bba565b82601f10611b8d57805160ff1916838001178555611bba565b82800160010185558215611bba579182015b82811115611bba578251825591602001919060010190611b9f565b50611bc6929150611bca565b5090565b5b80821115611bc65760008155600101611bcb565b600067ffffffffffffffff80841115611bfa57611bfa6121b9565b604051601f8501601f19908116603f01168101908282118183101715611c2257611c226121b9565b81604052809350858152868686011115611c3b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c6c57600080fd5b919050565b80358015158114611c6c57600080fd5b600060208284031215611c9357600080fd5b61092282611c55565b60008060408385031215611caf57600080fd5b611cb883611c55565b9150611cc660208401611c55565b90509250929050565b600080600060608486031215611ce457600080fd5b611ced84611c55565b9250611cfb60208501611c55565b9150604084013590509250925092565b60008060008060808587031215611d2157600080fd5b611d2a85611c55565b9350611d3860208601611c55565b925060408501359150606085013567ffffffffffffffff811115611d5b57600080fd5b8501601f81018713611d6c57600080fd5b611d7b87823560208401611bdf565b91505092959194509250565b60008060408385031215611d9a57600080fd5b611da383611c55565b9150611cc660208401611c71565b60008060408385031215611dc457600080fd5b611dcd83611c55565b946020939093013593505050565b600060208284031215611ded57600080fd5b61092282611c71565b600060208284031215611e0857600080fd5b8135610922816121cf565b600060208284031215611e2557600080fd5b8151610922816121cf565b600060208284031215611e4257600080fd5b813567ffffffffffffffff811115611e5957600080fd5b8201601f81018413611e6a57600080fd5b61120184823560208401611bdf565b600060208284031215611e8b57600080fd5b5035919050565b60008151808452611eaa8160208601602086016120cb565b601f01601f19169290920160200192915050565b60008351611ed08184602088016120cb565b835190830190611ee48183602088016120cb565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3090830184611e92565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f7257835183529284019291840191600101611f56565b50909695505050505050565b6020815260006109226020830184611e92565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561207c5761207c612161565b500190565b60008261209057612090612177565b500490565b60008160001904831182151516156120af576120af612161565b500290565b6000828210156120c6576120c6612161565b500390565b60005b838110156120e65781810151838201526020016120ce565b83811115610eca5750506000910152565b600181811c9082168061210b57607f821691505b6020821081141561212c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561214657612146612161565b5060010190565b60008261215c5761215c612177565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461105157600080fdfea264697066735822122030483ef1fdcdefb6ea902ddbba0f25655870913428ed5a591d5e657e3b2c723964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b43796265724b61696a757a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b43796265724b61696a757a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020687474703a2f2f6d657461646174612e63796265726b61696a757a2e636f6d2f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e1161010257806395d89b4111610095578063b88d4fde11610064578063b88d4fde1461051e578063c87b56dd1461053e578063e985e9c51461055e578063f2fde38b146105a757600080fd5b806395d89b41146104b65780639c4c557c146104cb578063a0712d68146104eb578063a22cb465146104fe57600080fd5b80637e736259116100d15780637e736259146104355780638462151c1461044b5780638da5cb5b1461047857806391b7f5ed1461049657600080fd5b80636352211e146103cb5780636c0360eb146103eb57806370a0823114610400578063715018a61461042057600080fd5b80632f745c591161017a578063477984971161014957806347798497146103555780634dc1dbec146103755780634f6ccce71461038b57806355f804b3146103ab57600080fd5b80632f745c59146102e757806334eafb111461030757806342842e0e1461031d57806344691f7e1461033d57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c5780630d4f9ddb1461028e57806318160ddd146102b257806323b872dd146102c757600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611df6565b6105c7565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105f2565b6040516102099190611f7e565b34801561024057600080fd5b5061025461024f366004611e79565b610684565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611db1565b61071e565b005b34801561029a57600080fd5b506102a4600c5481565b604051908152602001610209565b3480156102be57600080fd5b506008546102a4565b3480156102d357600080fd5b5061028c6102e2366004611ccf565b610834565b3480156102f357600080fd5b506102a4610302366004611db1565b610865565b34801561031357600080fd5b506102a4600d5481565b34801561032957600080fd5b5061028c610338366004611ccf565b6108fb565b34801561034957600080fd5b50600f5460ff166101fd565b34801561036157600080fd5b506102a4610370366004611c81565b610916565b34801561038157600080fd5b506102a4600b5481565b34801561039757600080fd5b506102a46103a6366004611e79565b610929565b3480156103b757600080fd5b5061028c6103c6366004611e30565b6109bc565b3480156103d757600080fd5b506102546103e6366004611e79565b6109fd565b3480156103f757600080fd5b50610227610a74565b34801561040c57600080fd5b506102a461041b366004611c81565b610b02565b34801561042c57600080fd5b5061028c610b89565b34801561044157600080fd5b506102a4600e5481565b34801561045757600080fd5b5061046b610466366004611c81565b610bbf565b6040516102099190611f3a565b34801561048457600080fd5b50600a546001600160a01b0316610254565b3480156104a257600080fd5b5061028c6104b1366004611e79565b610c61565b3480156104c257600080fd5b50610227610c90565b3480156104d757600080fd5b5061028c6104e6366004611ddb565b610c9f565b61028c6104f9366004611e79565b610cdc565b34801561050a57600080fd5b5061028c610519366004611d87565b610e8d565b34801561052a57600080fd5b5061028c610539366004611d0b565b610e98565b34801561054a57600080fd5b50610227610559366004611e79565b610ed0565b34801561056a57600080fd5b506101fd610579366004611c9c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105b357600080fd5b5061028c6105c2366004611c81565b610fb9565b60006001600160e01b0319821663780e9d6360e01b14806105ec57506105ec82611054565b92915050565b606060008054610601906120f7565b80601f016020809104026020016040519081016040528092919081815260200182805461062d906120f7565b801561067a5780601f1061064f5761010080835404028352916020019161067a565b820191906000526020600020905b81548152906001019060200180831161065d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610729826109fd565b9050806001600160a01b0316836001600160a01b031614156107975760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f9565b336001600160a01b03821614806107b357506107b38133610579565b6108255760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f9565b61082f83836110a4565b505050565b61083e3382611112565b61085a5760405162461bcd60e51b81526004016106f990612018565b61082f838383611209565b600061087083610b02565b82106108d25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106f9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61082f83838360405180602001604052806000815250610e98565b60008061092283610b02565b9392505050565b600061093460085490565b82106109975760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106f9565b600882815481106109aa576109aa6121a3565b90600052602060002001549050919050565b600a546001600160a01b031633146109e65760405162461bcd60e51b81526004016106f990611fe3565b80516109f9906010906020840190611b46565b5050565b6000818152600260205260408120546001600160a01b0316806105ec5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106f9565b60108054610a81906120f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610aad906120f7565b8015610afa5780601f10610acf57610100808354040283529160200191610afa565b820191906000526020600020905b815481529060010190602001808311610add57829003601f168201915b505050505081565b60006001600160a01b038216610b6d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610bb35760405162461bcd60e51b81526004016106f990611fe3565b610bbd60006113b4565b565b60606000610bcc83610b02565b905060008167ffffffffffffffff811115610be957610be96121b9565b604051908082528060200260200182016040528015610c12578160200160208202803683370190505b50905060005b82811015610c5957610c2a8582610865565b828281518110610c3c57610c3c6121a3565b602090810291909101015280610c5181612132565b915050610c18565b509392505050565b600a546001600160a01b03163314610c8b5760405162461bcd60e51b81526004016106f990611fe3565b600b55565b606060018054610601906120f7565b600a546001600160a01b03163314610cc95760405162461bcd60e51b81526004016106f990611fe3565b600f805460ff1916911515919091179055565b600f54819060ff16610d3e5760405162461bcd60e51b815260206004820152602560248201527f546865206d696e74696e672073616c6520686173206e6f742073746172746564604482015264207965742160d81b60648201526084016106f9565b600081118015610d505750600e548111155b610d9c5760405162461bcd60e51b815260206004820181905260248201527f546865206d61786d69756d206d696e74696e672062617463682069732032302160448201526064016106f9565b600d5481600c54610dad9190612069565b1115610def5760405162461bcd60e51b81526020600482015260116024820152705765206861766520736f6c64206f75742160781b60448201526064016106f9565b600b54610dfc9082612095565b3414610e4a5760405162461bcd60e51b815260206004820152601d60248201527f496e636f7272656374204554482076616c75652072656365697665642100000060448201526064016106f9565b600a546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610e83573d6000803e3d6000fd5b506109f982611406565b6109f9338383611494565b610ea23383611112565b610ebe5760405162461bcd60e51b81526004016106f990612018565b610eca84848484611563565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f505760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3732bc34b9ba32b73a103a37b5b2b71760811b60648201526084016106f9565b6000610f5a611596565b90506000815111610f885760405180604001604052806005815260200164173539b7b760d91b815250610922565b80610f92846115a5565b604051602001610fa3929190611ebe565b6040516020818303038152906040529392505050565b600a546001600160a01b03163314610fe35760405162461bcd60e51b81526004016106f990611fe3565b6001600160a01b0381166110485760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f9565b611051816113b4565b50565b60006001600160e01b031982166380ac58cd60e01b148061108557506001600160e01b03198216635b5e139f60e01b145b806105ec57506301ffc9a760e01b6001600160e01b03198316146105ec565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110d9826109fd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661118b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f9565b6000611196836109fd565b9050806001600160a01b0316846001600160a01b031614806111d15750836001600160a01b03166111c684610684565b6001600160a01b0316145b8061120157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661121c826109fd565b6001600160a01b0316146112845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f9565b6001600160a01b0382166112e65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f9565b6112f18383836116a3565b6112fc6000826110a4565b6001600160a01b03831660009081526003602052604081208054600192906113259084906120b4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611353908490612069565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600c5433907f3c6130d2a575e1fba0e5564658cbb29e1b0434776e2acadcdaf7e303a97da0c890611438906001612069565b60408051918252602082018590520160405180910390a260005b818110156109f95761148233600c805490600061146e83612132565b9091555061147d906001612069565b61175b565b8061148c81612132565b915050611452565b816001600160a01b0316836001600160a01b031614156114f65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f9565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61156e848484611209565b61157a848484846118a9565b610eca5760405162461bcd60e51b81526004016106f990611f91565b606060108054610601906120f7565b6060816115c95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115f357806115dd81612132565b91506115ec9050600a83612081565b91506115cd565b60008167ffffffffffffffff81111561160e5761160e6121b9565b6040519080825280601f01601f191660200182016040528015611638576020820181803683370190505b5090505b84156112015761164d6001836120b4565b915061165a600a8661214d565b611665906030612069565b60f81b81838151811061167a5761167a6121a3565b60200101906001600160f81b031916908160001a90535061169c600a86612081565b945061163c565b6001600160a01b0383166116fe576116f981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611721565b816001600160a01b0316836001600160a01b0316146117215761172183826119b6565b6001600160a01b0382166117385761082f81611a53565b826001600160a01b0316826001600160a01b03161461082f5761082f8282611b02565b6001600160a01b0382166117b15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f9565b6000818152600260205260409020546001600160a01b0316156118165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f9565b611822600083836116a3565b6001600160a01b038216600090815260036020526040812080546001929061184b908490612069565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156119ab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118ed903390899088908890600401611efd565b602060405180830381600087803b15801561190757600080fd5b505af1925050508015611937575060408051601f3d908101601f1916820190925261193491810190611e13565b60015b611991573d808015611965576040519150601f19603f3d011682016040523d82523d6000602084013e61196a565b606091505b5080516119895760405162461bcd60e51b81526004016106f990611f91565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611201565b506001949350505050565b600060016119c384610b02565b6119cd91906120b4565b600083815260076020526040902054909150808214611a20576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a65906001906120b4565b60008381526009602052604081205460088054939450909284908110611a8d57611a8d6121a3565b906000526020600020015490508060088381548110611aae57611aae6121a3565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ae657611ae661218d565b6001900381819060005260206000200160009055905550505050565b6000611b0d83610b02565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611b52906120f7565b90600052602060002090601f016020900481019282611b745760008555611bba565b82601f10611b8d57805160ff1916838001178555611bba565b82800160010185558215611bba579182015b82811115611bba578251825591602001919060010190611b9f565b50611bc6929150611bca565b5090565b5b80821115611bc65760008155600101611bcb565b600067ffffffffffffffff80841115611bfa57611bfa6121b9565b604051601f8501601f19908116603f01168101908282118183101715611c2257611c226121b9565b81604052809350858152868686011115611c3b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c6c57600080fd5b919050565b80358015158114611c6c57600080fd5b600060208284031215611c9357600080fd5b61092282611c55565b60008060408385031215611caf57600080fd5b611cb883611c55565b9150611cc660208401611c55565b90509250929050565b600080600060608486031215611ce457600080fd5b611ced84611c55565b9250611cfb60208501611c55565b9150604084013590509250925092565b60008060008060808587031215611d2157600080fd5b611d2a85611c55565b9350611d3860208601611c55565b925060408501359150606085013567ffffffffffffffff811115611d5b57600080fd5b8501601f81018713611d6c57600080fd5b611d7b87823560208401611bdf565b91505092959194509250565b60008060408385031215611d9a57600080fd5b611da383611c55565b9150611cc660208401611c71565b60008060408385031215611dc457600080fd5b611dcd83611c55565b946020939093013593505050565b600060208284031215611ded57600080fd5b61092282611c71565b600060208284031215611e0857600080fd5b8135610922816121cf565b600060208284031215611e2557600080fd5b8151610922816121cf565b600060208284031215611e4257600080fd5b813567ffffffffffffffff811115611e5957600080fd5b8201601f81018413611e6a57600080fd5b61120184823560208401611bdf565b600060208284031215611e8b57600080fd5b5035919050565b60008151808452611eaa8160208601602086016120cb565b601f01601f19169290920160200192915050565b60008351611ed08184602088016120cb565b835190830190611ee48183602088016120cb565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3090830184611e92565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f7257835183529284019291840191600101611f56565b50909695505050505050565b6020815260006109226020830184611e92565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561207c5761207c612161565b500190565b60008261209057612090612177565b500490565b60008160001904831182151516156120af576120af612161565b500290565b6000828210156120c6576120c6612161565b500390565b60005b838110156120e65781810151838201526020016120ce565b83811115610eca5750506000910152565b600181811c9082168061210b57607f821691505b6020821081141561212c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561214657612146612161565b5060010190565b60008261215c5761215c612177565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461105157600080fdfea264697066735822122030483ef1fdcdefb6ea902ddbba0f25655870913428ed5a591d5e657e3b2c723964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b43796265724b61696a757a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b43796265724b61696a757a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020687474703a2f2f6d657461646174612e63796265726b61696a757a2e636f6d2f

-----Decoded View---------------
Arg [0] : name_ (string): CyberKaijuz
Arg [1] : symbol_ (string): CyberKaijuz
Arg [2] : baseURI_ (string): http://metadata.cyberkaijuz.com/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 43796265724b61696a757a000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 43796265724b61696a757a000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [8] : 687474703a2f2f6d657461646174612e63796265726b61696a757a2e636f6d2f


Deployed Bytecode Sourcemap

937:2809:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:4;;;;;;;;;;-1:-1:-1;909:222:4;;;;;:::i;:::-;;:::i;:::-;;;6707:14:13;;6700:22;6682:41;;6670:2;6655:18;909:222:4;;;;;;;;2349:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5368:32:13;;;5350:51;;5338:2;5323:18;3860:217:3;5204:203:13;3398:401:3;;;;;;;;;;-1:-1:-1;3398:401:3;;;;;:::i;:::-;;:::i;:::-;;1192:24:10;;;;;;;;;;;;;;;;;;;15783:25:13;;;15771:2;15756:18;1192:24:10;15637:177:13;1534:111:4;;;;;;;;;;-1:-1:-1;1621:10:4;:17;1534:111;;4587:330:3;;;;;;;;;;-1:-1:-1;4587:330:3;;;;;:::i;:::-;;:::i;1210:253:4:-;;;;;;;;;;-1:-1:-1;1210:253:4;;;;;:::i;:::-;;:::i;1223:32:10:-;;;;;;;;;;;;;;;;4983:179:3;;;;;;;;;;-1:-1:-1;4983:179:3;;;;;:::i;:::-;;:::i;1965:87:10:-;;;;;;;;;;-1:-1:-1;2033:11:10;;;;1965:87;;2874:146;;;;;;;;;;-1:-1:-1;2874:146:10;;;;;:::i;:::-;;:::i;1141:44::-;;;;;;;;;;;;;;;;1717:230:4;;;;;;;;;;-1:-1:-1;1717:230:4;;;;;:::i;:::-;;:::i;2184:96:10:-;;;;;;;;;;-1:-1:-1;2184:96:10;;;;;:::i;:::-;;:::i;2052:235:3:-;;;;;;;;;;-1:-1:-1;2052:235:3;;;;;:::i;:::-;;:::i;1336:21:10:-;;;;;;;;;;;;;:::i;1790:205:3:-;;;;;;;;;;-1:-1:-1;1790:205:3;;;;;:::i;:::-;;:::i;1650:94:11:-;;;;;;;;;;;;;:::i;1262:36:10:-;;;;;;;;;;;;;;;;3421:314;;;;;;;;;;-1:-1:-1;3421:314:10;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;999:87:11:-;;;;;;;;;;-1:-1:-1;1072:6:11;;-1:-1:-1;;;;;1072:6:11;999:87;;2668:94:10;;;;;;;;;;-1:-1:-1;2668:94:10;;;;;:::i;:::-;;:::i;2511:102:3:-;;;;;;;;;;;;;:::i;2774:88:10:-;;;;;;;;;;-1:-1:-1;2774:88:10;;;;;:::i;:::-;;:::i;3032:144::-;;;;;;:::i;:::-;;:::i;4144:153:3:-;;;;;;;;;;-1:-1:-1;4144:153:3;;;;;:::i;:::-;;:::i;5228:320::-;;;;;;;;;;-1:-1:-1;5228:320:3;;;;;:::i;:::-;;:::i;2304:352:10:-;;;;;;;;;;-1:-1:-1;2304:352:10;;;;;:::i;:::-;;:::i;4363:162:3:-;;;;;;;;;;-1:-1:-1;4363:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;4483:25:3;;;4460:4;4483:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4363:162;1899:192:11;;;;;;;;;;-1:-1:-1;1899:192:11;;;;;:::i;:::-;;:::i;909:222:4:-;1011:4;-1:-1:-1;;;;;;1034:50:4;;-1:-1:-1;;;1034:50:4;;:90;;;1088:36;1112:11;1088:23;:36::i;:::-;1027:97;909:222;-1:-1:-1;;909:222:4:o;2349:98:3:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;7108:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7108:16:3;3955:73;;;;-1:-1:-1;;;3955:73:3;;12659:2:13;3955:73:3;;;12641:21:13;12698:2;12678:18;;;12671:30;12737:34;12717:18;;;12710:62;-1:-1:-1;;;12788:18:13;;;12781:42;12840:19;;3955:73:3;;;;;;;;;-1:-1:-1;4046:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:3;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:3;:2;-1:-1:-1;;;;;3535:11:3;;;3527:57;;;;-1:-1:-1;;;3527:57:3;;13843:2:13;3527:57:3;;;13825:21:13;13882:2;13862:18;;;13855:30;13921:34;13901:18;;;13894:62;-1:-1:-1;;;13972:18:13;;;13965:31;14013:19;;3527:57:3;13641:397:13;3527:57:3;666:10:1;-1:-1:-1;;;;;3616:21:3;;;;:62;;-1:-1:-1;3641:37:3;3658:5;666:10:1;4363:162:3;:::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:3;;11052:2:13;3595:165:3;;;11034:21:13;11091:2;11071:18;;;11064:30;11130:34;11110:18;;;11103:62;11201:26;11181:18;;;11174:54;11245:19;;3595:165:3;10850:420:13;3595:165:3;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;4587:330::-;4776:41;666:10:1;4809:7:3;4776:18;:41::i;:::-;4768:103;;;;-1:-1:-1;;;4768:103:3;;;;;;;:::i;:::-;4882:28;4892:4;4898:2;4902:7;4882:9;:28::i;1210:253:4:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:4;;7521:2:13;1326:87:4;;;7503:21:13;7560:2;7540:18;;;7533:30;7599:34;7579:18;;;7572:62;-1:-1:-1;;;7650:18:13;;;7643:41;7701:19;;1326:87:4;7319:407:13;1326:87:4;-1:-1:-1;;;;;;1430:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;4983:179:3:-;5116:39;5133:4;5139:2;5143:7;5116:39;;;;;;;;;;;;:16;:39::i;2874:146:10:-;2937:7;2957:13;2973:16;2983:5;2973:9;:16::i;:::-;2957:32;2874:146;-1:-1:-1;;;2874:146:10:o;1717:230:4:-;1792:7;1827:30;1621:10;:17;;1534:111;1827:30;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:4;;14663:2:13;1811:95:4;;;14645:21:13;14702:2;14682:18;;;14675:30;14741:34;14721:18;;;14714:62;-1:-1:-1;;;14792:18:13;;;14785:42;14844:19;;1811:95:4;14461:408:13;1811:95:4;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;1916:24;;1717:230;;;:::o;2184:96:10:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;666:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;2255:17:10;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2184:96:::0;:::o;2052:235:3:-;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:3;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:3;;11888:2:13;2185:73:3;;;11870:21:13;11927:2;11907:18;;;11900:30;11966:34;11946:18;;;11939:62;-1:-1:-1;;;12017:18:13;;;12010:39;12066:19;;2185:73:3;11686:405:13;1336:21:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1790:205:3:-;1862:7;-1:-1:-1;;;;;1889:19:3;;1881:74;;;;-1:-1:-1;;;1881:74:3;;11477:2:13;1881:74:3;;;11459:21:13;11516:2;11496:18;;;11489:30;11555:34;11535:18;;;11528:62;-1:-1:-1;;;11606:18:13;;;11599:40;11656:19;;1881:74:3;11275:406:13;1881:74:3;-1:-1:-1;;;;;;1972:16:3;;;;;:9;:16;;;;;;;1790:205::o;1650:94:11:-;1072:6;;-1:-1:-1;;;;;1072:6:11;666:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;3421:314:10:-;3480:16;3509:13;3525:16;3535:5;3525:9;:16::i;:::-;3509:32;;3552:20;3589:5;3575:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3575:20:10;;3552:43;;3611:9;3606:101;3630:5;3626:1;:9;3606:101;;;3666:29;3686:5;3693:1;3666:19;:29::i;:::-;3657:3;3661:1;3657:6;;;;;;;;:::i;:::-;;;;;;;;;;:38;3637:3;;;;:::i;:::-;;;;3606:101;;;-1:-1:-1;3724:3:10;3421:314;-1:-1:-1;;;3421:314:10:o;2668:94::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;666:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;2732:11:10::1;:22:::0;2668:94::o;2511:102:3:-;2567:13;2599:7;2592:14;;;;;:::i;2774:88:10:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;666:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;2834:11:10::1;:20:::0;;-1:-1:-1;;2834:20:10::1;::::0;::::1;;::::0;;;::::1;::::0;;2774:88::o;3032:144::-;1625:11;;3085:6;;1625:11;;1617:61;;;;-1:-1:-1;;;1617:61:10;;8352:2:13;1617:61:10;;;8334:21:13;8391:2;8371:18;;;8364:30;8430:34;8410:18;;;8403:62;-1:-1:-1;;;8481:18:13;;;8474:35;8526:19;;1617:61:10;8150:401:13;1617:61:10;1706:1;1697:6;:10;:40;;;;;1721:16;;1711:6;:26;;1697:40;1689:85;;;;-1:-1:-1;;;1689:85:10;;7160:2:13;1689:85:10;;;7142:21:13;;;7179:18;;;7172:30;7238:34;7218:18;;;7211:62;7290:18;;1689:85:10;6958:356:13;1689:85:10;1815:10;;1805:6;1793:9;;:18;;;;:::i;:::-;:32;;1785:62;;;;-1:-1:-1;;;1785:62:10;;15076:2:13;1785:62:10;;;15058:21:13;15115:2;15095:18;;;15088:30;-1:-1:-1;;;15134:18:13;;;15127:47;15191:18;;1785:62:10;14874:341:13;1785:62:10;1888:11;;1879:20;;:6;:20;:::i;:::-;1866:9;:33;1858:75;;;;-1:-1:-1;;;1858:75:10;;9522:2:13;1858:75:10;;;9504:21:13;9561:2;9541:18;;;9534:30;9600:31;9580:18;;;9573:59;9649:18;;1858:75:10;9320:353:13;1858:75:10;1072:6:11;;3104:36:10::1;::::0;-1:-1:-1;;;;;1072:6:11;;;;3130:9:10::1;3104:36:::0;::::1;;;::::0;::::1;::::0;;;3130:9;1072:6:11;3104:36:10;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;3150:18;3161:6;3150:10;:18::i;4144:153:3:-:0;4238:52;666:10:1;4271:8:3;4281;4238:18;:52::i;5228:320::-;5397:41;666:10:1;5430:7:3;5397:18;:41::i;:::-;5389:103;;;;-1:-1:-1;;;5389:103:3;;;;;;;:::i;:::-;5502:39;5516:4;5522:2;5526:7;5535:5;5502:13;:39::i;:::-;5228:320;;;;:::o;2304:352:10:-;7085:4:3;7108:16;;;:7;:16;;;;;;2377:13:10;;-1:-1:-1;;;;;7108:16:3;2403:77:10;;;;-1:-1:-1;;;2403:77:10;;15422:2:13;2403:77:10;;;15404:21:13;15461:2;15441:18;;;15434:30;15500:34;15480:18;;;15473:62;-1:-1:-1;;;15551:18:13;;;15544:46;15607:19;;2403:77:10;15220:412:13;2403:77:10;2493:22;2518:10;:8;:10::i;:::-;2493:35;;2571:1;2552:8;2546:22;:26;:102;;;;;;;;;;;;;;;-1:-1:-1;;;2546:102:10;;;;;;2599:8;2609:18;:7;:16;:18::i;:::-;2582:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2539:109;2304:352;-1:-1:-1;;;2304:352:10:o;1899:192:11:-;1072:6;;-1:-1:-1;;;;;1072:6:11;666:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:11;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:11;;8758:2:13;1980:73:11::1;::::0;::::1;8740:21:13::0;8797:2;8777:18;;;8770:30;8836:34;8816:18;;;8809:62;-1:-1:-1;;;8887:18:13;;;8880:36;8933:19;;1980:73:11::1;8556:402:13::0;1980:73:11::1;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;1431:300:3:-;1533:4;-1:-1:-1;;;;;;1568:40:3;;-1:-1:-1;;;1568:40:3;;:104;;-1:-1:-1;;;;;;;1624:48:3;;-1:-1:-1;;;1624:48:3;1568:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:2;;;1688:36:3;763:155:2;10871:171:3;10945:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;10945:29:3;-1:-1:-1;;;;;10945:29:3;;;;;;;;:24;;10998:23;10945:24;10998:14;:23::i;:::-;-1:-1:-1;;;;;10989:46:3;;;;;;;;;;;10871:171;;:::o;7303:344::-;7396:4;7108:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7108:16:3;7412:73;;;;-1:-1:-1;;;7412:73:3;;10639:2:13;7412:73:3;;;10621:21:13;10678:2;10658:18;;;10651:30;10717:34;10697:18;;;10690:62;-1:-1:-1;;;10768:18:13;;;10761:42;10820:19;;7412:73:3;10437:408:13;7412:73:3;7495:13;7511:23;7526:7;7511:14;:23::i;:::-;7495:39;;7563:5;-1:-1:-1;;;;;7552:16:3;:7;-1:-1:-1;;;;;7552:16:3;;:51;;;;7596:7;-1:-1:-1;;;;;7572:31:3;:20;7584:7;7572:11;:20::i;:::-;-1:-1:-1;;;;;7572:31:3;;7552:51;:87;;;-1:-1:-1;;;;;;4483:25:3;;;4460:4;4483:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7607:32;7544:96;7303:344;-1:-1:-1;;;;7303:344:3:o;10200:560::-;10354:4;-1:-1:-1;;;;;10327:31:3;:23;10342:7;10327:14;:23::i;:::-;-1:-1:-1;;;;;10327:31:3;;10319:85;;;;-1:-1:-1;;;10319:85:3;;13433:2:13;10319:85:3;;;13415:21:13;13472:2;13452:18;;;13445:30;13511:34;13491:18;;;13484:62;-1:-1:-1;;;13562:18:13;;;13555:39;13611:19;;10319:85:3;13231:405:13;10319:85:3;-1:-1:-1;;;;;10422:16:3;;10414:65;;;;-1:-1:-1;;;10414:65:3;;9880:2:13;10414:65:3;;;9862:21:13;9919:2;9899:18;;;9892:30;9958:34;9938:18;;;9931:62;-1:-1:-1;;;10009:18:13;;;10002:34;10053:19;;10414:65:3;9678:400:13;10414:65:3;10490:39;10511:4;10517:2;10521:7;10490:20;:39::i;:::-;10591:29;10608:1;10612:7;10591:8;:29::i;:::-;-1:-1:-1;;;;;10631:15:3;;;;;;:9;:15;;;;;:20;;10650:1;;10631:15;:20;;10650:1;;10631:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10661:13:3;;;;;;:9;:13;;;;;:18;;10678:1;;10661:13;:18;;10678:1;;10661:18;:::i;:::-;;;;-1:-1:-1;;10689:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10689:21:3;-1:-1:-1;;;;;10689:21:3;;;;;;;;;10726:27;;10689:16;;10726:27;;;;;;;10200:560;;;:::o;2099:173:11:-;2174:6;;;-1:-1:-1;;;;;2191:17:11;;;-1:-1:-1;;;;;;2191:17:11;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;3190:219:10:-;3272:9;;666:10:1;;3250:44:10;;3272:13;;3284:1;3272:13;:::i;:::-;3250:44;;;15993:25:13;;;16049:2;16034:18;;16027:34;;;15966:18;3250:44:10;;;;;;;3309:9;3305:97;3327:6;3324:1;:9;3305:97;;;3354:36;666:10:1;3378:9:10;:11;;;:9;:11;;;:::i;:::-;;;;-1:-1:-1;3374:15:10;;:1;:15;:::i;:::-;3354:5;:36::i;:::-;3335:3;;;;:::i;:::-;;;;3305:97;;11177:307:3;11327:8;-1:-1:-1;;;;;11318:17:3;:5;-1:-1:-1;;;;;11318:17:3;;;11310:55;;;;-1:-1:-1;;;11310:55:3;;10285:2:13;11310:55:3;;;10267:21:13;10324:2;10304:18;;;10297:30;10363:27;10343:18;;;10336:55;10408:18;;11310:55:3;10083:349:13;11310:55:3;-1:-1:-1;;;;;11375:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11375:46:3;;;;;;;;;;11436:41;;6682::13;;;11436::3;;6655:18:13;11436:41:3;;;;;;;11177:307;;;:::o;6410:::-;6561:28;6571:4;6577:2;6581:7;6561:9;:28::i;:::-;6607:48;6630:4;6636:2;6640:7;6649:5;6607:22;:48::i;:::-;6599:111;;;;-1:-1:-1;;;6599:111:3;;;;;;;:::i;2064:108:10:-;2124:13;2157:7;2150:14;;;;;:::i;275:703:12:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:12;;;;;;;;;;;;-1:-1:-1;;;574:10:12;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:12;;-1:-1:-1;720:2:12;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:12;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:12;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:12;;;;;;;;-1:-1:-1;919:11:12;928:2;919:11;;:::i;:::-;;;791:150;;2543:572:4;-1:-1:-1;;;;;2742:18:4;;2738:183;;2776:40;2808:7;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161;2776:40;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:4;:4;-1:-1:-1;;;;;2837:10:4;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:4;;2930:179;;2966:45;3003:7;2966:36;:45::i;2930:179::-;3038:4;-1:-1:-1;;;;;3032:10:4;:2;-1:-1:-1;;;;;3032:10:4;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;8939:372:3:-;-1:-1:-1;;;;;9018:16:3;;9010:61;;;;-1:-1:-1;;;9010:61:3;;12298:2:13;9010:61:3;;;12280:21:13;;;12317:18;;;12310:30;12376:34;12356:18;;;12349:62;12428:18;;9010:61:3;12096:356:13;9010:61:3;7085:4;7108:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7108:16:3;:30;9081:58;;;;-1:-1:-1;;;9081:58:3;;9165:2:13;9081:58:3;;;9147:21:13;9204:2;9184:18;;;9177:30;9243;9223:18;;;9216:58;9291:18;;9081:58:3;8963:352:13;9081:58:3;9150:45;9179:1;9183:2;9187:7;9150:20;:45::i;:::-;-1:-1:-1;;;;;9206:13:3;;;;;;:9;:13;;;;;:18;;9223:1;;9206:13;:18;;9223:1;;9206:18;:::i;:::-;;;;-1:-1:-1;;9234:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9234:21:3;-1:-1:-1;;;;;9234:21:3;;;;;;;;9271:33;;9234:16;;;9271:33;;9234:16;;9271:33;8939:372;;:::o;12037:778::-;12187:4;-1:-1:-1;;;;;12207:13:3;;1034:20:0;1080:8;12203:606:3;;12242:72;;-1:-1:-1;;;12242:72:3;;-1:-1:-1;;;;;12242:36:3;;;;;:72;;666:10:1;;12293:4:3;;12299:7;;12308:5;;12242:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12242:72:3;;;;;;;;-1:-1:-1;;12242:72:3;;;;;;;;;;;;:::i;:::-;;;12238:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12481:13:3;;12477:266;;12523:60;;-1:-1:-1;;;12523:60:3;;;;;;;:::i;12477:266::-;12695:6;12689:13;12680:6;12676:2;12672:15;12665:38;12238:519;-1:-1:-1;;;;;;12364:51:3;-1:-1:-1;;;12364:51:3;;-1:-1:-1;12357:58:3;;12203:606;-1:-1:-1;12794:4:3;12037:778;;;;;;:::o;4599:970:4:-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:4;;;5069:323;;-1:-1:-1;;;;;5139:18:4;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:4;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:4;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:4;;6106:46;;6551:26;;;;;;:::i;:::-;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5928:990;;;5857:1061;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:4:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:13;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:13;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:13;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:13;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:13:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:13;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:13;;4115:180;-1:-1:-1;4115:180:13:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:13;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:13:o;4562:637::-;4842:3;4880:6;4874:13;4896:53;4942:6;4937:3;4930:4;4922:6;4918:17;4896:53;:::i;:::-;5012:13;;4971:16;;;;5034:57;5012:13;4971:16;5068:4;5056:17;;5034:57;:::i;:::-;-1:-1:-1;;;5113:20:13;;5142:22;;;5191:1;5180:13;;4562:637;-1:-1:-1;;;;4562:637:13:o;5412:488::-;-1:-1:-1;;;;;5681:15:13;;;5663:34;;5733:15;;5728:2;5713:18;;5706:43;5780:2;5765:18;;5758:34;;;5828:3;5823:2;5808:18;;5801:31;;;5606:4;;5849:45;;5874:19;;5866:6;5849:45;:::i;:::-;5841:53;5412:488;-1:-1:-1;;;;;;5412:488:13:o;5905:632::-;6076:2;6128:21;;;6198:13;;6101:18;;;6220:22;;;6047:4;;6076:2;6299:15;;;;6273:2;6258:18;;;6047:4;6342:169;6356:6;6353:1;6350:13;6342:169;;;6417:13;;6405:26;;6486:15;;;;6451:12;;;;6378:1;6371:9;6342:169;;;-1:-1:-1;6528:3:13;;5905:632;-1:-1:-1;;;;;;5905:632:13:o;6734:219::-;6883:2;6872:9;6865:21;6846:4;6903:44;6943:2;6932:9;6928:18;6920:6;6903:44;:::i;7731:414::-;7933:2;7915:21;;;7972:2;7952:18;;;7945:30;8011:34;8006:2;7991:18;;7984:62;-1:-1:-1;;;8077:2:13;8062:18;;8055:48;8135:3;8120:19;;7731:414::o;12870:356::-;13072:2;13054:21;;;13091:18;;;13084:30;13150:34;13145:2;13130:18;;13123:62;13217:2;13202:18;;12870:356::o;14043:413::-;14245:2;14227:21;;;14284:2;14264:18;;;14257:30;14323:34;14318:2;14303:18;;14296:62;-1:-1:-1;;;14389:2:13;14374:18;;14367:47;14446:3;14431:19;;14043:413::o;16072:128::-;16112:3;16143:1;16139:6;16136:1;16133:13;16130:39;;;16149:18;;:::i;:::-;-1:-1:-1;16185:9:13;;16072:128::o;16205:120::-;16245:1;16271;16261:35;;16276:18;;:::i;:::-;-1:-1:-1;16310:9:13;;16205:120::o;16330:168::-;16370:7;16436:1;16432;16428:6;16424:14;16421:1;16418:21;16413:1;16406:9;16399:17;16395:45;16392:71;;;16443:18;;:::i;:::-;-1:-1:-1;16483:9:13;;16330:168::o;16503:125::-;16543:4;16571:1;16568;16565:8;16562:34;;;16576:18;;:::i;:::-;-1:-1:-1;16613:9:13;;16503:125::o;16633:258::-;16705:1;16715:113;16729:6;16726:1;16723:13;16715:113;;;16805:11;;;16799:18;16786:11;;;16779:39;16751:2;16744:10;16715:113;;;16846:6;16843:1;16840:13;16837:48;;;-1:-1:-1;;16881:1:13;16863:16;;16856:27;16633:258::o;16896:380::-;16975:1;16971:12;;;;17018;;;17039:61;;17093:4;17085:6;17081:17;17071:27;;17039:61;17146:2;17138:6;17135:14;17115:18;17112:38;17109:161;;;17192:10;17187:3;17183:20;17180:1;17173:31;17227:4;17224:1;17217:15;17255:4;17252:1;17245:15;17109:161;;16896:380;;;:::o;17281:135::-;17320:3;-1:-1:-1;;17341:17:13;;17338:43;;;17361:18;;:::i;:::-;-1:-1:-1;17408:1:13;17397:13;;17281:135::o;17421:112::-;17453:1;17479;17469:35;;17484:18;;:::i;:::-;-1:-1:-1;17518:9:13;;17421:112::o;17538:127::-;17599:10;17594:3;17590:20;17587:1;17580:31;17630:4;17627:1;17620:15;17654:4;17651:1;17644:15;17670:127;17731:10;17726:3;17722:20;17719:1;17712:31;17762:4;17759:1;17752:15;17786:4;17783:1;17776:15;17802:127;17863:10;17858:3;17854:20;17851:1;17844:31;17894:4;17891:1;17884:15;17918:4;17915:1;17908:15;17934:127;17995:10;17990:3;17986:20;17983:1;17976:31;18026:4;18023:1;18016:15;18050:4;18047:1;18040:15;18066:127;18127:10;18122:3;18118:20;18115:1;18108:31;18158:4;18155:1;18148:15;18182:4;18179:1;18172:15;18198:131;-1:-1:-1;;;;;;18272:32:13;;18262:43;;18252:71;;18319:1;18316;18309:12

Swarm Source

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