ETH Price: $3,260.11 (+2.80%)
Gas: 9 Gwei

Token

Cosmopolity (COSMOPOLITY)
 

Overview

Max Total Supply

235 COSMOPOLITY

Holders

95

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 COSMOPOLITY
0xe1f3554a0a7d58cbc8c2da2561a84210686362ac
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:
Cosmopolity

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Cosmopolity.sol
/*********************

  COSMOPOLITY 🪐
    
    cosmopolity.art

**********************/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./IMintPassContract.sol";

contract Cosmopolity is IERC721Metadata, ERC721Enumerable, Ownable {
    bool public mintable;
    address payable public feeAddress;
    uint256 public immutable maxNumberOfPieces = 8000;
    uint256 public publicMintCeiling = 200;
    uint256 public publicMintCount = 0;
    uint256 public maximumMintsPerTransaction = 2;
    string public baseURI;
    uint256 public currentPrice = 1.0 ether;
    bool public baseURILocked;
    string public contractURI;
    address public stylizerContractAddress;
    address  _mintPassAddress;

    struct TokenGenesisInfo {
        address initialOwner;
        uint256 initialTokenCount;
    }

    // duplicate initial token info for quick lookup on the client side
    mapping(uint256 => TokenGenesisInfo) public tokenGenesisInfo;

    constructor(
        string memory name,
        string memory symbol,
        address payable _feeAddress,
        string memory initBaseURI
    ) ERC721(name, symbol) {
        feeAddress = _feeAddress;
        baseURI = initBaseURI; 
    }
 
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function mintMultiple(
        address to,
        uint256 numberOfTokens
    ) public payable {
        require(msg.value == currentPrice * numberOfTokens, "Must send in correct amount.");
        publicMintCount += numberOfTokens;
        require(publicMintCount <= publicMintCeiling, "Current public mint limit reached.");
       _mintMultiple(to, numberOfTokens);
    }

    function mintMultipleWithMintPasses(uint256[] memory mintPassTokenIds) public payable {
        IMintPass mintPassContract = IMintPass(_mintPassAddress);
        require(mintPassContract.isMintPassSalesActive() == true, "Mint pass sale is not active.");
        mintPassContract.expend(mintPassTokenIds, msg.value);
        _mintMultiple(msg.sender, mintPassTokenIds.length);
    }

    function _mintMultiple(address to, uint256 numberOfTokens) private {
        // mint
        require(mintable == true, "Minting is not active.");
        require(piecesLeft() >= numberOfTokens, "Not enough tokens left to mint.");
        require(numberOfTokens <= maximumMintsPerTransaction, "Minting too many.");

        for(uint i = 0; i < numberOfTokens; i++) {
            // figure out the token id
            uint256 newTokenId = totalSupply() + 1;
            _mintAssigningInitialTokens(to, newTokenId);
        }
    }

    function _mintAssigningInitialTokens(address to, uint256 newTokenId) private {
        uint256 newOwnerTokenCount = balanceOf(to) + 1;
        tokenGenesisInfo[newTokenId] = TokenGenesisInfo(to, newOwnerTokenCount);
        _mint(to, newTokenId);
    }
    

    function tokenExists(uint256 tokenId) public view returns (bool) {
        return _exists(tokenId);
    }

    function piecesLeft() public view returns (uint256) {
        return maxNumberOfPieces - totalSupply();
    }
   
   
    /***** Owner Operations *****/

    // TODO: artist proof mint function. make sure can only be called by owner
    // and only be called once

    function ownerSetBaseURI(string memory _newBaseURI) public onlyOwner {
        require(baseURILocked == false, "baseURI is permenantly locked.");
        baseURI = _newBaseURI;
    }

    function ownerSetFeeAddress(address payable _newAddress) public onlyOwner {
        feeAddress = _newAddress;
    }

    function ownerSetMintable(bool _mintable) public onlyOwner {
        mintable = _mintable;
    }

    function ownerSetStylizerContractAddress(address _addr) public onlyOwner {
        stylizerContractAddress = _addr;
    }

    function ownerSetAuctionContractAddress(address _addr) public onlyOwner {
        _mintPassAddress = _addr;
    }

    function ownerSetPublicMintCeiling(uint256 _newMintCeiling) public onlyOwner {
        publicMintCeiling = _newMintCeiling;
    }

    function ownerSetMaximumMintsPerTransaction(uint256 max) public onlyOwner {
        maximumMintsPerTransaction = max;
    }

    function ownerWithdrawETH() public onlyOwner {
        Address.sendValue(feeAddress, address(this).balance);
    }

    function ownerSetCurrentPrice(uint256 _price) public onlyOwner {
        currentPrice = _price;
    }

    function ownerDangerouslyPermanentlyLockBaseURI() public onlyOwner {
        // DANGER: this will permanently lock the baseURI 
        baseURILocked = true;
    }
    
    function ownerSetContractURI(string memory _newContractURI) public onlyOwner {
        contractURI = _newContractURI;
    }

    /***** End of Owner Operations *****/

}

File 2 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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 3 of 15 : 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 4 of 15 : 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 5 of 15 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 6 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 7 of 15 : IMintPassContract.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

interface IMintPass  {
    function isMintPassSalesActive() external returns (bool);
    function expend(uint256[] memory tokenIds,  uint256 totalAmountSent) external;
}

File 8 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/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 9 of 15 : 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 10 of 15 : 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 11 of 15 : 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 12 of 15 : 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);
    }
}

File 13 of 15 : 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 14 of 15 : 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 15 of 15 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address payable","name":"_feeAddress","type":"address"},{"internalType":"string","name":"initBaseURI","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":"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":"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":[],"name":"baseURILocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNumberOfPieces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumMintsPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"mintPassTokenIds","type":"uint256[]"}],"name":"mintMultipleWithMintPasses","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerDangerouslyPermanentlyLockBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"ownerSetAuctionContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"ownerSetBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newContractURI","type":"string"}],"name":"ownerSetContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"ownerSetCurrentPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newAddress","type":"address"}],"name":"ownerSetFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"ownerSetMaximumMintsPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintable","type":"bool"}],"name":"ownerSetMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintCeiling","type":"uint256"}],"name":"ownerSetPublicMintCeiling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"ownerSetStylizerContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ownerWithdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"piecesLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintCeiling","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintCount","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":[],"name":"stylizerContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenGenesisInfo","outputs":[{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"uint256","name":"initialTokenCount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052611f4060809081525060c8600c556000600d556002600e55670de0b6b3a76400006010553480156200003557600080fd5b50604051620056e7380380620056e783398181016040528101906200005b91906200031c565b8383816000908051906020019062000075929190620001e3565b5080600190805190602001906200008e929190620001e3565b505050620000b1620000a56200011560201b60201c565b6200011d60201b60201c565b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600f90805190602001906200010a929190620001e3565b505050505062000591565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f1906200049c565b90600052602060002090601f01602090048101928262000215576000855562000261565b82601f106200023057805160ff191683800117855562000261565b8280016001018555821562000261579182015b828111156200026057825182559160200191906001019062000243565b5b50905062000270919062000274565b5090565b5b808211156200028f57600081600090555060010162000275565b5090565b6000620002aa620002a484620003fc565b620003d3565b905082815260208101848484011115620002c357600080fd5b620002d084828562000466565b509392505050565b600081519050620002e98162000577565b92915050565b600082601f8301126200030157600080fd5b81516200031384826020860162000293565b91505092915050565b600080600080608085870312156200033357600080fd5b600085015167ffffffffffffffff8111156200034e57600080fd5b6200035c87828801620002ef565b945050602085015167ffffffffffffffff8111156200037a57600080fd5b6200038887828801620002ef565b93505060406200039b87828801620002d8565b925050606085015167ffffffffffffffff811115620003b957600080fd5b620003c787828801620002ef565b91505092959194509250565b6000620003df620003f2565b9050620003ed8282620004d2565b919050565b6000604051905090565b600067ffffffffffffffff8211156200041a576200041962000537565b5b620004258262000566565b9050602081019050919050565b60006200043f8262000446565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200048657808201518184015260208101905062000469565b8381111562000496576000848401525b50505050565b60006002820490506001821680620004b557607f821691505b60208210811415620004cc57620004cb62000508565b5b50919050565b620004dd8262000566565b810181811067ffffffffffffffff82111715620004ff57620004fe62000537565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005828162000432565b81146200058e57600080fd5b50565b608051615133620005b460003960008181611de6015261213c01526151336000f3fe60806040526004361061027c5760003560e01c806363d580f71161014f578063b3fa4a4c116100c1578063e8a3d4851161007a578063e8a3d4851461096a578063e985e9c514610995578063f2fde38b146109d2578063f5a63e4a146109fb578063f729950014610a24578063fe3c465714610a4d5761027c565b8063b3fa4a4c1461086b578063b88d4fde14610887578063b9a87c09146108b0578063c752d90d146108d9578063c87b56dd14610902578063e1d41a281461093f5761027c565b80638da5cb5b116101135780638da5cb5b1461076757806395d89b41146107925780639d1b464a146107bd578063a197c7e7146107e8578063a22cb46514610804578063aeb2e05e1461082d5761027c565b806363d580f7146106945780636c0360eb146106bd5780636f7b9f2f146106e857806370a0823114610713578063715018a6146107505761027c565b806327a910dc116101f35780634587b505116101ac5780634587b505146105705780634bf365df146105995780634f6ccce7146105c45780635d0e05e8146106015780635d148e5c1461062c5780636352211e146106575761027c565b806327a910dc146104765780632f745c591461048d57806334c05711146104ca5780633979de69146104f3578063412753581461051c57806342842e0e146105475761027c565b8063081812fc11610245578063081812fc14610368578063095ea7b3146103a55780630d84d1ce146103ce57806318160ddd146103f957806321a31b991461042457806323b872dd1461044d5761027c565b8062923f9e1461028157806301ffc9a7146102be57806304595510146102fb5780630679fe4d1461031257806306fdde031461033d575b600080fd5b34801561028d57600080fd5b506102a860048036038101906102a39190613ae6565b610a78565b6040516102b5919061415b565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613a53565b610a8a565b6040516102f2919061415b565b60405180910390f35b34801561030757600080fd5b50610310610b04565b005b34801561031e57600080fd5b50610327610b9d565b60405161033491906144f8565b60405180910390f35b34801561034957600080fd5b50610352610ba3565b60405161035f9190614176565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190613ae6565b610c35565b60405161039c9190614080565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190613984565b610cba565b005b3480156103da57600080fd5b506103e3610dd2565b6040516103f091906144f8565b60405180910390f35b34801561040557600080fd5b5061040e610dd8565b60405161041b91906144f8565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190613ae6565b610de5565b005b34801561045957600080fd5b50610474600480360381019061046f919061387e565b610e6b565b005b34801561048257600080fd5b5061048b610ecb565b005b34801561049957600080fd5b506104b460048036038101906104af9190613984565b610f75565b6040516104c191906144f8565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190613aa5565b61101a565b005b3480156104ff57600080fd5b5061051a600480360381019061051591906137f0565b6110b0565b005b34801561052857600080fd5b50610531611170565b60405161053e919061409b565b60405180910390f35b34801561055357600080fd5b5061056e6004803603810190610569919061387e565b611196565b005b34801561057c57600080fd5b50610597600480360381019061059291906137f0565b6111b6565b005b3480156105a557600080fd5b506105ae611276565b6040516105bb919061415b565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190613ae6565b611289565b6040516105f891906144f8565b60405180910390f35b34801561060d57600080fd5b50610616611320565b6040516106239190614080565b60405180910390f35b34801561063857600080fd5b50610641611346565b60405161064e919061415b565b60405180910390f35b34801561066357600080fd5b5061067e60048036038101906106799190613ae6565b611359565b60405161068b9190614080565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190613819565b61140b565b005b3480156106c957600080fd5b506106d26114cb565b6040516106df9190614176565b60405180910390f35b3480156106f457600080fd5b506106fd611559565b60405161070a91906144f8565b60405180910390f35b34801561071f57600080fd5b5061073a600480360381019061073591906137f0565b61155f565b60405161074791906144f8565b60405180910390f35b34801561075c57600080fd5b50610765611617565b005b34801561077357600080fd5b5061077c61169f565b6040516107899190614080565b60405180910390f35b34801561079e57600080fd5b506107a76116c9565b6040516107b49190614176565b60405180910390f35b3480156107c957600080fd5b506107d261175b565b6040516107df91906144f8565b60405180910390f35b61080260048036038101906107fd91906139c0565b611761565b005b34801561081057600080fd5b5061082b60048036038101906108269190613948565b6118ca565b005b34801561083957600080fd5b50610854600480360381019061084f9190613ae6565b611a4b565b604051610862929190614102565b60405180910390f35b61088560048036038101906108809190613984565b611a8f565b005b34801561089357600080fd5b506108ae60048036038101906108a991906138cd565b611b4c565b005b3480156108bc57600080fd5b506108d760048036038101906108d29190613aa5565b611bae565b005b3480156108e557600080fd5b5061090060048036038101906108fb9190613a01565b611c9a565b005b34801561090e57600080fd5b5061092960048036038101906109249190613ae6565b611d33565b6040516109369190614176565b60405180910390f35b34801561094b57600080fd5b50610954611dda565b60405161096191906144f8565b60405180910390f35b34801561097657600080fd5b5061097f611e14565b60405161098c9190614176565b60405180910390f35b3480156109a157600080fd5b506109bc60048036038101906109b79190613842565b611ea2565b6040516109c9919061415b565b60405180910390f35b3480156109de57600080fd5b506109f960048036038101906109f491906137f0565b611f36565b005b348015610a0757600080fd5b50610a226004803603810190610a1d9190613ae6565b61202e565b005b348015610a3057600080fd5b50610a4b6004803603810190610a469190613ae6565b6120b4565b005b348015610a5957600080fd5b50610a6261213a565b604051610a6f91906144f8565b60405180910390f35b6000610a838261215e565b9050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afd5750610afc826121ca565b5b9050919050565b610b0c6122ac565b73ffffffffffffffffffffffffffffffffffffffff16610b2a61169f565b73ffffffffffffffffffffffffffffffffffffffff1614610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b77906143f8565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b600e5481565b606060008054610bb29061482a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bde9061482a565b8015610c2b5780601f10610c0057610100808354040283529160200191610c2b565b820191906000526020600020905b815481529060010190602001808311610c0e57829003601f168201915b5050505050905090565b6000610c408261215e565b610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c76906143d8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc582611359565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90614478565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d556122ac565b73ffffffffffffffffffffffffffffffffffffffff161480610d845750610d8381610d7e6122ac565b611ea2565b5b610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba90614338565b60405180910390fd5b610dcd83836122b4565b505050565b600d5481565b6000600880549050905090565b610ded6122ac565b73ffffffffffffffffffffffffffffffffffffffff16610e0b61169f565b73ffffffffffffffffffffffffffffffffffffffff1614610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e58906143f8565b60405180910390fd5b80600e8190555050565b610e7c610e766122ac565b8261236d565b610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb2906144b8565b60405180910390fd5b610ec683838361244b565b505050565b610ed36122ac565b73ffffffffffffffffffffffffffffffffffffffff16610ef161169f565b73ffffffffffffffffffffffffffffffffffffffff1614610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e906143f8565b60405180910390fd5b610f73600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16476126a7565b565b6000610f808361155f565b8210610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906141b8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110226122ac565b73ffffffffffffffffffffffffffffffffffffffff1661104061169f565b73ffffffffffffffffffffffffffffffffffffffff1614611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d906143f8565b60405180910390fd5b80601290805190602001906110ac929190613554565b5050565b6110b86122ac565b73ffffffffffffffffffffffffffffffffffffffff166110d661169f565b73ffffffffffffffffffffffffffffffffffffffff161461112c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611123906143f8565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111b183838360405180602001604052806000815250611b4c565b505050565b6111be6122ac565b73ffffffffffffffffffffffffffffffffffffffff166111dc61169f565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611229906143f8565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a60149054906101000a900460ff1681565b6000611293610dd8565b82106112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb906144d8565b60405180910390fd5b6008828154811061130e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990614378565b60405180910390fd5b80915050919050565b6114136122ac565b73ffffffffffffffffffffffffffffffffffffffff1661143161169f565b73ffffffffffffffffffffffffffffffffffffffff1614611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e906143f8565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f80546114d89061482a565b80601f01602080910402602001604051908101604052809291908181526020018280546115049061482a565b80156115515780601f1061152657610100808354040283529160200191611551565b820191906000526020600020905b81548152906001019060200180831161153457829003601f168201915b505050505081565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c790614358565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61161f6122ac565b73ffffffffffffffffffffffffffffffffffffffff1661163d61169f565b73ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a906143f8565b60405180910390fd5b61169d600061279b565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116d89061482a565b80601f01602080910402602001604051908101604052809291908181526020018280546117049061482a565b80156117515780601f1061172657610100808354040283529160200191611751565b820191906000526020600020905b81548152906001019060200180831161173457829003601f168201915b5050505050905090565b60105481565b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600115158173ffffffffffffffffffffffffffffffffffffffff1663b77498a16040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156117d457600080fd5b505af11580156117e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180c9190613a2a565b15151461184e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184590614438565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16632708586283346040518363ffffffff1660e01b815260040161188992919061412b565b600060405180830381600087803b1580156118a357600080fd5b505af11580156118b7573d6000803e3d6000fd5b505050506118c6338351612861565b5050565b6118d26122ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193790614258565b60405180910390fd5b806005600061194d6122ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119fa6122ac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a3f919061415b565b60405180910390a35050565b60156020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b80601054611a9d91906146d4565b3414611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad590614398565b60405180910390fd5b80600d6000828254611af0919061464d565b92505081905550600c54600d541115611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590614298565b60405180910390fd5b611b488282612861565b5050565b611b5d611b576122ac565b8361236d565b611b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b93906144b8565b60405180910390fd5b611ba88484848461298c565b50505050565b611bb66122ac565b73ffffffffffffffffffffffffffffffffffffffff16611bd461169f565b73ffffffffffffffffffffffffffffffffffffffff1614611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c21906143f8565b60405180910390fd5b60001515601160009054906101000a900460ff16151514611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7790614198565b60405180910390fd5b80600f9080519060200190611c96929190613554565b5050565b611ca26122ac565b73ffffffffffffffffffffffffffffffffffffffff16611cc061169f565b73ffffffffffffffffffffffffffffffffffffffff1614611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d906143f8565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b6060611d3e8261215e565b611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7490614458565b60405180910390fd5b6000611d876129e8565b90506000815111611da75760405180602001604052806000815250611dd2565b80611db184612a7a565b604051602001611dc2929190614047565b6040516020818303038152906040525b915050919050565b6000611de4610dd8565b7f0000000000000000000000000000000000000000000000000000000000000000611e0f919061472e565b905090565b60128054611e219061482a565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4d9061482a565b8015611e9a5780601f10611e6f57610100808354040283529160200191611e9a565b820191906000526020600020905b815481529060010190602001808311611e7d57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f3e6122ac565b73ffffffffffffffffffffffffffffffffffffffff16611f5c61169f565b73ffffffffffffffffffffffffffffffffffffffff1614611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa9906143f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612022576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612019906141f8565b60405180910390fd5b61202b8161279b565b50565b6120366122ac565b73ffffffffffffffffffffffffffffffffffffffff1661205461169f565b73ffffffffffffffffffffffffffffffffffffffff16146120aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a1906143f8565b60405180910390fd5b8060108190555050565b6120bc6122ac565b73ffffffffffffffffffffffffffffffffffffffff166120da61169f565b73ffffffffffffffffffffffffffffffffffffffff1614612130576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612127906143f8565b60405180910390fd5b80600c8190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061229557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122a557506122a482612c27565b5b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661232783611359565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123788261215e565b6123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae906142f8565b60405180910390fd5b60006123c283611359565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061243157508373ffffffffffffffffffffffffffffffffffffffff1661241984610c35565b73ffffffffffffffffffffffffffffffffffffffff16145b8061244257506124418185611ea2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661246b82611359565b73ffffffffffffffffffffffffffffffffffffffff16146124c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b890614418565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252890614238565b60405180910390fd5b61253c838383612c91565b6125476000826122b4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612597919061472e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ee919061464d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b804710156126ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e1906142d8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516127109061406b565b60006040518083038185875af1925050503d806000811461274d576040519150601f19603f3d011682016040523d82523d6000602084013e612752565b606091505b5050905080612796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278d906142b8565b60405180910390fd5b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60011515600a60149054906101000a900460ff161515146128b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ae90614498565b60405180910390fd5b806128c0611dda565b1015612901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f890614278565b60405180910390fd5b600e54811115612946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293d90614318565b60405180910390fd5b60005b81811015612987576000600161295d610dd8565b612967919061464d565b90506129738482612da5565b50808061297f9061488d565b915050612949565b505050565b61299784848461244b565b6129a384848484612e5f565b6129e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d9906141d8565b60405180910390fd5b50505050565b6060600f80546129f79061482a565b80601f0160208091040260200160405190810160405280929190818152602001828054612a239061482a565b8015612a705780601f10612a4557610100808354040283529160200191612a70565b820191906000526020600020905b815481529060010190602001808311612a5357829003601f168201915b5050505050905090565b60606000821415612ac2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c22565b600082905060005b60008214612af4578080612add9061488d565b915050600a82612aed91906146a3565b9150612aca565b60008167ffffffffffffffff811115612b36577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b685781602001600182028036833780820191505090505b5090505b60008514612c1b57600182612b81919061472e565b9150600a85612b9091906148d6565b6030612b9c919061464d565b60f81b818381518110612bd8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c1491906146a3565b9450612b6c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c9c838383612ff6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cdf57612cda81612ffb565b612d1e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d1d57612d1c8382613044565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d6157612d5c816131b1565b612da0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d9f57612d9e82826132f4565b5b5b505050565b60006001612db28461155f565b612dbc919061464d565b905060405180604001604052808473ffffffffffffffffffffffffffffffffffffffff168152602001828152506015600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155905050612e5a8383613373565b505050565b6000612e808473ffffffffffffffffffffffffffffffffffffffff16613541565b15612fe9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ea96122ac565b8786866040518563ffffffff1660e01b8152600401612ecb94939291906140b6565b602060405180830381600087803b158015612ee557600080fd5b505af1925050508015612f1657506040513d601f19601f82011682018060405250810190612f139190613a7c565b60015b612f99573d8060008114612f46576040519150601f19603f3d011682016040523d82523d6000602084013e612f4b565b606091505b50600081511415612f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f88906141d8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fee565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016130518461155f565b61305b919061472e565b9050600060076000848152602001908152602001600020549050818114613140576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131c5919061472e565b905060006009600084815260200190815260200160002054905060006008838154811061321b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613263577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006132ff8361155f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133da906143b8565b60405180910390fd5b6133ec8161215e565b1561342c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342390614218565b60405180910390fd5b61343860008383612c91565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613488919061464d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546135609061482a565b90600052602060002090601f01602090048101928261358257600085556135c9565b82601f1061359b57805160ff19168380011785556135c9565b828001600101855582156135c9579182015b828111156135c85782518255916020019190600101906135ad565b5b5090506135d691906135da565b5090565b5b808211156135f35760008160009055506001016135db565b5090565b600061360a61360584614538565b614513565b9050808382526020820190508285602086028201111561362957600080fd5b60005b85811015613659578161363f88826137db565b84526020840193506020830192505060018101905061362c565b5050509392505050565b600061367661367184614564565b614513565b90508281526020810184848401111561368e57600080fd5b6136998482856147e8565b509392505050565b60006136b46136af84614595565b614513565b9050828152602081018484840111156136cc57600080fd5b6136d78482856147e8565b509392505050565b6000813590506136ee8161508a565b92915050565b600081359050613703816150a1565b92915050565b600082601f83011261371a57600080fd5b813561372a8482602086016135f7565b91505092915050565b600081359050613742816150b8565b92915050565b600081519050613757816150b8565b92915050565b60008135905061376c816150cf565b92915050565b600081519050613781816150cf565b92915050565b600082601f83011261379857600080fd5b81356137a8848260208601613663565b91505092915050565b600082601f8301126137c257600080fd5b81356137d28482602086016136a1565b91505092915050565b6000813590506137ea816150e6565b92915050565b60006020828403121561380257600080fd5b6000613810848285016136df565b91505092915050565b60006020828403121561382b57600080fd5b6000613839848285016136f4565b91505092915050565b6000806040838503121561385557600080fd5b6000613863858286016136df565b9250506020613874858286016136df565b9150509250929050565b60008060006060848603121561389357600080fd5b60006138a1868287016136df565b93505060206138b2868287016136df565b92505060406138c3868287016137db565b9150509250925092565b600080600080608085870312156138e357600080fd5b60006138f1878288016136df565b9450506020613902878288016136df565b9350506040613913878288016137db565b925050606085013567ffffffffffffffff81111561393057600080fd5b61393c87828801613787565b91505092959194509250565b6000806040838503121561395b57600080fd5b6000613969858286016136df565b925050602061397a85828601613733565b9150509250929050565b6000806040838503121561399757600080fd5b60006139a5858286016136df565b92505060206139b6858286016137db565b9150509250929050565b6000602082840312156139d257600080fd5b600082013567ffffffffffffffff8111156139ec57600080fd5b6139f884828501613709565b91505092915050565b600060208284031215613a1357600080fd5b6000613a2184828501613733565b91505092915050565b600060208284031215613a3c57600080fd5b6000613a4a84828501613748565b91505092915050565b600060208284031215613a6557600080fd5b6000613a738482850161375d565b91505092915050565b600060208284031215613a8e57600080fd5b6000613a9c84828501613772565b91505092915050565b600060208284031215613ab757600080fd5b600082013567ffffffffffffffff811115613ad157600080fd5b613add848285016137b1565b91505092915050565b600060208284031215613af857600080fd5b6000613b06848285016137db565b91505092915050565b6000613b1b8383614029565b60208301905092915050565b613b3081614774565b82525050565b613b3f81614762565b82525050565b6000613b50826145d6565b613b5a8185614604565b9350613b65836145c6565b8060005b83811015613b96578151613b7d8882613b0f565b9750613b88836145f7565b925050600181019050613b69565b5085935050505092915050565b613bac81614786565b82525050565b6000613bbd826145e1565b613bc78185614615565b9350613bd78185602086016147f7565b613be0816149c3565b840191505092915050565b6000613bf6826145ec565b613c008185614631565b9350613c108185602086016147f7565b613c19816149c3565b840191505092915050565b6000613c2f826145ec565b613c398185614642565b9350613c498185602086016147f7565b80840191505092915050565b6000613c62601e83614631565b9150613c6d826149d4565b602082019050919050565b6000613c85602b83614631565b9150613c90826149fd565b604082019050919050565b6000613ca8603283614631565b9150613cb382614a4c565b604082019050919050565b6000613ccb602683614631565b9150613cd682614a9b565b604082019050919050565b6000613cee601c83614631565b9150613cf982614aea565b602082019050919050565b6000613d11602483614631565b9150613d1c82614b13565b604082019050919050565b6000613d34601983614631565b9150613d3f82614b62565b602082019050919050565b6000613d57601f83614631565b9150613d6282614b8b565b602082019050919050565b6000613d7a602283614631565b9150613d8582614bb4565b604082019050919050565b6000613d9d603a83614631565b9150613da882614c03565b604082019050919050565b6000613dc0601d83614631565b9150613dcb82614c52565b602082019050919050565b6000613de3602c83614631565b9150613dee82614c7b565b604082019050919050565b6000613e06601183614631565b9150613e1182614cca565b602082019050919050565b6000613e29603883614631565b9150613e3482614cf3565b604082019050919050565b6000613e4c602a83614631565b9150613e5782614d42565b604082019050919050565b6000613e6f602983614631565b9150613e7a82614d91565b604082019050919050565b6000613e92601c83614631565b9150613e9d82614de0565b602082019050919050565b6000613eb5602083614631565b9150613ec082614e09565b602082019050919050565b6000613ed8602c83614631565b9150613ee382614e32565b604082019050919050565b6000613efb602083614631565b9150613f0682614e81565b602082019050919050565b6000613f1e602983614631565b9150613f2982614eaa565b604082019050919050565b6000613f41601d83614631565b9150613f4c82614ef9565b602082019050919050565b6000613f64602f83614631565b9150613f6f82614f22565b604082019050919050565b6000613f87602183614631565b9150613f9282614f71565b604082019050919050565b6000613faa601683614631565b9150613fb582614fc0565b602082019050919050565b6000613fcd600083614626565b9150613fd882614fe9565b600082019050919050565b6000613ff0603183614631565b9150613ffb82614fec565b604082019050919050565b6000614013602c83614631565b915061401e8261503b565b604082019050919050565b614032816147de565b82525050565b614041816147de565b82525050565b60006140538285613c24565b915061405f8284613c24565b91508190509392505050565b600061407682613fc0565b9150819050919050565b60006020820190506140956000830184613b36565b92915050565b60006020820190506140b06000830184613b27565b92915050565b60006080820190506140cb6000830187613b36565b6140d86020830186613b36565b6140e56040830185614038565b81810360608301526140f78184613bb2565b905095945050505050565b60006040820190506141176000830185613b36565b6141246020830184614038565b9392505050565b600060408201905081810360008301526141458185613b45565b90506141546020830184614038565b9392505050565b60006020820190506141706000830184613ba3565b92915050565b600060208201905081810360008301526141908184613beb565b905092915050565b600060208201905081810360008301526141b181613c55565b9050919050565b600060208201905081810360008301526141d181613c78565b9050919050565b600060208201905081810360008301526141f181613c9b565b9050919050565b6000602082019050818103600083015261421181613cbe565b9050919050565b6000602082019050818103600083015261423181613ce1565b9050919050565b6000602082019050818103600083015261425181613d04565b9050919050565b6000602082019050818103600083015261427181613d27565b9050919050565b6000602082019050818103600083015261429181613d4a565b9050919050565b600060208201905081810360008301526142b181613d6d565b9050919050565b600060208201905081810360008301526142d181613d90565b9050919050565b600060208201905081810360008301526142f181613db3565b9050919050565b6000602082019050818103600083015261431181613dd6565b9050919050565b6000602082019050818103600083015261433181613df9565b9050919050565b6000602082019050818103600083015261435181613e1c565b9050919050565b6000602082019050818103600083015261437181613e3f565b9050919050565b6000602082019050818103600083015261439181613e62565b9050919050565b600060208201905081810360008301526143b181613e85565b9050919050565b600060208201905081810360008301526143d181613ea8565b9050919050565b600060208201905081810360008301526143f181613ecb565b9050919050565b6000602082019050818103600083015261441181613eee565b9050919050565b6000602082019050818103600083015261443181613f11565b9050919050565b6000602082019050818103600083015261445181613f34565b9050919050565b6000602082019050818103600083015261447181613f57565b9050919050565b6000602082019050818103600083015261449181613f7a565b9050919050565b600060208201905081810360008301526144b181613f9d565b9050919050565b600060208201905081810360008301526144d181613fe3565b9050919050565b600060208201905081810360008301526144f181614006565b9050919050565b600060208201905061450d6000830184614038565b92915050565b600061451d61452e565b9050614529828261485c565b919050565b6000604051905090565b600067ffffffffffffffff82111561455357614552614994565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561457f5761457e614994565b5b614588826149c3565b9050602081019050919050565b600067ffffffffffffffff8211156145b0576145af614994565b5b6145b9826149c3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614658826147de565b9150614663836147de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561469857614697614907565b5b828201905092915050565b60006146ae826147de565b91506146b9836147de565b9250826146c9576146c8614936565b5b828204905092915050565b60006146df826147de565b91506146ea836147de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561472357614722614907565b5b828202905092915050565b6000614739826147de565b9150614744836147de565b92508282101561475757614756614907565b5b828203905092915050565b600061476d826147be565b9050919050565b600061477f826147be565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148155780820151818401526020810190506147fa565b83811115614824576000848401525b50505050565b6000600282049050600182168061484257607f821691505b6020821081141561485657614855614965565b5b50919050565b614865826149c3565b810181811067ffffffffffffffff8211171561488457614883614994565b5b80604052505050565b6000614898826147de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148cb576148ca614907565b5b600182019050919050565b60006148e1826147de565b91506148ec836147de565b9250826148fc576148fb614936565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f62617365555249206973207065726d656e616e746c79206c6f636b65642e0000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f206d696e742e00600082015250565b7f43757272656e74207075626c6963206d696e74206c696d69742072656163686560008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720746f6f206d616e792e000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d7573742073656e6420696e20636f727265637420616d6f756e742e00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d696e7420706173732073616c65206973206e6f74206163746976652e000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206163746976652e00000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61509381614762565b811461509e57600080fd5b50565b6150aa81614774565b81146150b557600080fd5b50565b6150c181614786565b81146150cc57600080fd5b50565b6150d881614792565b81146150e357600080fd5b50565b6150ef816147de565b81146150fa57600080fd5b5056fea2646970667358221220ec438d40d7599da1ca90529ca29088f4073063d73f838431d7abc5884e96276c64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000047d4f20ae83bcd350105f199f900e6e6104dab6a0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000b436f736d6f706f6c697479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b434f534d4f504f4c495459000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f636f736d6f706f6c6974792e6172742f6170692f76312f746f6b656e2d6d657461646174612f000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027c5760003560e01c806363d580f71161014f578063b3fa4a4c116100c1578063e8a3d4851161007a578063e8a3d4851461096a578063e985e9c514610995578063f2fde38b146109d2578063f5a63e4a146109fb578063f729950014610a24578063fe3c465714610a4d5761027c565b8063b3fa4a4c1461086b578063b88d4fde14610887578063b9a87c09146108b0578063c752d90d146108d9578063c87b56dd14610902578063e1d41a281461093f5761027c565b80638da5cb5b116101135780638da5cb5b1461076757806395d89b41146107925780639d1b464a146107bd578063a197c7e7146107e8578063a22cb46514610804578063aeb2e05e1461082d5761027c565b806363d580f7146106945780636c0360eb146106bd5780636f7b9f2f146106e857806370a0823114610713578063715018a6146107505761027c565b806327a910dc116101f35780634587b505116101ac5780634587b505146105705780634bf365df146105995780634f6ccce7146105c45780635d0e05e8146106015780635d148e5c1461062c5780636352211e146106575761027c565b806327a910dc146104765780632f745c591461048d57806334c05711146104ca5780633979de69146104f3578063412753581461051c57806342842e0e146105475761027c565b8063081812fc11610245578063081812fc14610368578063095ea7b3146103a55780630d84d1ce146103ce57806318160ddd146103f957806321a31b991461042457806323b872dd1461044d5761027c565b8062923f9e1461028157806301ffc9a7146102be57806304595510146102fb5780630679fe4d1461031257806306fdde031461033d575b600080fd5b34801561028d57600080fd5b506102a860048036038101906102a39190613ae6565b610a78565b6040516102b5919061415b565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613a53565b610a8a565b6040516102f2919061415b565b60405180910390f35b34801561030757600080fd5b50610310610b04565b005b34801561031e57600080fd5b50610327610b9d565b60405161033491906144f8565b60405180910390f35b34801561034957600080fd5b50610352610ba3565b60405161035f9190614176565b60405180910390f35b34801561037457600080fd5b5061038f600480360381019061038a9190613ae6565b610c35565b60405161039c9190614080565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190613984565b610cba565b005b3480156103da57600080fd5b506103e3610dd2565b6040516103f091906144f8565b60405180910390f35b34801561040557600080fd5b5061040e610dd8565b60405161041b91906144f8565b60405180910390f35b34801561043057600080fd5b5061044b60048036038101906104469190613ae6565b610de5565b005b34801561045957600080fd5b50610474600480360381019061046f919061387e565b610e6b565b005b34801561048257600080fd5b5061048b610ecb565b005b34801561049957600080fd5b506104b460048036038101906104af9190613984565b610f75565b6040516104c191906144f8565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190613aa5565b61101a565b005b3480156104ff57600080fd5b5061051a600480360381019061051591906137f0565b6110b0565b005b34801561052857600080fd5b50610531611170565b60405161053e919061409b565b60405180910390f35b34801561055357600080fd5b5061056e6004803603810190610569919061387e565b611196565b005b34801561057c57600080fd5b50610597600480360381019061059291906137f0565b6111b6565b005b3480156105a557600080fd5b506105ae611276565b6040516105bb919061415b565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e69190613ae6565b611289565b6040516105f891906144f8565b60405180910390f35b34801561060d57600080fd5b50610616611320565b6040516106239190614080565b60405180910390f35b34801561063857600080fd5b50610641611346565b60405161064e919061415b565b60405180910390f35b34801561066357600080fd5b5061067e60048036038101906106799190613ae6565b611359565b60405161068b9190614080565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190613819565b61140b565b005b3480156106c957600080fd5b506106d26114cb565b6040516106df9190614176565b60405180910390f35b3480156106f457600080fd5b506106fd611559565b60405161070a91906144f8565b60405180910390f35b34801561071f57600080fd5b5061073a600480360381019061073591906137f0565b61155f565b60405161074791906144f8565b60405180910390f35b34801561075c57600080fd5b50610765611617565b005b34801561077357600080fd5b5061077c61169f565b6040516107899190614080565b60405180910390f35b34801561079e57600080fd5b506107a76116c9565b6040516107b49190614176565b60405180910390f35b3480156107c957600080fd5b506107d261175b565b6040516107df91906144f8565b60405180910390f35b61080260048036038101906107fd91906139c0565b611761565b005b34801561081057600080fd5b5061082b60048036038101906108269190613948565b6118ca565b005b34801561083957600080fd5b50610854600480360381019061084f9190613ae6565b611a4b565b604051610862929190614102565b60405180910390f35b61088560048036038101906108809190613984565b611a8f565b005b34801561089357600080fd5b506108ae60048036038101906108a991906138cd565b611b4c565b005b3480156108bc57600080fd5b506108d760048036038101906108d29190613aa5565b611bae565b005b3480156108e557600080fd5b5061090060048036038101906108fb9190613a01565b611c9a565b005b34801561090e57600080fd5b5061092960048036038101906109249190613ae6565b611d33565b6040516109369190614176565b60405180910390f35b34801561094b57600080fd5b50610954611dda565b60405161096191906144f8565b60405180910390f35b34801561097657600080fd5b5061097f611e14565b60405161098c9190614176565b60405180910390f35b3480156109a157600080fd5b506109bc60048036038101906109b79190613842565b611ea2565b6040516109c9919061415b565b60405180910390f35b3480156109de57600080fd5b506109f960048036038101906109f491906137f0565b611f36565b005b348015610a0757600080fd5b50610a226004803603810190610a1d9190613ae6565b61202e565b005b348015610a3057600080fd5b50610a4b6004803603810190610a469190613ae6565b6120b4565b005b348015610a5957600080fd5b50610a6261213a565b604051610a6f91906144f8565b60405180910390f35b6000610a838261215e565b9050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afd5750610afc826121ca565b5b9050919050565b610b0c6122ac565b73ffffffffffffffffffffffffffffffffffffffff16610b2a61169f565b73ffffffffffffffffffffffffffffffffffffffff1614610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b77906143f8565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b600e5481565b606060008054610bb29061482a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bde9061482a565b8015610c2b5780601f10610c0057610100808354040283529160200191610c2b565b820191906000526020600020905b815481529060010190602001808311610c0e57829003601f168201915b5050505050905090565b6000610c408261215e565b610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c76906143d8565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc582611359565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90614478565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d556122ac565b73ffffffffffffffffffffffffffffffffffffffff161480610d845750610d8381610d7e6122ac565b611ea2565b5b610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba90614338565b60405180910390fd5b610dcd83836122b4565b505050565b600d5481565b6000600880549050905090565b610ded6122ac565b73ffffffffffffffffffffffffffffffffffffffff16610e0b61169f565b73ffffffffffffffffffffffffffffffffffffffff1614610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e58906143f8565b60405180910390fd5b80600e8190555050565b610e7c610e766122ac565b8261236d565b610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb2906144b8565b60405180910390fd5b610ec683838361244b565b505050565b610ed36122ac565b73ffffffffffffffffffffffffffffffffffffffff16610ef161169f565b73ffffffffffffffffffffffffffffffffffffffff1614610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e906143f8565b60405180910390fd5b610f73600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16476126a7565b565b6000610f808361155f565b8210610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906141b8565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110226122ac565b73ffffffffffffffffffffffffffffffffffffffff1661104061169f565b73ffffffffffffffffffffffffffffffffffffffff1614611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d906143f8565b60405180910390fd5b80601290805190602001906110ac929190613554565b5050565b6110b86122ac565b73ffffffffffffffffffffffffffffffffffffffff166110d661169f565b73ffffffffffffffffffffffffffffffffffffffff161461112c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611123906143f8565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111b183838360405180602001604052806000815250611b4c565b505050565b6111be6122ac565b73ffffffffffffffffffffffffffffffffffffffff166111dc61169f565b73ffffffffffffffffffffffffffffffffffffffff1614611232576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611229906143f8565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a60149054906101000a900460ff1681565b6000611293610dd8565b82106112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb906144d8565b60405180910390fd5b6008828154811061130e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990614378565b60405180910390fd5b80915050919050565b6114136122ac565b73ffffffffffffffffffffffffffffffffffffffff1661143161169f565b73ffffffffffffffffffffffffffffffffffffffff1614611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e906143f8565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f80546114d89061482a565b80601f01602080910402602001604051908101604052809291908181526020018280546115049061482a565b80156115515780601f1061152657610100808354040283529160200191611551565b820191906000526020600020905b81548152906001019060200180831161153457829003601f168201915b505050505081565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c790614358565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61161f6122ac565b73ffffffffffffffffffffffffffffffffffffffff1661163d61169f565b73ffffffffffffffffffffffffffffffffffffffff1614611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a906143f8565b60405180910390fd5b61169d600061279b565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116d89061482a565b80601f01602080910402602001604051908101604052809291908181526020018280546117049061482a565b80156117515780601f1061172657610100808354040283529160200191611751565b820191906000526020600020905b81548152906001019060200180831161173457829003601f168201915b5050505050905090565b60105481565b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600115158173ffffffffffffffffffffffffffffffffffffffff1663b77498a16040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156117d457600080fd5b505af11580156117e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180c9190613a2a565b15151461184e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184590614438565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16632708586283346040518363ffffffff1660e01b815260040161188992919061412b565b600060405180830381600087803b1580156118a357600080fd5b505af11580156118b7573d6000803e3d6000fd5b505050506118c6338351612861565b5050565b6118d26122ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193790614258565b60405180910390fd5b806005600061194d6122ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119fa6122ac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a3f919061415b565b60405180910390a35050565b60156020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b80601054611a9d91906146d4565b3414611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad590614398565b60405180910390fd5b80600d6000828254611af0919061464d565b92505081905550600c54600d541115611b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3590614298565b60405180910390fd5b611b488282612861565b5050565b611b5d611b576122ac565b8361236d565b611b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b93906144b8565b60405180910390fd5b611ba88484848461298c565b50505050565b611bb66122ac565b73ffffffffffffffffffffffffffffffffffffffff16611bd461169f565b73ffffffffffffffffffffffffffffffffffffffff1614611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c21906143f8565b60405180910390fd5b60001515601160009054906101000a900460ff16151514611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7790614198565b60405180910390fd5b80600f9080519060200190611c96929190613554565b5050565b611ca26122ac565b73ffffffffffffffffffffffffffffffffffffffff16611cc061169f565b73ffffffffffffffffffffffffffffffffffffffff1614611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d906143f8565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b6060611d3e8261215e565b611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7490614458565b60405180910390fd5b6000611d876129e8565b90506000815111611da75760405180602001604052806000815250611dd2565b80611db184612a7a565b604051602001611dc2929190614047565b6040516020818303038152906040525b915050919050565b6000611de4610dd8565b7f0000000000000000000000000000000000000000000000000000000000001f40611e0f919061472e565b905090565b60128054611e219061482a565b80601f0160208091040260200160405190810160405280929190818152602001828054611e4d9061482a565b8015611e9a5780601f10611e6f57610100808354040283529160200191611e9a565b820191906000526020600020905b815481529060010190602001808311611e7d57829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f3e6122ac565b73ffffffffffffffffffffffffffffffffffffffff16611f5c61169f565b73ffffffffffffffffffffffffffffffffffffffff1614611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa9906143f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612022576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612019906141f8565b60405180910390fd5b61202b8161279b565b50565b6120366122ac565b73ffffffffffffffffffffffffffffffffffffffff1661205461169f565b73ffffffffffffffffffffffffffffffffffffffff16146120aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a1906143f8565b60405180910390fd5b8060108190555050565b6120bc6122ac565b73ffffffffffffffffffffffffffffffffffffffff166120da61169f565b73ffffffffffffffffffffffffffffffffffffffff1614612130576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612127906143f8565b60405180910390fd5b80600c8190555050565b7f0000000000000000000000000000000000000000000000000000000000001f4081565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061229557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806122a557506122a482612c27565b5b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661232783611359565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006123788261215e565b6123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae906142f8565b60405180910390fd5b60006123c283611359565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061243157508373ffffffffffffffffffffffffffffffffffffffff1661241984610c35565b73ffffffffffffffffffffffffffffffffffffffff16145b8061244257506124418185611ea2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661246b82611359565b73ffffffffffffffffffffffffffffffffffffffff16146124c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b890614418565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252890614238565b60405180910390fd5b61253c838383612c91565b6125476000826122b4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612597919061472e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ee919061464d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b804710156126ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e1906142d8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516127109061406b565b60006040518083038185875af1925050503d806000811461274d576040519150601f19603f3d011682016040523d82523d6000602084013e612752565b606091505b5050905080612796576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278d906142b8565b60405180910390fd5b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60011515600a60149054906101000a900460ff161515146128b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ae90614498565b60405180910390fd5b806128c0611dda565b1015612901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f890614278565b60405180910390fd5b600e54811115612946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293d90614318565b60405180910390fd5b60005b81811015612987576000600161295d610dd8565b612967919061464d565b90506129738482612da5565b50808061297f9061488d565b915050612949565b505050565b61299784848461244b565b6129a384848484612e5f565b6129e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d9906141d8565b60405180910390fd5b50505050565b6060600f80546129f79061482a565b80601f0160208091040260200160405190810160405280929190818152602001828054612a239061482a565b8015612a705780601f10612a4557610100808354040283529160200191612a70565b820191906000526020600020905b815481529060010190602001808311612a5357829003601f168201915b5050505050905090565b60606000821415612ac2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c22565b600082905060005b60008214612af4578080612add9061488d565b915050600a82612aed91906146a3565b9150612aca565b60008167ffffffffffffffff811115612b36577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b685781602001600182028036833780820191505090505b5090505b60008514612c1b57600182612b81919061472e565b9150600a85612b9091906148d6565b6030612b9c919061464d565b60f81b818381518110612bd8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c1491906146a3565b9450612b6c565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c9c838383612ff6565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cdf57612cda81612ffb565b612d1e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d1d57612d1c8382613044565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d6157612d5c816131b1565b612da0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d9f57612d9e82826132f4565b5b5b505050565b60006001612db28461155f565b612dbc919061464d565b905060405180604001604052808473ffffffffffffffffffffffffffffffffffffffff168152602001828152506015600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155905050612e5a8383613373565b505050565b6000612e808473ffffffffffffffffffffffffffffffffffffffff16613541565b15612fe9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ea96122ac565b8786866040518563ffffffff1660e01b8152600401612ecb94939291906140b6565b602060405180830381600087803b158015612ee557600080fd5b505af1925050508015612f1657506040513d601f19601f82011682018060405250810190612f139190613a7c565b60015b612f99573d8060008114612f46576040519150601f19603f3d011682016040523d82523d6000602084013e612f4b565b606091505b50600081511415612f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f88906141d8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612fee565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016130518461155f565b61305b919061472e565b9050600060076000848152602001908152602001600020549050818114613140576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131c5919061472e565b905060006009600084815260200190815260200160002054905060006008838154811061321b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613263577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006132ff8361155f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133da906143b8565b60405180910390fd5b6133ec8161215e565b1561342c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342390614218565b60405180910390fd5b61343860008383612c91565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613488919061464d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546135609061482a565b90600052602060002090601f01602090048101928261358257600085556135c9565b82601f1061359b57805160ff19168380011785556135c9565b828001600101855582156135c9579182015b828111156135c85782518255916020019190600101906135ad565b5b5090506135d691906135da565b5090565b5b808211156135f35760008160009055506001016135db565b5090565b600061360a61360584614538565b614513565b9050808382526020820190508285602086028201111561362957600080fd5b60005b85811015613659578161363f88826137db565b84526020840193506020830192505060018101905061362c565b5050509392505050565b600061367661367184614564565b614513565b90508281526020810184848401111561368e57600080fd5b6136998482856147e8565b509392505050565b60006136b46136af84614595565b614513565b9050828152602081018484840111156136cc57600080fd5b6136d78482856147e8565b509392505050565b6000813590506136ee8161508a565b92915050565b600081359050613703816150a1565b92915050565b600082601f83011261371a57600080fd5b813561372a8482602086016135f7565b91505092915050565b600081359050613742816150b8565b92915050565b600081519050613757816150b8565b92915050565b60008135905061376c816150cf565b92915050565b600081519050613781816150cf565b92915050565b600082601f83011261379857600080fd5b81356137a8848260208601613663565b91505092915050565b600082601f8301126137c257600080fd5b81356137d28482602086016136a1565b91505092915050565b6000813590506137ea816150e6565b92915050565b60006020828403121561380257600080fd5b6000613810848285016136df565b91505092915050565b60006020828403121561382b57600080fd5b6000613839848285016136f4565b91505092915050565b6000806040838503121561385557600080fd5b6000613863858286016136df565b9250506020613874858286016136df565b9150509250929050565b60008060006060848603121561389357600080fd5b60006138a1868287016136df565b93505060206138b2868287016136df565b92505060406138c3868287016137db565b9150509250925092565b600080600080608085870312156138e357600080fd5b60006138f1878288016136df565b9450506020613902878288016136df565b9350506040613913878288016137db565b925050606085013567ffffffffffffffff81111561393057600080fd5b61393c87828801613787565b91505092959194509250565b6000806040838503121561395b57600080fd5b6000613969858286016136df565b925050602061397a85828601613733565b9150509250929050565b6000806040838503121561399757600080fd5b60006139a5858286016136df565b92505060206139b6858286016137db565b9150509250929050565b6000602082840312156139d257600080fd5b600082013567ffffffffffffffff8111156139ec57600080fd5b6139f884828501613709565b91505092915050565b600060208284031215613a1357600080fd5b6000613a2184828501613733565b91505092915050565b600060208284031215613a3c57600080fd5b6000613a4a84828501613748565b91505092915050565b600060208284031215613a6557600080fd5b6000613a738482850161375d565b91505092915050565b600060208284031215613a8e57600080fd5b6000613a9c84828501613772565b91505092915050565b600060208284031215613ab757600080fd5b600082013567ffffffffffffffff811115613ad157600080fd5b613add848285016137b1565b91505092915050565b600060208284031215613af857600080fd5b6000613b06848285016137db565b91505092915050565b6000613b1b8383614029565b60208301905092915050565b613b3081614774565b82525050565b613b3f81614762565b82525050565b6000613b50826145d6565b613b5a8185614604565b9350613b65836145c6565b8060005b83811015613b96578151613b7d8882613b0f565b9750613b88836145f7565b925050600181019050613b69565b5085935050505092915050565b613bac81614786565b82525050565b6000613bbd826145e1565b613bc78185614615565b9350613bd78185602086016147f7565b613be0816149c3565b840191505092915050565b6000613bf6826145ec565b613c008185614631565b9350613c108185602086016147f7565b613c19816149c3565b840191505092915050565b6000613c2f826145ec565b613c398185614642565b9350613c498185602086016147f7565b80840191505092915050565b6000613c62601e83614631565b9150613c6d826149d4565b602082019050919050565b6000613c85602b83614631565b9150613c90826149fd565b604082019050919050565b6000613ca8603283614631565b9150613cb382614a4c565b604082019050919050565b6000613ccb602683614631565b9150613cd682614a9b565b604082019050919050565b6000613cee601c83614631565b9150613cf982614aea565b602082019050919050565b6000613d11602483614631565b9150613d1c82614b13565b604082019050919050565b6000613d34601983614631565b9150613d3f82614b62565b602082019050919050565b6000613d57601f83614631565b9150613d6282614b8b565b602082019050919050565b6000613d7a602283614631565b9150613d8582614bb4565b604082019050919050565b6000613d9d603a83614631565b9150613da882614c03565b604082019050919050565b6000613dc0601d83614631565b9150613dcb82614c52565b602082019050919050565b6000613de3602c83614631565b9150613dee82614c7b565b604082019050919050565b6000613e06601183614631565b9150613e1182614cca565b602082019050919050565b6000613e29603883614631565b9150613e3482614cf3565b604082019050919050565b6000613e4c602a83614631565b9150613e5782614d42565b604082019050919050565b6000613e6f602983614631565b9150613e7a82614d91565b604082019050919050565b6000613e92601c83614631565b9150613e9d82614de0565b602082019050919050565b6000613eb5602083614631565b9150613ec082614e09565b602082019050919050565b6000613ed8602c83614631565b9150613ee382614e32565b604082019050919050565b6000613efb602083614631565b9150613f0682614e81565b602082019050919050565b6000613f1e602983614631565b9150613f2982614eaa565b604082019050919050565b6000613f41601d83614631565b9150613f4c82614ef9565b602082019050919050565b6000613f64602f83614631565b9150613f6f82614f22565b604082019050919050565b6000613f87602183614631565b9150613f9282614f71565b604082019050919050565b6000613faa601683614631565b9150613fb582614fc0565b602082019050919050565b6000613fcd600083614626565b9150613fd882614fe9565b600082019050919050565b6000613ff0603183614631565b9150613ffb82614fec565b604082019050919050565b6000614013602c83614631565b915061401e8261503b565b604082019050919050565b614032816147de565b82525050565b614041816147de565b82525050565b60006140538285613c24565b915061405f8284613c24565b91508190509392505050565b600061407682613fc0565b9150819050919050565b60006020820190506140956000830184613b36565b92915050565b60006020820190506140b06000830184613b27565b92915050565b60006080820190506140cb6000830187613b36565b6140d86020830186613b36565b6140e56040830185614038565b81810360608301526140f78184613bb2565b905095945050505050565b60006040820190506141176000830185613b36565b6141246020830184614038565b9392505050565b600060408201905081810360008301526141458185613b45565b90506141546020830184614038565b9392505050565b60006020820190506141706000830184613ba3565b92915050565b600060208201905081810360008301526141908184613beb565b905092915050565b600060208201905081810360008301526141b181613c55565b9050919050565b600060208201905081810360008301526141d181613c78565b9050919050565b600060208201905081810360008301526141f181613c9b565b9050919050565b6000602082019050818103600083015261421181613cbe565b9050919050565b6000602082019050818103600083015261423181613ce1565b9050919050565b6000602082019050818103600083015261425181613d04565b9050919050565b6000602082019050818103600083015261427181613d27565b9050919050565b6000602082019050818103600083015261429181613d4a565b9050919050565b600060208201905081810360008301526142b181613d6d565b9050919050565b600060208201905081810360008301526142d181613d90565b9050919050565b600060208201905081810360008301526142f181613db3565b9050919050565b6000602082019050818103600083015261431181613dd6565b9050919050565b6000602082019050818103600083015261433181613df9565b9050919050565b6000602082019050818103600083015261435181613e1c565b9050919050565b6000602082019050818103600083015261437181613e3f565b9050919050565b6000602082019050818103600083015261439181613e62565b9050919050565b600060208201905081810360008301526143b181613e85565b9050919050565b600060208201905081810360008301526143d181613ea8565b9050919050565b600060208201905081810360008301526143f181613ecb565b9050919050565b6000602082019050818103600083015261441181613eee565b9050919050565b6000602082019050818103600083015261443181613f11565b9050919050565b6000602082019050818103600083015261445181613f34565b9050919050565b6000602082019050818103600083015261447181613f57565b9050919050565b6000602082019050818103600083015261449181613f7a565b9050919050565b600060208201905081810360008301526144b181613f9d565b9050919050565b600060208201905081810360008301526144d181613fe3565b9050919050565b600060208201905081810360008301526144f181614006565b9050919050565b600060208201905061450d6000830184614038565b92915050565b600061451d61452e565b9050614529828261485c565b919050565b6000604051905090565b600067ffffffffffffffff82111561455357614552614994565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561457f5761457e614994565b5b614588826149c3565b9050602081019050919050565b600067ffffffffffffffff8211156145b0576145af614994565b5b6145b9826149c3565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614658826147de565b9150614663836147de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561469857614697614907565b5b828201905092915050565b60006146ae826147de565b91506146b9836147de565b9250826146c9576146c8614936565b5b828204905092915050565b60006146df826147de565b91506146ea836147de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561472357614722614907565b5b828202905092915050565b6000614739826147de565b9150614744836147de565b92508282101561475757614756614907565b5b828203905092915050565b600061476d826147be565b9050919050565b600061477f826147be565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148155780820151818401526020810190506147fa565b83811115614824576000848401525b50505050565b6000600282049050600182168061484257607f821691505b6020821081141561485657614855614965565b5b50919050565b614865826149c3565b810181811067ffffffffffffffff8211171561488457614883614994565b5b80604052505050565b6000614898826147de565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148cb576148ca614907565b5b600182019050919050565b60006148e1826147de565b91506148ec836147de565b9250826148fc576148fb614936565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f62617365555249206973207065726d656e616e746c79206c6f636b65642e0000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f206d696e742e00600082015250565b7f43757272656e74207075626c6963206d696e74206c696d69742072656163686560008201527f642e000000000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720746f6f206d616e792e000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4d7573742073656e6420696e20636f727265637420616d6f756e742e00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d696e7420706173732073616c65206973206e6f74206163746976652e000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e67206973206e6f74206163746976652e00000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61509381614762565b811461509e57600080fd5b50565b6150aa81614774565b81146150b557600080fd5b50565b6150c181614786565b81146150cc57600080fd5b50565b6150d881614792565b81146150e357600080fd5b50565b6150ef816147de565b81146150fa57600080fd5b5056fea2646970667358221220ec438d40d7599da1ca90529ca29088f4073063d73f838431d7abc5884e96276c64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000047d4f20ae83bcd350105f199f900e6e6104dab6a0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000b436f736d6f706f6c697479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b434f534d4f504f4c495459000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f636f736d6f706f6c6974792e6172742f6170692f76312f746f6b656e2d6d657461646174612f000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Cosmopolity
Arg [1] : symbol (string): COSMOPOLITY
Arg [2] : _feeAddress (address): 0x47D4f20AE83bcd350105F199F900e6e6104daB6a
Arg [3] : initBaseURI (string): https://cosmopolity.art/api/v1/token-metadata/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000047d4f20ae83bcd350105f199f900e6e6104dab6a
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 436f736d6f706f6c697479000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [7] : 434f534d4f504f4c495459000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [9] : 68747470733a2f2f636f736d6f706f6c6974792e6172742f6170692f76312f74
Arg [10] : 6f6b656e2d6d657461646174612f000000000000000000000000000000000000


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.