ETH Price: $3,484.84 (+3.36%)
Gas: 3 Gwei

Token

Alimatok (MATOK)
 

Overview

Max Total Supply

4,444 MATOK

Holders

2,421

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 MATOK
0xa3eea95db0711cb9905a0400b0cd65257752f040
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:
Alimatok

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Alimatok.sol
// SPDX-License-Identifier: MIT
/*
------------------------------------------+++------------------------------------------
                                   @@@@@@@@@@@@                      
                              @@,..................@@                 
                          ,@..........................@@              
                        @@..............................@@            
                       @..................................@           
                      @...................................@           
                     (@....................................@          
                     @.....................................@          
                    (@....................................@           
                    (@...................................@            
                    (@.................................@              
                    (@.........@@@................./ @               
                    (@........@    (((@@@@@@@@(   @                    
                    (@.......@@                                       
                    @.........@                                       
                   (@..........@                                      
                  .@............@@                                    
                  @...............@                                   
                 @..................@                                 
               (@....................@     
------------------------------------------+++------------------------------------------
Web: alimatok.com
Twitter: @AlimatokNFT
*/
pragma solidity >=0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721A.sol";

contract Alimatok is ERC721A, Ownable, ReentrancyGuard {

    using Strings for uint256;

    string public uriPrefix = "";
    string public uriExt = ".json";
    string public hiddenMetadataURI;

    uint256 public constant cost = 0.016 ether;
    uint256 public matokMaxSupply = 4444; //<-- Alimatok Max Supply Including Free
    uint256 public maxMintPerTx = 10;
    uint256 public matokFreeMaxSupply = 800;
    uint256 public matokFreeCurrentMinted = 0;
    uint256 public freeMaxMintPerTx = 1;
    uint256 public constant reservedForTeam = 88;

    mapping(address => uint256) public freeMinted;
    mapping(address => uint256) public minted;

    bool public mintLive = false;
    bool public revealed = false;

    constructor (
        string memory _uriPrefix,
        string memory _hiddenMetadataURI
    ) ERC721A("Alimatok", "MATOK") {
        setUriPrefix(_uriPrefix);
        setHiddenMetaDataURI(_hiddenMetadataURI);
    }

    function setMintLive(bool _state) public onlyOwner {
        mintLive = _state;
    }

    function freeMint(uint256 _mintAmount) public payable {
        require(mintLive, "Mint is not activated.");
        require(_mintAmount > 0 && _mintAmount <= freeMaxMintPerTx, "Invalid Mint Amount.");
        require(freeMinted[msg.sender] + _mintAmount <= freeMaxMintPerTx, "Transaction limit reached.");
        require(matokFreeCurrentMinted + _mintAmount <= matokFreeMaxSupply, "Lack of free mint supply.");

        freeMinted[msg.sender] += _mintAmount;
        matokFreeCurrentMinted += _mintAmount;
        _safeMint(_msgSender(), _mintAmount);
    }

    function mint(uint256 _mintAmount) public payable {
        require(mintLive, "Mint is not activated.");
        require(_mintAmount > 0 && _mintAmount <= maxMintPerTx, "Invalid Mint Amount.");
        require(minted[msg.sender] + _mintAmount <= maxMintPerTx, "Mint amount exceeded!");
        require(msg.value == cost * _mintAmount, "Wrong amount of ETH.");
        require(totalSupply() + _mintAmount <= matokMaxSupply, "No available supply to mint.");

        minted[msg.sender] += _mintAmount;
        _safeMint(_msgSender(), _mintAmount);
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokensOwned = new uint256[](ownerTokenCount);
        uint256 thisTokenId = _startTokenId();
        uint256 tokensOwnedIndex = 0;
        address latestOwnerAddress;

        while (tokensOwnedIndex < ownerTokenCount && thisTokenId <= matokMaxSupply) {
            TokenOwnership memory ownership = _ownerships[thisTokenId];

            if (!ownership.burned && ownership.addr != address(0)) {
                latestOwnerAddress = ownership.addr;
            }

            if (latestOwnerAddress == _owner) {
                tokensOwned[tokensOwnedIndex] = thisTokenId;

                tokensOwnedIndex++;
            }
            thisTokenId++;
        }
        return tokensOwned;
    }

    function setHiddenMetaDataURI(string memory _hiddenMetadataURI) public onlyOwner {
        hiddenMetadataURI = _hiddenMetadataURI;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return uriPrefix;
    }

    function setUriPrefix(string memory _newUriPrefix) public onlyOwner {
        uriPrefix = _newUriPrefix;
    }

    function setUriExt(string memory _newUriExt) public onlyOwner {
        uriExt = _newUriExt;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "Token unavailable.");

        if (revealed == false) {
            return string(abi.encodePacked(hiddenMetadataURI, Strings.toString(tokenId), uriExt));
        }

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), uriExt))
            : '';
    }

    function collectReservedForTeam() external onlyOwner {
        require(totalSupply() == 0, "Mint has started and can no longer claim reserved tokens.");
            _safeMint(_msgSender(), reservedForTeam);
    }

    function setRevealedState (bool _status) public onlyOwner {
        revealed = _status;
    }

    function setFreeMaxMintPerTx (uint256 _freeMaxMintPerTx) public onlyOwner {
        freeMaxMintPerTx = _freeMaxMintPerTx;
    }

    function setMatokFreeMaxSupply (uint256 _matokFreeMaxSupply) public onlyOwner {
        matokFreeMaxSupply = _matokFreeMaxSupply;
    }

    function setMaxMintPerTx (uint256 _maxMintPerTx) public onlyOwner {
        maxMintPerTx = _maxMintPerTx;
    }

    function setMatokMaxSupply (uint256 _matokMaxSupply) public onlyOwner {
        matokMaxSupply = _matokMaxSupply;
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool success, ) = payable(owner()).call{value: address(this).balance}('');
        require(success, "Withdraw not executed.");
    }
}

File 2 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_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 {
        _transferOwnership(address(0));
    }

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

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

File 3 of 12 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 5 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 6 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

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 7 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 8 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 9 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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":"_uriPrefix","type":"string"},{"internalType":"string","name":"_hiddenMetadataURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"collectReservedForTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"matokFreeCurrentMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"matokFreeMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"matokMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMaxMintPerTx","type":"uint256"}],"name":"setFreeMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataURI","type":"string"}],"name":"setHiddenMetaDataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_matokFreeMaxSupply","type":"uint256"}],"name":"setMatokFreeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_matokMaxSupply","type":"uint256"}],"name":"setMatokMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMintLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setRevealedState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUriExt","type":"string"}],"name":"setUriExt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"},{"inputs":[],"name":"uriExt","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b9291906200045d565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000799291906200045d565b5061115c600d55600a600e55610320600f55600060105560016011556000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff021916908315150217905550348015620000d857600080fd5b50604051620050ba380380620050ba8339818101604052810190620000fe9190620006aa565b6040518060400160405280600881526020017f416c696d61746f6b0000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d41544f4b0000000000000000000000000000000000000000000000000000008152508160029080519060200190620001829291906200045d565b5080600390805190602001906200019b9291906200045d565b50620001ac6200020660201b60201c565b6000819055505050620001d4620001c86200020f60201b60201c565b6200021760201b60201c565b6001600981905550620001ed82620002dd60201b60201c565b620001fe816200038860201b60201c565b505062000817565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ed6200020f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003136200043360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200036c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003639062000790565b60405180910390fd5b80600a9080519060200190620003849291906200045d565b5050565b620003986200020f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003be6200043360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000417576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040e9062000790565b60405180910390fd5b80600c90805190602001906200042f9291906200045d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200046b90620007e1565b90600052602060002090601f0160209004810192826200048f5760008555620004db565b82601f10620004aa57805160ff1916838001178555620004db565b82800160010185558215620004db579182015b82811115620004da578251825591602001919060010190620004bd565b5b509050620004ea9190620004ee565b5090565b5b8082111562000509576000816000905550600101620004ef565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000576826200052b565b810181811067ffffffffffffffff821117156200059857620005976200053c565b5b80604052505050565b6000620005ad6200050d565b9050620005bb82826200056b565b919050565b600067ffffffffffffffff821115620005de57620005dd6200053c565b5b620005e9826200052b565b9050602081019050919050565b60005b8381101562000616578082015181840152602081019050620005f9565b8381111562000626576000848401525b50505050565b6000620006436200063d84620005c0565b620005a1565b90508281526020810184848401111562000662576200066162000526565b5b6200066f848285620005f6565b509392505050565b600082601f8301126200068f576200068e62000521565b5b8151620006a18482602086016200062c565b91505092915050565b60008060408385031215620006c457620006c362000517565b5b600083015167ffffffffffffffff811115620006e557620006e46200051c565b5b620006f38582860162000677565b925050602083015167ffffffffffffffff8111156200071757620007166200051c565b5b620007258582860162000677565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620007786020836200072f565b9150620007858262000740565b602082019050919050565b60006020820190508181036000830152620007ab8162000769565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007fa57607f821691505b60208210811415620008115762000810620007b2565b5b50919050565b61489380620008276000396000f3fe6080604052600436106102725760003560e01c8063715018a61161014f578063b88d4fde116100c1578063de7fcb1d1161007a578063de7fcb1d14610920578063e8656fcc1461094b578063e985e9c514610976578063ed5d1f2f146109b3578063f2fde38b146109de578063fce237df14610a0757610272565b8063b88d4fde14610810578063ba9e12f714610839578063bb3eeace14610864578063c87b56dd1461088f578063cdca9170146108cc578063d80e260f146108f557610272565b8063930079a211610113578063930079a21461072157806395d89b411461074c578063a0712d6814610777578063a22cb46514610793578063a94caa23146107bc578063b2996231146107e757610272565b8063715018a61461067157806378bc0301146106885780637c928fe9146106b15780637ec4a659146106cd5780638da5cb5b146106f657610272565b8063389fcf06116101e857806351830227116101ac578063518302271461054f57806353ca912a1461057a578063616cdb1e146105a357806362b99ad4146105cc5780636352211e146105f757806370a082311461063457610272565b8063389fcf061461046c5780633adf07a3146104a95780633ccfd60b146104d257806342842e0e146104e9578063438b63001461051257610272565b806313faede61161023a57806313faede61461036e57806318160ddd146103995780631e7269c5146103c4578063211d6e541461040157806323b872dd1461041857806334f1e7fe1461044157610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630b2e066a14610345575b600080fd5b34801561028357600080fd5b5061029e6004803603810190610299919061366f565b610a30565b6040516102ab91906136b7565b60405180910390f35b3480156102c057600080fd5b506102c9610b12565b6040516102d6919061376b565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906137c3565b610ba4565b6040516103139190613831565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613878565b610c20565b005b34801561035157600080fd5b5061036c600480360381019061036791906139ed565b610d2b565b005b34801561037a57600080fd5b50610383610dc1565b6040516103909190613a45565b60405180910390f35b3480156103a557600080fd5b506103ae610dcc565b6040516103bb9190613a45565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190613a60565b610de3565b6040516103f89190613a45565b60405180910390f35b34801561040d57600080fd5b50610416610dfb565b005b34801561042457600080fd5b5061043f600480360381019061043a9190613a8d565b610ed5565b005b34801561044d57600080fd5b50610456610ee5565b6040516104639190613a45565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613a60565b610eeb565b6040516104a09190613a45565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906137c3565b610f03565b005b3480156104de57600080fd5b506104e7610f89565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613a8d565b611111565b005b34801561051e57600080fd5b5061053960048036038101906105349190613a60565b611131565b6040516105469190613b9e565b60405180910390f35b34801561055b57600080fd5b5061056461134c565b60405161057191906136b7565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190613bec565b61135f565b005b3480156105af57600080fd5b506105ca60048036038101906105c591906137c3565b6113f8565b005b3480156105d857600080fd5b506105e161147e565b6040516105ee919061376b565b60405180910390f35b34801561060357600080fd5b5061061e600480360381019061061991906137c3565b61150c565b60405161062b9190613831565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613a60565b611522565b6040516106689190613a45565b60405180910390f35b34801561067d57600080fd5b506106866115f2565b005b34801561069457600080fd5b506106af60048036038101906106aa91906139ed565b61167a565b005b6106cb60048036038101906106c691906137c3565b611710565b005b3480156106d957600080fd5b506106f460048036038101906106ef91906139ed565b611914565b005b34801561070257600080fd5b5061070b6119aa565b6040516107189190613831565b60405180910390f35b34801561072d57600080fd5b506107366119d4565b6040516107439190613a45565b60405180910390f35b34801561075857600080fd5b506107616119d9565b60405161076e919061376b565b60405180910390f35b610791600480360381019061078c91906137c3565b611a6b565b005b34801561079f57600080fd5b506107ba60048036038101906107b59190613c19565b611caf565b005b3480156107c857600080fd5b506107d1611e27565b6040516107de9190613a45565b60405180910390f35b3480156107f357600080fd5b5061080e600480360381019061080991906137c3565b611e2d565b005b34801561081c57600080fd5b5061083760048036038101906108329190613cfa565b611eb3565b005b34801561084557600080fd5b5061084e611f2f565b60405161085b919061376b565b60405180910390f35b34801561087057600080fd5b50610879611fbd565b604051610886919061376b565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b191906137c3565b61204b565b6040516108c3919061376b565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee91906137c3565b612147565b005b34801561090157600080fd5b5061090a6121cd565b6040516109179190613a45565b60405180910390f35b34801561092c57600080fd5b506109356121d3565b6040516109429190613a45565b60405180910390f35b34801561095757600080fd5b506109606121d9565b60405161096d91906136b7565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190613d7d565b6121ec565b6040516109aa91906136b7565b60405180910390f35b3480156109bf57600080fd5b506109c8612280565b6040516109d59190613a45565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a009190613a60565b612286565b005b348015610a1357600080fd5b50610a2e6004803603810190610a299190613bec565b61237e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b0b5750610b0a82612417565b5b9050919050565b606060028054610b2190613dec565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4d90613dec565b8015610b9a5780601f10610b6f57610100808354040283529160200191610b9a565b820191906000526020600020905b815481529060010190602001808311610b7d57829003601f168201915b5050505050905090565b6000610baf82612481565b610be5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c2b8261150c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c93576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb26124cf565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ce45750610ce281610cdd6124cf565b6121ec565b155b15610d1b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d268383836124d7565b505050565b610d336124cf565b73ffffffffffffffffffffffffffffffffffffffff16610d516119aa565b73ffffffffffffffffffffffffffffffffffffffff1614610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90613e6a565b60405180910390fd5b80600b9080519060200190610dbd92919061351d565b5050565b6638d7ea4c68000081565b6000610dd6612589565b6001546000540303905090565b60136020528060005260406000206000915090505481565b610e036124cf565b73ffffffffffffffffffffffffffffffffffffffff16610e216119aa565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90613e6a565b60405180910390fd5b6000610e81610dcc565b14610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890613efc565b60405180910390fd5b610ed3610ecc6124cf565b6058612592565b565b610ee08383836125b0565b505050565b600f5481565b60126020528060005260406000206000915090505481565b610f0b6124cf565b73ffffffffffffffffffffffffffffffffffffffff16610f296119aa565b73ffffffffffffffffffffffffffffffffffffffff1614610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7690613e6a565b60405180910390fd5b80600d8190555050565b610f916124cf565b73ffffffffffffffffffffffffffffffffffffffff16610faf6119aa565b73ffffffffffffffffffffffffffffffffffffffff1614611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90613e6a565b60405180910390fd5b6002600954141561104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290613f68565b60405180910390fd5b6002600981905550600061105d6119aa565b73ffffffffffffffffffffffffffffffffffffffff164760405161108090613fb9565b60006040518083038185875af1925050503d80600081146110bd576040519150601f19603f3d011682016040523d82523d6000602084013e6110c2565b606091505b5050905080611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd9061401a565b60405180910390fd5b506001600981905550565b61112c83838360405180602001604052806000815250611eb3565b505050565b6060600061113e83611522565b905060008167ffffffffffffffff81111561115c5761115b6138c2565b5b60405190808252806020026020018201604052801561118a5781602001602082028036833780820191505090505b5090506000611197612589565b90506000805b84821080156111ae5750600d548311155b1561133f576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156112bb5750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b156112c857806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132b57838584815181106113105761130f61403a565b5b602002602001018181525050828061132790614098565b9350505b838061133690614098565b9450505061119d565b8395505050505050919050565b601460019054906101000a900460ff1681565b6113676124cf565b73ffffffffffffffffffffffffffffffffffffffff166113856119aa565b73ffffffffffffffffffffffffffffffffffffffff16146113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290613e6a565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b6114006124cf565b73ffffffffffffffffffffffffffffffffffffffff1661141e6119aa565b73ffffffffffffffffffffffffffffffffffffffff1614611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b90613e6a565b60405180910390fd5b80600e8190555050565b600a805461148b90613dec565b80601f01602080910402602001604051908101604052809291908181526020018280546114b790613dec565b80156115045780601f106114d957610100808354040283529160200191611504565b820191906000526020600020905b8154815290600101906020018083116114e757829003601f168201915b505050505081565b600061151782612a66565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561158a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115fa6124cf565b73ffffffffffffffffffffffffffffffffffffffff166116186119aa565b73ffffffffffffffffffffffffffffffffffffffff161461166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590613e6a565b60405180910390fd5b6116786000612cf5565b565b6116826124cf565b73ffffffffffffffffffffffffffffffffffffffff166116a06119aa565b73ffffffffffffffffffffffffffffffffffffffff16146116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed90613e6a565b60405180910390fd5b80600c908051906020019061170c92919061351d565b5050565b601460009054906101000a900460ff1661175f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117569061412d565b60405180910390fd5b60008111801561177157506011548111155b6117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a790614199565b60405180910390fd5b60115481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117fe91906141b9565b111561183f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118369061425b565b60405180910390fd5b600f548160105461185091906141b9565b1115611891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611888906142c7565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118e091906141b9565b9250508190555080601060008282546118f991906141b9565b9250508190555061191161190b6124cf565b82612592565b50565b61191c6124cf565b73ffffffffffffffffffffffffffffffffffffffff1661193a6119aa565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790613e6a565b60405180910390fd5b80600a90805190602001906119a692919061351d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b605881565b6060600380546119e890613dec565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1490613dec565b8015611a615780601f10611a3657610100808354040283529160200191611a61565b820191906000526020600020905b815481529060010190602001808311611a4457829003601f168201915b5050505050905090565b601460009054906101000a900460ff16611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab19061412d565b60405180910390fd5b600081118015611acc5750600e548111155b611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290614199565b60405180910390fd5b600e5481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b5991906141b9565b1115611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9190614333565b60405180910390fd5b806638d7ea4c680000611bad9190614353565b3414611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be5906143f9565b60405180910390fd5b600d5481611bfa610dcc565b611c0491906141b9565b1115611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90614465565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c9491906141b9565b92505081905550611cac611ca66124cf565b82612592565b50565b611cb76124cf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d296124cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dd66124cf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e1b91906136b7565b60405180910390a35050565b60105481565b611e356124cf565b73ffffffffffffffffffffffffffffffffffffffff16611e536119aa565b73ffffffffffffffffffffffffffffffffffffffff1614611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090613e6a565b60405180910390fd5b80600f8190555050565b611ebe8484846125b0565b611edd8373ffffffffffffffffffffffffffffffffffffffff16612dbb565b8015611ef25750611ef084848484612dde565b155b15611f29576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c8054611f3c90613dec565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6890613dec565b8015611fb55780601f10611f8a57610100808354040283529160200191611fb5565b820191906000526020600020905b815481529060010190602001808311611f9857829003601f168201915b505050505081565b600b8054611fca90613dec565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff690613dec565b80156120435780601f1061201857610100808354040283529160200191612043565b820191906000526020600020905b81548152906001019060200180831161202657829003601f168201915b505050505081565b606061205682612481565b612095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208c906144d1565b60405180910390fd5b60001515601460019054906101000a900460ff16151514156120e657600c6120bc83612f3e565b600b6040516020016120d0939291906145c1565b6040516020818303038152906040529050612142565b60006120f061309f565b90506000815111612110576040518060200160405280600081525061213e565b8061211a84612f3e565b600b60405160200161212e939291906145f2565b6040516020818303038152906040525b9150505b919050565b61214f6124cf565b73ffffffffffffffffffffffffffffffffffffffff1661216d6119aa565b73ffffffffffffffffffffffffffffffffffffffff16146121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba90613e6a565b60405180910390fd5b8060118190555050565b600d5481565b600e5481565b601460009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60115481565b61228e6124cf565b73ffffffffffffffffffffffffffffffffffffffff166122ac6119aa565b73ffffffffffffffffffffffffffffffffffffffff1614612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f990613e6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990614695565b60405180910390fd5b61237b81612cf5565b50565b6123866124cf565b73ffffffffffffffffffffffffffffffffffffffff166123a46119aa565b73ffffffffffffffffffffffffffffffffffffffff16146123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f190613e6a565b60405180910390fd5b80601460016101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161248c612589565b1115801561249b575060005482105b80156124c8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6125ac828260405180602001604052806000815250613131565b5050565b60006125bb82612a66565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612626576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166126476124cf565b73ffffffffffffffffffffffffffffffffffffffff1614806126765750612675856126706124cf565b6121ec565b5b806126bb57506126846124cf565b73ffffffffffffffffffffffffffffffffffffffff166126a384610ba4565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126f4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561275b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127688585856001613143565b612774600084876124d7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129f45760005482146129f357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a5f8585856001613149565b5050505050565b612a6e6135a3565b600082905080612a7c612589565b11158015612a8b575060005481105b15612cbe576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612cbc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ba0578092505050612cf0565b5b600115612cbb57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cb6578092505050612cf0565b612ba1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e046124cf565b8786866040518563ffffffff1660e01b8152600401612e26949392919061470a565b602060405180830381600087803b158015612e4057600080fd5b505af1925050508015612e7157506040513d601f19601f82011682018060405250810190612e6e919061476b565b60015b612eeb573d8060008114612ea1576040519150601f19603f3d011682016040523d82523d6000602084013e612ea6565b606091505b50600081511415612ee3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612f86576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061309a565b600082905060005b60008214612fb8578080612fa190614098565b915050600a82612fb191906147c7565b9150612f8e565b60008167ffffffffffffffff811115612fd457612fd36138c2565b5b6040519080825280601f01601f1916602001820160405280156130065781602001600182028036833780820191505090505b5090505b600085146130935760018261301f91906147f8565b9150600a8561302e919061482c565b603061303a91906141b9565b60f81b8183815181106130505761304f61403a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561308c91906147c7565b945061300a565b8093505050505b919050565b6060600a80546130ae90613dec565b80601f01602080910402602001604051908101604052809291908181526020018280546130da90613dec565b80156131275780601f106130fc57610100808354040283529160200191613127565b820191906000526020600020905b81548152906001019060200180831161310a57829003601f168201915b5050505050905090565b61313e838383600161314f565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156131bc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156131f7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132046000868387613143565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156133ce57506133cd8773ffffffffffffffffffffffffffffffffffffffff16612dbb565b5b15613494575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134436000888480600101955088612dde565b613479576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156133d457826000541461348f57600080fd5b613500565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613495575b8160008190555050506135166000868387613149565b5050505050565b82805461352990613dec565b90600052602060002090601f01602090048101928261354b5760008555613592565b82601f1061356457805160ff1916838001178555613592565b82800160010185558215613592579182015b82811115613591578251825591602001919060010190613576565b5b50905061359f91906135e6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135ff5760008160009055506001016135e7565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61364c81613617565b811461365757600080fd5b50565b60008135905061366981613643565b92915050565b6000602082840312156136855761368461360d565b5b60006136938482850161365a565b91505092915050565b60008115159050919050565b6136b18161369c565b82525050565b60006020820190506136cc60008301846136a8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561370c5780820151818401526020810190506136f1565b8381111561371b576000848401525b50505050565b6000601f19601f8301169050919050565b600061373d826136d2565b61374781856136dd565b93506137578185602086016136ee565b61376081613721565b840191505092915050565b600060208201905081810360008301526137858184613732565b905092915050565b6000819050919050565b6137a08161378d565b81146137ab57600080fd5b50565b6000813590506137bd81613797565b92915050565b6000602082840312156137d9576137d861360d565b5b60006137e7848285016137ae565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061381b826137f0565b9050919050565b61382b81613810565b82525050565b60006020820190506138466000830184613822565b92915050565b61385581613810565b811461386057600080fd5b50565b6000813590506138728161384c565b92915050565b6000806040838503121561388f5761388e61360d565b5b600061389d85828601613863565b92505060206138ae858286016137ae565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138fa82613721565b810181811067ffffffffffffffff82111715613919576139186138c2565b5b80604052505050565b600061392c613603565b905061393882826138f1565b919050565b600067ffffffffffffffff821115613958576139576138c2565b5b61396182613721565b9050602081019050919050565b82818337600083830152505050565b600061399061398b8461393d565b613922565b9050828152602081018484840111156139ac576139ab6138bd565b5b6139b784828561396e565b509392505050565b600082601f8301126139d4576139d36138b8565b5b81356139e484826020860161397d565b91505092915050565b600060208284031215613a0357613a0261360d565b5b600082013567ffffffffffffffff811115613a2157613a20613612565b5b613a2d848285016139bf565b91505092915050565b613a3f8161378d565b82525050565b6000602082019050613a5a6000830184613a36565b92915050565b600060208284031215613a7657613a7561360d565b5b6000613a8484828501613863565b91505092915050565b600080600060608486031215613aa657613aa561360d565b5b6000613ab486828701613863565b9350506020613ac586828701613863565b9250506040613ad6868287016137ae565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b158161378d565b82525050565b6000613b278383613b0c565b60208301905092915050565b6000602082019050919050565b6000613b4b82613ae0565b613b558185613aeb565b9350613b6083613afc565b8060005b83811015613b91578151613b788882613b1b565b9750613b8383613b33565b925050600181019050613b64565b5085935050505092915050565b60006020820190508181036000830152613bb88184613b40565b905092915050565b613bc98161369c565b8114613bd457600080fd5b50565b600081359050613be681613bc0565b92915050565b600060208284031215613c0257613c0161360d565b5b6000613c1084828501613bd7565b91505092915050565b60008060408385031215613c3057613c2f61360d565b5b6000613c3e85828601613863565b9250506020613c4f85828601613bd7565b9150509250929050565b600067ffffffffffffffff821115613c7457613c736138c2565b5b613c7d82613721565b9050602081019050919050565b6000613c9d613c9884613c59565b613922565b905082815260208101848484011115613cb957613cb86138bd565b5b613cc484828561396e565b509392505050565b600082601f830112613ce157613ce06138b8565b5b8135613cf1848260208601613c8a565b91505092915050565b60008060008060808587031215613d1457613d1361360d565b5b6000613d2287828801613863565b9450506020613d3387828801613863565b9350506040613d44878288016137ae565b925050606085013567ffffffffffffffff811115613d6557613d64613612565b5b613d7187828801613ccc565b91505092959194509250565b60008060408385031215613d9457613d9361360d565b5b6000613da285828601613863565b9250506020613db385828601613863565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e0457607f821691505b60208210811415613e1857613e17613dbd565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e546020836136dd565b9150613e5f82613e1e565b602082019050919050565b60006020820190508181036000830152613e8381613e47565b9050919050565b7f4d696e7420686173207374617274656420616e642063616e206e6f206c6f6e6760008201527f657220636c61696d20726573657276656420746f6b656e732e00000000000000602082015250565b6000613ee66039836136dd565b9150613ef182613e8a565b604082019050919050565b60006020820190508181036000830152613f1581613ed9565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613f52601f836136dd565b9150613f5d82613f1c565b602082019050919050565b60006020820190508181036000830152613f8181613f45565b9050919050565b600081905092915050565b50565b6000613fa3600083613f88565b9150613fae82613f93565b600082019050919050565b6000613fc482613f96565b9150819050919050565b7f5769746864726177206e6f742065786563757465642e00000000000000000000600082015250565b60006140046016836136dd565b915061400f82613fce565b602082019050919050565b6000602082019050818103600083015261403381613ff7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140a38261378d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140d6576140d5614069565b5b600182019050919050565b7f4d696e74206973206e6f74206163746976617465642e00000000000000000000600082015250565b60006141176016836136dd565b9150614122826140e1565b602082019050919050565b600060208201905081810360008301526141468161410a565b9050919050565b7f496e76616c6964204d696e7420416d6f756e742e000000000000000000000000600082015250565b60006141836014836136dd565b915061418e8261414d565b602082019050919050565b600060208201905081810360008301526141b281614176565b9050919050565b60006141c48261378d565b91506141cf8361378d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561420457614203614069565b5b828201905092915050565b7f5472616e73616374696f6e206c696d697420726561636865642e000000000000600082015250565b6000614245601a836136dd565b91506142508261420f565b602082019050919050565b6000602082019050818103600083015261427481614238565b9050919050565b7f4c61636b206f662066726565206d696e7420737570706c792e00000000000000600082015250565b60006142b16019836136dd565b91506142bc8261427b565b602082019050919050565b600060208201905081810360008301526142e0816142a4565b9050919050565b7f4d696e7420616d6f756e74206578636565646564210000000000000000000000600082015250565b600061431d6015836136dd565b9150614328826142e7565b602082019050919050565b6000602082019050818103600083015261434c81614310565b9050919050565b600061435e8261378d565b91506143698361378d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143a2576143a1614069565b5b828202905092915050565b7f57726f6e6720616d6f756e74206f66204554482e000000000000000000000000600082015250565b60006143e36014836136dd565b91506143ee826143ad565b602082019050919050565b60006020820190508181036000830152614412816143d6565b9050919050565b7f4e6f20617661696c61626c6520737570706c7920746f206d696e742e00000000600082015250565b600061444f601c836136dd565b915061445a82614419565b602082019050919050565b6000602082019050818103600083015261447e81614442565b9050919050565b7f546f6b656e20756e617661696c61626c652e0000000000000000000000000000600082015250565b60006144bb6012836136dd565b91506144c682614485565b602082019050919050565b600060208201905081810360008301526144ea816144ae565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461451e81613dec565b61452881866144f1565b94506001821660008114614543576001811461455457614587565b60ff19831686528186019350614587565b61455d856144fc565b60005b8381101561457f57815481890152600182019150602081019050614560565b838801955050505b50505092915050565b600061459b826136d2565b6145a581856144f1565b93506145b58185602086016136ee565b80840191505092915050565b60006145cd8286614511565b91506145d98285614590565b91506145e58284614511565b9150819050949350505050565b60006145fe8286614590565b915061460a8285614590565b91506146168284614511565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061467f6026836136dd565b915061468a82614623565b604082019050919050565b600060208201905081810360008301526146ae81614672565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006146dc826146b5565b6146e681856146c0565b93506146f68185602086016136ee565b6146ff81613721565b840191505092915050565b600060808201905061471f6000830187613822565b61472c6020830186613822565b6147396040830185613a36565b818103606083015261474b81846146d1565b905095945050505050565b60008151905061476581613643565b92915050565b6000602082840312156147815761478061360d565b5b600061478f84828501614756565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147d28261378d565b91506147dd8361378d565b9250826147ed576147ec614798565b5b828204905092915050565b60006148038261378d565b915061480e8361378d565b92508282101561482157614820614069565b5b828203905092915050565b60006148378261378d565b91506148428361378d565b92508261485257614851614798565b5b82820690509291505056fea26469706673582212201221178f0dbf02dd187ffa356f42fd510cba0a0746238f36f7398b712d8ccfd764736f6c63430008090033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a77463571667a54654a75794d4d35504c3763454b6366676143696e6961567253594b7672567831375958642f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a77463571667a54654a75794d4d35504c3763454b6366676143696e6961567253594b7672567831375958642f00000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c8063715018a61161014f578063b88d4fde116100c1578063de7fcb1d1161007a578063de7fcb1d14610920578063e8656fcc1461094b578063e985e9c514610976578063ed5d1f2f146109b3578063f2fde38b146109de578063fce237df14610a0757610272565b8063b88d4fde14610810578063ba9e12f714610839578063bb3eeace14610864578063c87b56dd1461088f578063cdca9170146108cc578063d80e260f146108f557610272565b8063930079a211610113578063930079a21461072157806395d89b411461074c578063a0712d6814610777578063a22cb46514610793578063a94caa23146107bc578063b2996231146107e757610272565b8063715018a61461067157806378bc0301146106885780637c928fe9146106b15780637ec4a659146106cd5780638da5cb5b146106f657610272565b8063389fcf06116101e857806351830227116101ac578063518302271461054f57806353ca912a1461057a578063616cdb1e146105a357806362b99ad4146105cc5780636352211e146105f757806370a082311461063457610272565b8063389fcf061461046c5780633adf07a3146104a95780633ccfd60b146104d257806342842e0e146104e9578063438b63001461051257610272565b806313faede61161023a57806313faede61461036e57806318160ddd146103995780631e7269c5146103c4578063211d6e541461040157806323b872dd1461041857806334f1e7fe1461044157610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c5780630b2e066a14610345575b600080fd5b34801561028357600080fd5b5061029e6004803603810190610299919061366f565b610a30565b6040516102ab91906136b7565b60405180910390f35b3480156102c057600080fd5b506102c9610b12565b6040516102d6919061376b565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906137c3565b610ba4565b6040516103139190613831565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613878565b610c20565b005b34801561035157600080fd5b5061036c600480360381019061036791906139ed565b610d2b565b005b34801561037a57600080fd5b50610383610dc1565b6040516103909190613a45565b60405180910390f35b3480156103a557600080fd5b506103ae610dcc565b6040516103bb9190613a45565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190613a60565b610de3565b6040516103f89190613a45565b60405180910390f35b34801561040d57600080fd5b50610416610dfb565b005b34801561042457600080fd5b5061043f600480360381019061043a9190613a8d565b610ed5565b005b34801561044d57600080fd5b50610456610ee5565b6040516104639190613a45565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613a60565b610eeb565b6040516104a09190613a45565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906137c3565b610f03565b005b3480156104de57600080fd5b506104e7610f89565b005b3480156104f557600080fd5b50610510600480360381019061050b9190613a8d565b611111565b005b34801561051e57600080fd5b5061053960048036038101906105349190613a60565b611131565b6040516105469190613b9e565b60405180910390f35b34801561055b57600080fd5b5061056461134c565b60405161057191906136b7565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190613bec565b61135f565b005b3480156105af57600080fd5b506105ca60048036038101906105c591906137c3565b6113f8565b005b3480156105d857600080fd5b506105e161147e565b6040516105ee919061376b565b60405180910390f35b34801561060357600080fd5b5061061e600480360381019061061991906137c3565b61150c565b60405161062b9190613831565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613a60565b611522565b6040516106689190613a45565b60405180910390f35b34801561067d57600080fd5b506106866115f2565b005b34801561069457600080fd5b506106af60048036038101906106aa91906139ed565b61167a565b005b6106cb60048036038101906106c691906137c3565b611710565b005b3480156106d957600080fd5b506106f460048036038101906106ef91906139ed565b611914565b005b34801561070257600080fd5b5061070b6119aa565b6040516107189190613831565b60405180910390f35b34801561072d57600080fd5b506107366119d4565b6040516107439190613a45565b60405180910390f35b34801561075857600080fd5b506107616119d9565b60405161076e919061376b565b60405180910390f35b610791600480360381019061078c91906137c3565b611a6b565b005b34801561079f57600080fd5b506107ba60048036038101906107b59190613c19565b611caf565b005b3480156107c857600080fd5b506107d1611e27565b6040516107de9190613a45565b60405180910390f35b3480156107f357600080fd5b5061080e600480360381019061080991906137c3565b611e2d565b005b34801561081c57600080fd5b5061083760048036038101906108329190613cfa565b611eb3565b005b34801561084557600080fd5b5061084e611f2f565b60405161085b919061376b565b60405180910390f35b34801561087057600080fd5b50610879611fbd565b604051610886919061376b565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b191906137c3565b61204b565b6040516108c3919061376b565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee91906137c3565b612147565b005b34801561090157600080fd5b5061090a6121cd565b6040516109179190613a45565b60405180910390f35b34801561092c57600080fd5b506109356121d3565b6040516109429190613a45565b60405180910390f35b34801561095757600080fd5b506109606121d9565b60405161096d91906136b7565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190613d7d565b6121ec565b6040516109aa91906136b7565b60405180910390f35b3480156109bf57600080fd5b506109c8612280565b6040516109d59190613a45565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a009190613a60565b612286565b005b348015610a1357600080fd5b50610a2e6004803603810190610a299190613bec565b61237e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b0b5750610b0a82612417565b5b9050919050565b606060028054610b2190613dec565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4d90613dec565b8015610b9a5780601f10610b6f57610100808354040283529160200191610b9a565b820191906000526020600020905b815481529060010190602001808311610b7d57829003601f168201915b5050505050905090565b6000610baf82612481565b610be5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c2b8261150c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c93576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb26124cf565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ce45750610ce281610cdd6124cf565b6121ec565b155b15610d1b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d268383836124d7565b505050565b610d336124cf565b73ffffffffffffffffffffffffffffffffffffffff16610d516119aa565b73ffffffffffffffffffffffffffffffffffffffff1614610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90613e6a565b60405180910390fd5b80600b9080519060200190610dbd92919061351d565b5050565b6638d7ea4c68000081565b6000610dd6612589565b6001546000540303905090565b60136020528060005260406000206000915090505481565b610e036124cf565b73ffffffffffffffffffffffffffffffffffffffff16610e216119aa565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90613e6a565b60405180910390fd5b6000610e81610dcc565b14610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb890613efc565b60405180910390fd5b610ed3610ecc6124cf565b6058612592565b565b610ee08383836125b0565b505050565b600f5481565b60126020528060005260406000206000915090505481565b610f0b6124cf565b73ffffffffffffffffffffffffffffffffffffffff16610f296119aa565b73ffffffffffffffffffffffffffffffffffffffff1614610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7690613e6a565b60405180910390fd5b80600d8190555050565b610f916124cf565b73ffffffffffffffffffffffffffffffffffffffff16610faf6119aa565b73ffffffffffffffffffffffffffffffffffffffff1614611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90613e6a565b60405180910390fd5b6002600954141561104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290613f68565b60405180910390fd5b6002600981905550600061105d6119aa565b73ffffffffffffffffffffffffffffffffffffffff164760405161108090613fb9565b60006040518083038185875af1925050503d80600081146110bd576040519150601f19603f3d011682016040523d82523d6000602084013e6110c2565b606091505b5050905080611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd9061401a565b60405180910390fd5b506001600981905550565b61112c83838360405180602001604052806000815250611eb3565b505050565b6060600061113e83611522565b905060008167ffffffffffffffff81111561115c5761115b6138c2565b5b60405190808252806020026020018201604052801561118a5781602001602082028036833780820191505090505b5090506000611197612589565b90506000805b84821080156111ae5750600d548311155b1561133f576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511580156112bb5750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b156112c857806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132b57838584815181106113105761130f61403a565b5b602002602001018181525050828061132790614098565b9350505b838061133690614098565b9450505061119d565b8395505050505050919050565b601460019054906101000a900460ff1681565b6113676124cf565b73ffffffffffffffffffffffffffffffffffffffff166113856119aa565b73ffffffffffffffffffffffffffffffffffffffff16146113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290613e6a565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b6114006124cf565b73ffffffffffffffffffffffffffffffffffffffff1661141e6119aa565b73ffffffffffffffffffffffffffffffffffffffff1614611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b90613e6a565b60405180910390fd5b80600e8190555050565b600a805461148b90613dec565b80601f01602080910402602001604051908101604052809291908181526020018280546114b790613dec565b80156115045780601f106114d957610100808354040283529160200191611504565b820191906000526020600020905b8154815290600101906020018083116114e757829003601f168201915b505050505081565b600061151782612a66565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561158a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115fa6124cf565b73ffffffffffffffffffffffffffffffffffffffff166116186119aa565b73ffffffffffffffffffffffffffffffffffffffff161461166e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166590613e6a565b60405180910390fd5b6116786000612cf5565b565b6116826124cf565b73ffffffffffffffffffffffffffffffffffffffff166116a06119aa565b73ffffffffffffffffffffffffffffffffffffffff16146116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed90613e6a565b60405180910390fd5b80600c908051906020019061170c92919061351d565b5050565b601460009054906101000a900460ff1661175f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117569061412d565b60405180910390fd5b60008111801561177157506011548111155b6117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a790614199565b60405180910390fd5b60115481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117fe91906141b9565b111561183f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118369061425b565b60405180910390fd5b600f548160105461185091906141b9565b1115611891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611888906142c7565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118e091906141b9565b9250508190555080601060008282546118f991906141b9565b9250508190555061191161190b6124cf565b82612592565b50565b61191c6124cf565b73ffffffffffffffffffffffffffffffffffffffff1661193a6119aa565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790613e6a565b60405180910390fd5b80600a90805190602001906119a692919061351d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b605881565b6060600380546119e890613dec565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1490613dec565b8015611a615780601f10611a3657610100808354040283529160200191611a61565b820191906000526020600020905b815481529060010190602001808311611a4457829003601f168201915b5050505050905090565b601460009054906101000a900460ff16611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab19061412d565b60405180910390fd5b600081118015611acc5750600e548111155b611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290614199565b60405180910390fd5b600e5481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b5991906141b9565b1115611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9190614333565b60405180910390fd5b806638d7ea4c680000611bad9190614353565b3414611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be5906143f9565b60405180910390fd5b600d5481611bfa610dcc565b611c0491906141b9565b1115611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90614465565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c9491906141b9565b92505081905550611cac611ca66124cf565b82612592565b50565b611cb76124cf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d296124cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dd66124cf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e1b91906136b7565b60405180910390a35050565b60105481565b611e356124cf565b73ffffffffffffffffffffffffffffffffffffffff16611e536119aa565b73ffffffffffffffffffffffffffffffffffffffff1614611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090613e6a565b60405180910390fd5b80600f8190555050565b611ebe8484846125b0565b611edd8373ffffffffffffffffffffffffffffffffffffffff16612dbb565b8015611ef25750611ef084848484612dde565b155b15611f29576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c8054611f3c90613dec565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6890613dec565b8015611fb55780601f10611f8a57610100808354040283529160200191611fb5565b820191906000526020600020905b815481529060010190602001808311611f9857829003601f168201915b505050505081565b600b8054611fca90613dec565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff690613dec565b80156120435780601f1061201857610100808354040283529160200191612043565b820191906000526020600020905b81548152906001019060200180831161202657829003601f168201915b505050505081565b606061205682612481565b612095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208c906144d1565b60405180910390fd5b60001515601460019054906101000a900460ff16151514156120e657600c6120bc83612f3e565b600b6040516020016120d0939291906145c1565b6040516020818303038152906040529050612142565b60006120f061309f565b90506000815111612110576040518060200160405280600081525061213e565b8061211a84612f3e565b600b60405160200161212e939291906145f2565b6040516020818303038152906040525b9150505b919050565b61214f6124cf565b73ffffffffffffffffffffffffffffffffffffffff1661216d6119aa565b73ffffffffffffffffffffffffffffffffffffffff16146121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba90613e6a565b60405180910390fd5b8060118190555050565b600d5481565b600e5481565b601460009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60115481565b61228e6124cf565b73ffffffffffffffffffffffffffffffffffffffff166122ac6119aa565b73ffffffffffffffffffffffffffffffffffffffff1614612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f990613e6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990614695565b60405180910390fd5b61237b81612cf5565b50565b6123866124cf565b73ffffffffffffffffffffffffffffffffffffffff166123a46119aa565b73ffffffffffffffffffffffffffffffffffffffff16146123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f190613e6a565b60405180910390fd5b80601460016101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161248c612589565b1115801561249b575060005482105b80156124c8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6125ac828260405180602001604052806000815250613131565b5050565b60006125bb82612a66565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612626576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166126476124cf565b73ffffffffffffffffffffffffffffffffffffffff1614806126765750612675856126706124cf565b6121ec565b5b806126bb57506126846124cf565b73ffffffffffffffffffffffffffffffffffffffff166126a384610ba4565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126f4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561275b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127688585856001613143565b612774600084876124d7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156129f45760005482146129f357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a5f8585856001613149565b5050505050565b612a6e6135a3565b600082905080612a7c612589565b11158015612a8b575060005481105b15612cbe576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612cbc57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ba0578092505050612cf0565b5b600115612cbb57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612cb6578092505050612cf0565b612ba1565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e046124cf565b8786866040518563ffffffff1660e01b8152600401612e26949392919061470a565b602060405180830381600087803b158015612e4057600080fd5b505af1925050508015612e7157506040513d601f19601f82011682018060405250810190612e6e919061476b565b60015b612eeb573d8060008114612ea1576040519150601f19603f3d011682016040523d82523d6000602084013e612ea6565b606091505b50600081511415612ee3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612f86576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061309a565b600082905060005b60008214612fb8578080612fa190614098565b915050600a82612fb191906147c7565b9150612f8e565b60008167ffffffffffffffff811115612fd457612fd36138c2565b5b6040519080825280601f01601f1916602001820160405280156130065781602001600182028036833780820191505090505b5090505b600085146130935760018261301f91906147f8565b9150600a8561302e919061482c565b603061303a91906141b9565b60f81b8183815181106130505761304f61403a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561308c91906147c7565b945061300a565b8093505050505b919050565b6060600a80546130ae90613dec565b80601f01602080910402602001604051908101604052809291908181526020018280546130da90613dec565b80156131275780601f106130fc57610100808354040283529160200191613127565b820191906000526020600020905b81548152906001019060200180831161310a57829003601f168201915b5050505050905090565b61313e838383600161314f565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156131bc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156131f7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132046000868387613143565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156133ce57506133cd8773ffffffffffffffffffffffffffffffffffffffff16612dbb565b5b15613494575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134436000888480600101955088612dde565b613479576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156133d457826000541461348f57600080fd5b613500565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613495575b8160008190555050506135166000868387613149565b5050505050565b82805461352990613dec565b90600052602060002090601f01602090048101928261354b5760008555613592565b82601f1061356457805160ff1916838001178555613592565b82800160010185558215613592579182015b82811115613591578251825591602001919060010190613576565b5b50905061359f91906135e6565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135ff5760008160009055506001016135e7565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61364c81613617565b811461365757600080fd5b50565b60008135905061366981613643565b92915050565b6000602082840312156136855761368461360d565b5b60006136938482850161365a565b91505092915050565b60008115159050919050565b6136b18161369c565b82525050565b60006020820190506136cc60008301846136a8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561370c5780820151818401526020810190506136f1565b8381111561371b576000848401525b50505050565b6000601f19601f8301169050919050565b600061373d826136d2565b61374781856136dd565b93506137578185602086016136ee565b61376081613721565b840191505092915050565b600060208201905081810360008301526137858184613732565b905092915050565b6000819050919050565b6137a08161378d565b81146137ab57600080fd5b50565b6000813590506137bd81613797565b92915050565b6000602082840312156137d9576137d861360d565b5b60006137e7848285016137ae565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061381b826137f0565b9050919050565b61382b81613810565b82525050565b60006020820190506138466000830184613822565b92915050565b61385581613810565b811461386057600080fd5b50565b6000813590506138728161384c565b92915050565b6000806040838503121561388f5761388e61360d565b5b600061389d85828601613863565b92505060206138ae858286016137ae565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138fa82613721565b810181811067ffffffffffffffff82111715613919576139186138c2565b5b80604052505050565b600061392c613603565b905061393882826138f1565b919050565b600067ffffffffffffffff821115613958576139576138c2565b5b61396182613721565b9050602081019050919050565b82818337600083830152505050565b600061399061398b8461393d565b613922565b9050828152602081018484840111156139ac576139ab6138bd565b5b6139b784828561396e565b509392505050565b600082601f8301126139d4576139d36138b8565b5b81356139e484826020860161397d565b91505092915050565b600060208284031215613a0357613a0261360d565b5b600082013567ffffffffffffffff811115613a2157613a20613612565b5b613a2d848285016139bf565b91505092915050565b613a3f8161378d565b82525050565b6000602082019050613a5a6000830184613a36565b92915050565b600060208284031215613a7657613a7561360d565b5b6000613a8484828501613863565b91505092915050565b600080600060608486031215613aa657613aa561360d565b5b6000613ab486828701613863565b9350506020613ac586828701613863565b9250506040613ad6868287016137ae565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b158161378d565b82525050565b6000613b278383613b0c565b60208301905092915050565b6000602082019050919050565b6000613b4b82613ae0565b613b558185613aeb565b9350613b6083613afc565b8060005b83811015613b91578151613b788882613b1b565b9750613b8383613b33565b925050600181019050613b64565b5085935050505092915050565b60006020820190508181036000830152613bb88184613b40565b905092915050565b613bc98161369c565b8114613bd457600080fd5b50565b600081359050613be681613bc0565b92915050565b600060208284031215613c0257613c0161360d565b5b6000613c1084828501613bd7565b91505092915050565b60008060408385031215613c3057613c2f61360d565b5b6000613c3e85828601613863565b9250506020613c4f85828601613bd7565b9150509250929050565b600067ffffffffffffffff821115613c7457613c736138c2565b5b613c7d82613721565b9050602081019050919050565b6000613c9d613c9884613c59565b613922565b905082815260208101848484011115613cb957613cb86138bd565b5b613cc484828561396e565b509392505050565b600082601f830112613ce157613ce06138b8565b5b8135613cf1848260208601613c8a565b91505092915050565b60008060008060808587031215613d1457613d1361360d565b5b6000613d2287828801613863565b9450506020613d3387828801613863565b9350506040613d44878288016137ae565b925050606085013567ffffffffffffffff811115613d6557613d64613612565b5b613d7187828801613ccc565b91505092959194509250565b60008060408385031215613d9457613d9361360d565b5b6000613da285828601613863565b9250506020613db385828601613863565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e0457607f821691505b60208210811415613e1857613e17613dbd565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e546020836136dd565b9150613e5f82613e1e565b602082019050919050565b60006020820190508181036000830152613e8381613e47565b9050919050565b7f4d696e7420686173207374617274656420616e642063616e206e6f206c6f6e6760008201527f657220636c61696d20726573657276656420746f6b656e732e00000000000000602082015250565b6000613ee66039836136dd565b9150613ef182613e8a565b604082019050919050565b60006020820190508181036000830152613f1581613ed9565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613f52601f836136dd565b9150613f5d82613f1c565b602082019050919050565b60006020820190508181036000830152613f8181613f45565b9050919050565b600081905092915050565b50565b6000613fa3600083613f88565b9150613fae82613f93565b600082019050919050565b6000613fc482613f96565b9150819050919050565b7f5769746864726177206e6f742065786563757465642e00000000000000000000600082015250565b60006140046016836136dd565b915061400f82613fce565b602082019050919050565b6000602082019050818103600083015261403381613ff7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006140a38261378d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140d6576140d5614069565b5b600182019050919050565b7f4d696e74206973206e6f74206163746976617465642e00000000000000000000600082015250565b60006141176016836136dd565b9150614122826140e1565b602082019050919050565b600060208201905081810360008301526141468161410a565b9050919050565b7f496e76616c6964204d696e7420416d6f756e742e000000000000000000000000600082015250565b60006141836014836136dd565b915061418e8261414d565b602082019050919050565b600060208201905081810360008301526141b281614176565b9050919050565b60006141c48261378d565b91506141cf8361378d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561420457614203614069565b5b828201905092915050565b7f5472616e73616374696f6e206c696d697420726561636865642e000000000000600082015250565b6000614245601a836136dd565b91506142508261420f565b602082019050919050565b6000602082019050818103600083015261427481614238565b9050919050565b7f4c61636b206f662066726565206d696e7420737570706c792e00000000000000600082015250565b60006142b16019836136dd565b91506142bc8261427b565b602082019050919050565b600060208201905081810360008301526142e0816142a4565b9050919050565b7f4d696e7420616d6f756e74206578636565646564210000000000000000000000600082015250565b600061431d6015836136dd565b9150614328826142e7565b602082019050919050565b6000602082019050818103600083015261434c81614310565b9050919050565b600061435e8261378d565b91506143698361378d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143a2576143a1614069565b5b828202905092915050565b7f57726f6e6720616d6f756e74206f66204554482e000000000000000000000000600082015250565b60006143e36014836136dd565b91506143ee826143ad565b602082019050919050565b60006020820190508181036000830152614412816143d6565b9050919050565b7f4e6f20617661696c61626c6520737570706c7920746f206d696e742e00000000600082015250565b600061444f601c836136dd565b915061445a82614419565b602082019050919050565b6000602082019050818103600083015261447e81614442565b9050919050565b7f546f6b656e20756e617661696c61626c652e0000000000000000000000000000600082015250565b60006144bb6012836136dd565b91506144c682614485565b602082019050919050565b600060208201905081810360008301526144ea816144ae565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461451e81613dec565b61452881866144f1565b94506001821660008114614543576001811461455457614587565b60ff19831686528186019350614587565b61455d856144fc565b60005b8381101561457f57815481890152600182019150602081019050614560565b838801955050505b50505092915050565b600061459b826136d2565b6145a581856144f1565b93506145b58185602086016136ee565b80840191505092915050565b60006145cd8286614511565b91506145d98285614590565b91506145e58284614511565b9150819050949350505050565b60006145fe8286614590565b915061460a8285614590565b91506146168284614511565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061467f6026836136dd565b915061468a82614623565b604082019050919050565b600060208201905081810360008301526146ae81614672565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006146dc826146b5565b6146e681856146c0565b93506146f68185602086016136ee565b6146ff81613721565b840191505092915050565b600060808201905061471f6000830187613822565b61472c6020830186613822565b6147396040830185613a36565b818103606083015261474b81846146d1565b905095945050505050565b60008151905061476581613643565b92915050565b6000602082840312156147815761478061360d565b5b600061478f84828501614756565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147d28261378d565b91506147dd8361378d565b9250826147ed576147ec614798565b5b828204905092915050565b60006148038261378d565b915061480e8361378d565b92508282101561482157614820614069565b5b828203905092915050565b60006148378261378d565b91506148428361378d565b92508261485257614851614798565b5b82820690509291505056fea26469706673582212201221178f0dbf02dd187ffa356f42fd510cba0a0746238f36f7398b712d8ccfd764736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a77463571667a54654a75794d4d35504c3763454b6366676143696e6961567253594b7672567831375958642f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a77463571667a54654a75794d4d35504c3763454b6366676143696e6961567253594b7672567831375958642f00000000000000000000

-----Decoded View---------------
Arg [0] : _uriPrefix (string): ipfs://QmZwF5qfzTeJuyMM5PL7cEKcfgaCiniaVrSYKvrVx17YXd/
Arg [1] : _hiddenMetadataURI (string): ipfs://QmZwF5qfzTeJuyMM5PL7cEKcfgaCiniaVrSYKvrVx17YXd/

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5a77463571667a54654a75794d4d35504c3763454b6366
Arg [4] : 676143696e6961567253594b7672567831375958642f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d5a77463571667a54654a75794d4d35504c3763454b6366
Arg [7] : 676143696e6961567253594b7672567831375958642f00000000000000000000


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.