ETH Price: $2,646.37 (+0.76%)

TORMintTicket (TORTKT)
 

Overview

TokenID

1466

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Tools of Rock Mint Ticket is your early access ticket to the Metaverse Tour! *SOLD OUT & TICKETS LISTED BELOW ARE NULL & VOID.*

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TORMintTicket

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
byzantium EvmVersion
File 1 of 14 : TORMintTicket.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

/*
              ________________       _,.......,_        
          .nNNNNNNNNNNNNNNNNP’  .nnNNNNNNNNNNNNnn..
         ANNC*’ 7NNNN|’’’’’’’ (NNN*’ 7NNNNN   `*NNNn.
        (NNNN.  dNNNN’        qNNN)  JNNNN*     `NNNn
         `*@*’  NNNNN         `*@*’  dNNNN’     ,ANNN)
               ,NNNN’  ..-^^^-..     NNNNN     ,NNNNN’
               dNNNN’ /    .    \   .NNNNP _..nNNNN*’
               NNNNN (    /|\    )  NNNNNnnNNNNN*’
              ,NNNN’ ‘   / | \   ’  NNNN*  \NNNNb
              dNNNN’  \  \'.'/  /  ,NNNN’   \NNNN.
              NNNNN    '  \|/  '   NNNNC     \NNNN.
            .JNNNNNL.   \  '  /  .JNNNNNL.    \NNNN.             .
          dNNNNNNNNNN|   ‘. .’ .NNNNNNNNNN|    `NNNNn.          ^\Nn
                           '                     `NNNNn.         .NND
                                                  `*NNNNNnnn....nnNP’
                                                     `*@NNNNNNNNN**’
*/

contract TORMintTicket is ERC721, ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    uint256 public maxTokenSupply;

    uint256 public mintPrice = 69000000 gwei; // 0.069 ETH

    bool public saleIsActive = false;

    string public baseURI;

    mapping (address => bool) private _minters;

    address[5] private _shareholders;

    uint[5] private _shares;

    address private _torContractAddress;

    event PaymentReleased(address to, uint256 amount);

    constructor(string memory name, string memory symbol, uint256 maxMintPassSupply) ERC721(name, symbol) {
        maxTokenSupply = maxMintPassSupply;

        _shareholders[0] = 0x689018A9e2073d9A8530dA969B735F313636553b; // JJ
        _shareholders[1] = 0xDc8Eb8d2D1babD956136b57B0B9F49b433c019e3; // Treasure-Seeker
        _shareholders[2] = 0x7Dcb39fe010A205f16ee3249F04b24d74C4f44F1; // Belfort
        _shareholders[3] = 0x74a2acae9B92781Cbb1CCa3bc667c05313e14850; // Cam
        _shareholders[4] = 0xD9D2E67b1695492B870165FD852CF07576f911B3; // Jagger

        _shares[0] = 6270;
        _shares[1] = 1250;
        _shares[2] = 1180;
        _shares[3] = 650;
        _shares[4] = 650;
    }

    function setMaxTokenSupply(uint256 maxMintPassSupply) public onlyOwner {
        maxTokenSupply = maxMintPassSupply;
    }

    function setMintPrice(uint256 newPrice) public onlyOwner {
        mintPrice = newPrice;
    }

    function withdrawForGiveaway(uint256 amount, address payable to) public onlyOwner {
        Address.sendValue(to, amount);
        emit PaymentReleased(to, amount);
    }

    function setTorContractAddress(address torContractAddress) public onlyOwner {
        _torContractAddress = torContractAddress;
    }

    function withdraw(uint256 amount) public onlyOwner {
        require(address(this).balance >= amount, "Insufficient balance");
        
        uint256 totalShares = 10000;
        for (uint256 i = 0; i < 5; i++) {
            uint256 payment = amount * _shares[i] / totalShares;

            Address.sendValue(payable(_shareholders[i]), payment);
            emit PaymentReleased(_shareholders[i], payment);
        }
    }

    /*
    * Mint reserved NFTs for giveaways, devs, etc.
    */
    function reserveMint(uint256 reservedAmount) public onlyOwner {        
        uint256 supply = _tokenIdCounter.current();
        for (uint256 i = 1; i <= reservedAmount; i++) {
            _safeMint(msg.sender, supply + i);
            _tokenIdCounter.increment();
        }
    }

    /*
    * Mint reserved NFTs for giveaways, devs, etc.
    */
    function reserveMint(uint256 reservedAmount, address mintAddress) public onlyOwner {        
        uint256 supply = _tokenIdCounter.current();
        for (uint256 i = 1; i <= reservedAmount; i++) {
            _safeMint(mintAddress, supply + i);
            _tokenIdCounter.increment();
        }
    }

    /*
    * Pause sale if active, make active if paused.
    */
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function canMint(address owner) public view returns (bool) {
        return !_minters[owner];
    }

    /*
    * Mint tickets, woo!
    */
    function mintTicket() public payable {
        require(saleIsActive, "Sale must be active to mint tickets");
        require(_tokenIdCounter.current() + 1 <= maxTokenSupply, "Purchase would exceed max available tickets");
        require(mintPrice <= msg.value, "Ether value sent is not correct");
        require(!_minters[msg.sender], "You can only mint 1 ticket per wallet");

        _minters[msg.sender] = true;
        _safeMint(msg.sender, _tokenIdCounter.current() + 1);
        _tokenIdCounter.increment();
    }

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

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function burn(uint256 tokenId) external {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(tx.origin, tokenId) && msg.sender == _torContractAddress, "Caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 2 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 3 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 4 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 7 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 8 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

File 9 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 11 of 14 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

}

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "byzantium",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxMintPassSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintTicket","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reservedAmount","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reservedAmount","type":"uint256"},{"internalType":"address","name":"mintAddress","type":"address"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPassSupply","type":"uint256"}],"name":"setMaxTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"torContractAddress","type":"address"}],"name":"setTorContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawForGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266f5232269808000600d556000600e60006101000a81548160ff0219169083151502179055503480156200003757600080fd5b506040516200551c3803806200551c83398181016040528101906200005d919062000566565b828281600090805190602001906200007792919062000421565b5080600190805190602001906200009092919062000421565b5050506000620000ae62000419640100000000026401000000009004565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600c8190555073689018a9e2073d9a8530da969b735f313636553b60116000600581106200018157620001806200073a565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dc8eb8d2d1babd956136b57b0b9f49b433c019e36011600160058110620001ed57620001ec6200073a565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737dcb39fe010a205f16ee3249f04b24d74c4f44f160116002600581106200025957620002586200073a565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507374a2acae9b92781cbb1cca3bc667c05313e148506011600360058110620002c557620002c46200073a565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d9d2e67b1695492b870165fd852cf07576f911b360116004600581106200033157620003306200073a565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061187e60166000600581106200038b576200038a6200073a565b5b01819055506104e26016600160058110620003ab57620003aa6200073a565b5b018190555061049c6016600260058110620003cb57620003ca6200073a565b5b018190555061028a6016600360058110620003eb57620003ea6200073a565b5b018190555061028a60166004600581106200040b576200040a6200073a565b5b0181905550505050620007d7565b600033905090565b8280546200042f906200069f565b90600052602060002090601f0160209004810192826200045357600085556200049f565b82601f106200046e57805160ff19168380011785556200049f565b828001600101855582156200049f579182015b828111156200049e57825182559160200191906001019062000481565b5b509050620004ae9190620004b2565b5090565b5b80821115620004cd576000816000905550600101620004b3565b5090565b6000620004e8620004e28462000629565b62000600565b9050828152602081018484840111156200050757620005066200079d565b5b6200051484828562000669565b509392505050565b600082601f83011262000534576200053362000798565b5b815162000546848260208601620004d1565b91505092915050565b6000815190506200056081620007bd565b92915050565b600080600060608486031215620005825762000581620007a7565b5b600084015167ffffffffffffffff811115620005a357620005a2620007a2565b5b620005b1868287016200051c565b935050602084015167ffffffffffffffff811115620005d557620005d4620007a2565b5b620005e3868287016200051c565b9250506040620005f6868287016200054f565b9150509250925092565b60006200060c6200061f565b90506200061a8282620006d5565b919050565b6000604051905090565b600067ffffffffffffffff82111562000647576200064662000769565b5b6200065282620007ac565b9050602081019050919050565b6000819050919050565b60005b83811015620006895780820151818401526020810190506200066c565b8381111562000699576000848401525b50505050565b60006002820490506001821680620006b857607f821691505b60208210811415620006cf57620006ce6200070b565b5b50919050565b620006e082620007ac565b810181811067ffffffffffffffff8211171562000702576200070162000769565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620007c8816200065f565b8114620007d457600080fd5b50565b614d3580620007e76000396000f3fe608060405260043610610221576000357c01000000000000000000000000000000000000000000000000000000009004806360b02f7011610135578063a22cb465116100bd578063c87b56dd1161008c578063c87b56dd1461074b578063e985e9c514610788578063eb8d2444146107c5578063f2fde38b146107f0578063f4a0a5281461081957610221565b8063a22cb46514610693578063b07ed982146106bc578063b88d4fde146106e5578063c2ba47441461070e57610221565b80636d47720b116101045780636d47720b146105c057806370a08231146105e9578063715018a6146106265780638da5cb5b1461063d57806395d89b411461066857610221565b806360b02f70146105045780636352211e1461052d5780636817c76c1461056a5780636c0360eb1461059557610221565b80632f745c59116101b85780634d7313a4116101875780634d7313a4146104405780634f6ccce71461046957806350f7c204146104a657806355f804b3146104d1578063573c80fa146104fa57610221565b80632f745c591461039a57806334918dfd146103d757806342842e0e146103ee57806342966c681461041757610221565b80631342ff4c116101f45780631342ff4c146102f457806318160ddd1461031d57806323b872dd146103485780632e1a7d4d1461037157610221565b806301ffc9a71461022657806306fdde0314610263578063081812fc1461028e578063095ea7b3146102cb575b600080fd5b34801561023257600080fd5b5061024d60048036038101906102489190613645565b610842565b60405161025a9190613d17565b60405180910390f35b34801561026f57600080fd5b50610278610854565b6040516102859190613d32565b60405180910390f35b34801561029a57600080fd5b506102b560048036038101906102b091906136e8565b6108e6565b6040516102c29190613c5e565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190613605565b61096b565b005b34801561030057600080fd5b5061031b600480360381019061031691906136e8565b610a83565b005b34801561032957600080fd5b50610332610b52565b60405161033f9190614094565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a91906134ef565b610b5f565b005b34801561037d57600080fd5b50610398600480360381019061039391906136e8565b610bbf565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190613605565b610d9e565b6040516103ce9190614094565b60405180910390f35b3480156103e357600080fd5b506103ec610e43565b005b3480156103fa57600080fd5b50610415600480360381019061041091906134ef565b610eeb565b005b34801561042357600080fd5b5061043e600480360381019061043991906136e8565b610f0b565b005b34801561044c57600080fd5b5061046760048036038101906104629190613755565b610fb9565b005b34801561047557600080fd5b50610490600480360381019061048b91906136e8565b61107c565b60405161049d9190614094565b60405180910390f35b3480156104b257600080fd5b506104bb6110ed565b6040516104c89190614094565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f3919061369f565b6110f3565b005b610502611189565b005b34801561051057600080fd5b5061052b60048036038101906105269190613715565b611387565b005b34801561053957600080fd5b50610554600480360381019061054f91906136e8565b611457565b6040516105619190613c5e565b60405180910390f35b34801561057657600080fd5b5061057f611509565b60405161058c9190614094565b60405180910390f35b3480156105a157600080fd5b506105aa61150f565b6040516105b79190613d32565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190613482565b61159d565b005b3480156105f557600080fd5b50610610600480360381019061060b9190613482565b61165d565b60405161061d9190614094565b60405180910390f35b34801561063257600080fd5b5061063b611715565b005b34801561064957600080fd5b50610652611852565b60405161065f9190613c5e565b60405180910390f35b34801561067457600080fd5b5061067d61187c565b60405161068a9190613d32565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b591906135c5565b61190e565b005b3480156106c857600080fd5b506106e360048036038101906106de91906136e8565b611a8f565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613542565b611b15565b005b34801561071a57600080fd5b5061073560048036038101906107309190613482565b611b77565b6040516107429190613d17565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d91906136e8565b611bce565b60405161077f9190613d32565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa91906134af565b611c75565b6040516107bc9190613d17565b60405180910390f35b3480156107d157600080fd5b506107da611d09565b6040516107e79190613d17565b60405180910390f35b3480156107fc57600080fd5b5061081760048036038101906108129190613482565b611d1c565b005b34801561082557600080fd5b50610840600480360381019061083b91906136e8565b611ec8565b005b600061084d82611f4e565b9050919050565b60606000805461086390614397565b80601f016020809104026020016040519081016040528092919081815260200182805461088f90614397565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b60006108f182611fc8565b610930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092790613f74565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097682611457565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de90613ff4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a06612034565b73ffffffffffffffffffffffffffffffffffffffff161480610a355750610a3481610a2f612034565b611c75565b5b610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90613ef4565b60405180910390fd5b610a7e838361203c565b505050565b610a8b612034565b73ffffffffffffffffffffffffffffffffffffffff16610aa9611852565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613f94565b60405180910390fd5b6000610b0b600b6120f5565b90506000600190505b828111610b4d57610b30338284610b2b9190614184565b612103565b610b3a600b612121565b8080610b45906143fa565b915050610b14565b505050565b6000600880549050905090565b610b70610b6a612034565b82612137565b610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690614034565b60405180910390fd5b610bba838383612215565b505050565b610bc7612034565b73ffffffffffffffffffffffffffffffffffffffff16610be5611852565b73ffffffffffffffffffffffffffffffffffffffff1614610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290613f94565b60405180910390fd5b803073ffffffffffffffffffffffffffffffffffffffff16311015610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613e34565b60405180910390fd5b6000612710905060005b6005811015610d995760008260168360058110610cbf57610cbe614530565b5b015485610ccc919061420b565b610cd691906141da565b9050610d1760118360058110610cef57610cee614530565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612471565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05660118360058110610d4c57610d4b614530565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051610d7d929190613cee565b60405180910390a1508080610d91906143fa565b915050610c9f565b505050565b6000610da98361165d565b8210610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190613d74565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e4b612034565b73ffffffffffffffffffffffffffffffffffffffff16610e69611852565b73ffffffffffffffffffffffffffffffffffffffff1614610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690613f94565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610f0683838360405180602001604052806000815250611b15565b505050565b610f153282612137565b8015610f6e5750601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490614014565b60405180910390fd5b610fb68161257c565b50565b610fc1612034565b73ffffffffffffffffffffffffffffffffffffffff16610fdf611852565b73ffffffffffffffffffffffffffffffffffffffff1614611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90613f94565b60405180910390fd5b61103f8183612471565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568183604051611070929190613c79565b60405180910390a15050565b6000611086610b52565b82106110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90614054565b60405180910390fd5b600882815481106110db576110da614530565b5b90600052602060002001549050919050565b600c5481565b6110fb612034565b73ffffffffffffffffffffffffffffffffffffffff16611119611852565b73ffffffffffffffffffffffffffffffffffffffff161461116f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116690613f94565b60405180910390fd5b80600f9080519060200190611185929190613281565b5050565b600e60009054906101000a900460ff166111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90613eb4565b60405180910390fd5b600c5460016111e7600b6120f5565b6111f19190614184565b1115611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990613d54565b60405180910390fd5b34600d541115611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90613e54565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90614074565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061137b33600161136c600b6120f5565b6113769190614184565b612103565b611385600b612121565b565b61138f612034565b73ffffffffffffffffffffffffffffffffffffffff166113ad611852565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90613f94565b60405180910390fd5b600061140f600b6120f5565b90506000600190505b8381116114515761143483828461142f9190614184565b612103565b61143e600b612121565b8080611449906143fa565b915050611418565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f790613f34565b60405180910390fd5b80915050919050565b600d5481565b600f805461151c90614397565b80601f016020809104026020016040519081016040528092919081815260200182805461154890614397565b80156115955780601f1061156a57610100808354040283529160200191611595565b820191906000526020600020905b81548152906001019060200180831161157857829003601f168201915b505050505081565b6115a5612034565b73ffffffffffffffffffffffffffffffffffffffff166115c3611852565b73ffffffffffffffffffffffffffffffffffffffff1614611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090613f94565b60405180910390fd5b80601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590613f14565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61171d612034565b73ffffffffffffffffffffffffffffffffffffffff1661173b611852565b73ffffffffffffffffffffffffffffffffffffffff1614611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613f94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461188b90614397565b80601f01602080910402602001604051908101604052809291908181526020018280546118b790614397565b80156119045780601f106118d957610100808354040283529160200191611904565b820191906000526020600020905b8154815290600101906020018083116118e757829003601f168201915b5050505050905090565b611916612034565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197b90613e14565b60405180910390fd5b8060056000611991612034565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a3e612034565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a839190613d17565b60405180910390a35050565b611a97612034565b73ffffffffffffffffffffffffffffffffffffffff16611ab5611852565b73ffffffffffffffffffffffffffffffffffffffff1614611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290613f94565b60405180910390fd5b80600c8190555050565b611b26611b20612034565b83612137565b611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90614034565b60405180910390fd5b611b718484848461268d565b50505050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16159050919050565b6060611bd982611fc8565b611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f90613fd4565b60405180910390fd5b6000611c226126e9565b90506000815111611c425760405180602001604052806000815250611c6d565b80611c4c8461277b565b604051602001611c5d929190613c25565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b611d24612034565b73ffffffffffffffffffffffffffffffffffffffff16611d42611852565b73ffffffffffffffffffffffffffffffffffffffff1614611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90613f94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90613db4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ed0612034565b73ffffffffffffffffffffffffffffffffffffffff16611eee611852565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90613f94565b60405180910390fd5b80600d8190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fc15750611fc0826128fb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120af83611457565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b61211d8282604051806020016040528060008152506129dd565b5050565b6001816000016000828254019250508190555050565b600061214282611fc8565b612181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217890613ed4565b60405180910390fd5b600061218c83611457565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121fb57508373ffffffffffffffffffffffffffffffffffffffff166121e3846108e6565b73ffffffffffffffffffffffffffffffffffffffff16145b8061220c575061220b8185611c75565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661223582611457565b73ffffffffffffffffffffffffffffffffffffffff161461228b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228290613fb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f290613df4565b60405180910390fd5b612306838383612a38565b61231160008261203c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123619190614265565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123b89190614184565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b803073ffffffffffffffffffffffffffffffffffffffff163110156124cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c290613e94565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516124f190613c49565b60006040518083038185875af1925050503d806000811461252e576040519150601f19603f3d011682016040523d82523d6000602084013e612533565b606091505b5050905080612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e90613e74565b60405180910390fd5b505050565b600061258782611457565b905061259581600084612a38565b6125a060008361203c565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125f09190614265565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612698848484612215565b6126a484848484612a48565b6126e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126da90613d94565b60405180910390fd5b50505050565b6060600f80546126f890614397565b80601f016020809104026020016040519081016040528092919081815260200182805461272490614397565b80156127715780601f1061274657610100808354040283529160200191612771565b820191906000526020600020905b81548152906001019060200180831161275457829003601f168201915b5050505050905090565b606060008214156127c3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128f6565b600082905060005b600082146127f55780806127de906143fa565b915050600a826127ee91906141da565b91506127cb565b60008167ffffffffffffffff8111156128115761281061455f565b5b6040519080825280601f01601f1916602001820160405280156128435781602001600182028036833780820191505090505b5090505b600085146128ef5760018261285c9190614265565b9150600a8561286b9190614443565b60306128779190614184565b7f0100000000000000000000000000000000000000000000000000000000000000028183815181106128ac576128ab614530565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128e891906141da565b9450612847565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129d657506129d582612c17565b5b9050919050565b6129e78383612c81565b6129f46000848484612a48565b612a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2a90613d94565b60405180910390fd5b505050565b612a43838383612e4f565b505050565b6000612a698473ffffffffffffffffffffffffffffffffffffffff16612f63565b15612c0a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a92612034565b8786866040518563ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401612ad09493929190613ca2565b602060405180830381600087803b158015612aea57600080fd5b505af1925050508015612b1b57506040513d601f19601f82011682018060405250810190612b189190613672565b60015b612b9e573d8060008114612b4b576040519150601f19603f3d011682016040523d82523d6000602084013e612b50565b606091505b50600081511415612b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8d90613d94565b60405180910390fd5b805181602001fd5b63150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c0f565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce890613f54565b60405180910390fd5b612cfa81611fc8565b15612d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3190613dd4565b60405180910390fd5b612d4660008383612a38565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d969190614184565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612e5a838383612f76565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e9d57612e9881612f7b565b612edc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612edb57612eda8382612fc4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f1f57612f1a81613131565b612f5e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f5d57612f5c8282613202565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612fd18461165d565b612fdb9190614265565b90506000600760008481526020019081526020016000205490508181146130c0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131459190614265565b905060006009600084815260200190815260200160002054905060006008838154811061317557613174614530565b5b90600052602060002001549050806008838154811061319757613196614530565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806131e6576131e5614501565b5b6001900381819060005260206000200160009055905550505050565b600061320d8361165d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461328d90614397565b90600052602060002090601f0160209004810192826132af57600085556132f6565b82601f106132c857805160ff19168380011785556132f6565b828001600101855582156132f6579182015b828111156132f55782518255916020019190600101906132da565b5b5090506133039190613307565b5090565b5b80821115613320576000816000905550600101613308565b5090565b6000613337613332846140d4565b6140af565b90508281526020810184848401111561335357613352614593565b5b61335e848285614355565b509392505050565b600061337961337484614105565b6140af565b90508281526020810184848401111561339557613394614593565b5b6133a0848285614355565b509392505050565b6000813590506133b781614c8c565b92915050565b6000813590506133cc81614ca3565b92915050565b6000813590506133e181614cba565b92915050565b6000813590506133f681614cd1565b92915050565b60008151905061340b81614cd1565b92915050565b600082601f8301126134265761342561458e565b5b8135613436848260208601613324565b91505092915050565b600082601f8301126134545761345361458e565b5b8135613464848260208601613366565b91505092915050565b60008135905061347c81614ce8565b92915050565b6000602082840312156134985761349761459d565b5b60006134a6848285016133a8565b91505092915050565b600080604083850312156134c6576134c561459d565b5b60006134d4858286016133a8565b92505060206134e5858286016133a8565b9150509250929050565b6000806000606084860312156135085761350761459d565b5b6000613516868287016133a8565b9350506020613527868287016133a8565b92505060406135388682870161346d565b9150509250925092565b6000806000806080858703121561355c5761355b61459d565b5b600061356a878288016133a8565b945050602061357b878288016133a8565b935050604061358c8782880161346d565b925050606085013567ffffffffffffffff8111156135ad576135ac614598565b5b6135b987828801613411565b91505092959194509250565b600080604083850312156135dc576135db61459d565b5b60006135ea858286016133a8565b92505060206135fb858286016133d2565b9150509250929050565b6000806040838503121561361c5761361b61459d565b5b600061362a858286016133a8565b925050602061363b8582860161346d565b9150509250929050565b60006020828403121561365b5761365a61459d565b5b6000613669848285016133e7565b91505092915050565b6000602082840312156136885761368761459d565b5b6000613696848285016133fc565b91505092915050565b6000602082840312156136b5576136b461459d565b5b600082013567ffffffffffffffff8111156136d3576136d2614598565b5b6136df8482850161343f565b91505092915050565b6000602082840312156136fe576136fd61459d565b5b600061370c8482850161346d565b91505092915050565b6000806040838503121561372c5761372b61459d565b5b600061373a8582860161346d565b925050602061374b858286016133a8565b9150509250929050565b6000806040838503121561376c5761376b61459d565b5b600061377a8582860161346d565b925050602061378b858286016133bd565b9150509250929050565b61379e8161431f565b82525050565b6137ad81614299565b82525050565b6137bc816142bd565b82525050565b60006137cd82614136565b6137d7818561414c565b93506137e7818560208601614364565b6137f0816145a2565b840191505092915050565b600061380682614141565b6138108185614168565b9350613820818560208601614364565b613829816145a2565b840191505092915050565b600061383f82614141565b6138498185614179565b9350613859818560208601614364565b80840191505092915050565b6000613872602b83614168565b915061387d826145b3565b604082019050919050565b6000613895602b83614168565b91506138a082614602565b604082019050919050565b60006138b8603283614168565b91506138c382614651565b604082019050919050565b60006138db602683614168565b91506138e6826146a0565b604082019050919050565b60006138fe601c83614168565b9150613909826146ef565b602082019050919050565b6000613921602483614168565b915061392c82614718565b604082019050919050565b6000613944601983614168565b915061394f82614767565b602082019050919050565b6000613967601483614168565b915061397282614790565b602082019050919050565b600061398a601f83614168565b9150613995826147b9565b602082019050919050565b60006139ad603a83614168565b91506139b8826147e2565b604082019050919050565b60006139d0601d83614168565b91506139db82614831565b602082019050919050565b60006139f3602383614168565b91506139fe8261485a565b604082019050919050565b6000613a16602c83614168565b9150613a21826148a9565b604082019050919050565b6000613a39603883614168565b9150613a44826148f8565b604082019050919050565b6000613a5c602a83614168565b9150613a6782614947565b604082019050919050565b6000613a7f602983614168565b9150613a8a82614996565b604082019050919050565b6000613aa2602083614168565b9150613aad826149e5565b602082019050919050565b6000613ac5602c83614168565b9150613ad082614a0e565b604082019050919050565b6000613ae8602083614168565b9150613af382614a5d565b602082019050919050565b6000613b0b602983614168565b9150613b1682614a86565b604082019050919050565b6000613b2e602f83614168565b9150613b3982614ad5565b604082019050919050565b6000613b51602183614168565b9150613b5c82614b24565b604082019050919050565b6000613b74602083614168565b9150613b7f82614b73565b602082019050919050565b6000613b9760008361415d565b9150613ba282614b9c565b600082019050919050565b6000613bba603183614168565b9150613bc582614b9f565b604082019050919050565b6000613bdd602c83614168565b9150613be882614bee565b604082019050919050565b6000613c00602583614168565b9150613c0b82614c3d565b604082019050919050565b613c1f81614315565b82525050565b6000613c318285613834565b9150613c3d8284613834565b91508190509392505050565b6000613c5482613b8a565b9150819050919050565b6000602082019050613c7360008301846137a4565b92915050565b6000604082019050613c8e6000830185613795565b613c9b6020830184613c16565b9392505050565b6000608082019050613cb760008301876137a4565b613cc460208301866137a4565b613cd16040830185613c16565b8181036060830152613ce381846137c2565b905095945050505050565b6000604082019050613d0360008301856137a4565b613d106020830184613c16565b9392505050565b6000602082019050613d2c60008301846137b3565b92915050565b60006020820190508181036000830152613d4c81846137fb565b905092915050565b60006020820190508181036000830152613d6d81613865565b9050919050565b60006020820190508181036000830152613d8d81613888565b9050919050565b60006020820190508181036000830152613dad816138ab565b9050919050565b60006020820190508181036000830152613dcd816138ce565b9050919050565b60006020820190508181036000830152613ded816138f1565b9050919050565b60006020820190508181036000830152613e0d81613914565b9050919050565b60006020820190508181036000830152613e2d81613937565b9050919050565b60006020820190508181036000830152613e4d8161395a565b9050919050565b60006020820190508181036000830152613e6d8161397d565b9050919050565b60006020820190508181036000830152613e8d816139a0565b9050919050565b60006020820190508181036000830152613ead816139c3565b9050919050565b60006020820190508181036000830152613ecd816139e6565b9050919050565b60006020820190508181036000830152613eed81613a09565b9050919050565b60006020820190508181036000830152613f0d81613a2c565b9050919050565b60006020820190508181036000830152613f2d81613a4f565b9050919050565b60006020820190508181036000830152613f4d81613a72565b9050919050565b60006020820190508181036000830152613f6d81613a95565b9050919050565b60006020820190508181036000830152613f8d81613ab8565b9050919050565b60006020820190508181036000830152613fad81613adb565b9050919050565b60006020820190508181036000830152613fcd81613afe565b9050919050565b60006020820190508181036000830152613fed81613b21565b9050919050565b6000602082019050818103600083015261400d81613b44565b9050919050565b6000602082019050818103600083015261402d81613b67565b9050919050565b6000602082019050818103600083015261404d81613bad565b9050919050565b6000602082019050818103600083015261406d81613bd0565b9050919050565b6000602082019050818103600083015261408d81613bf3565b9050919050565b60006020820190506140a96000830184613c16565b92915050565b60006140b96140ca565b90506140c582826143c9565b919050565b6000604051905090565b600067ffffffffffffffff8211156140ef576140ee61455f565b5b6140f8826145a2565b9050602081019050919050565b600067ffffffffffffffff8211156141205761411f61455f565b5b614129826145a2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061418f82614315565b915061419a83614315565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141cf576141ce614474565b5b828201905092915050565b60006141e582614315565b91506141f083614315565b925082614200576141ff6144a3565b5b828204905092915050565b600061421682614315565b915061422183614315565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561425a57614259614474565b5b828202905092915050565b600061427082614315565b915061427b83614315565b92508282101561428e5761428d614474565b5b828203905092915050565b60006142a4826142f5565b9050919050565b60006142b6826142f5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061432a82614331565b9050919050565b600061433c82614343565b9050919050565b600061434e826142f5565b9050919050565b82818337600083830152505050565b60005b83811015614382578082015181840152602081019050614367565b83811115614391576000848401525b50505050565b600060028204905060018216806143af57607f821691505b602082108114156143c3576143c26144d2565b5b50919050565b6143d2826145a2565b810181811067ffffffffffffffff821117156143f1576143f061455f565b5b80604052505050565b600061440582614315565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561443857614437614474565b5b600182019050919050565b600061444e82614315565b915061445983614315565b925082614469576144686144a3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f507572636861736520776f756c6420657863656564206d617820617661696c6160008201527f626c65207469636b657473000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74207469636b60008201527f6574730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e742031207469636b657420706572207760008201527f616c6c6574000000000000000000000000000000000000000000000000000000602082015250565b614c9581614299565b8114614ca057600080fd5b50565b614cac816142ab565b8114614cb757600080fd5b50565b614cc3816142bd565b8114614cce57600080fd5b50565b614cda816142c9565b8114614ce557600080fd5b50565b614cf181614315565b8114614cfc57600080fd5b5056fea2646970667358221220ba613853dc4ab339063ca4ca874ab191b4aa75bda4373c66a41b61254750332a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000000d544f524d696e745469636b6574000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006544f52544b540000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610610221576000357c01000000000000000000000000000000000000000000000000000000009004806360b02f7011610135578063a22cb465116100bd578063c87b56dd1161008c578063c87b56dd1461074b578063e985e9c514610788578063eb8d2444146107c5578063f2fde38b146107f0578063f4a0a5281461081957610221565b8063a22cb46514610693578063b07ed982146106bc578063b88d4fde146106e5578063c2ba47441461070e57610221565b80636d47720b116101045780636d47720b146105c057806370a08231146105e9578063715018a6146106265780638da5cb5b1461063d57806395d89b411461066857610221565b806360b02f70146105045780636352211e1461052d5780636817c76c1461056a5780636c0360eb1461059557610221565b80632f745c59116101b85780634d7313a4116101875780634d7313a4146104405780634f6ccce71461046957806350f7c204146104a657806355f804b3146104d1578063573c80fa146104fa57610221565b80632f745c591461039a57806334918dfd146103d757806342842e0e146103ee57806342966c681461041757610221565b80631342ff4c116101f45780631342ff4c146102f457806318160ddd1461031d57806323b872dd146103485780632e1a7d4d1461037157610221565b806301ffc9a71461022657806306fdde0314610263578063081812fc1461028e578063095ea7b3146102cb575b600080fd5b34801561023257600080fd5b5061024d60048036038101906102489190613645565b610842565b60405161025a9190613d17565b60405180910390f35b34801561026f57600080fd5b50610278610854565b6040516102859190613d32565b60405180910390f35b34801561029a57600080fd5b506102b560048036038101906102b091906136e8565b6108e6565b6040516102c29190613c5e565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190613605565b61096b565b005b34801561030057600080fd5b5061031b600480360381019061031691906136e8565b610a83565b005b34801561032957600080fd5b50610332610b52565b60405161033f9190614094565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a91906134ef565b610b5f565b005b34801561037d57600080fd5b50610398600480360381019061039391906136e8565b610bbf565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190613605565b610d9e565b6040516103ce9190614094565b60405180910390f35b3480156103e357600080fd5b506103ec610e43565b005b3480156103fa57600080fd5b50610415600480360381019061041091906134ef565b610eeb565b005b34801561042357600080fd5b5061043e600480360381019061043991906136e8565b610f0b565b005b34801561044c57600080fd5b5061046760048036038101906104629190613755565b610fb9565b005b34801561047557600080fd5b50610490600480360381019061048b91906136e8565b61107c565b60405161049d9190614094565b60405180910390f35b3480156104b257600080fd5b506104bb6110ed565b6040516104c89190614094565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f3919061369f565b6110f3565b005b610502611189565b005b34801561051057600080fd5b5061052b60048036038101906105269190613715565b611387565b005b34801561053957600080fd5b50610554600480360381019061054f91906136e8565b611457565b6040516105619190613c5e565b60405180910390f35b34801561057657600080fd5b5061057f611509565b60405161058c9190614094565b60405180910390f35b3480156105a157600080fd5b506105aa61150f565b6040516105b79190613d32565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190613482565b61159d565b005b3480156105f557600080fd5b50610610600480360381019061060b9190613482565b61165d565b60405161061d9190614094565b60405180910390f35b34801561063257600080fd5b5061063b611715565b005b34801561064957600080fd5b50610652611852565b60405161065f9190613c5e565b60405180910390f35b34801561067457600080fd5b5061067d61187c565b60405161068a9190613d32565b60405180910390f35b34801561069f57600080fd5b506106ba60048036038101906106b591906135c5565b61190e565b005b3480156106c857600080fd5b506106e360048036038101906106de91906136e8565b611a8f565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613542565b611b15565b005b34801561071a57600080fd5b5061073560048036038101906107309190613482565b611b77565b6040516107429190613d17565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d91906136e8565b611bce565b60405161077f9190613d32565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa91906134af565b611c75565b6040516107bc9190613d17565b60405180910390f35b3480156107d157600080fd5b506107da611d09565b6040516107e79190613d17565b60405180910390f35b3480156107fc57600080fd5b5061081760048036038101906108129190613482565b611d1c565b005b34801561082557600080fd5b50610840600480360381019061083b91906136e8565b611ec8565b005b600061084d82611f4e565b9050919050565b60606000805461086390614397565b80601f016020809104026020016040519081016040528092919081815260200182805461088f90614397565b80156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b60006108f182611fc8565b610930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092790613f74565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097682611457565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109de90613ff4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a06612034565b73ffffffffffffffffffffffffffffffffffffffff161480610a355750610a3481610a2f612034565b611c75565b5b610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90613ef4565b60405180910390fd5b610a7e838361203c565b505050565b610a8b612034565b73ffffffffffffffffffffffffffffffffffffffff16610aa9611852565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613f94565b60405180910390fd5b6000610b0b600b6120f5565b90506000600190505b828111610b4d57610b30338284610b2b9190614184565b612103565b610b3a600b612121565b8080610b45906143fa565b915050610b14565b505050565b6000600880549050905090565b610b70610b6a612034565b82612137565b610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690614034565b60405180910390fd5b610bba838383612215565b505050565b610bc7612034565b73ffffffffffffffffffffffffffffffffffffffff16610be5611852565b73ffffffffffffffffffffffffffffffffffffffff1614610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290613f94565b60405180910390fd5b803073ffffffffffffffffffffffffffffffffffffffff16311015610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90613e34565b60405180910390fd5b6000612710905060005b6005811015610d995760008260168360058110610cbf57610cbe614530565b5b015485610ccc919061420b565b610cd691906141da565b9050610d1760118360058110610cef57610cee614530565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612471565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05660118360058110610d4c57610d4b614530565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051610d7d929190613cee565b60405180910390a1508080610d91906143fa565b915050610c9f565b505050565b6000610da98361165d565b8210610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190613d74565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e4b612034565b73ffffffffffffffffffffffffffffffffffffffff16610e69611852565b73ffffffffffffffffffffffffffffffffffffffff1614610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690613f94565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610f0683838360405180602001604052806000815250611b15565b505050565b610f153282612137565b8015610f6e5750601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490614014565b60405180910390fd5b610fb68161257c565b50565b610fc1612034565b73ffffffffffffffffffffffffffffffffffffffff16610fdf611852565b73ffffffffffffffffffffffffffffffffffffffff1614611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c90613f94565b60405180910390fd5b61103f8183612471565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568183604051611070929190613c79565b60405180910390a15050565b6000611086610b52565b82106110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90614054565b60405180910390fd5b600882815481106110db576110da614530565b5b90600052602060002001549050919050565b600c5481565b6110fb612034565b73ffffffffffffffffffffffffffffffffffffffff16611119611852565b73ffffffffffffffffffffffffffffffffffffffff161461116f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116690613f94565b60405180910390fd5b80600f9080519060200190611185929190613281565b5050565b600e60009054906101000a900460ff166111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90613eb4565b60405180910390fd5b600c5460016111e7600b6120f5565b6111f19190614184565b1115611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990613d54565b60405180910390fd5b34600d541115611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90613e54565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90614074565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061137b33600161136c600b6120f5565b6113769190614184565b612103565b611385600b612121565b565b61138f612034565b73ffffffffffffffffffffffffffffffffffffffff166113ad611852565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90613f94565b60405180910390fd5b600061140f600b6120f5565b90506000600190505b8381116114515761143483828461142f9190614184565b612103565b61143e600b612121565b8080611449906143fa565b915050611418565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f790613f34565b60405180910390fd5b80915050919050565b600d5481565b600f805461151c90614397565b80601f016020809104026020016040519081016040528092919081815260200182805461154890614397565b80156115955780601f1061156a57610100808354040283529160200191611595565b820191906000526020600020905b81548152906001019060200180831161157857829003601f168201915b505050505081565b6115a5612034565b73ffffffffffffffffffffffffffffffffffffffff166115c3611852565b73ffffffffffffffffffffffffffffffffffffffff1614611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090613f94565b60405180910390fd5b80601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590613f14565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61171d612034565b73ffffffffffffffffffffffffffffffffffffffff1661173b611852565b73ffffffffffffffffffffffffffffffffffffffff1614611791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178890613f94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461188b90614397565b80601f01602080910402602001604051908101604052809291908181526020018280546118b790614397565b80156119045780601f106118d957610100808354040283529160200191611904565b820191906000526020600020905b8154815290600101906020018083116118e757829003601f168201915b5050505050905090565b611916612034565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197b90613e14565b60405180910390fd5b8060056000611991612034565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a3e612034565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a839190613d17565b60405180910390a35050565b611a97612034565b73ffffffffffffffffffffffffffffffffffffffff16611ab5611852565b73ffffffffffffffffffffffffffffffffffffffff1614611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290613f94565b60405180910390fd5b80600c8190555050565b611b26611b20612034565b83612137565b611b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5c90614034565b60405180910390fd5b611b718484848461268d565b50505050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16159050919050565b6060611bd982611fc8565b611c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0f90613fd4565b60405180910390fd5b6000611c226126e9565b90506000815111611c425760405180602001604052806000815250611c6d565b80611c4c8461277b565b604051602001611c5d929190613c25565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b611d24612034565b73ffffffffffffffffffffffffffffffffffffffff16611d42611852565b73ffffffffffffffffffffffffffffffffffffffff1614611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90613f94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90613db4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ed0612034565b73ffffffffffffffffffffffffffffffffffffffff16611eee611852565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90613f94565b60405180910390fd5b80600d8190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fc15750611fc0826128fb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120af83611457565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b61211d8282604051806020016040528060008152506129dd565b5050565b6001816000016000828254019250508190555050565b600061214282611fc8565b612181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217890613ed4565b60405180910390fd5b600061218c83611457565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121fb57508373ffffffffffffffffffffffffffffffffffffffff166121e3846108e6565b73ffffffffffffffffffffffffffffffffffffffff16145b8061220c575061220b8185611c75565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661223582611457565b73ffffffffffffffffffffffffffffffffffffffff161461228b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228290613fb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f290613df4565b60405180910390fd5b612306838383612a38565b61231160008261203c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123619190614265565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123b89190614184565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b803073ffffffffffffffffffffffffffffffffffffffff163110156124cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c290613e94565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516124f190613c49565b60006040518083038185875af1925050503d806000811461252e576040519150601f19603f3d011682016040523d82523d6000602084013e612533565b606091505b5050905080612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e90613e74565b60405180910390fd5b505050565b600061258782611457565b905061259581600084612a38565b6125a060008361203c565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125f09190614265565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612698848484612215565b6126a484848484612a48565b6126e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126da90613d94565b60405180910390fd5b50505050565b6060600f80546126f890614397565b80601f016020809104026020016040519081016040528092919081815260200182805461272490614397565b80156127715780601f1061274657610100808354040283529160200191612771565b820191906000526020600020905b81548152906001019060200180831161275457829003601f168201915b5050505050905090565b606060008214156127c3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128f6565b600082905060005b600082146127f55780806127de906143fa565b915050600a826127ee91906141da565b91506127cb565b60008167ffffffffffffffff8111156128115761281061455f565b5b6040519080825280601f01601f1916602001820160405280156128435781602001600182028036833780820191505090505b5090505b600085146128ef5760018261285c9190614265565b9150600a8561286b9190614443565b60306128779190614184565b7f0100000000000000000000000000000000000000000000000000000000000000028183815181106128ac576128ab614530565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128e891906141da565b9450612847565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129c657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129d657506129d582612c17565b5b9050919050565b6129e78383612c81565b6129f46000848484612a48565b612a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2a90613d94565b60405180910390fd5b505050565b612a43838383612e4f565b505050565b6000612a698473ffffffffffffffffffffffffffffffffffffffff16612f63565b15612c0a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a92612034565b8786866040518563ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401612ad09493929190613ca2565b602060405180830381600087803b158015612aea57600080fd5b505af1925050508015612b1b57506040513d601f19601f82011682018060405250810190612b189190613672565b60015b612b9e573d8060008114612b4b576040519150601f19603f3d011682016040523d82523d6000602084013e612b50565b606091505b50600081511415612b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8d90613d94565b60405180910390fd5b805181602001fd5b63150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c0f565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce890613f54565b60405180910390fd5b612cfa81611fc8565b15612d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3190613dd4565b60405180910390fd5b612d4660008383612a38565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d969190614184565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612e5a838383612f76565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e9d57612e9881612f7b565b612edc565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612edb57612eda8382612fc4565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f1f57612f1a81613131565b612f5e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f5d57612f5c8282613202565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612fd18461165d565b612fdb9190614265565b90506000600760008481526020019081526020016000205490508181146130c0576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506131459190614265565b905060006009600084815260200190815260200160002054905060006008838154811061317557613174614530565b5b90600052602060002001549050806008838154811061319757613196614530565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806131e6576131e5614501565b5b6001900381819060005260206000200160009055905550505050565b600061320d8361165d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461328d90614397565b90600052602060002090601f0160209004810192826132af57600085556132f6565b82601f106132c857805160ff19168380011785556132f6565b828001600101855582156132f6579182015b828111156132f55782518255916020019190600101906132da565b5b5090506133039190613307565b5090565b5b80821115613320576000816000905550600101613308565b5090565b6000613337613332846140d4565b6140af565b90508281526020810184848401111561335357613352614593565b5b61335e848285614355565b509392505050565b600061337961337484614105565b6140af565b90508281526020810184848401111561339557613394614593565b5b6133a0848285614355565b509392505050565b6000813590506133b781614c8c565b92915050565b6000813590506133cc81614ca3565b92915050565b6000813590506133e181614cba565b92915050565b6000813590506133f681614cd1565b92915050565b60008151905061340b81614cd1565b92915050565b600082601f8301126134265761342561458e565b5b8135613436848260208601613324565b91505092915050565b600082601f8301126134545761345361458e565b5b8135613464848260208601613366565b91505092915050565b60008135905061347c81614ce8565b92915050565b6000602082840312156134985761349761459d565b5b60006134a6848285016133a8565b91505092915050565b600080604083850312156134c6576134c561459d565b5b60006134d4858286016133a8565b92505060206134e5858286016133a8565b9150509250929050565b6000806000606084860312156135085761350761459d565b5b6000613516868287016133a8565b9350506020613527868287016133a8565b92505060406135388682870161346d565b9150509250925092565b6000806000806080858703121561355c5761355b61459d565b5b600061356a878288016133a8565b945050602061357b878288016133a8565b935050604061358c8782880161346d565b925050606085013567ffffffffffffffff8111156135ad576135ac614598565b5b6135b987828801613411565b91505092959194509250565b600080604083850312156135dc576135db61459d565b5b60006135ea858286016133a8565b92505060206135fb858286016133d2565b9150509250929050565b6000806040838503121561361c5761361b61459d565b5b600061362a858286016133a8565b925050602061363b8582860161346d565b9150509250929050565b60006020828403121561365b5761365a61459d565b5b6000613669848285016133e7565b91505092915050565b6000602082840312156136885761368761459d565b5b6000613696848285016133fc565b91505092915050565b6000602082840312156136b5576136b461459d565b5b600082013567ffffffffffffffff8111156136d3576136d2614598565b5b6136df8482850161343f565b91505092915050565b6000602082840312156136fe576136fd61459d565b5b600061370c8482850161346d565b91505092915050565b6000806040838503121561372c5761372b61459d565b5b600061373a8582860161346d565b925050602061374b858286016133a8565b9150509250929050565b6000806040838503121561376c5761376b61459d565b5b600061377a8582860161346d565b925050602061378b858286016133bd565b9150509250929050565b61379e8161431f565b82525050565b6137ad81614299565b82525050565b6137bc816142bd565b82525050565b60006137cd82614136565b6137d7818561414c565b93506137e7818560208601614364565b6137f0816145a2565b840191505092915050565b600061380682614141565b6138108185614168565b9350613820818560208601614364565b613829816145a2565b840191505092915050565b600061383f82614141565b6138498185614179565b9350613859818560208601614364565b80840191505092915050565b6000613872602b83614168565b915061387d826145b3565b604082019050919050565b6000613895602b83614168565b91506138a082614602565b604082019050919050565b60006138b8603283614168565b91506138c382614651565b604082019050919050565b60006138db602683614168565b91506138e6826146a0565b604082019050919050565b60006138fe601c83614168565b9150613909826146ef565b602082019050919050565b6000613921602483614168565b915061392c82614718565b604082019050919050565b6000613944601983614168565b915061394f82614767565b602082019050919050565b6000613967601483614168565b915061397282614790565b602082019050919050565b600061398a601f83614168565b9150613995826147b9565b602082019050919050565b60006139ad603a83614168565b91506139b8826147e2565b604082019050919050565b60006139d0601d83614168565b91506139db82614831565b602082019050919050565b60006139f3602383614168565b91506139fe8261485a565b604082019050919050565b6000613a16602c83614168565b9150613a21826148a9565b604082019050919050565b6000613a39603883614168565b9150613a44826148f8565b604082019050919050565b6000613a5c602a83614168565b9150613a6782614947565b604082019050919050565b6000613a7f602983614168565b9150613a8a82614996565b604082019050919050565b6000613aa2602083614168565b9150613aad826149e5565b602082019050919050565b6000613ac5602c83614168565b9150613ad082614a0e565b604082019050919050565b6000613ae8602083614168565b9150613af382614a5d565b602082019050919050565b6000613b0b602983614168565b9150613b1682614a86565b604082019050919050565b6000613b2e602f83614168565b9150613b3982614ad5565b604082019050919050565b6000613b51602183614168565b9150613b5c82614b24565b604082019050919050565b6000613b74602083614168565b9150613b7f82614b73565b602082019050919050565b6000613b9760008361415d565b9150613ba282614b9c565b600082019050919050565b6000613bba603183614168565b9150613bc582614b9f565b604082019050919050565b6000613bdd602c83614168565b9150613be882614bee565b604082019050919050565b6000613c00602583614168565b9150613c0b82614c3d565b604082019050919050565b613c1f81614315565b82525050565b6000613c318285613834565b9150613c3d8284613834565b91508190509392505050565b6000613c5482613b8a565b9150819050919050565b6000602082019050613c7360008301846137a4565b92915050565b6000604082019050613c8e6000830185613795565b613c9b6020830184613c16565b9392505050565b6000608082019050613cb760008301876137a4565b613cc460208301866137a4565b613cd16040830185613c16565b8181036060830152613ce381846137c2565b905095945050505050565b6000604082019050613d0360008301856137a4565b613d106020830184613c16565b9392505050565b6000602082019050613d2c60008301846137b3565b92915050565b60006020820190508181036000830152613d4c81846137fb565b905092915050565b60006020820190508181036000830152613d6d81613865565b9050919050565b60006020820190508181036000830152613d8d81613888565b9050919050565b60006020820190508181036000830152613dad816138ab565b9050919050565b60006020820190508181036000830152613dcd816138ce565b9050919050565b60006020820190508181036000830152613ded816138f1565b9050919050565b60006020820190508181036000830152613e0d81613914565b9050919050565b60006020820190508181036000830152613e2d81613937565b9050919050565b60006020820190508181036000830152613e4d8161395a565b9050919050565b60006020820190508181036000830152613e6d8161397d565b9050919050565b60006020820190508181036000830152613e8d816139a0565b9050919050565b60006020820190508181036000830152613ead816139c3565b9050919050565b60006020820190508181036000830152613ecd816139e6565b9050919050565b60006020820190508181036000830152613eed81613a09565b9050919050565b60006020820190508181036000830152613f0d81613a2c565b9050919050565b60006020820190508181036000830152613f2d81613a4f565b9050919050565b60006020820190508181036000830152613f4d81613a72565b9050919050565b60006020820190508181036000830152613f6d81613a95565b9050919050565b60006020820190508181036000830152613f8d81613ab8565b9050919050565b60006020820190508181036000830152613fad81613adb565b9050919050565b60006020820190508181036000830152613fcd81613afe565b9050919050565b60006020820190508181036000830152613fed81613b21565b9050919050565b6000602082019050818103600083015261400d81613b44565b9050919050565b6000602082019050818103600083015261402d81613b67565b9050919050565b6000602082019050818103600083015261404d81613bad565b9050919050565b6000602082019050818103600083015261406d81613bd0565b9050919050565b6000602082019050818103600083015261408d81613bf3565b9050919050565b60006020820190506140a96000830184613c16565b92915050565b60006140b96140ca565b90506140c582826143c9565b919050565b6000604051905090565b600067ffffffffffffffff8211156140ef576140ee61455f565b5b6140f8826145a2565b9050602081019050919050565b600067ffffffffffffffff8211156141205761411f61455f565b5b614129826145a2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061418f82614315565b915061419a83614315565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141cf576141ce614474565b5b828201905092915050565b60006141e582614315565b91506141f083614315565b925082614200576141ff6144a3565b5b828204905092915050565b600061421682614315565b915061422183614315565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561425a57614259614474565b5b828202905092915050565b600061427082614315565b915061427b83614315565b92508282101561428e5761428d614474565b5b828203905092915050565b60006142a4826142f5565b9050919050565b60006142b6826142f5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061432a82614331565b9050919050565b600061433c82614343565b9050919050565b600061434e826142f5565b9050919050565b82818337600083830152505050565b60005b83811015614382578082015181840152602081019050614367565b83811115614391576000848401525b50505050565b600060028204905060018216806143af57607f821691505b602082108114156143c3576143c26144d2565b5b50919050565b6143d2826145a2565b810181811067ffffffffffffffff821117156143f1576143f061455f565b5b80604052505050565b600061440582614315565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561443857614437614474565b5b600182019050919050565b600061444e82614315565b915061445983614315565b925082614469576144686144a3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f507572636861736520776f756c6420657863656564206d617820617661696c6160008201527f626c65207469636b657473000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74207469636b60008201527f6574730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e742031207469636b657420706572207760008201527f616c6c6574000000000000000000000000000000000000000000000000000000602082015250565b614c9581614299565b8114614ca057600080fd5b50565b614cac816142ab565b8114614cb757600080fd5b50565b614cc3816142bd565b8114614cce57600080fd5b50565b614cda816142c9565b8114614ce557600080fd5b50565b614cf181614315565b8114614cfc57600080fd5b5056fea2646970667358221220ba613853dc4ab339063ca4ca874ab191b4aa75bda4373c66a41b61254750332a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000000d544f524d696e745469636b6574000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006544f52544b540000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): TORMintTicket
Arg [1] : symbol (string): TORTKT
Arg [2] : maxMintPassSupply (uint256): 2000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 544f524d696e745469636b657400000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 544f52544b540000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ 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.