ETH Price: $2,414.61 (+1.83%)

Token

CryptoChristmaz (CHRISTMAZ)
 

Overview

Max Total Supply

304 CHRISTMAZ

Holders

46

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
whien.eth
Balance
9 CHRISTMAZ
0x2a8843aca9854c1c05072d795eec9acc70e2a557
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CryptoChristmaz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : CryptoChristmaz.sol
//    ______                              ______ _           _
//   / _____)                  _         / _____) |         (_)     _
//  | /       ____ _   _ ____ | |_  ___ | /     | | _   ____ _  ___| |_  ____   ____ _____
//  | |      / ___) | | |  _ \|  _)/ _ \| |     | || \ / ___) |/___)  _)|    \ / _  (___  )
//  | \_____| |   | |_| | | | | |_| |_| | \_____| | | | |   | |___ | |__| | | ( ( | |/ __/
//   \______)_|    \__  | ||_/ \___)___/ \______)_| |_|_|   |_(___/ \___)_|_|_|\_||_(_____)
//                (____/|_|
//
// Powered by:
//     _____ __          __________     __  ____       __
//    / ___// /_  __  __/ __/ __/ /__  /  |/  (_)___  / /_
//    \__ \/ __ \/ / / / /_/ /_/ / _ \/ /|_/ / / __ \/ __/
//   ___/ / / / / /_/ / __/ __/ /  __/ /  / / / / / / /_
//  /____/_/ /_/\__,_/_/ /_/ /_/\___/_/  /_/_/_/ /_/\__/
//                                          @shufflemint
// SPDX-License-Identifier: MIT



pragma solidity ^0.8.7;

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

contract CryptoChristmaz is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;
  Counters.Counter private _tokenIds;

  string baseURI;
  string baseContractURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.035 ether;
  uint256 public maxSupply = 2222;
  uint256 public maxMintAmount = 10;
  bool public publicActive = false;
  bool public presaleActive = false;
  bool public revealed = false;
  string public notRevealedUri;
  uint256 public teamClaimAmount = 50;
  bool public teamClaimed = false;

  // Payment Addresses
  address christmas = 0xE73c1BdaDF6e81bF63Ca1DC482DebE7E44F6a778;
  address shufflemint = 0xC79108A7151814A77e1916E61e0d88D5EA935c84;

  mapping (address => bool) public claimWhitelist;

  event Minted(uint256 indexed tokenId, address indexed owner);

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri,
    string memory _contractURI_
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    baseContractURI = _contractURI_;
    setNotRevealedURI(_initNotRevealedUri);
    _tokenIds.increment();
  }

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

  // public
  function publicMint(uint256 _mintAmount) public payable {
    require(publicActive, "Sale has not started yet.");
    require(_mintAmount > 0, "Quantity cannot be zero");
    require(_mintAmount <= maxMintAmount, "Exceeds 20, the max qty per mint.");
    require(totalSupply() + _mintAmount <= maxSupply, "Quantity requested exceeds max supply.");
    require(msg.value >= cost * _mintAmount, "Ether value sent is below the price");

    for (uint256 i = 1; i <= _mintAmount; i++) {
      uint256 mintIndex = _tokenIds.current();
      _safeMint(msg.sender, mintIndex);

      // increment id counter
      _tokenIds.increment();
      emit Minted(mintIndex, msg.sender);
    }
  }


  function claim() public {
      require(presaleActive || publicActive,   "A sale period must be active to claim");
      require(claimWhitelist[msg.sender],      "No claim available for this address");
      require(totalSupply() + 1 <= maxSupply,  "Quantity requested exceeds max supply.");

      uint256 mintIndex = _tokenIds.current();
      _safeMint(msg.sender, mintIndex);

      // increment id counter
      _tokenIds.increment();
      emit Minted(mintIndex, msg.sender);
      claimWhitelist[msg.sender] = false;
  }

  function teamClaim() public onlyOwner {
      require(totalSupply() + teamClaimAmount <= maxSupply, "Quantity requested exceeds max supply.");
      require(!teamClaimed, "Team has claimed");
      for (uint256 i = 1; i <= teamClaimAmount; i++) {
        uint256 mintIndex = _tokenIds.current();
        _safeMint(christmas, mintIndex);

      _tokenIds.increment();
      }
    teamClaimed = true;
  }

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

    if(revealed == false) {
      return bytes(notRevealedUri).length > 0
          ? string(abi.encodePacked(notRevealedUri, tokenId.toString(), baseExtension))
          : "";
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }

  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function publicLive(bool _state) public onlyOwner {
    publicActive = _state;
  }

  function presaleLive(bool _state) public onlyOwner {
    presaleActive = _state;
  }

  function totalSupply() public view returns (uint256) {
    return _tokenIds.current() - 1;
  }

  function withdraw() public payable onlyOwner {
    // Shufflemint 10%
    (bool sm, ) = payable(shufflemint).call{value: address(this).balance * 50 / 100}("");
    require(sm);

    // Notables 90%
    (bool os, ) = payable(christmas).call{value: address(this).balance}("");
    require(os);
  }

  function editClaimList(address[] calldata claimAddresses) public onlyOwner {
      for(uint256 i; i < claimAddresses.length; i++){
          claimWhitelist[claimAddresses[i]] = true;
      }
  }

  function contractURI() public view returns (string memory) {
    return baseContractURI;
  }

  function setContractURI(string memory uri) public onlyOwner {
    baseContractURI = uri;
  }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. 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;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"string","name":"_contractURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"claimAddresses","type":"address[]"}],"name":"editClaimList","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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"presaleLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"publicLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[],"name":"teamClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamClaimAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908051906020019062000051929190620004cd565b50667c585087238000600b556108ae600c55600a600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff02191690831515021790555060326010556000601160006101000a81548160ff02191690831515021790555073e73c1bdadf6e81bf63ca1dc482debe7e44f6a778601160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c79108a7151814a77e1916e61e0d88d5ea935c84601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200019057600080fd5b506040516200538c3803806200538c8339818101604052810190620001b69190620005fb565b84848160009080519060200190620001d0929190620004cd565b508060019080519060200190620001e9929190620004cd565b5050506200020c620002006200026960201b60201c565b6200027160201b60201c565b6200021d836200033760201b60201c565b806009908051906020019062000235929190620004cd565b506200024782620003e260201b60201c565b6200025e60076200048d60201b6200230c1760201c565b505050505062000925565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003476200026960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200036d620004a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bd9062000745565b60405180910390fd5b8060089080519060200190620003de929190620004cd565b5050565b620003f26200026960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000418620004a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000471576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004689062000745565b60405180910390fd5b80600f908051906020019062000489929190620004cd565b5050565b6001816000016000828254019250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004db906200080d565b90600052602060002090601f016020900481019282620004ff57600085556200054b565b82601f106200051a57805160ff19168380011785556200054b565b828001600101855582156200054b579182015b828111156200054a5782518255916020019190600101906200052d565b5b5090506200055a91906200055e565b5090565b5b80821115620005795760008160009055506001016200055f565b5090565b6000620005946200058e8462000790565b62000767565b905082815260208101848484011115620005b357620005b2620008dc565b5b620005c0848285620007d7565b509392505050565b600082601f830112620005e057620005df620008d7565b5b8151620005f28482602086016200057d565b91505092915050565b600080600080600060a086880312156200061a5762000619620008e6565b5b600086015167ffffffffffffffff8111156200063b576200063a620008e1565b5b6200064988828901620005c8565b955050602086015167ffffffffffffffff8111156200066d576200066c620008e1565b5b6200067b88828901620005c8565b945050604086015167ffffffffffffffff8111156200069f576200069e620008e1565b5b620006ad88828901620005c8565b935050606086015167ffffffffffffffff811115620006d157620006d0620008e1565b5b620006df88828901620005c8565b925050608086015167ffffffffffffffff811115620007035762000702620008e1565b5b6200071188828901620005c8565b9150509295509295909350565b60006200072d602083620007c6565b91506200073a82620008fc565b602082019050919050565b6000602082019050818103600083015262000760816200071e565b9050919050565b60006200077362000786565b905062000781828262000843565b919050565b6000604051905090565b600067ffffffffffffffff821115620007ae57620007ad620008a8565b5b620007b982620008eb565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620007f7578082015181840152602081019050620007da565b8381111562000807576000848401525b50505050565b600060028204905060018216806200082657607f821691505b602082108114156200083d576200083c62000879565b5b50919050565b6200084e82620008eb565b810181811067ffffffffffffffff8211171562000870576200086f620008a8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614a5780620009356000396000f3fe60806040526004361061025c5760003560e01c80636352211e11610144578063a475b5dd116100b6578063d5abeb011161007a578063d5abeb011461086c578063da3ef23f14610897578063e8a3d485146108c0578063e985e9c5146108eb578063f2c4ce1e14610928578063f2fde38b146109515761025c565b8063a475b5dd14610799578063b88d4fde146107b0578063c6682862146107d9578063c7fc0cd114610804578063c87b56dd1461082f5761025c565b806376da3a461161010857806376da3a461461069f5780637f00c7a6146106c85780638da5cb5b146106f1578063938e3d7b1461071c57806395d89b4114610745578063a22cb465146107705761025c565b80636352211e146105ce578063667ab6901461060b5780636ae146c21461063457806370a082311461064b578063715018a6146106885761025c565b8063287001d2116101dd57806342842e0e116101a157806342842e0e146104e657806344a0d68a1461050f5780634e71d92d14610538578063518302271461054f57806353135ca01461057a57806355f804b3146105a55761025c565b8063287001d21461042d5780632db115441461046a5780632f334652146104865780633ccfd60b146104b15780633f2981cf146104bb5761025c565b80630e6011a8116102245780630e6011a81461035a57806313faede61461038357806318160ddd146103ae578063239c70ae146103d957806323b872dd146104045761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063081c8c4414610306578063095ea7b314610331575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906134f8565b61097a565b6040516102959190613b60565b60405180910390f35b3480156102aa57600080fd5b506102b3610a5c565b6040516102c09190613b7b565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb919061359b565b610aee565b6040516102fd9190613af9565b60405180910390f35b34801561031257600080fd5b5061031b610b73565b6040516103289190613b7b565b60405180910390f35b34801561033d57600080fd5b506103586004803603810190610353919061343e565b610c01565b005b34801561036657600080fd5b50610381600480360381019061037c91906134cb565b610d19565b005b34801561038f57600080fd5b50610398610db2565b6040516103a59190613e9d565b60405180910390f35b3480156103ba57600080fd5b506103c3610db8565b6040516103d09190613e9d565b60405180910390f35b3480156103e557600080fd5b506103ee610dd5565b6040516103fb9190613e9d565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190613328565b610ddb565b005b34801561043957600080fd5b50610454600480360381019061044f91906132bb565b610e3b565b6040516104619190613b60565b60405180910390f35b610484600480360381019061047f919061359b565b610e5b565b005b34801561049257600080fd5b5061049b611065565b6040516104a89190613b60565b60405180910390f35b6104b9611078565b005b3480156104c757600080fd5b506104d0611240565b6040516104dd9190613b60565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190613328565b611253565b005b34801561051b57600080fd5b506105366004803603810190610531919061359b565b611273565b005b34801561054457600080fd5b5061054d6112f9565b005b34801561055b57600080fd5b50610564611504565b6040516105719190613b60565b60405180910390f35b34801561058657600080fd5b5061058f611517565b60405161059c9190613b60565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190613552565b61152a565b005b3480156105da57600080fd5b506105f560048036038101906105f0919061359b565b6115c0565b6040516106029190613af9565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d91906134cb565b611672565b005b34801561064057600080fd5b5061064961170b565b005b34801561065757600080fd5b50610672600480360381019061066d91906132bb565b6118b6565b60405161067f9190613e9d565b60405180910390f35b34801561069457600080fd5b5061069d61196e565b005b3480156106ab57600080fd5b506106c660048036038101906106c1919061347e565b6119f6565b005b3480156106d457600080fd5b506106ef60048036038101906106ea919061359b565b611b17565b005b3480156106fd57600080fd5b50610706611b9d565b6040516107139190613af9565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190613552565b611bc7565b005b34801561075157600080fd5b5061075a611c5d565b6040516107679190613b7b565b60405180910390f35b34801561077c57600080fd5b50610797600480360381019061079291906133fe565b611cef565b005b3480156107a557600080fd5b506107ae611d05565b005b3480156107bc57600080fd5b506107d760048036038101906107d2919061337b565b611d9e565b005b3480156107e557600080fd5b506107ee611e00565b6040516107fb9190613b7b565b60405180910390f35b34801561081057600080fd5b50610819611e8e565b6040516108269190613e9d565b60405180910390f35b34801561083b57600080fd5b506108566004803603810190610851919061359b565b611e94565b6040516108639190613b7b565b60405180910390f35b34801561087857600080fd5b50610881611fbc565b60405161088e9190613e9d565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b99190613552565b611fc2565b005b3480156108cc57600080fd5b506108d5612058565b6040516108e29190613b7b565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d91906132e8565b6120ea565b60405161091f9190613b60565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a9190613552565b61217e565b005b34801561095d57600080fd5b50610978600480360381019061097391906132bb565b612214565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a555750610a5482612322565b5b9050919050565b606060008054610a6b9061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a979061416d565b8015610ae45780601f10610ab957610100808354040283529160200191610ae4565b820191906000526020600020905b815481529060010190602001808311610ac757829003601f168201915b5050505050905090565b6000610af98261238c565b610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90613d7d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610b809061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054610bac9061416d565b8015610bf95780601f10610bce57610100808354040283529160200191610bf9565b820191906000526020600020905b815481529060010190602001808311610bdc57829003601f168201915b505050505081565b6000610c0c826115c0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613e1d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c9c6123f8565b73ffffffffffffffffffffffffffffffffffffffff161480610ccb5750610cca81610cc56123f8565b6120ea565b5b610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190613cdd565b60405180910390fd5b610d148383612400565b505050565b610d216123f8565b73ffffffffffffffffffffffffffffffffffffffff16610d3f611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90613d9d565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b600b5481565b60006001610dc660076124b9565b610dd09190614083565b905090565b600d5481565b610dec610de66123f8565b826124c7565b610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2290613e3d565b60405180910390fd5b610e368383836125a5565b505050565b60136020528060005260406000206000915054906101000a900460ff1681565b600e60009054906101000a900460ff16610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190613dfd565b60405180910390fd5b60008111610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee490613cbd565b60405180910390fd5b600d54811115610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990613e7d565b60405180910390fd5b600c5481610f3e610db8565b610f489190613fa2565b1115610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090613c7d565b60405180910390fd5b80600b54610f979190614029565b341015610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613d3d565b60405180910390fd5b6000600190505b818111611061576000610ff360076124b9565b9050610fff3382612801565b611009600761230c565b3373ffffffffffffffffffffffffffffffffffffffff16817fb9203d657e9c0ec8274c818292ab0f58b04e1970050716891770eb1bab5d655e60405160405180910390a3508080611059906141d0565b915050610fe0565b5050565b601160009054906101000a900460ff1681565b6110806123f8565b73ffffffffffffffffffffffffffffffffffffffff1661109e611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90613d9d565b60405180910390fd5b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16606460324761113e9190614029565b6111489190613ff8565b60405161115490613ae4565b60006040518083038185875af1925050503d8060008114611191576040519150601f19603f3d011682016040523d82523d6000602084013e611196565b606091505b50509050806111a457600080fd5b6000601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516111ec90613ae4565b60006040518083038185875af1925050503d8060008114611229576040519150601f19603f3d011682016040523d82523d6000602084013e61122e565b606091505b505090508061123c57600080fd5b5050565b600e60009054906101000a900460ff1681565b61126e83838360405180602001604052806000815250611d9e565b505050565b61127b6123f8565b73ffffffffffffffffffffffffffffffffffffffff16611299611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690613d9d565b60405180910390fd5b80600b8190555050565b600e60019054906101000a900460ff16806113205750600e60009054906101000a900460ff165b61135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613b9d565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290613c5d565b60405180910390fd5b600c5460016113f8610db8565b6114029190613fa2565b1115611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90613c7d565b60405180910390fd5b600061144f60076124b9565b905061145b3382612801565b611465600761230c565b3373ffffffffffffffffffffffffffffffffffffffff16817fb9203d657e9c0ec8274c818292ab0f58b04e1970050716891770eb1bab5d655e60405160405180910390a36000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600e60029054906101000a900460ff1681565b600e60019054906101000a900460ff1681565b6115326123f8565b73ffffffffffffffffffffffffffffffffffffffff16611550611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d90613d9d565b60405180910390fd5b80600890805190602001906115bc929190613079565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090613d1d565b60405180910390fd5b80915050919050565b61167a6123f8565b73ffffffffffffffffffffffffffffffffffffffff16611698611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590613d9d565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6117136123f8565b73ffffffffffffffffffffffffffffffffffffffff16611731611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90613d9d565b60405180910390fd5b600c54601054611795610db8565b61179f9190613fa2565b11156117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790613c7d565b60405180910390fd5b601160009054906101000a900460ff1615611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790613e5d565b60405180910390fd5b6000600190505b601054811161189857600061184c60076124b9565b905061187a601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612801565b611884600761230c565b508080611890906141d0565b915050611837565b506001601160006101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90613cfd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119766123f8565b73ffffffffffffffffffffffffffffffffffffffff16611994611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e190613d9d565b60405180910390fd5b6119f4600061281f565b565b6119fe6123f8565b73ffffffffffffffffffffffffffffffffffffffff16611a1c611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6990613d9d565b60405180910390fd5b60005b82829050811015611b1257600160136000858585818110611a9957611a986142d7565b5b9050602002016020810190611aae91906132bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b0a906141d0565b915050611a75565b505050565b611b1f6123f8565b73ffffffffffffffffffffffffffffffffffffffff16611b3d611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613d9d565b60405180910390fd5b80600d8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bcf6123f8565b73ffffffffffffffffffffffffffffffffffffffff16611bed611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90613d9d565b60405180910390fd5b8060099080519060200190611c59929190613079565b5050565b606060018054611c6c9061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c989061416d565b8015611ce55780601f10611cba57610100808354040283529160200191611ce5565b820191906000526020600020905b815481529060010190602001808311611cc857829003601f168201915b5050505050905090565b611d01611cfa6123f8565b83836128e5565b5050565b611d0d6123f8565b73ffffffffffffffffffffffffffffffffffffffff16611d2b611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890613d9d565b60405180910390fd5b6001600e60026101000a81548160ff021916908315150217905550565b611daf611da96123f8565b836124c7565b611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590613e3d565b60405180910390fd5b611dfa84848484612a52565b50505050565b600a8054611e0d9061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054611e399061416d565b8015611e865780601f10611e5b57610100808354040283529160200191611e86565b820191906000526020600020905b815481529060010190602001808311611e6957829003601f168201915b505050505081565b60105481565b6060611e9f8261238c565b611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed590613ddd565b60405180910390fd5b60001515600e60029054906101000a900460ff1615151415611f5b576000600f8054611f099061416d565b905011611f255760405180602001604052806000815250611f54565b600f611f3083612aae565b600a604051602001611f4493929190613ab3565b6040516020818303038152906040525b9050611fb7565b6000611f65612c0f565b90506000815111611f855760405180602001604052806000815250611fb3565b80611f8f84612aae565b600a604051602001611fa393929190613a82565b6040516020818303038152906040525b9150505b919050565b600c5481565b611fca6123f8565b73ffffffffffffffffffffffffffffffffffffffff16611fe8611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461203e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203590613d9d565b60405180910390fd5b80600a9080519060200190612054929190613079565b5050565b6060600980546120679061416d565b80601f01602080910402602001604051908101604052809291908181526020018280546120939061416d565b80156120e05780601f106120b5576101008083540402835291602001916120e0565b820191906000526020600020905b8154815290600101906020018083116120c357829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121866123f8565b73ffffffffffffffffffffffffffffffffffffffff166121a4611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190613d9d565b60405180910390fd5b80600f9080519060200190612210929190613079565b5050565b61221c6123f8565b73ffffffffffffffffffffffffffffffffffffffff1661223a611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228790613d9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f790613bdd565b60405180910390fd5b6123098161281f565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612473836115c0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006124d28261238c565b612511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250890613c9d565b60405180910390fd5b600061251c836115c0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061258b57508373ffffffffffffffffffffffffffffffffffffffff1661257384610aee565b73ffffffffffffffffffffffffffffffffffffffff16145b8061259c575061259b81856120ea565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125c5826115c0565b73ffffffffffffffffffffffffffffffffffffffff161461261b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261290613dbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561268b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268290613c1d565b60405180910390fd5b612696838383612ca1565b6126a1600082612400565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f19190614083565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127489190613fa2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61281b828260405180602001604052806000815250612ca6565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294b90613c3d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a459190613b60565b60405180910390a3505050565b612a5d8484846125a5565b612a6984848484612d01565b612aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9f90613bbd565b60405180910390fd5b50505050565b60606000821415612af6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c0a565b600082905060005b60008214612b28578080612b11906141d0565b915050600a82612b219190613ff8565b9150612afe565b60008167ffffffffffffffff811115612b4457612b43614306565b5b6040519080825280601f01601f191660200182016040528015612b765781602001600182028036833780820191505090505b5090505b60008514612c0357600182612b8f9190614083565b9150600a85612b9e9190614219565b6030612baa9190613fa2565b60f81b818381518110612bc057612bbf6142d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bfc9190613ff8565b9450612b7a565b8093505050505b919050565b606060088054612c1e9061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054612c4a9061416d565b8015612c975780601f10612c6c57610100808354040283529160200191612c97565b820191906000526020600020905b815481529060010190602001808311612c7a57829003601f168201915b5050505050905090565b505050565b612cb08383612e98565b612cbd6000848484612d01565b612cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf390613bbd565b60405180910390fd5b505050565b6000612d228473ffffffffffffffffffffffffffffffffffffffff16613066565b15612e8b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d4b6123f8565b8786866040518563ffffffff1660e01b8152600401612d6d9493929190613b14565b602060405180830381600087803b158015612d8757600080fd5b505af1925050508015612db857506040513d601f19601f82011682018060405250810190612db59190613525565b60015b612e3b573d8060008114612de8576040519150601f19603f3d011682016040523d82523d6000602084013e612ded565b606091505b50600081511415612e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2a90613bbd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e90565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eff90613d5d565b60405180910390fd5b612f118161238c565b15612f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4890613bfd565b60405180910390fd5b612f5d60008383612ca1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fad9190613fa2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546130859061416d565b90600052602060002090601f0160209004810192826130a757600085556130ee565b82601f106130c057805160ff19168380011785556130ee565b828001600101855582156130ee579182015b828111156130ed5782518255916020019190600101906130d2565b5b5090506130fb91906130ff565b5090565b5b80821115613118576000816000905550600101613100565b5090565b600061312f61312a84613edd565b613eb8565b90508281526020810184848401111561314b5761314a614344565b5b61315684828561412b565b509392505050565b600061317161316c84613f0e565b613eb8565b90508281526020810184848401111561318d5761318c614344565b5b61319884828561412b565b509392505050565b6000813590506131af816149c5565b92915050565b60008083601f8401126131cb576131ca61433a565b5b8235905067ffffffffffffffff8111156131e8576131e7614335565b5b6020830191508360208202830111156132045761320361433f565b5b9250929050565b60008135905061321a816149dc565b92915050565b60008135905061322f816149f3565b92915050565b600081519050613244816149f3565b92915050565b600082601f83011261325f5761325e61433a565b5b813561326f84826020860161311c565b91505092915050565b600082601f83011261328d5761328c61433a565b5b813561329d84826020860161315e565b91505092915050565b6000813590506132b581614a0a565b92915050565b6000602082840312156132d1576132d061434e565b5b60006132df848285016131a0565b91505092915050565b600080604083850312156132ff576132fe61434e565b5b600061330d858286016131a0565b925050602061331e858286016131a0565b9150509250929050565b6000806000606084860312156133415761334061434e565b5b600061334f868287016131a0565b9350506020613360868287016131a0565b9250506040613371868287016132a6565b9150509250925092565b600080600080608085870312156133955761339461434e565b5b60006133a3878288016131a0565b94505060206133b4878288016131a0565b93505060406133c5878288016132a6565b925050606085013567ffffffffffffffff8111156133e6576133e5614349565b5b6133f28782880161324a565b91505092959194509250565b600080604083850312156134155761341461434e565b5b6000613423858286016131a0565b92505060206134348582860161320b565b9150509250929050565b600080604083850312156134555761345461434e565b5b6000613463858286016131a0565b9250506020613474858286016132a6565b9150509250929050565b600080602083850312156134955761349461434e565b5b600083013567ffffffffffffffff8111156134b3576134b2614349565b5b6134bf858286016131b5565b92509250509250929050565b6000602082840312156134e1576134e061434e565b5b60006134ef8482850161320b565b91505092915050565b60006020828403121561350e5761350d61434e565b5b600061351c84828501613220565b91505092915050565b60006020828403121561353b5761353a61434e565b5b600061354984828501613235565b91505092915050565b6000602082840312156135685761356761434e565b5b600082013567ffffffffffffffff81111561358657613585614349565b5b61359284828501613278565b91505092915050565b6000602082840312156135b1576135b061434e565b5b60006135bf848285016132a6565b91505092915050565b6135d1816140b7565b82525050565b6135e0816140c9565b82525050565b60006135f182613f54565b6135fb8185613f6a565b935061360b81856020860161413a565b61361481614353565b840191505092915050565b600061362a82613f5f565b6136348185613f86565b935061364481856020860161413a565b61364d81614353565b840191505092915050565b600061366382613f5f565b61366d8185613f97565b935061367d81856020860161413a565b80840191505092915050565b600081546136968161416d565b6136a08186613f97565b945060018216600081146136bb57600181146136cc576136ff565b60ff198316865281860193506136ff565b6136d585613f3f565b60005b838110156136f7578154818901526001820191506020810190506136d8565b838801955050505b50505092915050565b6000613715602583613f86565b915061372082614364565b604082019050919050565b6000613738603283613f86565b9150613743826143b3565b604082019050919050565b600061375b602683613f86565b915061376682614402565b604082019050919050565b600061377e601c83613f86565b915061378982614451565b602082019050919050565b60006137a1602483613f86565b91506137ac8261447a565b604082019050919050565b60006137c4601983613f86565b91506137cf826144c9565b602082019050919050565b60006137e7602383613f86565b91506137f2826144f2565b604082019050919050565b600061380a602683613f86565b915061381582614541565b604082019050919050565b600061382d602c83613f86565b915061383882614590565b604082019050919050565b6000613850601783613f86565b915061385b826145df565b602082019050919050565b6000613873603883613f86565b915061387e82614608565b604082019050919050565b6000613896602a83613f86565b91506138a182614657565b604082019050919050565b60006138b9602983613f86565b91506138c4826146a6565b604082019050919050565b60006138dc602383613f86565b91506138e7826146f5565b604082019050919050565b60006138ff602083613f86565b915061390a82614744565b602082019050919050565b6000613922602c83613f86565b915061392d8261476d565b604082019050919050565b6000613945602083613f86565b9150613950826147bc565b602082019050919050565b6000613968602983613f86565b9150613973826147e5565b604082019050919050565b600061398b602f83613f86565b915061399682614834565b604082019050919050565b60006139ae601983613f86565b91506139b982614883565b602082019050919050565b60006139d1602183613f86565b91506139dc826148ac565b604082019050919050565b60006139f4600083613f7b565b91506139ff826148fb565b600082019050919050565b6000613a17603183613f86565b9150613a22826148fe565b604082019050919050565b6000613a3a601083613f86565b9150613a458261494d565b602082019050919050565b6000613a5d602183613f86565b9150613a6882614976565b604082019050919050565b613a7c81614121565b82525050565b6000613a8e8286613658565b9150613a9a8285613658565b9150613aa68284613689565b9150819050949350505050565b6000613abf8286613689565b9150613acb8285613658565b9150613ad78284613689565b9150819050949350505050565b6000613aef826139e7565b9150819050919050565b6000602082019050613b0e60008301846135c8565b92915050565b6000608082019050613b2960008301876135c8565b613b3660208301866135c8565b613b436040830185613a73565b8181036060830152613b5581846135e6565b905095945050505050565b6000602082019050613b7560008301846135d7565b92915050565b60006020820190508181036000830152613b95818461361f565b905092915050565b60006020820190508181036000830152613bb681613708565b9050919050565b60006020820190508181036000830152613bd68161372b565b9050919050565b60006020820190508181036000830152613bf68161374e565b9050919050565b60006020820190508181036000830152613c1681613771565b9050919050565b60006020820190508181036000830152613c3681613794565b9050919050565b60006020820190508181036000830152613c56816137b7565b9050919050565b60006020820190508181036000830152613c76816137da565b9050919050565b60006020820190508181036000830152613c96816137fd565b9050919050565b60006020820190508181036000830152613cb681613820565b9050919050565b60006020820190508181036000830152613cd681613843565b9050919050565b60006020820190508181036000830152613cf681613866565b9050919050565b60006020820190508181036000830152613d1681613889565b9050919050565b60006020820190508181036000830152613d36816138ac565b9050919050565b60006020820190508181036000830152613d56816138cf565b9050919050565b60006020820190508181036000830152613d76816138f2565b9050919050565b60006020820190508181036000830152613d9681613915565b9050919050565b60006020820190508181036000830152613db681613938565b9050919050565b60006020820190508181036000830152613dd68161395b565b9050919050565b60006020820190508181036000830152613df68161397e565b9050919050565b60006020820190508181036000830152613e16816139a1565b9050919050565b60006020820190508181036000830152613e36816139c4565b9050919050565b60006020820190508181036000830152613e5681613a0a565b9050919050565b60006020820190508181036000830152613e7681613a2d565b9050919050565b60006020820190508181036000830152613e9681613a50565b9050919050565b6000602082019050613eb26000830184613a73565b92915050565b6000613ec2613ed3565b9050613ece828261419f565b919050565b6000604051905090565b600067ffffffffffffffff821115613ef857613ef7614306565b5b613f0182614353565b9050602081019050919050565b600067ffffffffffffffff821115613f2957613f28614306565b5b613f3282614353565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fad82614121565b9150613fb883614121565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fed57613fec61424a565b5b828201905092915050565b600061400382614121565b915061400e83614121565b92508261401e5761401d614279565b5b828204905092915050565b600061403482614121565b915061403f83614121565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140785761407761424a565b5b828202905092915050565b600061408e82614121565b915061409983614121565b9250828210156140ac576140ab61424a565b5b828203905092915050565b60006140c282614101565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561415857808201518184015260208101905061413d565b83811115614167576000848401525b50505050565b6000600282049050600182168061418557607f821691505b60208210811415614199576141986142a8565b5b50919050565b6141a882614353565b810181811067ffffffffffffffff821117156141c7576141c6614306565b5b80604052505050565b60006141db82614121565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561420e5761420d61424a565b5b600182019050919050565b600061422482614121565b915061422f83614121565b92508261423f5761423e614279565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f412073616c6520706572696f64206d7573742062652061637469766520746f2060008201527f636c61696d000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f20636c61696d20617661696c61626c6520666f722074686973206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479207265717565737465642065786365656473206d6178207360008201527f7570706c792e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742073746172746564207965742e00000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5465616d2068617320636c61696d656400000000000000000000000000000000600082015250565b7f457863656564732032302c20746865206d61782071747920706572206d696e7460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6149ce816140b7565b81146149d957600080fd5b50565b6149e5816140c9565b81146149f057600080fd5b50565b6149fc816140d5565b8114614a0757600080fd5b50565b614a1381614121565b8114614a1e57600080fd5b5056fea2646970667358221220a621f0fdf3d477cb97a5347a0370c6298875b2eb5514ed801f2845f7cba73f5164736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000000f43727970746f4368726973746d617a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094348524953544d415a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f7777772e63727970746f6368726973746d617a2e636f6d2f6170692f63632f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f7777772e63727970746f6368726973746d617a2e636f6d2f6170692f63635f756e72657665616c65642f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f7777772e63727970746f6368726973746d617a2e636f6d2f6170692f63632f636f6e74726163740000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636352211e11610144578063a475b5dd116100b6578063d5abeb011161007a578063d5abeb011461086c578063da3ef23f14610897578063e8a3d485146108c0578063e985e9c5146108eb578063f2c4ce1e14610928578063f2fde38b146109515761025c565b8063a475b5dd14610799578063b88d4fde146107b0578063c6682862146107d9578063c7fc0cd114610804578063c87b56dd1461082f5761025c565b806376da3a461161010857806376da3a461461069f5780637f00c7a6146106c85780638da5cb5b146106f1578063938e3d7b1461071c57806395d89b4114610745578063a22cb465146107705761025c565b80636352211e146105ce578063667ab6901461060b5780636ae146c21461063457806370a082311461064b578063715018a6146106885761025c565b8063287001d2116101dd57806342842e0e116101a157806342842e0e146104e657806344a0d68a1461050f5780634e71d92d14610538578063518302271461054f57806353135ca01461057a57806355f804b3146105a55761025c565b8063287001d21461042d5780632db115441461046a5780632f334652146104865780633ccfd60b146104b15780633f2981cf146104bb5761025c565b80630e6011a8116102245780630e6011a81461035a57806313faede61461038357806318160ddd146103ae578063239c70ae146103d957806323b872dd146104045761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063081c8c4414610306578063095ea7b314610331575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906134f8565b61097a565b6040516102959190613b60565b60405180910390f35b3480156102aa57600080fd5b506102b3610a5c565b6040516102c09190613b7b565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb919061359b565b610aee565b6040516102fd9190613af9565b60405180910390f35b34801561031257600080fd5b5061031b610b73565b6040516103289190613b7b565b60405180910390f35b34801561033d57600080fd5b506103586004803603810190610353919061343e565b610c01565b005b34801561036657600080fd5b50610381600480360381019061037c91906134cb565b610d19565b005b34801561038f57600080fd5b50610398610db2565b6040516103a59190613e9d565b60405180910390f35b3480156103ba57600080fd5b506103c3610db8565b6040516103d09190613e9d565b60405180910390f35b3480156103e557600080fd5b506103ee610dd5565b6040516103fb9190613e9d565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190613328565b610ddb565b005b34801561043957600080fd5b50610454600480360381019061044f91906132bb565b610e3b565b6040516104619190613b60565b60405180910390f35b610484600480360381019061047f919061359b565b610e5b565b005b34801561049257600080fd5b5061049b611065565b6040516104a89190613b60565b60405180910390f35b6104b9611078565b005b3480156104c757600080fd5b506104d0611240565b6040516104dd9190613b60565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190613328565b611253565b005b34801561051b57600080fd5b506105366004803603810190610531919061359b565b611273565b005b34801561054457600080fd5b5061054d6112f9565b005b34801561055b57600080fd5b50610564611504565b6040516105719190613b60565b60405180910390f35b34801561058657600080fd5b5061058f611517565b60405161059c9190613b60565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190613552565b61152a565b005b3480156105da57600080fd5b506105f560048036038101906105f0919061359b565b6115c0565b6040516106029190613af9565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d91906134cb565b611672565b005b34801561064057600080fd5b5061064961170b565b005b34801561065757600080fd5b50610672600480360381019061066d91906132bb565b6118b6565b60405161067f9190613e9d565b60405180910390f35b34801561069457600080fd5b5061069d61196e565b005b3480156106ab57600080fd5b506106c660048036038101906106c1919061347e565b6119f6565b005b3480156106d457600080fd5b506106ef60048036038101906106ea919061359b565b611b17565b005b3480156106fd57600080fd5b50610706611b9d565b6040516107139190613af9565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190613552565b611bc7565b005b34801561075157600080fd5b5061075a611c5d565b6040516107679190613b7b565b60405180910390f35b34801561077c57600080fd5b50610797600480360381019061079291906133fe565b611cef565b005b3480156107a557600080fd5b506107ae611d05565b005b3480156107bc57600080fd5b506107d760048036038101906107d2919061337b565b611d9e565b005b3480156107e557600080fd5b506107ee611e00565b6040516107fb9190613b7b565b60405180910390f35b34801561081057600080fd5b50610819611e8e565b6040516108269190613e9d565b60405180910390f35b34801561083b57600080fd5b506108566004803603810190610851919061359b565b611e94565b6040516108639190613b7b565b60405180910390f35b34801561087857600080fd5b50610881611fbc565b60405161088e9190613e9d565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b99190613552565b611fc2565b005b3480156108cc57600080fd5b506108d5612058565b6040516108e29190613b7b565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d91906132e8565b6120ea565b60405161091f9190613b60565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a9190613552565b61217e565b005b34801561095d57600080fd5b50610978600480360381019061097391906132bb565b612214565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a555750610a5482612322565b5b9050919050565b606060008054610a6b9061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a979061416d565b8015610ae45780601f10610ab957610100808354040283529160200191610ae4565b820191906000526020600020905b815481529060010190602001808311610ac757829003601f168201915b5050505050905090565b6000610af98261238c565b610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f90613d7d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610b809061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054610bac9061416d565b8015610bf95780601f10610bce57610100808354040283529160200191610bf9565b820191906000526020600020905b815481529060010190602001808311610bdc57829003601f168201915b505050505081565b6000610c0c826115c0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490613e1d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c9c6123f8565b73ffffffffffffffffffffffffffffffffffffffff161480610ccb5750610cca81610cc56123f8565b6120ea565b5b610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190613cdd565b60405180910390fd5b610d148383612400565b505050565b610d216123f8565b73ffffffffffffffffffffffffffffffffffffffff16610d3f611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90613d9d565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b600b5481565b60006001610dc660076124b9565b610dd09190614083565b905090565b600d5481565b610dec610de66123f8565b826124c7565b610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2290613e3d565b60405180910390fd5b610e368383836125a5565b505050565b60136020528060005260406000206000915054906101000a900460ff1681565b600e60009054906101000a900460ff16610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190613dfd565b60405180910390fd5b60008111610eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee490613cbd565b60405180910390fd5b600d54811115610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990613e7d565b60405180910390fd5b600c5481610f3e610db8565b610f489190613fa2565b1115610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090613c7d565b60405180910390fd5b80600b54610f979190614029565b341015610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613d3d565b60405180910390fd5b6000600190505b818111611061576000610ff360076124b9565b9050610fff3382612801565b611009600761230c565b3373ffffffffffffffffffffffffffffffffffffffff16817fb9203d657e9c0ec8274c818292ab0f58b04e1970050716891770eb1bab5d655e60405160405180910390a3508080611059906141d0565b915050610fe0565b5050565b601160009054906101000a900460ff1681565b6110806123f8565b73ffffffffffffffffffffffffffffffffffffffff1661109e611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90613d9d565b60405180910390fd5b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16606460324761113e9190614029565b6111489190613ff8565b60405161115490613ae4565b60006040518083038185875af1925050503d8060008114611191576040519150601f19603f3d011682016040523d82523d6000602084013e611196565b606091505b50509050806111a457600080fd5b6000601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516111ec90613ae4565b60006040518083038185875af1925050503d8060008114611229576040519150601f19603f3d011682016040523d82523d6000602084013e61122e565b606091505b505090508061123c57600080fd5b5050565b600e60009054906101000a900460ff1681565b61126e83838360405180602001604052806000815250611d9e565b505050565b61127b6123f8565b73ffffffffffffffffffffffffffffffffffffffff16611299611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690613d9d565b60405180910390fd5b80600b8190555050565b600e60019054906101000a900460ff16806113205750600e60009054906101000a900460ff165b61135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690613b9d565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e290613c5d565b60405180910390fd5b600c5460016113f8610db8565b6114029190613fa2565b1115611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90613c7d565b60405180910390fd5b600061144f60076124b9565b905061145b3382612801565b611465600761230c565b3373ffffffffffffffffffffffffffffffffffffffff16817fb9203d657e9c0ec8274c818292ab0f58b04e1970050716891770eb1bab5d655e60405160405180910390a36000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600e60029054906101000a900460ff1681565b600e60019054906101000a900460ff1681565b6115326123f8565b73ffffffffffffffffffffffffffffffffffffffff16611550611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d90613d9d565b60405180910390fd5b80600890805190602001906115bc929190613079565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090613d1d565b60405180910390fd5b80915050919050565b61167a6123f8565b73ffffffffffffffffffffffffffffffffffffffff16611698611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590613d9d565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6117136123f8565b73ffffffffffffffffffffffffffffffffffffffff16611731611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90613d9d565b60405180910390fd5b600c54601054611795610db8565b61179f9190613fa2565b11156117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790613c7d565b60405180910390fd5b601160009054906101000a900460ff1615611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790613e5d565b60405180910390fd5b6000600190505b601054811161189857600061184c60076124b9565b905061187a601160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612801565b611884600761230c565b508080611890906141d0565b915050611837565b506001601160006101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e90613cfd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119766123f8565b73ffffffffffffffffffffffffffffffffffffffff16611994611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e190613d9d565b60405180910390fd5b6119f4600061281f565b565b6119fe6123f8565b73ffffffffffffffffffffffffffffffffffffffff16611a1c611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6990613d9d565b60405180910390fd5b60005b82829050811015611b1257600160136000858585818110611a9957611a986142d7565b5b9050602002016020810190611aae91906132bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611b0a906141d0565b915050611a75565b505050565b611b1f6123f8565b73ffffffffffffffffffffffffffffffffffffffff16611b3d611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613d9d565b60405180910390fd5b80600d8190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bcf6123f8565b73ffffffffffffffffffffffffffffffffffffffff16611bed611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3a90613d9d565b60405180910390fd5b8060099080519060200190611c59929190613079565b5050565b606060018054611c6c9061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c989061416d565b8015611ce55780601f10611cba57610100808354040283529160200191611ce5565b820191906000526020600020905b815481529060010190602001808311611cc857829003601f168201915b5050505050905090565b611d01611cfa6123f8565b83836128e5565b5050565b611d0d6123f8565b73ffffffffffffffffffffffffffffffffffffffff16611d2b611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890613d9d565b60405180910390fd5b6001600e60026101000a81548160ff021916908315150217905550565b611daf611da96123f8565b836124c7565b611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590613e3d565b60405180910390fd5b611dfa84848484612a52565b50505050565b600a8054611e0d9061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054611e399061416d565b8015611e865780601f10611e5b57610100808354040283529160200191611e86565b820191906000526020600020905b815481529060010190602001808311611e6957829003601f168201915b505050505081565b60105481565b6060611e9f8261238c565b611ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed590613ddd565b60405180910390fd5b60001515600e60029054906101000a900460ff1615151415611f5b576000600f8054611f099061416d565b905011611f255760405180602001604052806000815250611f54565b600f611f3083612aae565b600a604051602001611f4493929190613ab3565b6040516020818303038152906040525b9050611fb7565b6000611f65612c0f565b90506000815111611f855760405180602001604052806000815250611fb3565b80611f8f84612aae565b600a604051602001611fa393929190613a82565b6040516020818303038152906040525b9150505b919050565b600c5481565b611fca6123f8565b73ffffffffffffffffffffffffffffffffffffffff16611fe8611b9d565b73ffffffffffffffffffffffffffffffffffffffff161461203e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203590613d9d565b60405180910390fd5b80600a9080519060200190612054929190613079565b5050565b6060600980546120679061416d565b80601f01602080910402602001604051908101604052809291908181526020018280546120939061416d565b80156120e05780601f106120b5576101008083540402835291602001916120e0565b820191906000526020600020905b8154815290600101906020018083116120c357829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121866123f8565b73ffffffffffffffffffffffffffffffffffffffff166121a4611b9d565b73ffffffffffffffffffffffffffffffffffffffff16146121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190613d9d565b60405180910390fd5b80600f9080519060200190612210929190613079565b5050565b61221c6123f8565b73ffffffffffffffffffffffffffffffffffffffff1661223a611b9d565b73ffffffffffffffffffffffffffffffffffffffff1614612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228790613d9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f790613bdd565b60405180910390fd5b6123098161281f565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612473836115c0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006124d28261238c565b612511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250890613c9d565b60405180910390fd5b600061251c836115c0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061258b57508373ffffffffffffffffffffffffffffffffffffffff1661257384610aee565b73ffffffffffffffffffffffffffffffffffffffff16145b8061259c575061259b81856120ea565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125c5826115c0565b73ffffffffffffffffffffffffffffffffffffffff161461261b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261290613dbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561268b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268290613c1d565b60405180910390fd5b612696838383612ca1565b6126a1600082612400565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f19190614083565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127489190613fa2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61281b828260405180602001604052806000815250612ca6565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294b90613c3d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a459190613b60565b60405180910390a3505050565b612a5d8484846125a5565b612a6984848484612d01565b612aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9f90613bbd565b60405180910390fd5b50505050565b60606000821415612af6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c0a565b600082905060005b60008214612b28578080612b11906141d0565b915050600a82612b219190613ff8565b9150612afe565b60008167ffffffffffffffff811115612b4457612b43614306565b5b6040519080825280601f01601f191660200182016040528015612b765781602001600182028036833780820191505090505b5090505b60008514612c0357600182612b8f9190614083565b9150600a85612b9e9190614219565b6030612baa9190613fa2565b60f81b818381518110612bc057612bbf6142d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bfc9190613ff8565b9450612b7a565b8093505050505b919050565b606060088054612c1e9061416d565b80601f0160208091040260200160405190810160405280929190818152602001828054612c4a9061416d565b8015612c975780601f10612c6c57610100808354040283529160200191612c97565b820191906000526020600020905b815481529060010190602001808311612c7a57829003601f168201915b5050505050905090565b505050565b612cb08383612e98565b612cbd6000848484612d01565b612cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf390613bbd565b60405180910390fd5b505050565b6000612d228473ffffffffffffffffffffffffffffffffffffffff16613066565b15612e8b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d4b6123f8565b8786866040518563ffffffff1660e01b8152600401612d6d9493929190613b14565b602060405180830381600087803b158015612d8757600080fd5b505af1925050508015612db857506040513d601f19601f82011682018060405250810190612db59190613525565b60015b612e3b573d8060008114612de8576040519150601f19603f3d011682016040523d82523d6000602084013e612ded565b606091505b50600081511415612e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2a90613bbd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e90565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eff90613d5d565b60405180910390fd5b612f118161238c565b15612f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4890613bfd565b60405180910390fd5b612f5d60008383612ca1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fad9190613fa2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546130859061416d565b90600052602060002090601f0160209004810192826130a757600085556130ee565b82601f106130c057805160ff19168380011785556130ee565b828001600101855582156130ee579182015b828111156130ed5782518255916020019190600101906130d2565b5b5090506130fb91906130ff565b5090565b5b80821115613118576000816000905550600101613100565b5090565b600061312f61312a84613edd565b613eb8565b90508281526020810184848401111561314b5761314a614344565b5b61315684828561412b565b509392505050565b600061317161316c84613f0e565b613eb8565b90508281526020810184848401111561318d5761318c614344565b5b61319884828561412b565b509392505050565b6000813590506131af816149c5565b92915050565b60008083601f8401126131cb576131ca61433a565b5b8235905067ffffffffffffffff8111156131e8576131e7614335565b5b6020830191508360208202830111156132045761320361433f565b5b9250929050565b60008135905061321a816149dc565b92915050565b60008135905061322f816149f3565b92915050565b600081519050613244816149f3565b92915050565b600082601f83011261325f5761325e61433a565b5b813561326f84826020860161311c565b91505092915050565b600082601f83011261328d5761328c61433a565b5b813561329d84826020860161315e565b91505092915050565b6000813590506132b581614a0a565b92915050565b6000602082840312156132d1576132d061434e565b5b60006132df848285016131a0565b91505092915050565b600080604083850312156132ff576132fe61434e565b5b600061330d858286016131a0565b925050602061331e858286016131a0565b9150509250929050565b6000806000606084860312156133415761334061434e565b5b600061334f868287016131a0565b9350506020613360868287016131a0565b9250506040613371868287016132a6565b9150509250925092565b600080600080608085870312156133955761339461434e565b5b60006133a3878288016131a0565b94505060206133b4878288016131a0565b93505060406133c5878288016132a6565b925050606085013567ffffffffffffffff8111156133e6576133e5614349565b5b6133f28782880161324a565b91505092959194509250565b600080604083850312156134155761341461434e565b5b6000613423858286016131a0565b92505060206134348582860161320b565b9150509250929050565b600080604083850312156134555761345461434e565b5b6000613463858286016131a0565b9250506020613474858286016132a6565b9150509250929050565b600080602083850312156134955761349461434e565b5b600083013567ffffffffffffffff8111156134b3576134b2614349565b5b6134bf858286016131b5565b92509250509250929050565b6000602082840312156134e1576134e061434e565b5b60006134ef8482850161320b565b91505092915050565b60006020828403121561350e5761350d61434e565b5b600061351c84828501613220565b91505092915050565b60006020828403121561353b5761353a61434e565b5b600061354984828501613235565b91505092915050565b6000602082840312156135685761356761434e565b5b600082013567ffffffffffffffff81111561358657613585614349565b5b61359284828501613278565b91505092915050565b6000602082840312156135b1576135b061434e565b5b60006135bf848285016132a6565b91505092915050565b6135d1816140b7565b82525050565b6135e0816140c9565b82525050565b60006135f182613f54565b6135fb8185613f6a565b935061360b81856020860161413a565b61361481614353565b840191505092915050565b600061362a82613f5f565b6136348185613f86565b935061364481856020860161413a565b61364d81614353565b840191505092915050565b600061366382613f5f565b61366d8185613f97565b935061367d81856020860161413a565b80840191505092915050565b600081546136968161416d565b6136a08186613f97565b945060018216600081146136bb57600181146136cc576136ff565b60ff198316865281860193506136ff565b6136d585613f3f565b60005b838110156136f7578154818901526001820191506020810190506136d8565b838801955050505b50505092915050565b6000613715602583613f86565b915061372082614364565b604082019050919050565b6000613738603283613f86565b9150613743826143b3565b604082019050919050565b600061375b602683613f86565b915061376682614402565b604082019050919050565b600061377e601c83613f86565b915061378982614451565b602082019050919050565b60006137a1602483613f86565b91506137ac8261447a565b604082019050919050565b60006137c4601983613f86565b91506137cf826144c9565b602082019050919050565b60006137e7602383613f86565b91506137f2826144f2565b604082019050919050565b600061380a602683613f86565b915061381582614541565b604082019050919050565b600061382d602c83613f86565b915061383882614590565b604082019050919050565b6000613850601783613f86565b915061385b826145df565b602082019050919050565b6000613873603883613f86565b915061387e82614608565b604082019050919050565b6000613896602a83613f86565b91506138a182614657565b604082019050919050565b60006138b9602983613f86565b91506138c4826146a6565b604082019050919050565b60006138dc602383613f86565b91506138e7826146f5565b604082019050919050565b60006138ff602083613f86565b915061390a82614744565b602082019050919050565b6000613922602c83613f86565b915061392d8261476d565b604082019050919050565b6000613945602083613f86565b9150613950826147bc565b602082019050919050565b6000613968602983613f86565b9150613973826147e5565b604082019050919050565b600061398b602f83613f86565b915061399682614834565b604082019050919050565b60006139ae601983613f86565b91506139b982614883565b602082019050919050565b60006139d1602183613f86565b91506139dc826148ac565b604082019050919050565b60006139f4600083613f7b565b91506139ff826148fb565b600082019050919050565b6000613a17603183613f86565b9150613a22826148fe565b604082019050919050565b6000613a3a601083613f86565b9150613a458261494d565b602082019050919050565b6000613a5d602183613f86565b9150613a6882614976565b604082019050919050565b613a7c81614121565b82525050565b6000613a8e8286613658565b9150613a9a8285613658565b9150613aa68284613689565b9150819050949350505050565b6000613abf8286613689565b9150613acb8285613658565b9150613ad78284613689565b9150819050949350505050565b6000613aef826139e7565b9150819050919050565b6000602082019050613b0e60008301846135c8565b92915050565b6000608082019050613b2960008301876135c8565b613b3660208301866135c8565b613b436040830185613a73565b8181036060830152613b5581846135e6565b905095945050505050565b6000602082019050613b7560008301846135d7565b92915050565b60006020820190508181036000830152613b95818461361f565b905092915050565b60006020820190508181036000830152613bb681613708565b9050919050565b60006020820190508181036000830152613bd68161372b565b9050919050565b60006020820190508181036000830152613bf68161374e565b9050919050565b60006020820190508181036000830152613c1681613771565b9050919050565b60006020820190508181036000830152613c3681613794565b9050919050565b60006020820190508181036000830152613c56816137b7565b9050919050565b60006020820190508181036000830152613c76816137da565b9050919050565b60006020820190508181036000830152613c96816137fd565b9050919050565b60006020820190508181036000830152613cb681613820565b9050919050565b60006020820190508181036000830152613cd681613843565b9050919050565b60006020820190508181036000830152613cf681613866565b9050919050565b60006020820190508181036000830152613d1681613889565b9050919050565b60006020820190508181036000830152613d36816138ac565b9050919050565b60006020820190508181036000830152613d56816138cf565b9050919050565b60006020820190508181036000830152613d76816138f2565b9050919050565b60006020820190508181036000830152613d9681613915565b9050919050565b60006020820190508181036000830152613db681613938565b9050919050565b60006020820190508181036000830152613dd68161395b565b9050919050565b60006020820190508181036000830152613df68161397e565b9050919050565b60006020820190508181036000830152613e16816139a1565b9050919050565b60006020820190508181036000830152613e36816139c4565b9050919050565b60006020820190508181036000830152613e5681613a0a565b9050919050565b60006020820190508181036000830152613e7681613a2d565b9050919050565b60006020820190508181036000830152613e9681613a50565b9050919050565b6000602082019050613eb26000830184613a73565b92915050565b6000613ec2613ed3565b9050613ece828261419f565b919050565b6000604051905090565b600067ffffffffffffffff821115613ef857613ef7614306565b5b613f0182614353565b9050602081019050919050565b600067ffffffffffffffff821115613f2957613f28614306565b5b613f3282614353565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fad82614121565b9150613fb883614121565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fed57613fec61424a565b5b828201905092915050565b600061400382614121565b915061400e83614121565b92508261401e5761401d614279565b5b828204905092915050565b600061403482614121565b915061403f83614121565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140785761407761424a565b5b828202905092915050565b600061408e82614121565b915061409983614121565b9250828210156140ac576140ab61424a565b5b828203905092915050565b60006140c282614101565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561415857808201518184015260208101905061413d565b83811115614167576000848401525b50505050565b6000600282049050600182168061418557607f821691505b60208210811415614199576141986142a8565b5b50919050565b6141a882614353565b810181811067ffffffffffffffff821117156141c7576141c6614306565b5b80604052505050565b60006141db82614121565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561420e5761420d61424a565b5b600182019050919050565b600061422482614121565b915061422f83614121565b92508261423f5761423e614279565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f412073616c6520706572696f64206d7573742062652061637469766520746f2060008201527f636c61696d000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f20636c61696d20617661696c61626c6520666f722074686973206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479207265717565737465642065786365656473206d6178207360008201527f7570706c792e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742073746172746564207965742e00000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5465616d2068617320636c61696d656400000000000000000000000000000000600082015250565b7f457863656564732032302c20746865206d61782071747920706572206d696e7460008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6149ce816140b7565b81146149d957600080fd5b50565b6149e5816140c9565b81146149f057600080fd5b50565b6149fc816140d5565b8114614a0757600080fd5b50565b614a1381614121565b8114614a1e57600080fd5b5056fea2646970667358221220a621f0fdf3d477cb97a5347a0370c6298875b2eb5514ed801f2845f7cba73f5164736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000000f43727970746f4368726973746d617a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094348524953544d415a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f7777772e63727970746f6368726973746d617a2e636f6d2f6170692f63632f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003268747470733a2f2f7777772e63727970746f6368726973746d617a2e636f6d2f6170692f63635f756e72657665616c65642f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f7777772e63727970746f6368726973746d617a2e636f6d2f6170692f63632f636f6e74726163740000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CryptoChristmaz
Arg [1] : _symbol (string): CHRISTMAZ
Arg [2] : _initBaseURI (string): https://www.cryptochristmaz.com/api/cc/
Arg [3] : _initNotRevealedUri (string): https://www.cryptochristmaz.com/api/cc_unrevealed/
Arg [4] : _contractURI_ (string): https://www.cryptochristmaz.com/api/cc/contract

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 43727970746f4368726973746d617a0000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [8] : 4348524953544d415a0000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [10] : 68747470733a2f2f7777772e63727970746f6368726973746d617a2e636f6d2f
Arg [11] : 6170692f63632f00000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [13] : 68747470733a2f2f7777772e63727970746f6368726973746d617a2e636f6d2f
Arg [14] : 6170692f63635f756e72657665616c65642f0000000000000000000000000000
Arg [15] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [16] : 68747470733a2f2f7777772e63727970746f6368726973746d617a2e636f6d2f
Arg [17] : 6170692f63632f636f6e74726163740000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.