ETH Price: $3,443.29 (-0.99%)
Gas: 5 Gwei

Token

LightCultCryptoClub (LCCC)
 

Overview

Max Total Supply

7,721 LCCC

Holders

1,615

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
moon52.eth
Balance
3 LCCC
0x0798a42486DDCA75ea4138313b0F7c4146bfB074
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Behold the Light Cult Crypto Club a pop-surrealist collection of 10,000 NFTs born from the brain of pioneering street artist Ron English.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LightCultCryptoClub

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : LightCultCryptoClub.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.9;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract LightCultCryptoClub is ERC721Enumerable, Ownable, ReentrancyGuard {

  /**
   * @dev Events
   */

  event Burn(uint256 tokenId, address burner);

  /**
   * @dev Constants
   */

  uint256 public constant TOKEN_LIMIT = 10006;
  uint256 public constant PRESALE_MINT_LIMIT = 5000;
  uint256 private constant _GIVEAWAY_LIMIT = 100;
  uint256 public mintPrice = .06 ether;
  uint256 public constant MAX_MINT_QUANTITY = 20;

  /**
   * @dev Addresses
   */

  address payable constant private _RON_WALLET = payable(0x8e3331BbC9aF9B5fDEAE7e2ea83B207ccf66BC39);
  address payable constant private _1XRUN_WALLET = payable(0xB82cbB2cD0Cb7E29015845A82c18D183fE254C45);
  address payable constant private _DOM_WALLET = payable(0xf331AFba4179FBfEA8464f69e69ea7Fa4cF37474);
  address payable constant private _DEV_WALLET = payable(0x6626a2739959B2355f29184fA0db390920ccFc40);

  /**
   * @dev Variables
   */

  uint256 public saleState = 0; // 0 = closed, 1 = presale tier 1, 2 = presale tier 2, 3 = sale
  bool public burnActive = false;
  string public baseURI;
  string public PROVENANCE_HASH = "";

  // Internal state
  // _presaleAllowance[address] > 0 | tier 2 eligible
  // _presaleAllowance[address] - 1 | remaining tier 1 mints
  mapping(address => uint256) private _presaleAllowance; 
  mapping(uint256 => address) private _tokenIdBurners;

  // For random index
  uint256 private _nonce = 0;
  uint256[TOKEN_LIMIT] private _indices;

  constructor() ERC721("LightCultCryptoClub", "LCCC") {}

  /**
   * General usage
   */

  function _randomMint(address to) private {
    uint256 randomIndex = uint256(keccak256(abi.encodePacked(_nonce, msg.sender, block.difficulty, block.timestamp)));
    _validMint(to, randomIndex);
  }

  function _validMint(address to, uint256 index) private {
    uint256 validIndex = _validateIndex(index);
    _safeMint(to, validIndex);
  }

  function _validateIndex(uint256 indexToValidate) private returns (uint256) {
    uint256 totalSize = TOKEN_LIMIT - totalSupply();
    uint256 index = indexToValidate % totalSize;
    uint256 value = 0;
    if (_indices[index] != 0) {
      value = _indices[index];
    } else {
      value = index;
    }

    if (_indices[totalSize - 1] == 0) {
      _indices[index] = totalSize - 1;
    } else {
      _indices[index] = _indices[totalSize - 1];
    }

    _nonce++;
    return value;
  }

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

  function listTokensForOwner(address owner) external view returns (uint256[] memory) {
    uint256 tokenCount = balanceOf(owner);
    uint256[] memory result = new uint256[](tokenCount);
    uint256 index;
    for (index = 0; index < tokenCount; index++) {
      result[index] = tokenOfOwnerByIndex(owner, index);
    }
    return result;
  }

  /**
   * Presale eligibility
   */

  function isTierTwoPresaleEligible(address minter) external view returns(bool) {
    return _presaleAllowance[minter] > 0;
  }
 
  function isTierOnePresaleEligible(address minter) external view returns(bool) {
    return _presaleAllowance[minter] > 1;
  }
 
  function presaleAllowanceForAddress(address minter) external view returns(uint) {
    return _presaleAllowance[minter];
  }

  /**
   * Minting
   */

  function mintTokens(uint256 numTokens) external payable nonReentrant {
    require(saleState != 0, "Sale is closed");
    require(numTokens > 0 && numTokens <= MAX_MINT_QUANTITY, "You can only mint 1 to 20 tokens at a time");

    if (saleState == 3) {
      // Open sale
      require(totalSupply() + numTokens <= TOKEN_LIMIT, "LCCC has sold out");
    } else {
      require(totalSupply() + numTokens <= PRESALE_MINT_LIMIT, "The maximum presale tokens have been minted");
      if (saleState == 2) {
        // Tier 2 presale
        require(_presaleAllowance[msg.sender] > 0, "You are not eligible to presale mint");
      } else if (saleState == 1) {
        // Tier 1 presale
        require(_presaleAllowance[msg.sender] - numTokens >= 1, "You cannot mint that many tokens at this time");
        _presaleAllowance[msg.sender] -= numTokens;
      }
    } 

    uint256 totalPrice = mintPrice * numTokens;
    require(msg.value >= totalPrice, "Ether value sent is below the price");

    for (uint256 i = 0; i < numTokens; i++) {
      _randomMint(msg.sender);
    }
  }

  /**
   * Burn
   */

  function burn(uint256 tokenId) external {
    require(burnActive, "You cannot burn at this time");
    require(ownerOf(tokenId) == msg.sender, "You cannot burn a token you do not own");
    _burn(tokenId);
    _tokenIdBurners[tokenId] = msg.sender;
    emit Burn(tokenId, msg.sender);
  }

  function burnerOf(uint256 tokenId) external view returns (address) {
    return _tokenIdBurners[tokenId];
  }

  /**
   * Owner only
   */

  function setProvenanceHash(string calldata provenanceHash) external onlyOwner {
    PROVENANCE_HASH = provenanceHash;
  }

  function editPresaleAllowance(address[] memory addresses, uint256 amount) public onlyOwner {
    for(uint256 i; i < addresses.length; i++){
      _presaleAllowance[addresses[i]] = amount;
    }
  }

  function setBaseURI(string calldata baseURI_) external onlyOwner {
    baseURI = baseURI_;
  }

  function reserveTokens(uint256[] calldata tokens) external onlyOwner {
    require(saleState == 0, "Sale is not in closed state");
    require(totalSupply() + tokens.length <= _GIVEAWAY_LIMIT, "Exceeded giveaway supply");

    for (uint256 i = 0; i < tokens.length; i++) {
      _validMint(_1XRUN_WALLET, tokens[i]);
    }
  }

  function setMintPrice(uint256 newMintPrice) external onlyOwner {
    mintPrice = newMintPrice;
  }

  function setSaleState(uint256 newState) external onlyOwner {
    saleState = newState;
  }

  function toggleBurnState() external onlyOwner {
    burnActive = !burnActive;
  }

  function withdraw() external onlyOwner {
    uint256 fortyPercentOfBalance = (address(this).balance * 40)/100; // 40.0%
    uint256 twelvePercentOfBalance = (address(this).balance * 12)/100; // 12.0%
    uint256 eightPercentOfBalance = (address(this).balance * 8)/100; // 8.0%
    _RON_WALLET.transfer(fortyPercentOfBalance);
    _1XRUN_WALLET.transfer(fortyPercentOfBalance);
    _DOM_WALLET.transfer(twelvePercentOfBalance);
    _DEV_WALLET.transfer(eightPercentOfBalance);
  }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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 make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"burner","type":"address"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"editPresaleAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"isTierOnePresaleEligible","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"isTierTwoPresaleEligible","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"listTokensForOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mintTokens","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":[{"internalType":"address","name":"minter","type":"address"}],"name":"presaleAllowanceForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokens","type":"uint256[]"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newState","type":"uint256"}],"name":"setSaleState","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":"toggleBurnState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266d529ae9e860000600c556000600d556000600e60006101000a81548160ff02191690831515021790555060405180602001604052806000815250601090805190602001906200005692919062000206565b5060006013553480156200006957600080fd5b506040518060400160405280601381526020017f4c6967687443756c7443727970746f436c7562000000000000000000000000008152506040518060400160405280600481526020017f4c434343000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ee92919062000206565b5080600190805190602001906200010792919062000206565b5050506200012a6200011e6200013860201b60201c565b6200014060201b60201c565b6001600b819055506200031b565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021490620002e5565b90600052602060002090601f01602090048101928262000238576000855562000284565b82601f106200025357805160ff191683800117855562000284565b8280016001018555821562000284579182015b828111156200028357825182559160200191906001019062000266565b5b50905062000293919062000297565b5090565b5b80821115620002b257600081600090555060010162000298565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002fe57607f821691505b60208210811415620003155762000314620002b6565b5b50919050565b615672806200032b6000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063be99aaa7116100b6578063e28a43e41161007a578063e28a43e4146108c7578063e985e9c514610904578063f2fde38b14610941578063f4a0a5281461096a578063f5ebec8014610993578063ff1b6556146109be57610251565b8063be99aaa7146107e4578063c6cdff53146107fb578063c87b56dd14610824578063ca0df4a114610861578063cf27f4201461089e57610251565b806395d89b41116100fd57806395d89b411461070e57806397304ced14610739578063a22cb46514610755578063b224bbf01461077e578063b88d4fde146107bb57610251565b806370a082311461063957806371273bb714610676578063715018a6146106a1578063864ef3e5146106b85780638da5cb5b146106e357610251565b80632f745c59116101d25780634f6ccce7116101965780634f6ccce71461051557806355f804b314610552578063603f4d521461057b5780636352211e146105a65780636817c76c146105e35780636c0360eb1461060e57610251565b80632f745c591461043257806338aa42e91461046f5780633ccfd60b146104ac57806342842e0e146104c357806342966c68146104ec57610251565b8063095ea7b311610219578063095ea7b31461034f578063109695231461037857806318160ddd146103a157806318ba1b61146103cc57806323b872dd1461040957610251565b806301ffc9a714610256578063031bd4c41461029357806306fdde03146102be578063081812fc146102e9578063084c408814610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613927565b6109e9565b60405161028a919061396f565b60405180910390f35b34801561029f57600080fd5b506102a8610a63565b6040516102b591906139a3565b60405180910390f35b3480156102ca57600080fd5b506102d3610a69565b6040516102e09190613a57565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190613aa5565b610afb565b60405161031d9190613b13565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613aa5565b610b80565b005b34801561035b57600080fd5b5061037660048036038101906103719190613b5a565b610c06565b005b34801561038457600080fd5b5061039f600480360381019061039a9190613bff565b610d1e565b005b3480156103ad57600080fd5b506103b6610db0565b6040516103c391906139a3565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613c4c565b610dbd565b604051610400919061396f565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190613c79565b610e09565b005b34801561043e57600080fd5b5061045960048036038101906104549190613b5a565b610e69565b60405161046691906139a3565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190613c4c565b610f0e565b6040516104a391906139a3565b60405180910390f35b3480156104b857600080fd5b506104c1610f57565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613c79565b61119b565b005b3480156104f857600080fd5b50610513600480360381019061050e9190613aa5565b6111bb565b005b34801561052157600080fd5b5061053c60048036038101906105379190613aa5565b611317565b60405161054991906139a3565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613bff565b611388565b005b34801561058757600080fd5b5061059061141a565b60405161059d91906139a3565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613aa5565b611420565b6040516105da9190613b13565b60405180910390f35b3480156105ef57600080fd5b506105f86114d2565b60405161060591906139a3565b60405180910390f35b34801561061a57600080fd5b506106236114d8565b6040516106309190613a57565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b9190613c4c565b611566565b60405161066d91906139a3565b60405180910390f35b34801561068257600080fd5b5061068b61161e565b60405161069891906139a3565b60405180910390f35b3480156106ad57600080fd5b506106b6611623565b005b3480156106c457600080fd5b506106cd6116ab565b6040516106da919061396f565b60405180910390f35b3480156106ef57600080fd5b506106f86116be565b6040516107059190613b13565b60405180910390f35b34801561071a57600080fd5b506107236116e8565b6040516107309190613a57565b60405180910390f35b610753600480360381019061074e9190613aa5565b61177a565b005b34801561076157600080fd5b5061077c60048036038101906107779190613cf8565b611b29565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613c4c565b611caa565b6040516107b2919061396f565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190613e68565b611cf5565b005b3480156107f057600080fd5b506107f9611d57565b005b34801561080757600080fd5b50610822600480360381019061081d9190613fae565b611dff565b005b34801561083057600080fd5b5061084b60048036038101906108469190613aa5565b611efd565b6040516108589190613a57565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613aa5565b611fa4565b6040516108959190613b13565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c09190614060565b611fe1565b005b3480156108d357600080fd5b506108ee60048036038101906108e99190613c4c565b612158565b6040516108fb919061416b565b60405180910390f35b34801561091057600080fd5b5061092b6004803603810190610926919061418d565b612206565b604051610938919061396f565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190613c4c565b61229a565b005b34801561097657600080fd5b50610991600480360381019061098c9190613aa5565b612392565b005b34801561099f57600080fd5b506109a8612418565b6040516109b591906139a3565b60405180910390f35b3480156109ca57600080fd5b506109d361241e565b6040516109e09190613a57565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5c5750610a5b826124ac565b5b9050919050565b61271681565b606060008054610a78906141fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa4906141fc565b8015610af15780601f10610ac657610100808354040283529160200191610af1565b820191906000526020600020905b815481529060010190602001808311610ad457829003601f168201915b5050505050905090565b6000610b068261258e565b610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c906142a0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610b886125fa565b73ffffffffffffffffffffffffffffffffffffffff16610ba66116be565b73ffffffffffffffffffffffffffffffffffffffff1614610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf39061430c565b60405180910390fd5b80600d8190555050565b6000610c1182611420565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c799061439e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ca16125fa565b73ffffffffffffffffffffffffffffffffffffffff161480610cd05750610ccf81610cca6125fa565b612206565b5b610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690614430565b60405180910390fd5b610d198383612602565b505050565b610d266125fa565b73ffffffffffffffffffffffffffffffffffffffff16610d446116be565b73ffffffffffffffffffffffffffffffffffffffff1614610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d919061430c565b60405180910390fd5b818160109190610dab929190613818565b505050565b6000600880549050905090565b60006001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b610e1a610e146125fa565b826126bb565b610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e50906144c2565b60405180910390fd5b610e64838383612799565b505050565b6000610e7483611566565b8210610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90614554565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f5f6125fa565b73ffffffffffffffffffffffffffffffffffffffff16610f7d6116be565b73ffffffffffffffffffffffffffffffffffffffff1614610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca9061430c565b60405180910390fd5b60006064602847610fe491906145a3565b610fee919061462c565b905060006064600c4761100191906145a3565b61100b919061462c565b90506000606460084761101e91906145a3565b611028919061462c565b9050738e3331bbc9af9b5fdeae7e2ea83b207ccf66bc3973ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015611084573d6000803e3d6000fd5b5073b82cbb2cd0cb7e29015845a82c18d183fe254c4573ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156110df573d6000803e3d6000fd5b5073f331afba4179fbfea8464f69e69ea7fa4cf3747473ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561113a573d6000803e3d6000fd5b50736626a2739959b2355f29184fa0db390920ccfc4073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611195573d6000803e3d6000fd5b50505050565b6111b683838360405180602001604052806000815250611cf5565b505050565b600e60009054906101000a900460ff1661120a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611201906146a9565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661122a82611420565b73ffffffffffffffffffffffffffffffffffffffff1614611280576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112779061473b565b60405180910390fd5b611289816129f5565b336012600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ff6554c3a5d28e08c120b5a69c7edbaf52f935bd2596a60b8a18e282cd257cddb813360405161130c92919061475b565b60405180910390a150565b6000611321610db0565b8210611362576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611359906147f6565b60405180910390fd5b6008828154811061137657611375614816565b5b90600052602060002001549050919050565b6113906125fa565b73ffffffffffffffffffffffffffffffffffffffff166113ae6116be565b73ffffffffffffffffffffffffffffffffffffffff1614611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb9061430c565b60405180910390fd5b8181600f9190611415929190613818565b505050565b600d5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c0906148b7565b60405180910390fd5b80915050919050565b600c5481565b600f80546114e5906141fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611511906141fc565b801561155e5780601f106115335761010080835404028352916020019161155e565b820191906000526020600020905b81548152906001019060200180831161154157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90614949565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601481565b61162b6125fa565b73ffffffffffffffffffffffffffffffffffffffff166116496116be565b73ffffffffffffffffffffffffffffffffffffffff161461169f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116969061430c565b60405180910390fd5b6116a96000612b06565b565b600e60009054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116f7906141fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611723906141fc565b80156117705780601f1061174557610100808354040283529160200191611770565b820191906000526020600020905b81548152906001019060200180831161175357829003601f168201915b5050505050905090565b6002600b5414156117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b7906149b5565b60405180910390fd5b6002600b819055506000600d54141561180e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180590614a21565b60405180910390fd5b60008111801561181f575060148111155b61185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590614ab3565b60405180910390fd5b6003600d5414156118c55761271681611875610db0565b61187f9190614ad3565b11156118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790614b75565b60405180910390fd5b611aa0565b611388816118d1610db0565b6118db9190614ad3565b111561191c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191390614c07565b60405180910390fd5b6002600d5414156119ae576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a090614c99565b60405180910390fd5b611a9f565b6001600d541415611a9e57600181601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a069190614cb9565b1015611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90614d5f565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a969190614cb9565b925050819055505b5b5b600081600c54611ab091906145a3565b905080341015611af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aec90614df1565b60405180910390fd5b60005b82811015611b1c57611b0933612bcc565b8080611b1490614e11565b915050611af8565b50506001600b8190555050565b611b316125fa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9690614ea6565b60405180910390fd5b8060056000611bac6125fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c596125fa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c9e919061396f565b60405180910390a35050565b600080601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b611d06611d006125fa565b836126bb565b611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c906144c2565b60405180910390fd5b611d5184848484612c10565b50505050565b611d5f6125fa565b73ffffffffffffffffffffffffffffffffffffffff16611d7d6116be565b73ffffffffffffffffffffffffffffffffffffffff1614611dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dca9061430c565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611e076125fa565b73ffffffffffffffffffffffffffffffffffffffff16611e256116be565b73ffffffffffffffffffffffffffffffffffffffff1614611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e729061430c565b60405180910390fd5b60005b8251811015611ef8578160116000858481518110611e9f57611e9e614816565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611ef090614e11565b915050611e7e565b505050565b6060611f088261258e565b611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e90614f38565b60405180910390fd5b6000611f51612c6c565b90506000815111611f715760405180602001604052806000815250611f9c565b80611f7b84612cfe565b604051602001611f8c929190614f94565b6040516020818303038152906040525b915050919050565b60006012600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611fe96125fa565b73ffffffffffffffffffffffffffffffffffffffff166120076116be565b73ffffffffffffffffffffffffffffffffffffffff161461205d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120549061430c565b60405180910390fd5b6000600d54146120a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209990615004565b60405180910390fd5b6064828290506120b0610db0565b6120ba9190614ad3565b11156120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f290615070565b60405180910390fd5b60005b828290508110156121535761214073b82cbb2cd0cb7e29015845a82c18d183fe254c4584848481811061213457612133614816565b5b90506020020135612e5f565b808061214b90614e11565b9150506120fe565b505050565b6060600061216583611566565b905060008167ffffffffffffffff81111561218357612182613d3d565b5b6040519080825280602002602001820160405280156121b15781602001602082028036833780820191505090505b50905060005b828110156121fb576121c98582610e69565b8282815181106121dc576121db614816565b5b60200260200101818152505080806121f390614e11565b9150506121b7565b819350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122a26125fa565b73ffffffffffffffffffffffffffffffffffffffff166122c06116be565b73ffffffffffffffffffffffffffffffffffffffff1614612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d9061430c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237d90615102565b60405180910390fd5b61238f81612b06565b50565b61239a6125fa565b73ffffffffffffffffffffffffffffffffffffffff166123b86116be565b73ffffffffffffffffffffffffffffffffffffffff161461240e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124059061430c565b60405180910390fd5b80600c8190555050565b61138881565b6010805461242b906141fc565b80601f0160208091040260200160405190810160405280929190818152602001828054612457906141fc565b80156124a45780601f10612479576101008083540402835291602001916124a4565b820191906000526020600020905b81548152906001019060200180831161248757829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061257757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612587575061258682612e7b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661267583611420565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126c68261258e565b612705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fc90615194565b60405180910390fd5b600061271083611420565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061277f57508373ffffffffffffffffffffffffffffffffffffffff1661276784610afb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612790575061278f8185612206565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127b982611420565b73ffffffffffffffffffffffffffffffffffffffff161461280f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280690615226565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561287f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612876906152b8565b60405180910390fd5b61288a838383612ee5565b612895600082612602565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128e59190614cb9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293c9190614ad3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612a0082611420565b9050612a0e81600084612ee5565b612a19600083612602565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a699190614cb9565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601354334442604051602001612be79493929190615341565b6040516020818303038152906040528051906020012060001c9050612c0c8282612e5f565b5050565b612c1b848484612799565b612c2784848484612ff9565b612c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5d90615401565b60405180910390fd5b50505050565b6060600f8054612c7b906141fc565b80601f0160208091040260200160405190810160405280929190818152602001828054612ca7906141fc565b8015612cf45780601f10612cc957610100808354040283529160200191612cf4565b820191906000526020600020905b815481529060010190602001808311612cd757829003601f168201915b5050505050905090565b60606000821415612d46576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e5a565b600082905060005b60008214612d78578080612d6190614e11565b915050600a82612d71919061462c565b9150612d4e565b60008167ffffffffffffffff811115612d9457612d93613d3d565b5b6040519080825280601f01601f191660200182016040528015612dc65781602001600182028036833780820191505090505b5090505b60008514612e5357600182612ddf9190614cb9565b9150600a85612dee9190615421565b6030612dfa9190614ad3565b60f81b818381518110612e1057612e0f614816565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e4c919061462c565b9450612dca565b8093505050505b919050565b6000612e6a82613190565b9050612e7683826132b3565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ef08383836132d1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f3357612f2e816132d6565b612f72565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f7157612f70838261331f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fb557612fb08161348c565b612ff4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ff357612ff2828261355d565b5b5b505050565b600061301a8473ffffffffffffffffffffffffffffffffffffffff166135dc565b15613183578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130436125fa565b8786866040518563ffffffff1660e01b815260040161306594939291906154a7565b602060405180830381600087803b15801561307f57600080fd5b505af19250505080156130b057506040513d601f19601f820116820180604052508101906130ad9190615508565b60015b613133573d80600081146130e0576040519150601f19603f3d011682016040523d82523d6000602084013e6130e5565b606091505b5060008151141561312b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312290615401565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613188565b600190505b949350505050565b60008061319b610db0565b6127166131a89190614cb9565b9050600081846131b89190615421565b905060008060148361271681106131d2576131d1614816565b5b0154146131f75760148261271681106131ee576131ed614816565b5b015490506131fb565b8190505b6000601460018561320c9190614cb9565b612716811061321e5761321d614816565b5b01541415613252576001836132339190614cb9565b601483612716811061324857613247614816565b5b0181905550613290565b60146001846132619190614cb9565b612716811061327357613272614816565b5b0154601483612716811061328a57613289614816565b5b01819055505b601360008154809291906132a390614e11565b9190505550809350505050919050565b6132cd8282604051806020016040528060008152506135ef565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161332c84611566565b6133369190614cb9565b905060006007600084815260200190815260200160002054905081811461341b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134a09190614cb9565b90506000600960008481526020019081526020016000205490506000600883815481106134d0576134cf614816565b5b9060005260206000200154905080600883815481106134f2576134f1614816565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061354157613540615535565b5b6001900381819060005260206000200160009055905550505050565b600061356883611566565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b6135f9838361364a565b6136066000848484612ff9565b613645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363c90615401565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136b1906155b0565b60405180910390fd5b6136c38161258e565b15613703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fa9061561c565b60405180910390fd5b61370f60008383612ee5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461375f9190614ad3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613824906141fc565b90600052602060002090601f016020900481019282613846576000855561388d565b82601f1061385f57803560ff191683800117855561388d565b8280016001018555821561388d579182015b8281111561388c578235825591602001919060010190613871565b5b50905061389a919061389e565b5090565b5b808211156138b757600081600090555060010161389f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613904816138cf565b811461390f57600080fd5b50565b600081359050613921816138fb565b92915050565b60006020828403121561393d5761393c6138c5565b5b600061394b84828501613912565b91505092915050565b60008115159050919050565b61396981613954565b82525050565b60006020820190506139846000830184613960565b92915050565b6000819050919050565b61399d8161398a565b82525050565b60006020820190506139b86000830184613994565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139f85780820151818401526020810190506139dd565b83811115613a07576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a29826139be565b613a3381856139c9565b9350613a438185602086016139da565b613a4c81613a0d565b840191505092915050565b60006020820190508181036000830152613a718184613a1e565b905092915050565b613a828161398a565b8114613a8d57600080fd5b50565b600081359050613a9f81613a79565b92915050565b600060208284031215613abb57613aba6138c5565b5b6000613ac984828501613a90565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613afd82613ad2565b9050919050565b613b0d81613af2565b82525050565b6000602082019050613b286000830184613b04565b92915050565b613b3781613af2565b8114613b4257600080fd5b50565b600081359050613b5481613b2e565b92915050565b60008060408385031215613b7157613b706138c5565b5b6000613b7f85828601613b45565b9250506020613b9085828601613a90565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613bbf57613bbe613b9a565b5b8235905067ffffffffffffffff811115613bdc57613bdb613b9f565b5b602083019150836001820283011115613bf857613bf7613ba4565b5b9250929050565b60008060208385031215613c1657613c156138c5565b5b600083013567ffffffffffffffff811115613c3457613c336138ca565b5b613c4085828601613ba9565b92509250509250929050565b600060208284031215613c6257613c616138c5565b5b6000613c7084828501613b45565b91505092915050565b600080600060608486031215613c9257613c916138c5565b5b6000613ca086828701613b45565b9350506020613cb186828701613b45565b9250506040613cc286828701613a90565b9150509250925092565b613cd581613954565b8114613ce057600080fd5b50565b600081359050613cf281613ccc565b92915050565b60008060408385031215613d0f57613d0e6138c5565b5b6000613d1d85828601613b45565b9250506020613d2e85828601613ce3565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d7582613a0d565b810181811067ffffffffffffffff82111715613d9457613d93613d3d565b5b80604052505050565b6000613da76138bb565b9050613db38282613d6c565b919050565b600067ffffffffffffffff821115613dd357613dd2613d3d565b5b613ddc82613a0d565b9050602081019050919050565b82818337600083830152505050565b6000613e0b613e0684613db8565b613d9d565b905082815260208101848484011115613e2757613e26613d38565b5b613e32848285613de9565b509392505050565b600082601f830112613e4f57613e4e613b9a565b5b8135613e5f848260208601613df8565b91505092915050565b60008060008060808587031215613e8257613e816138c5565b5b6000613e9087828801613b45565b9450506020613ea187828801613b45565b9350506040613eb287828801613a90565b925050606085013567ffffffffffffffff811115613ed357613ed26138ca565b5b613edf87828801613e3a565b91505092959194509250565b600067ffffffffffffffff821115613f0657613f05613d3d565b5b602082029050602081019050919050565b6000613f2a613f2584613eeb565b613d9d565b90508083825260208201905060208402830185811115613f4d57613f4c613ba4565b5b835b81811015613f765780613f628882613b45565b845260208401935050602081019050613f4f565b5050509392505050565b600082601f830112613f9557613f94613b9a565b5b8135613fa5848260208601613f17565b91505092915050565b60008060408385031215613fc557613fc46138c5565b5b600083013567ffffffffffffffff811115613fe357613fe26138ca565b5b613fef85828601613f80565b925050602061400085828601613a90565b9150509250929050565b60008083601f8401126140205761401f613b9a565b5b8235905067ffffffffffffffff81111561403d5761403c613b9f565b5b60208301915083602082028301111561405957614058613ba4565b5b9250929050565b60008060208385031215614077576140766138c5565b5b600083013567ffffffffffffffff811115614095576140946138ca565b5b6140a18582860161400a565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6140e28161398a565b82525050565b60006140f483836140d9565b60208301905092915050565b6000602082019050919050565b6000614118826140ad565b61412281856140b8565b935061412d836140c9565b8060005b8381101561415e57815161414588826140e8565b975061415083614100565b925050600181019050614131565b5085935050505092915050565b60006020820190508181036000830152614185818461410d565b905092915050565b600080604083850312156141a4576141a36138c5565b5b60006141b285828601613b45565b92505060206141c385828601613b45565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061421457607f821691505b60208210811415614228576142276141cd565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061428a602c836139c9565b91506142958261422e565b604082019050919050565b600060208201905081810360008301526142b98161427d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142f66020836139c9565b9150614301826142c0565b602082019050919050565b60006020820190508181036000830152614325816142e9565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006143886021836139c9565b91506143938261432c565b604082019050919050565b600060208201905081810360008301526143b78161437b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061441a6038836139c9565b9150614425826143be565b604082019050919050565b600060208201905081810360008301526144498161440d565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006144ac6031836139c9565b91506144b782614450565b604082019050919050565b600060208201905081810360008301526144db8161449f565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061453e602b836139c9565b9150614549826144e2565b604082019050919050565b6000602082019050818103600083015261456d81614531565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145ae8261398a565b91506145b98361398a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145f2576145f1614574565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146378261398a565b91506146428361398a565b925082614652576146516145fd565b5b828204905092915050565b7f596f752063616e6e6f74206275726e20617420746869732074696d6500000000600082015250565b6000614693601c836139c9565b915061469e8261465d565b602082019050919050565b600060208201905081810360008301526146c281614686565b9050919050565b7f596f752063616e6e6f74206275726e206120746f6b656e20796f7520646f206e60008201527f6f74206f776e0000000000000000000000000000000000000000000000000000602082015250565b60006147256026836139c9565b9150614730826146c9565b604082019050919050565b6000602082019050818103600083015261475481614718565b9050919050565b60006040820190506147706000830185613994565b61477d6020830184613b04565b9392505050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006147e0602c836139c9565b91506147eb82614784565b604082019050919050565b6000602082019050818103600083015261480f816147d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006148a16029836139c9565b91506148ac82614845565b604082019050919050565b600060208201905081810360008301526148d081614894565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614933602a836139c9565b915061493e826148d7565b604082019050919050565b6000602082019050818103600083015261496281614926565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061499f601f836139c9565b91506149aa82614969565b602082019050919050565b600060208201905081810360008301526149ce81614992565b9050919050565b7f53616c6520697320636c6f736564000000000000000000000000000000000000600082015250565b6000614a0b600e836139c9565b9150614a16826149d5565b602082019050919050565b60006020820190508181036000830152614a3a816149fe565b9050919050565b7f596f752063616e206f6e6c79206d696e74203120746f20323020746f6b656e7360008201527f20617420612074696d6500000000000000000000000000000000000000000000602082015250565b6000614a9d602a836139c9565b9150614aa882614a41565b604082019050919050565b60006020820190508181036000830152614acc81614a90565b9050919050565b6000614ade8261398a565b9150614ae98361398a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b1e57614b1d614574565b5b828201905092915050565b7f4c4343432068617320736f6c64206f7574000000000000000000000000000000600082015250565b6000614b5f6011836139c9565b9150614b6a82614b29565b602082019050919050565b60006020820190508181036000830152614b8e81614b52565b9050919050565b7f546865206d6178696d756d2070726573616c6520746f6b656e7320686176652060008201527f6265656e206d696e746564000000000000000000000000000000000000000000602082015250565b6000614bf1602b836139c9565b9150614bfc82614b95565b604082019050919050565b60006020820190508181036000830152614c2081614be4565b9050919050565b7f596f7520617265206e6f7420656c696769626c6520746f2070726573616c652060008201527f6d696e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614c836024836139c9565b9150614c8e82614c27565b604082019050919050565b60006020820190508181036000830152614cb281614c76565b9050919050565b6000614cc48261398a565b9150614ccf8361398a565b925082821015614ce257614ce1614574565b5b828203905092915050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920746f6b656e7360008201527f20617420746869732074696d6500000000000000000000000000000000000000602082015250565b6000614d49602d836139c9565b9150614d5482614ced565b604082019050919050565b60006020820190508181036000830152614d7881614d3c565b9050919050565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b6000614ddb6023836139c9565b9150614de682614d7f565b604082019050919050565b60006020820190508181036000830152614e0a81614dce565b9050919050565b6000614e1c8261398a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e4f57614e4e614574565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614e906019836139c9565b9150614e9b82614e5a565b602082019050919050565b60006020820190508181036000830152614ebf81614e83565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f22602f836139c9565b9150614f2d82614ec6565b604082019050919050565b60006020820190508181036000830152614f5181614f15565b9050919050565b600081905092915050565b6000614f6e826139be565b614f788185614f58565b9350614f888185602086016139da565b80840191505092915050565b6000614fa08285614f63565b9150614fac8284614f63565b91508190509392505050565b7f53616c65206973206e6f7420696e20636c6f7365642073746174650000000000600082015250565b6000614fee601b836139c9565b9150614ff982614fb8565b602082019050919050565b6000602082019050818103600083015261501d81614fe1565b9050919050565b7f457863656564656420676976656177617920737570706c790000000000000000600082015250565b600061505a6018836139c9565b915061506582615024565b602082019050919050565b600060208201905081810360008301526150898161504d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150ec6026836139c9565b91506150f782615090565b604082019050919050565b6000602082019050818103600083015261511b816150df565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061517e602c836139c9565b915061518982615122565b604082019050919050565b600060208201905081810360008301526151ad81615171565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006152106029836139c9565b915061521b826151b4565b604082019050919050565b6000602082019050818103600083015261523f81615203565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152a26024836139c9565b91506152ad82615246565b604082019050919050565b600060208201905081810360008301526152d181615295565b9050919050565b6000819050919050565b6152f36152ee8261398a565b6152d8565b82525050565b60008160601b9050919050565b6000615311826152f9565b9050919050565b600061532382615306565b9050919050565b61533b61533682613af2565b615318565b82525050565b600061534d82876152e2565b60208201915061535d828661532a565b60148201915061536d82856152e2565b60208201915061537d82846152e2565b60208201915081905095945050505050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006153eb6032836139c9565b91506153f68261538f565b604082019050919050565b6000602082019050818103600083015261541a816153de565b9050919050565b600061542c8261398a565b91506154378361398a565b925082615447576154466145fd565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061547982615452565b615483818561545d565b93506154938185602086016139da565b61549c81613a0d565b840191505092915050565b60006080820190506154bc6000830187613b04565b6154c96020830186613b04565b6154d66040830185613994565b81810360608301526154e8818461546e565b905095945050505050565b600081519050615502816138fb565b92915050565b60006020828403121561551e5761551d6138c5565b5b600061552c848285016154f3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061559a6020836139c9565b91506155a582615564565b602082019050919050565b600060208201905081810360008301526155c98161558d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615606601c836139c9565b9150615611826155d0565b602082019050919050565b60006020820190508181036000830152615635816155f9565b905091905056fea26469706673582212201e13112c737d23c3af7b28934e821ff0715e4fc63b5a94d4390734653d18ea7264736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063be99aaa7116100b6578063e28a43e41161007a578063e28a43e4146108c7578063e985e9c514610904578063f2fde38b14610941578063f4a0a5281461096a578063f5ebec8014610993578063ff1b6556146109be57610251565b8063be99aaa7146107e4578063c6cdff53146107fb578063c87b56dd14610824578063ca0df4a114610861578063cf27f4201461089e57610251565b806395d89b41116100fd57806395d89b411461070e57806397304ced14610739578063a22cb46514610755578063b224bbf01461077e578063b88d4fde146107bb57610251565b806370a082311461063957806371273bb714610676578063715018a6146106a1578063864ef3e5146106b85780638da5cb5b146106e357610251565b80632f745c59116101d25780634f6ccce7116101965780634f6ccce71461051557806355f804b314610552578063603f4d521461057b5780636352211e146105a65780636817c76c146105e35780636c0360eb1461060e57610251565b80632f745c591461043257806338aa42e91461046f5780633ccfd60b146104ac57806342842e0e146104c357806342966c68146104ec57610251565b8063095ea7b311610219578063095ea7b31461034f578063109695231461037857806318160ddd146103a157806318ba1b61146103cc57806323b872dd1461040957610251565b806301ffc9a714610256578063031bd4c41461029357806306fdde03146102be578063081812fc146102e9578063084c408814610326575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613927565b6109e9565b60405161028a919061396f565b60405180910390f35b34801561029f57600080fd5b506102a8610a63565b6040516102b591906139a3565b60405180910390f35b3480156102ca57600080fd5b506102d3610a69565b6040516102e09190613a57565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190613aa5565b610afb565b60405161031d9190613b13565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190613aa5565b610b80565b005b34801561035b57600080fd5b5061037660048036038101906103719190613b5a565b610c06565b005b34801561038457600080fd5b5061039f600480360381019061039a9190613bff565b610d1e565b005b3480156103ad57600080fd5b506103b6610db0565b6040516103c391906139a3565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613c4c565b610dbd565b604051610400919061396f565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190613c79565b610e09565b005b34801561043e57600080fd5b5061045960048036038101906104549190613b5a565b610e69565b60405161046691906139a3565b60405180910390f35b34801561047b57600080fd5b5061049660048036038101906104919190613c4c565b610f0e565b6040516104a391906139a3565b60405180910390f35b3480156104b857600080fd5b506104c1610f57565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613c79565b61119b565b005b3480156104f857600080fd5b50610513600480360381019061050e9190613aa5565b6111bb565b005b34801561052157600080fd5b5061053c60048036038101906105379190613aa5565b611317565b60405161054991906139a3565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613bff565b611388565b005b34801561058757600080fd5b5061059061141a565b60405161059d91906139a3565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613aa5565b611420565b6040516105da9190613b13565b60405180910390f35b3480156105ef57600080fd5b506105f86114d2565b60405161060591906139a3565b60405180910390f35b34801561061a57600080fd5b506106236114d8565b6040516106309190613a57565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b9190613c4c565b611566565b60405161066d91906139a3565b60405180910390f35b34801561068257600080fd5b5061068b61161e565b60405161069891906139a3565b60405180910390f35b3480156106ad57600080fd5b506106b6611623565b005b3480156106c457600080fd5b506106cd6116ab565b6040516106da919061396f565b60405180910390f35b3480156106ef57600080fd5b506106f86116be565b6040516107059190613b13565b60405180910390f35b34801561071a57600080fd5b506107236116e8565b6040516107309190613a57565b60405180910390f35b610753600480360381019061074e9190613aa5565b61177a565b005b34801561076157600080fd5b5061077c60048036038101906107779190613cf8565b611b29565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613c4c565b611caa565b6040516107b2919061396f565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190613e68565b611cf5565b005b3480156107f057600080fd5b506107f9611d57565b005b34801561080757600080fd5b50610822600480360381019061081d9190613fae565b611dff565b005b34801561083057600080fd5b5061084b60048036038101906108469190613aa5565b611efd565b6040516108589190613a57565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613aa5565b611fa4565b6040516108959190613b13565b60405180910390f35b3480156108aa57600080fd5b506108c560048036038101906108c09190614060565b611fe1565b005b3480156108d357600080fd5b506108ee60048036038101906108e99190613c4c565b612158565b6040516108fb919061416b565b60405180910390f35b34801561091057600080fd5b5061092b6004803603810190610926919061418d565b612206565b604051610938919061396f565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190613c4c565b61229a565b005b34801561097657600080fd5b50610991600480360381019061098c9190613aa5565b612392565b005b34801561099f57600080fd5b506109a8612418565b6040516109b591906139a3565b60405180910390f35b3480156109ca57600080fd5b506109d361241e565b6040516109e09190613a57565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5c5750610a5b826124ac565b5b9050919050565b61271681565b606060008054610a78906141fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa4906141fc565b8015610af15780601f10610ac657610100808354040283529160200191610af1565b820191906000526020600020905b815481529060010190602001808311610ad457829003601f168201915b5050505050905090565b6000610b068261258e565b610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c906142a0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610b886125fa565b73ffffffffffffffffffffffffffffffffffffffff16610ba66116be565b73ffffffffffffffffffffffffffffffffffffffff1614610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf39061430c565b60405180910390fd5b80600d8190555050565b6000610c1182611420565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c799061439e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ca16125fa565b73ffffffffffffffffffffffffffffffffffffffff161480610cd05750610ccf81610cca6125fa565b612206565b5b610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690614430565b60405180910390fd5b610d198383612602565b505050565b610d266125fa565b73ffffffffffffffffffffffffffffffffffffffff16610d446116be565b73ffffffffffffffffffffffffffffffffffffffff1614610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d919061430c565b60405180910390fd5b818160109190610dab929190613818565b505050565b6000600880549050905090565b60006001601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b610e1a610e146125fa565b826126bb565b610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e50906144c2565b60405180910390fd5b610e64838383612799565b505050565b6000610e7483611566565b8210610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90614554565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f5f6125fa565b73ffffffffffffffffffffffffffffffffffffffff16610f7d6116be565b73ffffffffffffffffffffffffffffffffffffffff1614610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca9061430c565b60405180910390fd5b60006064602847610fe491906145a3565b610fee919061462c565b905060006064600c4761100191906145a3565b61100b919061462c565b90506000606460084761101e91906145a3565b611028919061462c565b9050738e3331bbc9af9b5fdeae7e2ea83b207ccf66bc3973ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015611084573d6000803e3d6000fd5b5073b82cbb2cd0cb7e29015845a82c18d183fe254c4573ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156110df573d6000803e3d6000fd5b5073f331afba4179fbfea8464f69e69ea7fa4cf3747473ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561113a573d6000803e3d6000fd5b50736626a2739959b2355f29184fa0db390920ccfc4073ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611195573d6000803e3d6000fd5b50505050565b6111b683838360405180602001604052806000815250611cf5565b505050565b600e60009054906101000a900460ff1661120a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611201906146a9565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661122a82611420565b73ffffffffffffffffffffffffffffffffffffffff1614611280576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112779061473b565b60405180910390fd5b611289816129f5565b336012600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ff6554c3a5d28e08c120b5a69c7edbaf52f935bd2596a60b8a18e282cd257cddb813360405161130c92919061475b565b60405180910390a150565b6000611321610db0565b8210611362576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611359906147f6565b60405180910390fd5b6008828154811061137657611375614816565b5b90600052602060002001549050919050565b6113906125fa565b73ffffffffffffffffffffffffffffffffffffffff166113ae6116be565b73ffffffffffffffffffffffffffffffffffffffff1614611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb9061430c565b60405180910390fd5b8181600f9190611415929190613818565b505050565b600d5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c0906148b7565b60405180910390fd5b80915050919050565b600c5481565b600f80546114e5906141fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611511906141fc565b801561155e5780601f106115335761010080835404028352916020019161155e565b820191906000526020600020905b81548152906001019060200180831161154157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90614949565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601481565b61162b6125fa565b73ffffffffffffffffffffffffffffffffffffffff166116496116be565b73ffffffffffffffffffffffffffffffffffffffff161461169f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116969061430c565b60405180910390fd5b6116a96000612b06565b565b600e60009054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116f7906141fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611723906141fc565b80156117705780601f1061174557610100808354040283529160200191611770565b820191906000526020600020905b81548152906001019060200180831161175357829003601f168201915b5050505050905090565b6002600b5414156117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b7906149b5565b60405180910390fd5b6002600b819055506000600d54141561180e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180590614a21565b60405180910390fd5b60008111801561181f575060148111155b61185e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185590614ab3565b60405180910390fd5b6003600d5414156118c55761271681611875610db0565b61187f9190614ad3565b11156118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790614b75565b60405180910390fd5b611aa0565b611388816118d1610db0565b6118db9190614ad3565b111561191c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191390614c07565b60405180910390fd5b6002600d5414156119ae576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a090614c99565b60405180910390fd5b611a9f565b6001600d541415611a9e57600181601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a069190614cb9565b1015611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90614d5f565b60405180910390fd5b80601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a969190614cb9565b925050819055505b5b5b600081600c54611ab091906145a3565b905080341015611af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aec90614df1565b60405180910390fd5b60005b82811015611b1c57611b0933612bcc565b8080611b1490614e11565b915050611af8565b50506001600b8190555050565b611b316125fa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9690614ea6565b60405180910390fd5b8060056000611bac6125fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c596125fa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c9e919061396f565b60405180910390a35050565b600080601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b611d06611d006125fa565b836126bb565b611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c906144c2565b60405180910390fd5b611d5184848484612c10565b50505050565b611d5f6125fa565b73ffffffffffffffffffffffffffffffffffffffff16611d7d6116be565b73ffffffffffffffffffffffffffffffffffffffff1614611dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dca9061430c565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611e076125fa565b73ffffffffffffffffffffffffffffffffffffffff16611e256116be565b73ffffffffffffffffffffffffffffffffffffffff1614611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e729061430c565b60405180910390fd5b60005b8251811015611ef8578160116000858481518110611e9f57611e9e614816565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611ef090614e11565b915050611e7e565b505050565b6060611f088261258e565b611f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3e90614f38565b60405180910390fd5b6000611f51612c6c565b90506000815111611f715760405180602001604052806000815250611f9c565b80611f7b84612cfe565b604051602001611f8c929190614f94565b6040516020818303038152906040525b915050919050565b60006012600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b611fe96125fa565b73ffffffffffffffffffffffffffffffffffffffff166120076116be565b73ffffffffffffffffffffffffffffffffffffffff161461205d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120549061430c565b60405180910390fd5b6000600d54146120a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209990615004565b60405180910390fd5b6064828290506120b0610db0565b6120ba9190614ad3565b11156120fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f290615070565b60405180910390fd5b60005b828290508110156121535761214073b82cbb2cd0cb7e29015845a82c18d183fe254c4584848481811061213457612133614816565b5b90506020020135612e5f565b808061214b90614e11565b9150506120fe565b505050565b6060600061216583611566565b905060008167ffffffffffffffff81111561218357612182613d3d565b5b6040519080825280602002602001820160405280156121b15781602001602082028036833780820191505090505b50905060005b828110156121fb576121c98582610e69565b8282815181106121dc576121db614816565b5b60200260200101818152505080806121f390614e11565b9150506121b7565b819350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122a26125fa565b73ffffffffffffffffffffffffffffffffffffffff166122c06116be565b73ffffffffffffffffffffffffffffffffffffffff1614612316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230d9061430c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237d90615102565b60405180910390fd5b61238f81612b06565b50565b61239a6125fa565b73ffffffffffffffffffffffffffffffffffffffff166123b86116be565b73ffffffffffffffffffffffffffffffffffffffff161461240e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124059061430c565b60405180910390fd5b80600c8190555050565b61138881565b6010805461242b906141fc565b80601f0160208091040260200160405190810160405280929190818152602001828054612457906141fc565b80156124a45780601f10612479576101008083540402835291602001916124a4565b820191906000526020600020905b81548152906001019060200180831161248757829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061257757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612587575061258682612e7b565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661267583611420565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126c68261258e565b612705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fc90615194565b60405180910390fd5b600061271083611420565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061277f57508373ffffffffffffffffffffffffffffffffffffffff1661276784610afb565b73ffffffffffffffffffffffffffffffffffffffff16145b80612790575061278f8185612206565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127b982611420565b73ffffffffffffffffffffffffffffffffffffffff161461280f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280690615226565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561287f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612876906152b8565b60405180910390fd5b61288a838383612ee5565b612895600082612602565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128e59190614cb9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293c9190614ad3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612a0082611420565b9050612a0e81600084612ee5565b612a19600083612602565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a699190614cb9565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601354334442604051602001612be79493929190615341565b6040516020818303038152906040528051906020012060001c9050612c0c8282612e5f565b5050565b612c1b848484612799565b612c2784848484612ff9565b612c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5d90615401565b60405180910390fd5b50505050565b6060600f8054612c7b906141fc565b80601f0160208091040260200160405190810160405280929190818152602001828054612ca7906141fc565b8015612cf45780601f10612cc957610100808354040283529160200191612cf4565b820191906000526020600020905b815481529060010190602001808311612cd757829003601f168201915b5050505050905090565b60606000821415612d46576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e5a565b600082905060005b60008214612d78578080612d6190614e11565b915050600a82612d71919061462c565b9150612d4e565b60008167ffffffffffffffff811115612d9457612d93613d3d565b5b6040519080825280601f01601f191660200182016040528015612dc65781602001600182028036833780820191505090505b5090505b60008514612e5357600182612ddf9190614cb9565b9150600a85612dee9190615421565b6030612dfa9190614ad3565b60f81b818381518110612e1057612e0f614816565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e4c919061462c565b9450612dca565b8093505050505b919050565b6000612e6a82613190565b9050612e7683826132b3565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ef08383836132d1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f3357612f2e816132d6565b612f72565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612f7157612f70838261331f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fb557612fb08161348c565b612ff4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ff357612ff2828261355d565b5b5b505050565b600061301a8473ffffffffffffffffffffffffffffffffffffffff166135dc565b15613183578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130436125fa565b8786866040518563ffffffff1660e01b815260040161306594939291906154a7565b602060405180830381600087803b15801561307f57600080fd5b505af19250505080156130b057506040513d601f19601f820116820180604052508101906130ad9190615508565b60015b613133573d80600081146130e0576040519150601f19603f3d011682016040523d82523d6000602084013e6130e5565b606091505b5060008151141561312b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312290615401565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613188565b600190505b949350505050565b60008061319b610db0565b6127166131a89190614cb9565b9050600081846131b89190615421565b905060008060148361271681106131d2576131d1614816565b5b0154146131f75760148261271681106131ee576131ed614816565b5b015490506131fb565b8190505b6000601460018561320c9190614cb9565b612716811061321e5761321d614816565b5b01541415613252576001836132339190614cb9565b601483612716811061324857613247614816565b5b0181905550613290565b60146001846132619190614cb9565b612716811061327357613272614816565b5b0154601483612716811061328a57613289614816565b5b01819055505b601360008154809291906132a390614e11565b9190505550809350505050919050565b6132cd8282604051806020016040528060008152506135ef565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161332c84611566565b6133369190614cb9565b905060006007600084815260200190815260200160002054905081811461341b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134a09190614cb9565b90506000600960008481526020019081526020016000205490506000600883815481106134d0576134cf614816565b5b9060005260206000200154905080600883815481106134f2576134f1614816565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061354157613540615535565b5b6001900381819060005260206000200160009055905550505050565b600061356883611566565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b6135f9838361364a565b6136066000848484612ff9565b613645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363c90615401565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136b1906155b0565b60405180910390fd5b6136c38161258e565b15613703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136fa9061561c565b60405180910390fd5b61370f60008383612ee5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461375f9190614ad3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613824906141fc565b90600052602060002090601f016020900481019282613846576000855561388d565b82601f1061385f57803560ff191683800117855561388d565b8280016001018555821561388d579182015b8281111561388c578235825591602001919060010190613871565b5b50905061389a919061389e565b5090565b5b808211156138b757600081600090555060010161389f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613904816138cf565b811461390f57600080fd5b50565b600081359050613921816138fb565b92915050565b60006020828403121561393d5761393c6138c5565b5b600061394b84828501613912565b91505092915050565b60008115159050919050565b61396981613954565b82525050565b60006020820190506139846000830184613960565b92915050565b6000819050919050565b61399d8161398a565b82525050565b60006020820190506139b86000830184613994565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156139f85780820151818401526020810190506139dd565b83811115613a07576000848401525b50505050565b6000601f19601f8301169050919050565b6000613a29826139be565b613a3381856139c9565b9350613a438185602086016139da565b613a4c81613a0d565b840191505092915050565b60006020820190508181036000830152613a718184613a1e565b905092915050565b613a828161398a565b8114613a8d57600080fd5b50565b600081359050613a9f81613a79565b92915050565b600060208284031215613abb57613aba6138c5565b5b6000613ac984828501613a90565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613afd82613ad2565b9050919050565b613b0d81613af2565b82525050565b6000602082019050613b286000830184613b04565b92915050565b613b3781613af2565b8114613b4257600080fd5b50565b600081359050613b5481613b2e565b92915050565b60008060408385031215613b7157613b706138c5565b5b6000613b7f85828601613b45565b9250506020613b9085828601613a90565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f840112613bbf57613bbe613b9a565b5b8235905067ffffffffffffffff811115613bdc57613bdb613b9f565b5b602083019150836001820283011115613bf857613bf7613ba4565b5b9250929050565b60008060208385031215613c1657613c156138c5565b5b600083013567ffffffffffffffff811115613c3457613c336138ca565b5b613c4085828601613ba9565b92509250509250929050565b600060208284031215613c6257613c616138c5565b5b6000613c7084828501613b45565b91505092915050565b600080600060608486031215613c9257613c916138c5565b5b6000613ca086828701613b45565b9350506020613cb186828701613b45565b9250506040613cc286828701613a90565b9150509250925092565b613cd581613954565b8114613ce057600080fd5b50565b600081359050613cf281613ccc565b92915050565b60008060408385031215613d0f57613d0e6138c5565b5b6000613d1d85828601613b45565b9250506020613d2e85828601613ce3565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613d7582613a0d565b810181811067ffffffffffffffff82111715613d9457613d93613d3d565b5b80604052505050565b6000613da76138bb565b9050613db38282613d6c565b919050565b600067ffffffffffffffff821115613dd357613dd2613d3d565b5b613ddc82613a0d565b9050602081019050919050565b82818337600083830152505050565b6000613e0b613e0684613db8565b613d9d565b905082815260208101848484011115613e2757613e26613d38565b5b613e32848285613de9565b509392505050565b600082601f830112613e4f57613e4e613b9a565b5b8135613e5f848260208601613df8565b91505092915050565b60008060008060808587031215613e8257613e816138c5565b5b6000613e9087828801613b45565b9450506020613ea187828801613b45565b9350506040613eb287828801613a90565b925050606085013567ffffffffffffffff811115613ed357613ed26138ca565b5b613edf87828801613e3a565b91505092959194509250565b600067ffffffffffffffff821115613f0657613f05613d3d565b5b602082029050602081019050919050565b6000613f2a613f2584613eeb565b613d9d565b90508083825260208201905060208402830185811115613f4d57613f4c613ba4565b5b835b81811015613f765780613f628882613b45565b845260208401935050602081019050613f4f565b5050509392505050565b600082601f830112613f9557613f94613b9a565b5b8135613fa5848260208601613f17565b91505092915050565b60008060408385031215613fc557613fc46138c5565b5b600083013567ffffffffffffffff811115613fe357613fe26138ca565b5b613fef85828601613f80565b925050602061400085828601613a90565b9150509250929050565b60008083601f8401126140205761401f613b9a565b5b8235905067ffffffffffffffff81111561403d5761403c613b9f565b5b60208301915083602082028301111561405957614058613ba4565b5b9250929050565b60008060208385031215614077576140766138c5565b5b600083013567ffffffffffffffff811115614095576140946138ca565b5b6140a18582860161400a565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6140e28161398a565b82525050565b60006140f483836140d9565b60208301905092915050565b6000602082019050919050565b6000614118826140ad565b61412281856140b8565b935061412d836140c9565b8060005b8381101561415e57815161414588826140e8565b975061415083614100565b925050600181019050614131565b5085935050505092915050565b60006020820190508181036000830152614185818461410d565b905092915050565b600080604083850312156141a4576141a36138c5565b5b60006141b285828601613b45565b92505060206141c385828601613b45565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061421457607f821691505b60208210811415614228576142276141cd565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061428a602c836139c9565b91506142958261422e565b604082019050919050565b600060208201905081810360008301526142b98161427d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142f66020836139c9565b9150614301826142c0565b602082019050919050565b60006020820190508181036000830152614325816142e9565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006143886021836139c9565b91506143938261432c565b604082019050919050565b600060208201905081810360008301526143b78161437b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061441a6038836139c9565b9150614425826143be565b604082019050919050565b600060208201905081810360008301526144498161440d565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006144ac6031836139c9565b91506144b782614450565b604082019050919050565b600060208201905081810360008301526144db8161449f565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061453e602b836139c9565b9150614549826144e2565b604082019050919050565b6000602082019050818103600083015261456d81614531565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145ae8261398a565b91506145b98361398a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145f2576145f1614574565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146378261398a565b91506146428361398a565b925082614652576146516145fd565b5b828204905092915050565b7f596f752063616e6e6f74206275726e20617420746869732074696d6500000000600082015250565b6000614693601c836139c9565b915061469e8261465d565b602082019050919050565b600060208201905081810360008301526146c281614686565b9050919050565b7f596f752063616e6e6f74206275726e206120746f6b656e20796f7520646f206e60008201527f6f74206f776e0000000000000000000000000000000000000000000000000000602082015250565b60006147256026836139c9565b9150614730826146c9565b604082019050919050565b6000602082019050818103600083015261475481614718565b9050919050565b60006040820190506147706000830185613994565b61477d6020830184613b04565b9392505050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006147e0602c836139c9565b91506147eb82614784565b604082019050919050565b6000602082019050818103600083015261480f816147d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006148a16029836139c9565b91506148ac82614845565b604082019050919050565b600060208201905081810360008301526148d081614894565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614933602a836139c9565b915061493e826148d7565b604082019050919050565b6000602082019050818103600083015261496281614926565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061499f601f836139c9565b91506149aa82614969565b602082019050919050565b600060208201905081810360008301526149ce81614992565b9050919050565b7f53616c6520697320636c6f736564000000000000000000000000000000000000600082015250565b6000614a0b600e836139c9565b9150614a16826149d5565b602082019050919050565b60006020820190508181036000830152614a3a816149fe565b9050919050565b7f596f752063616e206f6e6c79206d696e74203120746f20323020746f6b656e7360008201527f20617420612074696d6500000000000000000000000000000000000000000000602082015250565b6000614a9d602a836139c9565b9150614aa882614a41565b604082019050919050565b60006020820190508181036000830152614acc81614a90565b9050919050565b6000614ade8261398a565b9150614ae98361398a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b1e57614b1d614574565b5b828201905092915050565b7f4c4343432068617320736f6c64206f7574000000000000000000000000000000600082015250565b6000614b5f6011836139c9565b9150614b6a82614b29565b602082019050919050565b60006020820190508181036000830152614b8e81614b52565b9050919050565b7f546865206d6178696d756d2070726573616c6520746f6b656e7320686176652060008201527f6265656e206d696e746564000000000000000000000000000000000000000000602082015250565b6000614bf1602b836139c9565b9150614bfc82614b95565b604082019050919050565b60006020820190508181036000830152614c2081614be4565b9050919050565b7f596f7520617265206e6f7420656c696769626c6520746f2070726573616c652060008201527f6d696e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614c836024836139c9565b9150614c8e82614c27565b604082019050919050565b60006020820190508181036000830152614cb281614c76565b9050919050565b6000614cc48261398a565b9150614ccf8361398a565b925082821015614ce257614ce1614574565b5b828203905092915050565b7f596f752063616e6e6f74206d696e742074686174206d616e7920746f6b656e7360008201527f20617420746869732074696d6500000000000000000000000000000000000000602082015250565b6000614d49602d836139c9565b9150614d5482614ced565b604082019050919050565b60006020820190508181036000830152614d7881614d3c565b9050919050565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b6000614ddb6023836139c9565b9150614de682614d7f565b604082019050919050565b60006020820190508181036000830152614e0a81614dce565b9050919050565b6000614e1c8261398a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e4f57614e4e614574565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614e906019836139c9565b9150614e9b82614e5a565b602082019050919050565b60006020820190508181036000830152614ebf81614e83565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f22602f836139c9565b9150614f2d82614ec6565b604082019050919050565b60006020820190508181036000830152614f5181614f15565b9050919050565b600081905092915050565b6000614f6e826139be565b614f788185614f58565b9350614f888185602086016139da565b80840191505092915050565b6000614fa08285614f63565b9150614fac8284614f63565b91508190509392505050565b7f53616c65206973206e6f7420696e20636c6f7365642073746174650000000000600082015250565b6000614fee601b836139c9565b9150614ff982614fb8565b602082019050919050565b6000602082019050818103600083015261501d81614fe1565b9050919050565b7f457863656564656420676976656177617920737570706c790000000000000000600082015250565b600061505a6018836139c9565b915061506582615024565b602082019050919050565b600060208201905081810360008301526150898161504d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150ec6026836139c9565b91506150f782615090565b604082019050919050565b6000602082019050818103600083015261511b816150df565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061517e602c836139c9565b915061518982615122565b604082019050919050565b600060208201905081810360008301526151ad81615171565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006152106029836139c9565b915061521b826151b4565b604082019050919050565b6000602082019050818103600083015261523f81615203565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006152a26024836139c9565b91506152ad82615246565b604082019050919050565b600060208201905081810360008301526152d181615295565b9050919050565b6000819050919050565b6152f36152ee8261398a565b6152d8565b82525050565b60008160601b9050919050565b6000615311826152f9565b9050919050565b600061532382615306565b9050919050565b61533b61533682613af2565b615318565b82525050565b600061534d82876152e2565b60208201915061535d828661532a565b60148201915061536d82856152e2565b60208201915061537d82846152e2565b60208201915081905095945050505050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006153eb6032836139c9565b91506153f68261538f565b604082019050919050565b6000602082019050818103600083015261541a816153de565b9050919050565b600061542c8261398a565b91506154378361398a565b925082615447576154466145fd565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061547982615452565b615483818561545d565b93506154938185602086016139da565b61549c81613a0d565b840191505092915050565b60006080820190506154bc6000830187613b04565b6154c96020830186613b04565b6154d66040830185613994565b81810360608301526154e8818461546e565b905095945050505050565b600081519050615502816138fb565b92915050565b60006020828403121561551e5761551d6138c5565b5b600061552c848285016154f3565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061559a6020836139c9565b91506155a582615564565b602082019050919050565b600060208201905081810360008301526155c98161558d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615606601c836139c9565b9150615611826155d0565b602082019050919050565b60006020820190508181036000830152615635816155f9565b905091905056fea26469706673582212201e13112c737d23c3af7b28934e821ff0715e4fc63b5a94d4390734653d18ea7264736f6c63430008090033

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.