ETH Price: $2,604.72 (-2.47%)

Token

TheNormies (NORMIE)
 

Overview

Max Total Supply

10,000 NORMIE

Holders

109

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
omeezy.eth
Balance
1 NORMIE
0x0c6A85f1D3fBe89c91ca47502549D96FC5981c4E
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:
X200

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : X200.sol
pragma solidity ^0.8.0;
//SPDX-License-Identifier: MIT

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./random/RandomlyAssigned.sol";

contract X200 is ERC721, Ownable, RandomlyAssigned, ReentrancyGuard, Pausable {
  using Strings for uint256;

  event mintedId(uint256 message);

  uint256 public currentSupply = 0;
  uint256 public maxMint = 25; 
  uint256 public price = 0.04 ether; // Each token 0.04

  constructor() 
    ERC721("TheNormies", "NORMIE")
    RandomlyAssigned(10000,1)
    {
      for (uint256 a = 1; a <= 10; a++) {
            mint(1);
      }

      // Transactions are paused after deploy
      pause();
    }

  string public baseURI = "https://nft.thenormies.io/";

  function _setBaseURI(string memory _uri) public onlyOwner {
    baseURI = _uri;
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
   
  function mint (uint256 _quantity)
      public
      payable
      nonReentrant
  {
      require( tokenCount() + _quantity <= totalSupply(), "YOU CAN'T MINT MORE THAN MAXIMUM SUPPLY");
      require( availableTokenCount() - _quantity >= 0, "YOU CAN'T MINT MORE THAN AVALABLE TOKEN COUNT");
      require( tx.origin == msg.sender, "CANNOT MINT THROUGH A CUSTOM CONTRACT");

      if (msg.sender != owner()) {  
        require( msg.value >= price * _quantity, "Ether sent is not correct");
        
        require( balanceOf(msg.sender) <= 20);
      }


      for (uint256 i = 1; i <= _quantity ; i++) {

        uint256 id = nextToken();
        _safeMint(msg.sender, id);

        currentSupply++;
        emit mintedId(id);

      }

  }

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

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

  function isAvailable(uint tokenId) public view returns(address){

      require( availableTokenCount() - 1 >= 0, "YOU CAN'T MINT MORE THAN AVALABLE TOKEN COUNT"); 

      address owner = ownerOf(tokenId);

      return owner;
  }
  
  function withdraw() public payable onlyOwner {
    require(payable(msg.sender).send(address(this).balance));
  }

  function pause() public onlyOwner {
    _pause();
  }

  function start() public onlyOwner {
    _unpause();
  }

  function setPrice(uint256 _price) public onlyOwner() {
    price = _price;
  }

  function setMaxMint(uint256 _maxMint) public onlyOwner() {
    maxMint = _maxMint;
  }

 
}

File 2 of 17 : 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 17 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 4 of 17 : 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 5 of 17 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 7 of 17 : RandomlyAssigned.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./WithLimitedSupply.sol";

/// @author 1001.digital
/// @title Randomly assign tokenIDs from a given set of tokens.
abstract contract RandomlyAssigned is WithLimitedSupply {
    // Used for random index assignment
    mapping(uint256 => uint256) private tokenMatrix;

    // The initial token ID
    uint256 private startFrom;

    /// Instanciate the contract
    /// @param _totalSupply how many tokens this collection should hold
    /// @param _startFrom the tokenID with which to start counting
    constructor (uint256 _totalSupply, uint256 _startFrom)
        WithLimitedSupply(_totalSupply)
    {
        startFrom = _startFrom;
    }

    /// Get the next token ID
    /// @dev Randomly gets a new token ID and keeps track of the ones that are still available.
    /// @return the next token ID
    function nextToken() internal override ensureAvailability returns (uint256) {
        uint256 maxIndex = totalSupply() - tokenCount();
        uint256 random = uint256(keccak256(
            abi.encodePacked(
                msg.sender,
                block.coinbase,
                block.difficulty,
                block.gaslimit,
                block.timestamp
            )
        )) % maxIndex;

        uint256 value = 0;
        if (tokenMatrix[random] == 0) {
            // If this matrix position is empty, set the value to the generated random number.
            value = random;
        } else {
            // Otherwise, use the previously stored number from the matrix.
            value = tokenMatrix[random];
        }

        // If the last available tokenID is still unused...
        if (tokenMatrix[maxIndex - 1] == 0) {
            // ...store that ID in the current matrix position.
            tokenMatrix[random] = maxIndex - 1;
        } else {
            // ...otherwise copy over the stored number to the current matrix position.
            tokenMatrix[random] = tokenMatrix[maxIndex - 1];
        }

        // Increment counts
        super.nextToken();

        return value + startFrom;
    }
}

File 8 of 17 : 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 9 of 17 : 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 10 of 17 : 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 11 of 17 : 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 12 of 17 : 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 13 of 17 : 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 14 of 17 : 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 15 of 17 : 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);
}

File 16 of 17 : WithLimitedSupply.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Counters.sol";

/// @author 1001.digital
/// @title A token tracker that limits the token supply and increments token IDs on each new mint.
abstract contract WithLimitedSupply {
    using Counters for Counters.Counter;

    // Keeps track of how many we have minted
    Counters.Counter private _tokenCount;

    /// @dev The maximum count of tokens this token tracker will hold.
    uint256 private _totalSupply;

    /// Instanciate the contract
    /// @param totalSupply_ how many tokens this collection should hold
    constructor (uint256 totalSupply_) {
        _totalSupply = totalSupply_;
    }

    /// @dev Get the max Supply
    /// @return the maximum token count
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /// @dev Get the current token count
    /// @return the created token count
    function tokenCount() public view returns (uint256) {
        return _tokenCount.current();
    }

    /// @dev Check whether tokens are still available
    /// @return the available token count
    function availableTokenCount() public view returns (uint256) {
        return totalSupply() - tokenCount();
    }

    /// @dev Increment the token count and fetch the latest count
    /// @return the next token id
    function nextToken() internal virtual ensureAvailability returns (uint256) {
        uint256 token = _tokenCount.current();

        _tokenCount.increment();

        return token;
    }

    /// @dev Check whether another token is still available
    modifier ensureAvailability() {
        require(availableTokenCount() > 0, "No more tokens available");
        _;
    }

    /// @param amount Check whether number of tokens are still available
    /// @dev Check whether tokens are still available
    modifier ensureAvailabilityFor(uint256 amount) {
        require(availableTokenCount() >= amount, "Requested number of tokens not available");
        _;
    }
}

File 17 of 17 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"message","type":"uint256"}],"name":"mintedId","type":"event"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"_setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isAvailable","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","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":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600d556019600e55668e1bc9bf040000600f556040518060400160405280601a81526020017f68747470733a2f2f6e66742e7468656e6f726d6965732e696f2f000000000000815250601090805190602001906200006692919062000f68565b503480156200007457600080fd5b506127106001816040518060400160405280600a81526020017f5468654e6f726d696573000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e4f524d494500000000000000000000000000000000000000000000000000008152508160009080519060200190620000ff92919062000f68565b5080600190805190602001906200011892919062000f68565b5050506200013b6200012f620001be60201b60201c565b620001c660201b60201c565b806008819055505080600a8190555050506001600b819055506000600c60006101000a81548160ff0219169083151502179055506000600190505b600a8111620001a7576200019160016200028c60201b60201c565b80806200019e9062001782565b91505062000176565b50620001b86200058560201b60201c565b62001bbd565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6002600b541415620002d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cc9062001533565b60405180910390fd5b6002600b81905550620002ed6200062660201b60201c565b81620002fe6200063060201b60201c565b6200030a91906200159f565b11156200034e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034590620014ab565b60405180910390fd5b600081620003616200064e60201b60201c565b6200036d91906200165d565b1015620003b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a89062001423565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161462000422576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004199062001401565b60405180910390fd5b620004326200068160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620004da5780600f54620004759190620015fc565b341015620004ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b19062001511565b60405180910390fd5b6014620004cd33620006ab60201b60201c565b1115620004d957600080fd5b5b6000600190505b81811162000579576000620004fb6200076660201b60201c565b90506200050f33826200092e60201b60201c565b600d6000815480929190620005249062001782565b91905055507f9b17d8d4fdc23926c90ecc00f85db55975149ac3c8e0866b5b684af7692daa0f816040516200055a919062001555565b60405180910390a1508080620005709062001782565b915050620004e1565b506001600b8190555050565b62000595620001be60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005bb6200068160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000614576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200060b90620014ef565b60405180910390fd5b620006246200095460201b60201c565b565b6000600854905090565b600062000649600762000a0c60201b6200179f1760201c565b905090565b6000620006606200063060201b60201c565b620006706200062660201b60201c565b6200067c91906200165d565b905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200071f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007169062001489565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080620007796200064e60201b60201c565b11620007bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b39062001445565b60405180910390fd5b6000620007ce6200063060201b60201c565b620007de6200062660201b60201c565b620007ea91906200165d565b905060008133414445426040516020016200080a959493929190620012e3565b6040516020818303038152906040528051906020012060001c6200082f919062001816565b90506000806009600084815260200190815260200160002054141562000858578190506200086f565b600960008381526020019081526020016000205490505b6000600960006001866200088491906200165d565b8152602001908152602001600020541415620008c657600183620008a991906200165d565b600960008481526020019081526020016000208190555062000900565b60096000600185620008d991906200165d565b81526020019081526020016000205460096000848152602001908152602001600020819055505b6200091562000a1a60201b620017ad1760201c565b50600a54816200092691906200159f565b935050505090565b6200095082826040518060200160405280600081525062000aa960201b60201c565b5050565b6200096462000b1760201b60201c565b15620009a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200099e9062001467565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620009f3620001be60201b60201c565b60405162000a0291906200134c565b60405180910390a1565b600081600001549050919050565b60008062000a2d6200064e60201b60201c565b1162000a70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a679062001445565b60405180910390fd5b600062000a89600762000a0c60201b6200179f1760201c565b905062000aa2600762000b2e60201b620018171760201c565b8091505090565b62000abb838362000b4460201b60201c565b62000ad0600084848462000d2a60201b60201c565b62000b12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b0990620013bd565b60405180910390fd5b505050565b6000600c60009054906101000a900460ff16905090565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000bb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bae90620014cd565b60405180910390fd5b62000bc88162000ee460201b60201c565b1562000c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c0290620013df565b60405180910390fd5b62000c1f6000838362000f5060201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000c7191906200159f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600062000d588473ffffffffffffffffffffffffffffffffffffffff1662000f5560201b6200182d1760201c565b1562000ed7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000d8a620001be60201b60201c565b8786866040518563ffffffff1660e01b815260040162000dae949392919062001369565b602060405180830381600087803b15801562000dc957600080fd5b505af192505050801562000dfd57506040513d601f19601f8201168201806040525081019062000dfa91906200102f565b60015b62000e86573d806000811462000e30576040519150601f19603f3d011682016040523d82523d6000602084013e62000e35565b606091505b5060008151141562000e7e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e7590620013bd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000edc565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b82805462000f76906200174c565b90600052602060002090601f01602090048101928262000f9a576000855562000fe6565b82601f1062000fb557805160ff191683800117855562000fe6565b8280016001018555821562000fe6579182015b8281111562000fe557825182559160200191906001019062000fc8565b5b50905062000ff5919062000ff9565b5090565b5b808211156200101457600081600090555060010162000ffa565b5090565b600081519050620010298162001ba3565b92915050565b6000602082840312156200104257600080fd5b6000620010528482850162001018565b91505092915050565b620010706200106a82620016ac565b620017e4565b82525050565b620010818162001698565b82525050565b6200109c620010968262001698565b620017d0565b82525050565b6000620010af8262001572565b620010bb81856200157d565b9350620010cd81856020860162001716565b620010d881620018db565b840191505092915050565b6000620010f26032836200158e565b9150620010ff82620018f9565b604082019050919050565b600062001119601c836200158e565b9150620011268262001948565b602082019050919050565b6000620011406025836200158e565b91506200114d8262001971565b604082019050919050565b600062001167602d836200158e565b91506200117482620019c0565b604082019050919050565b60006200118e6018836200158e565b91506200119b8262001a0f565b602082019050919050565b6000620011b56010836200158e565b9150620011c28262001a38565b602082019050919050565b6000620011dc602a836200158e565b9150620011e98262001a61565b604082019050919050565b6000620012036027836200158e565b9150620012108262001ab0565b604082019050919050565b60006200122a6020836200158e565b9150620012378262001aff565b602082019050919050565b6000620012516020836200158e565b91506200125e8262001b28565b602082019050919050565b6000620012786019836200158e565b9150620012858262001b51565b602082019050919050565b60006200129f601f836200158e565b9150620012ac8262001b7a565b602082019050919050565b620012c2816200170c565b82525050565b620012dd620012d7826200170c565b6200180c565b82525050565b6000620012f1828862001087565b6014820191506200130382876200105b565b601482019150620013158286620012c8565b602082019150620013278285620012c8565b602082019150620013398284620012c8565b6020820191508190509695505050505050565b600060208201905062001363600083018462001076565b92915050565b600060808201905062001380600083018762001076565b6200138f602083018662001076565b6200139e6040830185620012b7565b8181036060830152620013b28184620010a2565b905095945050505050565b60006020820190508181036000830152620013d881620010e3565b9050919050565b60006020820190508181036000830152620013fa816200110a565b9050919050565b600060208201905081810360008301526200141c8162001131565b9050919050565b600060208201905081810360008301526200143e8162001158565b9050919050565b6000602082019050818103600083015262001460816200117f565b9050919050565b600060208201905081810360008301526200148281620011a6565b9050919050565b60006020820190508181036000830152620014a481620011cd565b9050919050565b60006020820190508181036000830152620014c681620011f4565b9050919050565b60006020820190508181036000830152620014e8816200121b565b9050919050565b600060208201905081810360008301526200150a8162001242565b9050919050565b600060208201905081810360008301526200152c8162001269565b9050919050565b600060208201905081810360008301526200154e8162001290565b9050919050565b60006020820190506200156c6000830184620012b7565b92915050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620015ac826200170c565b9150620015b9836200170c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620015f157620015f06200184e565b5b828201905092915050565b600062001609826200170c565b915062001616836200170c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200165257620016516200184e565b5b828202905092915050565b60006200166a826200170c565b915062001677836200170c565b9250828210156200168d576200168c6200184e565b5b828203905092915050565b6000620016a582620016ec565b9050919050565b6000620016b982620016ec565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200173657808201518184015260208101905062001719565b8381111562001746576000848401525b50505050565b600060028204905060018216806200176557607f821691505b602082108114156200177c576200177b620018ac565b5b50919050565b60006200178f826200170c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620017c557620017c46200184e565b5b600182019050919050565b6000620017dd82620017f8565b9050919050565b6000620017f182620017f8565b9050919050565b60006200180582620018ec565b9050919050565b6000819050919050565b600062001823826200170c565b915062001830836200170c565b9250826200184357620018426200187d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43414e4e4f54204d494e54205448524f554748204120435553544f4d20434f4e60008201527f5452414354000000000000000000000000000000000000000000000000000000602082015250565b7f594f552043414e2754204d494e54204d4f5245205448414e204156414c41424c60008201527f4520544f4b454e20434f554e5400000000000000000000000000000000000000602082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f594f552043414e2754204d494e54204d4f5245205448414e204d4158494d554d60008201527f20535550504c5900000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b62001bae81620016c0565b811462001bba57600080fd5b50565b61410c8062001bcd6000396000f3fe6080604052600436106101e35760003560e01c80637501f74111610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461067a578063e14ca353146106b7578063e985e9c5146106e2578063f2fde38b1461071f576101e3565b8063a0712d68146105f5578063a22cb46514610611578063b88d4fde1461063a578063be9a655514610663576101e3565b806391b7f5ed116100d157806391b7f5ed1461054b57806395d89b41146105745780639f181b5e1461059f578063a035b1fe146105ca576101e3565b80637501f741146104b3578063771282f6146104de5780638456cb59146105095780638da5cb5b14610520576101e3565b80633ccfd60b1161017a5780636352211e116101495780636352211e146103f75780636c0360eb1461043457806370a082311461045f578063715018a61461049c576101e3565b80633ccfd60b1461037057806342842e0e1461037a578063547520fe146103a35780635c975abb146103cc576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e157806331b5b9071461030a5780633a178d9914610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612c18565b610748565b60405161021c9190613249565b60405180910390f35b34801561023157600080fd5b5061023a61082a565b6040516102479190613264565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612cab565b6108bc565b60405161028491906131e2565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612bdc565b610941565b005b3480156102c257600080fd5b506102cb610a59565b6040516102d89190613586565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612ad6565b610a63565b005b34801561031657600080fd5b50610331600480360381019061032c9190612c6a565b610ac3565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612cab565b610b59565b60405161036791906131e2565b60405180910390f35b610378610bc7565b005b34801561038657600080fd5b506103a1600480360381019061039c9190612ad6565b610c83565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612cab565b610ca3565b005b3480156103d857600080fd5b506103e1610d29565b6040516103ee9190613249565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190612cab565b610d40565b60405161042b91906131e2565b60405180910390f35b34801561044057600080fd5b50610449610df2565b6040516104569190613264565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612a71565b610e80565b6040516104939190613586565b60405180910390f35b3480156104a857600080fd5b506104b1610f38565b005b3480156104bf57600080fd5b506104c8610fc0565b6040516104d59190613586565b60405180910390f35b3480156104ea57600080fd5b506104f3610fc6565b6040516105009190613586565b60405180910390f35b34801561051557600080fd5b5061051e610fcc565b005b34801561052c57600080fd5b50610535611052565b60405161054291906131e2565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190612cab565b61107c565b005b34801561058057600080fd5b50610589611102565b6040516105969190613264565b60405180910390f35b3480156105ab57600080fd5b506105b4611194565b6040516105c19190613586565b60405180910390f35b3480156105d657600080fd5b506105df6111a5565b6040516105ec9190613586565b60405180910390f35b61060f600480360381019061060a9190612cab565b6111ab565b005b34801561061d57600080fd5b5061063860048036038101906106339190612ba0565b61144d565b005b34801561064657600080fd5b50610661600480360381019061065c9190612b25565b611463565b005b34801561066f57600080fd5b506106786114c5565b005b34801561068657600080fd5b506106a1600480360381019061069c9190612cab565b61154b565b6040516106ae9190613264565b60405180910390f35b3480156106c357600080fd5b506106cc6115f2565b6040516106d99190613586565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190612a9a565b611613565b6040516107169190613249565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190612a71565b6116a7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610823575061082282611840565b5b9050919050565b60606000805461083990613848565b80601f016020809104026020016040519081016040528092919081815260200182805461086590613848565b80156108b25780601f10610887576101008083540402835291602001916108b2565b820191906000526020600020905b81548152906001019060200180831161089557829003601f168201915b5050505050905090565b60006108c7826118aa565b610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90613486565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094c82610d40565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b490613506565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109dc611916565b73ffffffffffffffffffffffffffffffffffffffff161480610a0b5750610a0a81610a05611916565b611613565b5b610a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a41906133e6565b60405180910390fd5b610a54838361191e565b505050565b6000600854905090565b610a74610a6e611916565b826119d7565b610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90613546565b60405180910390fd5b610abe838383611ab5565b505050565b610acb611916565b73ffffffffffffffffffffffffffffffffffffffff16610ae9611052565b73ffffffffffffffffffffffffffffffffffffffff1614610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b36906134a6565b60405180910390fd5b8060109080519060200190610b55929190612895565b5050565b6000806001610b666115f2565b610b70919061374c565b1015610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890613326565b60405180910390fd5b6000610bbc83610d40565b905080915050919050565b610bcf611916565b73ffffffffffffffffffffffffffffffffffffffff16610bed611052565b73ffffffffffffffffffffffffffffffffffffffff1614610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a906134a6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c8157600080fd5b565b610c9e83838360405180602001604052806000815250611463565b505050565b610cab611916565b73ffffffffffffffffffffffffffffffffffffffff16610cc9611052565b73ffffffffffffffffffffffffffffffffffffffff1614610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d16906134a6565b60405180910390fd5b80600e8190555050565b6000600c60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de090613426565b60405180910390fd5b80915050919050565b60108054610dff90613848565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2b90613848565b8015610e785780601f10610e4d57610100808354040283529160200191610e78565b820191906000526020600020905b815481529060010190602001808311610e5b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890613406565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f40611916565b73ffffffffffffffffffffffffffffffffffffffff16610f5e611052565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab906134a6565b60405180910390fd5b610fbe6000611d11565b565b600e5481565b600d5481565b610fd4611916565b73ffffffffffffffffffffffffffffffffffffffff16610ff2611052565b73ffffffffffffffffffffffffffffffffffffffff1614611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f906134a6565b60405180910390fd5b611050611dd7565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611084611916565b73ffffffffffffffffffffffffffffffffffffffff166110a2611052565b73ffffffffffffffffffffffffffffffffffffffff16146110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef906134a6565b60405180910390fd5b80600f8190555050565b60606001805461111190613848565b80601f016020809104026020016040519081016040528092919081815260200182805461113d90613848565b801561118a5780601f1061115f5761010080835404028352916020019161118a565b820191906000526020600020905b81548152906001019060200180831161116d57829003601f168201915b5050505050905090565b60006111a0600761179f565b905090565b600f5481565b6002600b5414156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613566565b60405180910390fd5b6002600b81905550611201610a59565b8161120a611194565b611214919061366b565b1115611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90613446565b60405180910390fd5b6000816112606115f2565b61126a919061374c565b10156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290613326565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090613306565b60405180910390fd5b611321611052565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113ba5780600f5461136191906136f2565b3410156113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90613526565b60405180910390fd5b60146113ae33610e80565b11156113b957600080fd5b5b6000600190505b8181116114415760006113d2611e7a565b90506113de3382612008565b600d60008154809291906113f1906138ab565b91905055507f9b17d8d4fdc23926c90ecc00f85db55975149ac3c8e0866b5b684af7692daa0f816040516114259190613586565b60405180910390a1508080611439906138ab565b9150506113c1565b506001600b8190555050565b61145f611458611916565b8383612026565b5050565b61147461146e611916565b836119d7565b6114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613546565b60405180910390fd5b6114bf84848484612193565b50505050565b6114cd611916565b73ffffffffffffffffffffffffffffffffffffffff166114eb611052565b73ffffffffffffffffffffffffffffffffffffffff1614611541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611538906134a6565b60405180910390fd5b6115496121ef565b565b6060611556826118aa565b611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c906134c6565b60405180910390fd5b600061159f612291565b905060008151116115bf57604051806020016040528060008152506115ea565b806115c984612323565b6040516020016115da9291906131b3565b6040516020818303038152906040525b915050919050565b60006115fc611194565b611604610a59565b61160e919061374c565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116af611916565b73ffffffffffffffffffffffffffffffffffffffff166116cd611052565b73ffffffffffffffffffffffffffffffffffffffff1614611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a906134a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a906132c6565b60405180910390fd5b61179c81611d11565b50565b600081600001549050919050565b6000806117b86115f2565b116117f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ef90613386565b60405180910390fd5b6000611804600761179f565b90506118106007611817565b8091505090565b6001816000016000828254019250508190555050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661199183610d40565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119e2826118aa565b611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a18906133a6565b60405180910390fd5b6000611a2c83610d40565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a9b57508373ffffffffffffffffffffffffffffffffffffffff16611a83846108bc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611aac5750611aab8185611613565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ad582610d40565b73ffffffffffffffffffffffffffffffffffffffff1614611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b22906134e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9290613346565b60405180910390fd5b611ba68383836124d0565b611bb160008261191e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c01919061374c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c58919061366b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ddf610d29565b15611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e16906133c6565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e63611916565b604051611e7091906131e2565b60405180910390a1565b600080611e856115f2565b11611ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebc90613386565b60405180910390fd5b6000611ecf611194565b611ed7610a59565b611ee1919061374c565b90506000813341444542604051602001611eff959493929190613154565b6040516020818303038152906040528051906020012060001c611f229190613934565b905060008060096000848152602001908152602001600020541415611f4957819050611f60565b600960008381526020019081526020016000205490505b600060096000600186611f73919061374c565b8152602001908152602001600020541415611fb157600183611f95919061374c565b6009600084815260200190815260200160002081905550611fe9565b60096000600185611fc2919061374c565b81526020019081526020016000205460096000848152602001908152602001600020819055505b611ff16117ad565b50600a5481612000919061366b565b935050505090565b6120228282604051806020016040528060008152506124d5565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208c90613366565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121869190613249565b60405180910390a3505050565b61219e848484611ab5565b6121aa84848484612530565b6121e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e0906132a6565b60405180910390fd5b50505050565b6121f7610d29565b612236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222d90613286565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61227a611916565b60405161228791906131e2565b60405180910390a1565b6060601080546122a090613848565b80601f01602080910402602001604051908101604052809291908181526020018280546122cc90613848565b80156123195780601f106122ee57610100808354040283529160200191612319565b820191906000526020600020905b8154815290600101906020018083116122fc57829003601f168201915b5050505050905090565b6060600082141561236b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124cb565b600082905060005b6000821461239d578080612386906138ab565b915050600a8261239691906136c1565b9150612373565b60008167ffffffffffffffff8111156123df577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124115781602001600182028036833780820191505090505b5090505b600085146124c45760018261242a919061374c565b9150600a856124399190613934565b6030612445919061366b565b60f81b818381518110612481577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124bd91906136c1565b9450612415565b8093505050505b919050565b505050565b6124df83836126c7565b6124ec6000848484612530565b61252b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612522906132a6565b60405180910390fd5b505050565b60006125518473ffffffffffffffffffffffffffffffffffffffff1661182d565b156126ba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261257a611916565b8786866040518563ffffffff1660e01b815260040161259c94939291906131fd565b602060405180830381600087803b1580156125b657600080fd5b505af19250505080156125e757506040513d601f19601f820116820180604052508101906125e49190612c41565b60015b61266a573d8060008114612617576040519150601f19603f3d011682016040523d82523d6000602084013e61261c565b606091505b50600081511415612662576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612659906132a6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126bf565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272e90613466565b60405180910390fd5b612740816118aa565b15612780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612777906132e6565b60405180910390fd5b61278c600083836124d0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127dc919061366b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546128a190613848565b90600052602060002090601f0160209004810192826128c3576000855561290a565b82601f106128dc57805160ff191683800117855561290a565b8280016001018555821561290a579182015b828111156129095782518255916020019190600101906128ee565b5b509050612917919061291b565b5090565b5b8082111561293457600081600090555060010161291c565b5090565b600061294b612946846135c6565b6135a1565b90508281526020810184848401111561296357600080fd5b61296e848285613806565b509392505050565b6000612989612984846135f7565b6135a1565b9050828152602081018484840111156129a157600080fd5b6129ac848285613806565b509392505050565b6000813590506129c38161407a565b92915050565b6000813590506129d881614091565b92915050565b6000813590506129ed816140a8565b92915050565b600081519050612a02816140a8565b92915050565b600082601f830112612a1957600080fd5b8135612a29848260208601612938565b91505092915050565b600082601f830112612a4357600080fd5b8135612a53848260208601612976565b91505092915050565b600081359050612a6b816140bf565b92915050565b600060208284031215612a8357600080fd5b6000612a91848285016129b4565b91505092915050565b60008060408385031215612aad57600080fd5b6000612abb858286016129b4565b9250506020612acc858286016129b4565b9150509250929050565b600080600060608486031215612aeb57600080fd5b6000612af9868287016129b4565b9350506020612b0a868287016129b4565b9250506040612b1b86828701612a5c565b9150509250925092565b60008060008060808587031215612b3b57600080fd5b6000612b49878288016129b4565b9450506020612b5a878288016129b4565b9350506040612b6b87828801612a5c565b925050606085013567ffffffffffffffff811115612b8857600080fd5b612b9487828801612a08565b91505092959194509250565b60008060408385031215612bb357600080fd5b6000612bc1858286016129b4565b9250506020612bd2858286016129c9565b9150509250929050565b60008060408385031215612bef57600080fd5b6000612bfd858286016129b4565b9250506020612c0e85828601612a5c565b9150509250929050565b600060208284031215612c2a57600080fd5b6000612c38848285016129de565b91505092915050565b600060208284031215612c5357600080fd5b6000612c61848285016129f3565b91505092915050565b600060208284031215612c7c57600080fd5b600082013567ffffffffffffffff811115612c9657600080fd5b612ca284828501612a32565b91505092915050565b600060208284031215612cbd57600080fd5b6000612ccb84828501612a5c565b91505092915050565b612ce5612ce082613792565b613906565b82525050565b612cf481613780565b82525050565b612d0b612d0682613780565b6138f4565b82525050565b612d1a816137a4565b82525050565b6000612d2b82613628565b612d35818561363e565b9350612d45818560208601613815565b612d4e81613a21565b840191505092915050565b6000612d6482613633565b612d6e818561364f565b9350612d7e818560208601613815565b612d8781613a21565b840191505092915050565b6000612d9d82613633565b612da78185613660565b9350612db7818560208601613815565b80840191505092915050565b6000612dd060148361364f565b9150612ddb82613a3f565b602082019050919050565b6000612df360328361364f565b9150612dfe82613a68565b604082019050919050565b6000612e1660268361364f565b9150612e2182613ab7565b604082019050919050565b6000612e39601c8361364f565b9150612e4482613b06565b602082019050919050565b6000612e5c60258361364f565b9150612e6782613b2f565b604082019050919050565b6000612e7f602d8361364f565b9150612e8a82613b7e565b604082019050919050565b6000612ea260248361364f565b9150612ead82613bcd565b604082019050919050565b6000612ec560198361364f565b9150612ed082613c1c565b602082019050919050565b6000612ee860188361364f565b9150612ef382613c45565b602082019050919050565b6000612f0b602c8361364f565b9150612f1682613c6e565b604082019050919050565b6000612f2e60108361364f565b9150612f3982613cbd565b602082019050919050565b6000612f5160388361364f565b9150612f5c82613ce6565b604082019050919050565b6000612f74602a8361364f565b9150612f7f82613d35565b604082019050919050565b6000612f9760298361364f565b9150612fa282613d84565b604082019050919050565b6000612fba60278361364f565b9150612fc582613dd3565b604082019050919050565b6000612fdd60208361364f565b9150612fe882613e22565b602082019050919050565b6000613000602c8361364f565b915061300b82613e4b565b604082019050919050565b6000613023600583613660565b915061302e82613e9a565b600582019050919050565b600061304660208361364f565b915061305182613ec3565b602082019050919050565b6000613069602f8361364f565b915061307482613eec565b604082019050919050565b600061308c60298361364f565b915061309782613f3b565b604082019050919050565b60006130af60218361364f565b91506130ba82613f8a565b604082019050919050565b60006130d260198361364f565b91506130dd82613fd9565b602082019050919050565b60006130f560318361364f565b915061310082614002565b604082019050919050565b6000613118601f8361364f565b915061312382614051565b602082019050919050565b613137816137fc565b82525050565b61314e613149826137fc565b61392a565b82525050565b60006131608288612cfa565b6014820191506131708287612cd4565b601482019150613180828661313d565b602082019150613190828561313d565b6020820191506131a0828461313d565b6020820191508190509695505050505050565b60006131bf8285612d92565b91506131cb8284612d92565b91506131d682613016565b91508190509392505050565b60006020820190506131f76000830184612ceb565b92915050565b60006080820190506132126000830187612ceb565b61321f6020830186612ceb565b61322c604083018561312e565b818103606083015261323e8184612d20565b905095945050505050565b600060208201905061325e6000830184612d11565b92915050565b6000602082019050818103600083015261327e8184612d59565b905092915050565b6000602082019050818103600083015261329f81612dc3565b9050919050565b600060208201905081810360008301526132bf81612de6565b9050919050565b600060208201905081810360008301526132df81612e09565b9050919050565b600060208201905081810360008301526132ff81612e2c565b9050919050565b6000602082019050818103600083015261331f81612e4f565b9050919050565b6000602082019050818103600083015261333f81612e72565b9050919050565b6000602082019050818103600083015261335f81612e95565b9050919050565b6000602082019050818103600083015261337f81612eb8565b9050919050565b6000602082019050818103600083015261339f81612edb565b9050919050565b600060208201905081810360008301526133bf81612efe565b9050919050565b600060208201905081810360008301526133df81612f21565b9050919050565b600060208201905081810360008301526133ff81612f44565b9050919050565b6000602082019050818103600083015261341f81612f67565b9050919050565b6000602082019050818103600083015261343f81612f8a565b9050919050565b6000602082019050818103600083015261345f81612fad565b9050919050565b6000602082019050818103600083015261347f81612fd0565b9050919050565b6000602082019050818103600083015261349f81612ff3565b9050919050565b600060208201905081810360008301526134bf81613039565b9050919050565b600060208201905081810360008301526134df8161305c565b9050919050565b600060208201905081810360008301526134ff8161307f565b9050919050565b6000602082019050818103600083015261351f816130a2565b9050919050565b6000602082019050818103600083015261353f816130c5565b9050919050565b6000602082019050818103600083015261355f816130e8565b9050919050565b6000602082019050818103600083015261357f8161310b565b9050919050565b600060208201905061359b600083018461312e565b92915050565b60006135ab6135bc565b90506135b7828261387a565b919050565b6000604051905090565b600067ffffffffffffffff8211156135e1576135e06139f2565b5b6135ea82613a21565b9050602081019050919050565b600067ffffffffffffffff821115613612576136116139f2565b5b61361b82613a21565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613676826137fc565b9150613681836137fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136b6576136b5613965565b5b828201905092915050565b60006136cc826137fc565b91506136d7836137fc565b9250826136e7576136e6613994565b5b828204905092915050565b60006136fd826137fc565b9150613708836137fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561374157613740613965565b5b828202905092915050565b6000613757826137fc565b9150613762836137fc565b92508282101561377557613774613965565b5b828203905092915050565b600061378b826137dc565b9050919050565b600061379d826137dc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613833578082015181840152602081019050613818565b83811115613842576000848401525b50505050565b6000600282049050600182168061386057607f821691505b60208210811415613874576138736139c3565b5b50919050565b61388382613a21565b810181811067ffffffffffffffff821117156138a2576138a16139f2565b5b80604052505050565b60006138b6826137fc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138e9576138e8613965565b5b600182019050919050565b60006138ff82613918565b9050919050565b600061391182613918565b9050919050565b600061392382613a32565b9050919050565b6000819050919050565b600061393f826137fc565b915061394a836137fc565b92508261395a57613959613994565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43414e4e4f54204d494e54205448524f554748204120435553544f4d20434f4e60008201527f5452414354000000000000000000000000000000000000000000000000000000602082015250565b7f594f552043414e2754204d494e54204d4f5245205448414e204156414c41424c60008201527f4520544f4b454e20434f554e5400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f594f552043414e2754204d494e54204d4f5245205448414e204d4158494d554d60008201527f20535550504c5900000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374616e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61408381613780565b811461408e57600080fd5b50565b61409a816137a4565b81146140a557600080fd5b50565b6140b1816137b0565b81146140bc57600080fd5b50565b6140c8816137fc565b81146140d357600080fd5b5056fea2646970667358221220e15ff5b17589c8b85d6668fa722d7826bf6f396a99798754b373c0d1ab50444864736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80637501f74111610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461067a578063e14ca353146106b7578063e985e9c5146106e2578063f2fde38b1461071f576101e3565b8063a0712d68146105f5578063a22cb46514610611578063b88d4fde1461063a578063be9a655514610663576101e3565b806391b7f5ed116100d157806391b7f5ed1461054b57806395d89b41146105745780639f181b5e1461059f578063a035b1fe146105ca576101e3565b80637501f741146104b3578063771282f6146104de5780638456cb59146105095780638da5cb5b14610520576101e3565b80633ccfd60b1161017a5780636352211e116101495780636352211e146103f75780636c0360eb1461043457806370a082311461045f578063715018a61461049c576101e3565b80633ccfd60b1461037057806342842e0e1461037a578063547520fe146103a35780635c975abb146103cc576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e157806331b5b9071461030a5780633a178d9914610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612c18565b610748565b60405161021c9190613249565b60405180910390f35b34801561023157600080fd5b5061023a61082a565b6040516102479190613264565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612cab565b6108bc565b60405161028491906131e2565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612bdc565b610941565b005b3480156102c257600080fd5b506102cb610a59565b6040516102d89190613586565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612ad6565b610a63565b005b34801561031657600080fd5b50610331600480360381019061032c9190612c6a565b610ac3565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612cab565b610b59565b60405161036791906131e2565b60405180910390f35b610378610bc7565b005b34801561038657600080fd5b506103a1600480360381019061039c9190612ad6565b610c83565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612cab565b610ca3565b005b3480156103d857600080fd5b506103e1610d29565b6040516103ee9190613249565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190612cab565b610d40565b60405161042b91906131e2565b60405180910390f35b34801561044057600080fd5b50610449610df2565b6040516104569190613264565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612a71565b610e80565b6040516104939190613586565b60405180910390f35b3480156104a857600080fd5b506104b1610f38565b005b3480156104bf57600080fd5b506104c8610fc0565b6040516104d59190613586565b60405180910390f35b3480156104ea57600080fd5b506104f3610fc6565b6040516105009190613586565b60405180910390f35b34801561051557600080fd5b5061051e610fcc565b005b34801561052c57600080fd5b50610535611052565b60405161054291906131e2565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190612cab565b61107c565b005b34801561058057600080fd5b50610589611102565b6040516105969190613264565b60405180910390f35b3480156105ab57600080fd5b506105b4611194565b6040516105c19190613586565b60405180910390f35b3480156105d657600080fd5b506105df6111a5565b6040516105ec9190613586565b60405180910390f35b61060f600480360381019061060a9190612cab565b6111ab565b005b34801561061d57600080fd5b5061063860048036038101906106339190612ba0565b61144d565b005b34801561064657600080fd5b50610661600480360381019061065c9190612b25565b611463565b005b34801561066f57600080fd5b506106786114c5565b005b34801561068657600080fd5b506106a1600480360381019061069c9190612cab565b61154b565b6040516106ae9190613264565b60405180910390f35b3480156106c357600080fd5b506106cc6115f2565b6040516106d99190613586565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190612a9a565b611613565b6040516107169190613249565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190612a71565b6116a7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610823575061082282611840565b5b9050919050565b60606000805461083990613848565b80601f016020809104026020016040519081016040528092919081815260200182805461086590613848565b80156108b25780601f10610887576101008083540402835291602001916108b2565b820191906000526020600020905b81548152906001019060200180831161089557829003601f168201915b5050505050905090565b60006108c7826118aa565b610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90613486565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094c82610d40565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b490613506565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109dc611916565b73ffffffffffffffffffffffffffffffffffffffff161480610a0b5750610a0a81610a05611916565b611613565b5b610a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a41906133e6565b60405180910390fd5b610a54838361191e565b505050565b6000600854905090565b610a74610a6e611916565b826119d7565b610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa90613546565b60405180910390fd5b610abe838383611ab5565b505050565b610acb611916565b73ffffffffffffffffffffffffffffffffffffffff16610ae9611052565b73ffffffffffffffffffffffffffffffffffffffff1614610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b36906134a6565b60405180910390fd5b8060109080519060200190610b55929190612895565b5050565b6000806001610b666115f2565b610b70919061374c565b1015610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890613326565b60405180910390fd5b6000610bbc83610d40565b905080915050919050565b610bcf611916565b73ffffffffffffffffffffffffffffffffffffffff16610bed611052565b73ffffffffffffffffffffffffffffffffffffffff1614610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a906134a6565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c8157600080fd5b565b610c9e83838360405180602001604052806000815250611463565b505050565b610cab611916565b73ffffffffffffffffffffffffffffffffffffffff16610cc9611052565b73ffffffffffffffffffffffffffffffffffffffff1614610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d16906134a6565b60405180910390fd5b80600e8190555050565b6000600c60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de090613426565b60405180910390fd5b80915050919050565b60108054610dff90613848565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2b90613848565b8015610e785780601f10610e4d57610100808354040283529160200191610e78565b820191906000526020600020905b815481529060010190602001808311610e5b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee890613406565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f40611916565b73ffffffffffffffffffffffffffffffffffffffff16610f5e611052565b73ffffffffffffffffffffffffffffffffffffffff1614610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab906134a6565b60405180910390fd5b610fbe6000611d11565b565b600e5481565b600d5481565b610fd4611916565b73ffffffffffffffffffffffffffffffffffffffff16610ff2611052565b73ffffffffffffffffffffffffffffffffffffffff1614611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f906134a6565b60405180910390fd5b611050611dd7565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611084611916565b73ffffffffffffffffffffffffffffffffffffffff166110a2611052565b73ffffffffffffffffffffffffffffffffffffffff16146110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef906134a6565b60405180910390fd5b80600f8190555050565b60606001805461111190613848565b80601f016020809104026020016040519081016040528092919081815260200182805461113d90613848565b801561118a5780601f1061115f5761010080835404028352916020019161118a565b820191906000526020600020905b81548152906001019060200180831161116d57829003601f168201915b5050505050905090565b60006111a0600761179f565b905090565b600f5481565b6002600b5414156111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613566565b60405180910390fd5b6002600b81905550611201610a59565b8161120a611194565b611214919061366b565b1115611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90613446565b60405180910390fd5b6000816112606115f2565b61126a919061374c565b10156112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a290613326565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090613306565b60405180910390fd5b611321611052565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113ba5780600f5461136191906136f2565b3410156113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90613526565b60405180910390fd5b60146113ae33610e80565b11156113b957600080fd5b5b6000600190505b8181116114415760006113d2611e7a565b90506113de3382612008565b600d60008154809291906113f1906138ab565b91905055507f9b17d8d4fdc23926c90ecc00f85db55975149ac3c8e0866b5b684af7692daa0f816040516114259190613586565b60405180910390a1508080611439906138ab565b9150506113c1565b506001600b8190555050565b61145f611458611916565b8383612026565b5050565b61147461146e611916565b836119d7565b6114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613546565b60405180910390fd5b6114bf84848484612193565b50505050565b6114cd611916565b73ffffffffffffffffffffffffffffffffffffffff166114eb611052565b73ffffffffffffffffffffffffffffffffffffffff1614611541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611538906134a6565b60405180910390fd5b6115496121ef565b565b6060611556826118aa565b611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c906134c6565b60405180910390fd5b600061159f612291565b905060008151116115bf57604051806020016040528060008152506115ea565b806115c984612323565b6040516020016115da9291906131b3565b6040516020818303038152906040525b915050919050565b60006115fc611194565b611604610a59565b61160e919061374c565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116af611916565b73ffffffffffffffffffffffffffffffffffffffff166116cd611052565b73ffffffffffffffffffffffffffffffffffffffff1614611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a906134a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a906132c6565b60405180910390fd5b61179c81611d11565b50565b600081600001549050919050565b6000806117b86115f2565b116117f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ef90613386565b60405180910390fd5b6000611804600761179f565b90506118106007611817565b8091505090565b6001816000016000828254019250508190555050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661199183610d40565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119e2826118aa565b611a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a18906133a6565b60405180910390fd5b6000611a2c83610d40565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a9b57508373ffffffffffffffffffffffffffffffffffffffff16611a83846108bc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611aac5750611aab8185611613565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ad582610d40565b73ffffffffffffffffffffffffffffffffffffffff1614611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b22906134e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9290613346565b60405180910390fd5b611ba68383836124d0565b611bb160008261191e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c01919061374c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c58919061366b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ddf610d29565b15611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e16906133c6565b60405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e63611916565b604051611e7091906131e2565b60405180910390a1565b600080611e856115f2565b11611ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebc90613386565b60405180910390fd5b6000611ecf611194565b611ed7610a59565b611ee1919061374c565b90506000813341444542604051602001611eff959493929190613154565b6040516020818303038152906040528051906020012060001c611f229190613934565b905060008060096000848152602001908152602001600020541415611f4957819050611f60565b600960008381526020019081526020016000205490505b600060096000600186611f73919061374c565b8152602001908152602001600020541415611fb157600183611f95919061374c565b6009600084815260200190815260200160002081905550611fe9565b60096000600185611fc2919061374c565b81526020019081526020016000205460096000848152602001908152602001600020819055505b611ff16117ad565b50600a5481612000919061366b565b935050505090565b6120228282604051806020016040528060008152506124d5565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208c90613366565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121869190613249565b60405180910390a3505050565b61219e848484611ab5565b6121aa84848484612530565b6121e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e0906132a6565b60405180910390fd5b50505050565b6121f7610d29565b612236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222d90613286565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61227a611916565b60405161228791906131e2565b60405180910390a1565b6060601080546122a090613848565b80601f01602080910402602001604051908101604052809291908181526020018280546122cc90613848565b80156123195780601f106122ee57610100808354040283529160200191612319565b820191906000526020600020905b8154815290600101906020018083116122fc57829003601f168201915b5050505050905090565b6060600082141561236b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124cb565b600082905060005b6000821461239d578080612386906138ab565b915050600a8261239691906136c1565b9150612373565b60008167ffffffffffffffff8111156123df577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124115781602001600182028036833780820191505090505b5090505b600085146124c45760018261242a919061374c565b9150600a856124399190613934565b6030612445919061366b565b60f81b818381518110612481577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124bd91906136c1565b9450612415565b8093505050505b919050565b505050565b6124df83836126c7565b6124ec6000848484612530565b61252b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612522906132a6565b60405180910390fd5b505050565b60006125518473ffffffffffffffffffffffffffffffffffffffff1661182d565b156126ba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261257a611916565b8786866040518563ffffffff1660e01b815260040161259c94939291906131fd565b602060405180830381600087803b1580156125b657600080fd5b505af19250505080156125e757506040513d601f19601f820116820180604052508101906125e49190612c41565b60015b61266a573d8060008114612617576040519150601f19603f3d011682016040523d82523d6000602084013e61261c565b606091505b50600081511415612662576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612659906132a6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126bf565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272e90613466565b60405180910390fd5b612740816118aa565b15612780576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612777906132e6565b60405180910390fd5b61278c600083836124d0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127dc919061366b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546128a190613848565b90600052602060002090601f0160209004810192826128c3576000855561290a565b82601f106128dc57805160ff191683800117855561290a565b8280016001018555821561290a579182015b828111156129095782518255916020019190600101906128ee565b5b509050612917919061291b565b5090565b5b8082111561293457600081600090555060010161291c565b5090565b600061294b612946846135c6565b6135a1565b90508281526020810184848401111561296357600080fd5b61296e848285613806565b509392505050565b6000612989612984846135f7565b6135a1565b9050828152602081018484840111156129a157600080fd5b6129ac848285613806565b509392505050565b6000813590506129c38161407a565b92915050565b6000813590506129d881614091565b92915050565b6000813590506129ed816140a8565b92915050565b600081519050612a02816140a8565b92915050565b600082601f830112612a1957600080fd5b8135612a29848260208601612938565b91505092915050565b600082601f830112612a4357600080fd5b8135612a53848260208601612976565b91505092915050565b600081359050612a6b816140bf565b92915050565b600060208284031215612a8357600080fd5b6000612a91848285016129b4565b91505092915050565b60008060408385031215612aad57600080fd5b6000612abb858286016129b4565b9250506020612acc858286016129b4565b9150509250929050565b600080600060608486031215612aeb57600080fd5b6000612af9868287016129b4565b9350506020612b0a868287016129b4565b9250506040612b1b86828701612a5c565b9150509250925092565b60008060008060808587031215612b3b57600080fd5b6000612b49878288016129b4565b9450506020612b5a878288016129b4565b9350506040612b6b87828801612a5c565b925050606085013567ffffffffffffffff811115612b8857600080fd5b612b9487828801612a08565b91505092959194509250565b60008060408385031215612bb357600080fd5b6000612bc1858286016129b4565b9250506020612bd2858286016129c9565b9150509250929050565b60008060408385031215612bef57600080fd5b6000612bfd858286016129b4565b9250506020612c0e85828601612a5c565b9150509250929050565b600060208284031215612c2a57600080fd5b6000612c38848285016129de565b91505092915050565b600060208284031215612c5357600080fd5b6000612c61848285016129f3565b91505092915050565b600060208284031215612c7c57600080fd5b600082013567ffffffffffffffff811115612c9657600080fd5b612ca284828501612a32565b91505092915050565b600060208284031215612cbd57600080fd5b6000612ccb84828501612a5c565b91505092915050565b612ce5612ce082613792565b613906565b82525050565b612cf481613780565b82525050565b612d0b612d0682613780565b6138f4565b82525050565b612d1a816137a4565b82525050565b6000612d2b82613628565b612d35818561363e565b9350612d45818560208601613815565b612d4e81613a21565b840191505092915050565b6000612d6482613633565b612d6e818561364f565b9350612d7e818560208601613815565b612d8781613a21565b840191505092915050565b6000612d9d82613633565b612da78185613660565b9350612db7818560208601613815565b80840191505092915050565b6000612dd060148361364f565b9150612ddb82613a3f565b602082019050919050565b6000612df360328361364f565b9150612dfe82613a68565b604082019050919050565b6000612e1660268361364f565b9150612e2182613ab7565b604082019050919050565b6000612e39601c8361364f565b9150612e4482613b06565b602082019050919050565b6000612e5c60258361364f565b9150612e6782613b2f565b604082019050919050565b6000612e7f602d8361364f565b9150612e8a82613b7e565b604082019050919050565b6000612ea260248361364f565b9150612ead82613bcd565b604082019050919050565b6000612ec560198361364f565b9150612ed082613c1c565b602082019050919050565b6000612ee860188361364f565b9150612ef382613c45565b602082019050919050565b6000612f0b602c8361364f565b9150612f1682613c6e565b604082019050919050565b6000612f2e60108361364f565b9150612f3982613cbd565b602082019050919050565b6000612f5160388361364f565b9150612f5c82613ce6565b604082019050919050565b6000612f74602a8361364f565b9150612f7f82613d35565b604082019050919050565b6000612f9760298361364f565b9150612fa282613d84565b604082019050919050565b6000612fba60278361364f565b9150612fc582613dd3565b604082019050919050565b6000612fdd60208361364f565b9150612fe882613e22565b602082019050919050565b6000613000602c8361364f565b915061300b82613e4b565b604082019050919050565b6000613023600583613660565b915061302e82613e9a565b600582019050919050565b600061304660208361364f565b915061305182613ec3565b602082019050919050565b6000613069602f8361364f565b915061307482613eec565b604082019050919050565b600061308c60298361364f565b915061309782613f3b565b604082019050919050565b60006130af60218361364f565b91506130ba82613f8a565b604082019050919050565b60006130d260198361364f565b91506130dd82613fd9565b602082019050919050565b60006130f560318361364f565b915061310082614002565b604082019050919050565b6000613118601f8361364f565b915061312382614051565b602082019050919050565b613137816137fc565b82525050565b61314e613149826137fc565b61392a565b82525050565b60006131608288612cfa565b6014820191506131708287612cd4565b601482019150613180828661313d565b602082019150613190828561313d565b6020820191506131a0828461313d565b6020820191508190509695505050505050565b60006131bf8285612d92565b91506131cb8284612d92565b91506131d682613016565b91508190509392505050565b60006020820190506131f76000830184612ceb565b92915050565b60006080820190506132126000830187612ceb565b61321f6020830186612ceb565b61322c604083018561312e565b818103606083015261323e8184612d20565b905095945050505050565b600060208201905061325e6000830184612d11565b92915050565b6000602082019050818103600083015261327e8184612d59565b905092915050565b6000602082019050818103600083015261329f81612dc3565b9050919050565b600060208201905081810360008301526132bf81612de6565b9050919050565b600060208201905081810360008301526132df81612e09565b9050919050565b600060208201905081810360008301526132ff81612e2c565b9050919050565b6000602082019050818103600083015261331f81612e4f565b9050919050565b6000602082019050818103600083015261333f81612e72565b9050919050565b6000602082019050818103600083015261335f81612e95565b9050919050565b6000602082019050818103600083015261337f81612eb8565b9050919050565b6000602082019050818103600083015261339f81612edb565b9050919050565b600060208201905081810360008301526133bf81612efe565b9050919050565b600060208201905081810360008301526133df81612f21565b9050919050565b600060208201905081810360008301526133ff81612f44565b9050919050565b6000602082019050818103600083015261341f81612f67565b9050919050565b6000602082019050818103600083015261343f81612f8a565b9050919050565b6000602082019050818103600083015261345f81612fad565b9050919050565b6000602082019050818103600083015261347f81612fd0565b9050919050565b6000602082019050818103600083015261349f81612ff3565b9050919050565b600060208201905081810360008301526134bf81613039565b9050919050565b600060208201905081810360008301526134df8161305c565b9050919050565b600060208201905081810360008301526134ff8161307f565b9050919050565b6000602082019050818103600083015261351f816130a2565b9050919050565b6000602082019050818103600083015261353f816130c5565b9050919050565b6000602082019050818103600083015261355f816130e8565b9050919050565b6000602082019050818103600083015261357f8161310b565b9050919050565b600060208201905061359b600083018461312e565b92915050565b60006135ab6135bc565b90506135b7828261387a565b919050565b6000604051905090565b600067ffffffffffffffff8211156135e1576135e06139f2565b5b6135ea82613a21565b9050602081019050919050565b600067ffffffffffffffff821115613612576136116139f2565b5b61361b82613a21565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613676826137fc565b9150613681836137fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136b6576136b5613965565b5b828201905092915050565b60006136cc826137fc565b91506136d7836137fc565b9250826136e7576136e6613994565b5b828204905092915050565b60006136fd826137fc565b9150613708836137fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561374157613740613965565b5b828202905092915050565b6000613757826137fc565b9150613762836137fc565b92508282101561377557613774613965565b5b828203905092915050565b600061378b826137dc565b9050919050565b600061379d826137dc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613833578082015181840152602081019050613818565b83811115613842576000848401525b50505050565b6000600282049050600182168061386057607f821691505b60208210811415613874576138736139c3565b5b50919050565b61388382613a21565b810181811067ffffffffffffffff821117156138a2576138a16139f2565b5b80604052505050565b60006138b6826137fc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138e9576138e8613965565b5b600182019050919050565b60006138ff82613918565b9050919050565b600061391182613918565b9050919050565b600061392382613a32565b9050919050565b6000819050919050565b600061393f826137fc565b915061394a836137fc565b92508261395a57613959613994565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f43414e4e4f54204d494e54205448524f554748204120435553544f4d20434f4e60008201527f5452414354000000000000000000000000000000000000000000000000000000602082015250565b7f594f552043414e2754204d494e54204d4f5245205448414e204156414c41424c60008201527f4520544f4b454e20434f554e5400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f594f552043414e2754204d494e54204d4f5245205448414e204d4158494d554d60008201527f20535550504c5900000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374616e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61408381613780565b811461408e57600080fd5b50565b61409a816137a4565b81146140a557600080fd5b50565b6140b1816137b0565b81146140bc57600080fd5b50565b6140c8816137fc565b81146140d357600080fd5b5056fea2646970667358221220e15ff5b17589c8b85d6668fa722d7826bf6f396a99798754b373c0d1ab50444864736f6c63430008040033

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.