ETH Price: $2,672.72 (+1.34%)

Token

KevinToadz by CC0LABS (KEVINZ)
 

Overview

Max Total Supply

6,969 KEVINZ

Holders

231

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
59 KEVINZ
0xC1a4DB41a518c360B587BB5821e24d5944D3f58C
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
KevinToadzByCC0LABS

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity Multiple files format)

File 10 of 13: Kevintoadz.sol
/*
SPDX-License-Identifier: GPL-3.0
                                                                                
                         ###################   ###################              
                         ###################   ###################              
                         ##        CC0LABS##   ##        CC0LABS##              
                ###########        CC0LABS#######        CC0LABS##              
                ###########        CC0LABS#######        CC0LABS##              
                ##       ##        CC0LABS##   ##        CC0LABS##              
                ##       ##        CC0LABS##   ##        CC0LABS##              
                         ###################   ###################              
                         ###################   probablynothing.com              
                                                                                
                                                                                
                                        ***                                     
  ******     ***    ***%***((((((     %%**%**   ***    ******    ******    ***( 
 *.***(((  ((*(((  *.**(((%((%(((    *.**%*%%  *((((  *..*((((  *..**(((  ((((((
 *.*(((((((*((((#  *.*((((%   #      *.*(((%*  (*(((  *..*((((  *..*((((  (*((((
 ***((((((((((     *.*(((((((((((    *.*((%(%**(((((  (**(((((  *..*((((((((((((
 ***(((((((*(((((  ***(((((          ***(((%((((((    ((((((((  ****((((#((*((((
 (*((((((  ((*(((  (*(((((*(****((   (*((((((((( #    (**(((((  ((((((((# (*((((
   ### #      ##    #####(   ##         ### #            ### #      ###   ####  
   #                   #                                                   #,   
                    *%%  %%                                                     
 *..*(((((((((   *.%**%%***%**    ..%%**%%%*%*   *..*((((((((    *..***(%.(((((.
  **%((((((((   ****(((###(%*%  .***((((   ((%%  ***((((##(((((  #((((((*%%*(((.
     %((((      *.*(((%   *(((  .,,*(((((((((((  *.*((((   (*((      ***((((    
     %((((      *.*((((   *(((  .,,*(((( # ((((  *.*((((   ((((    *.*((((      
     *((((      (*((((((((((((  *(((((((   ((((  **((((((((((((  **((((((((((((.
      (((        #((((((((((     ,(((((     ((   #(((((((((((     ((((((((((((. 
       ,             #,              ,             ,#,    ,          ,#   ,     

https://www.probablynothing.com
Follow @CC0LABS for future CC0 experiments that drop.      

Supply: 6969 (69 rares included)
FREE MINT*

*this free mint is also a social experiment. When you go to mint a KevinToadz, 
your wallet’s past activity is reviewed. If within 72 hours of your buying/minting 
NFTs, you go to list/sell those NFTs >25% of the time, then you won’t be able to 
mint and will have to get your KevinToadz on a secondary exchange.

*/

pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721A.sol";
import "./Strings.sol";

contract KevinToadzByCC0LABS is Ownable, ERC721A, ReentrancyGuard {
    string public KEVINZ_PROVENANCE = "";

    bool public SALE_IS_ACTIVE = false;
    
    uint public constant MAX_KEVINZ_PURCHASE = 20; // to save gas, some place used value instead of var, so be careful during changing this value
    uint256 public MAX_KEVINZ = 6969; // to save gas, some place used value instead of var, so be careful during changing this value

    string public PRICE = "FREE (visit https://probablynothing.com/KEVINTOADZ to get mint-key)";
    
    uint public reserve = 69;

    // ############################# constructor #############################
    constructor() ERC721A("KevinToadz by CC0LABS", "KEVINZ", 20, 6969) { }
    
    // ############################# function section #############################

    // ***************************** internal : Start *****************************
    
    function getPrefixedHash(bytes32 messageHash) internal pure returns (bytes32) {
        bytes memory hashPrefix = "\x19Ethereum Signed Message:\n32";
        return keccak256(abi.encodePacked(hashPrefix, messageHash));
    }

    function splitSignature(bytes memory sig) pure internal returns (uint8 v, bytes32 r, bytes32 s) {
        require(sig.length == 65 , "invalid length");
        assembly {
            r := mload(add(sig, 32))
            s := mload(add(sig, 64))
            v := byte(0, mload(add(sig, 96)))
        }
        if (v < 27) {
            v += 27;
        }
        require(v == 27 || v == 28 , "value of v ");
        return (v, r, s);
    }
    
    function validateEligibilityKey(address accountAddress, bytes memory eligibilityKey) internal pure returns (bool) {
        (uint8 v, bytes32 r, bytes32 s) = splitSignature(eligibilityKey);
        bytes32 messageHash = keccak256(abi.encodePacked("KEVINZ-", accountAddress));
        bytes32 msgHash = getPrefixedHash(messageHash); 
        return ecrecover(msgHash, v, r, s) == 0x20Ff11c0383C3E84D2D251Ab77eBBaD667c2964C;
    }
    
    // ***************************** internal : End *****************************
    
    // ***************************** onlyOwner : Start *****************************
    
    function withdraw() public onlyOwner {
      (bool success, ) = msg.sender.call{value: address(this).balance}("");
      require(success, "Transfer failed.");
    }

    function mintReserve(address _to, uint256 _reserveAmount) public onlyOwner {        
        require(_reserveAmount > 0 && _reserveAmount <= reserve, "Not enough reserve left");
        _safeMint(_to, _reserveAmount);
        reserve = reserve - _reserveAmount;
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        KEVINZ_PROVENANCE = provenanceHash;
    }
    
    function startSale() external onlyOwner {
        require(!SALE_IS_ACTIVE, "Public sale has already begun");
        SALE_IS_ACTIVE = true;
    }

    function pauseSale() external onlyOwner {
        SALE_IS_ACTIVE = false;
    }

    // ***************************** onlyOwner : End *****************************

    // ***************************** public view : Start *************************
    
    function tokensOfOwner(address _owner) public view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    function mint(uint numberOfTokens, bytes memory mintKey) public {
        uint256 currentTotalSupply = totalSupply();
        require(SALE_IS_ACTIVE, "Sale must be active to mint KEVINZ");
        require(numberOfTokens < 21, "Can only mint 20 tokens at a time");
        require(currentTotalSupply + numberOfTokens < 6970, "Purchase would exceed max supply of KEVINZs"); // ref MAX_KEVINZ
        bool isValidMintKey = validateEligibilityKey(msg.sender, mintKey);
        require(isValidMintKey, "Eligibility key is not valid"); 
        
        _safeMint(msg.sender, numberOfTokens);
    }

    // metadata URI
    string private _baseTokenURI;

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

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

    function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
      _setOwnersExplicit(quantity);
    }

    function numberMinted(address owner) public view returns (uint256) {
      return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
      external
      view
      returns (TokenOwnership memory)
    {
      return ownershipOf(tokenId);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 13: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }
    
    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"KEVINZ_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_KEVINZ","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_KEVINZ_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_IS_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes","name":"mintKey","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"mintReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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"}]

60006001819055600881905560e0604081905260c08290526200002691600a919062000253565b50600b805460ff19169055611b39600c556040805160808101909152604380825262003434602083013980516200006691600d9160209091019062000253565b506045600e553480156200007957600080fd5b506040518060400160405280601581526020017f4b6576696e546f61647a206279204343304c41425300000000000000000000008152506040518060400160405280600681526020016525a2ab24a72d60d11b8152506014611b39620000ee620000e8620001ff60201b60201c565b62000203565b600081116200015b5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001bd5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000152565b8351620001d290600290602087019062000253565b508251620001e890600390602086019062000253565b5060a0919091526080525050600160095562000336565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200026190620002f9565b90600052602060002090601f016020900481019282620002855760008555620002d0565b82601f10620002a057805160ff1916838001178555620002d0565b82800160010185558215620002d0579182015b82811115620002d0578251825591602001919060010190620002b3565b50620002de929150620002e2565b5090565b5b80821115620002de5760008155600101620002e3565b600181811c908216806200030e57607f821691505b602082108114156200033057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516130c36200037160003960008181611de601528181611e100152612520015260008181611bc10152611bf301526130c36000f3fe608060405234801561001057600080fd5b50600436106102775760003560e01c806377da3fec11610160578063b66a0e5d116100d8578063d7224ba01161008c578063dc33e68111610071578063dc33e681146104ef578063e985e9c514610502578063f2fde38b1461053e57600080fd5b8063d7224ba0146104d3578063db7fd408146104dc57600080fd5b8063c87b56dd116100bd578063c87b56dd146104af578063cd3293de146104c2578063d42c5249146104cb57600080fd5b8063b66a0e5d14610494578063b88d4fde1461049c57600080fd5b80638e825be01161012f5780639470799211610114578063947079921461047157806395d89b4114610479578063a22cb4651461048157600080fd5b80638e825be01461041d5780639231ab2a1461043057600080fd5b806377da3fec146103db5780638462151c146103e45780638d859f3e146104045780638da5cb5b1461040c57600080fd5b80632f745c59116101f357806355367ba9116101c25780636352211e116101a75780636352211e146103ad57806370a08231146103c0578063715018a6146103d357600080fd5b806355367ba91461039257806355f804b31461039a57600080fd5b80632f745c59146103515780633ccfd60b1461036457806342842e0e1461036c5780634f6ccce71461037f57600080fd5b8063095ea7b31161024a57806318160ddd1161022f57806318160ddd1461031957806323b872dd1461032b5780632d20fb601461033e57600080fd5b8063095ea7b3146102f1578063109695231461030657600080fd5b806301ffc9a71461027c57806306eda1b5146102a457806306fdde03146102b1578063081812fc146102c6575b600080fd5b61028f61028a366004612a5b565b610551565b60405190151581526020015b60405180910390f35b600b5461028f9060ff1681565b6102b9610622565b60405161029b9190612ad0565b6102d96102d4366004612ae3565b6106b4565b6040516001600160a01b03909116815260200161029b565b6103046102ff366004612b18565b610754565b005b610304610314366004612bce565b610887565b6001545b60405190815260200161029b565b610304610339366004612c17565b6108f8565b61030461034c366004612ae3565b610903565b61031d61035f366004612b18565b6109c6565b610304610b69565b61030461037a366004612c17565b610c5e565b61031d61038d366004612ae3565b610c79565b610304610cfc565b6103046103a8366004612c53565b610d62565b6102d96103bb366004612ae3565b610dc8565b61031d6103ce366004612cc5565b610dda565b610304610e86565b61031d600c5481565b6103f76103f2366004612cc5565b610eec565b60405161029b9190612ce0565b6102b9610fab565b6000546001600160a01b03166102d9565b61030461042b366004612b18565b611039565b61044361043e366004612ae3565b611110565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161029b565b61031d601481565b6102b961112d565b61030461048f366004612d24565b61113c565b610304611201565b6103046104aa366004612d80565b6112bd565b6102b96104bd366004612ae3565b61134c565b61031d600e5481565b6102b9611427565b61031d60085481565b6103046104ea366004612de8565b611434565b61031d6104fd366004612cc5565b611615565b61028f610510366004612e2f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61030461054c366004612cc5565b611620565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105b457506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105e857506001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000145b8061061c57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606002805461063190612e62565b80601f016020809104026020016040519081016040528092919081815260200182805461065d90612e62565b80156106aa5780601f1061067f576101008083540402835291602001916106aa565b820191906000526020600020905b81548152906001019060200180831161068d57829003601f168201915b5050505050905090565b60006106c1826001541190565b6107385760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075f82610dc8565b9050806001600160a01b0316836001600160a01b031614156107e95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f6572000000000000000000000000000000000000000000000000000000000000606482015260840161072f565b336001600160a01b038216148061080557506108058133610510565b6108775760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161072f565b6108828383836116ff565b505050565b6000546001600160a01b031633146108e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b80516108f490600a90602084019061293c565b5050565b610882838383611773565b6000546001600160a01b0316331461095d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b600260095414156109b05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161072f565b60026009556109be81611b50565b506001600955565b60006109d183610dda565b8210610a455760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f6473000000000000000000000000000000000000000000000000000000000000606482015260840161072f565b6000610a5060015490565b905060008060005b83811015610afa576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610aab57805192505b876001600160a01b0316836001600160a01b03161415610ae75786841415610ad95750935061061c92505050565b83610ae381612ead565b9450505b5080610af281612ead565b915050610a58565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e646578000000000000000000000000000000000000606482015260840161072f565b6000546001600160a01b03163314610bc35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b604051600090339047908381818185875af1925050503d8060008114610c05576040519150601f19603f3d011682016040523d82523d6000602084013e610c0a565b606091505b5050905080610c5b5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e00000000000000000000000000000000604482015260640161072f565b50565b610882838383604051806020016040528060008152506112bd565b6000610c8460015490565b8210610cf85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e64730000000000000000000000000000000000000000000000000000000000606482015260840161072f565b5090565b6000546001600160a01b03163314610d565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b600b805460ff19169055565b6000546001600160a01b03163314610dbc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b610882600f83836129bc565b6000610dd382611d51565b5192915050565b60006001600160a01b038216610e585760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f2061646472657373000000000000000000000000000000000000000000606482015260840161072f565b506001600160a01b03166000908152600560205260409020546fffffffffffffffffffffffffffffffff1690565b6000546001600160a01b03163314610ee05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b610eea6000611f1c565b565b60606000610ef983610dda565b905080610f1a5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610f3557610f35612b42565b604051908082528060200260200182016040528015610f5e578160200160208202803683370190505b50905060005b82811015610f1257610f7685826109c6565b828281518110610f8857610f88612ec8565b602090810291909101015280610f9d81612ead565b915050610f64565b50919050565b600d8054610fb890612e62565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe490612e62565b80156110315780601f1061100657610100808354040283529160200191611031565b820191906000526020600020905b81548152906001019060200180831161101457829003601f168201915b505050505081565b6000546001600160a01b031633146110935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b6000811180156110a55750600e548111155b6110f15760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f7567682072657365727665206c656674000000000000000000604482015260640161072f565b6110fb8282611f84565b80600e546111099190612ede565b600e555050565b604080518082019091526000808252602082015261061c82611d51565b60606003805461063190612e62565b6001600160a01b0382163314156111955760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161072f565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461125b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b600b5460ff16156112ae5760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c652068617320616c726561647920626567756e000000604482015260640161072f565b600b805460ff19166001179055565b6112c8848484611773565b6112d484848484611f9e565b6113465760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e74657200000000000000000000000000606482015260840161072f565b50505050565b6060611359826001541190565b6113cb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161072f565b60006113d5612125565b905060008151116113f55760405180602001604052806000815250611420565b806113ff84612134565b604051602001611410929190612ef5565b6040516020818303038152906040525b9392505050565b600a8054610fb890612e62565b600061143f60015490565b600b5490915060ff166114ba5760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e74204b45564960448201527f4e5a000000000000000000000000000000000000000000000000000000000000606482015260840161072f565b601583106115305760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015260840161072f565b611b3a61153d8483612f24565b106115b05760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f66204b4556494e5a73000000000000000000000000000000000000000000606482015260840161072f565b60006115bc3384612266565b90508061160b5760405162461bcd60e51b815260206004820152601c60248201527f456c69676962696c697479206b6579206973206e6f742076616c696400000000604482015260640161072f565b6113463385611f84565b600061061c82612387565b6000546001600160a01b0316331461167a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b6001600160a01b0381166116f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161072f565b610c5b81611f1c565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061177e82611d51565b80519091506000906001600160a01b0316336001600160a01b031614806117b55750336117aa846106b4565b6001600160a01b0316145b806117c7575081516117c79033610510565b90508061183c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161072f565b846001600160a01b031682600001516001600160a01b0316146118c75760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e65720000000000000000000000000000000000000000000000000000606482015260840161072f565b6001600160a01b0384166119435760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161072f565b61195360008484600001516116ff565b6001600160a01b038516600090815260056020526040812080546001929061198e9084906fffffffffffffffffffffffffffffffff16612f3c565b82546101009290920a6fffffffffffffffffffffffffffffffff8181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926119e391859116612f6d565b82546fffffffffffffffffffffffffffffffff9182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a74846001612f24565b6000818152600460205260409020549091506001600160a01b0316611b0657611a9e816001541190565b15611b065760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481611ba05760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161072f565b60006001611bae8484612f24565b611bb89190612ede565b9050611be560017f0000000000000000000000000000000000000000000000000000000000000000612ede565b811115611c1a57611c1760017f0000000000000000000000000000000000000000000000000000000000000000612ede565b90505b611c25816001541190565b611c975760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201527f6c65616e75700000000000000000000000000000000000000000000000000000606482015260840161072f565b815b818111611d3d576000818152600460205260409020546001600160a01b0316611d2b576000611cc782611d51565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611d3581612ead565b915050611c99565b50611d49816001612f24565b600855505050565b6040805180820190915260008082526020820152611d70826001541190565b611de25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e00000000000000000000000000000000000000000000606482015260840161072f565b60007f00000000000000000000000000000000000000000000000000000000000000008310611e4357611e357f000000000000000000000000000000000000000000000000000000000000000084612ede565b611e40906001612f24565b90505b825b818110611ead576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e9a57949350505050565b5080611ea581612f98565b915050611e45565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000606482015260840161072f565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108f4828260405180602001604052806000815250612447565b60006001600160a01b0384163b15612119576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611ffb903390899088908890600401612faf565b6020604051808303816000875af1925050508015612036575060408051601f3d908101601f1916820190925261203391810190612feb565b60015b6120e6573d808015612064576040519150601f19603f3d011682016040523d82523d6000602084013e612069565b606091505b5080516120de5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e74657200000000000000000000000000606482015260840161072f565b805181602001fd5b6001600160e01b0319167f150b7a020000000000000000000000000000000000000000000000000000000014905061211d565b5060015b949350505050565b6060600f805461063190612e62565b60608161217457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561219e578061218881612ead565b91506121979050600a8361301e565b9150612178565b60008167ffffffffffffffff8111156121b9576121b9612b42565b6040519080825280601f01601f1916602001820160405280156121e3576020820181803683370190505b5090505b841561211d576121f8600183612ede565b9150612205600a86613032565b612210906030612f24565b60f81b81838151811061222557612225612ec8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061225f600a8661301e565b94506121e7565b600080600080612275856127e4565b6040517f4b4556494e5a2d0000000000000000000000000000000000000000000000000060208201527fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608b901b1660278201529295509093509150600090603b0160405160208183030381529060405280519060200120905060006122fb826128d0565b60408051600081526020810180835283905260ff881691810191909152606081018690526080810185905290915060019060a0016020604051602081039080840390855afa158015612351573d6000803e3d6000fd5b5050604051601f1901516001600160a01b03167320ff11c0383c3e84d2d251ab77ebbad667c2964c149998505050505050505050565b60006001600160a01b0382166124055760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f2061646472657373000000000000000000000000000000606482015260840161072f565b506001600160a01b031660009081526005602052604090205470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1690565b6001546001600160a01b0384166124c65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161072f565b6124d1816001541190565b1561251e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161072f565b7f00000000000000000000000000000000000000000000000000000000000000008311156125b45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f6768000000000000000000000000000000000000000000000000000000000000606482015260840161072f565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff80821683527001000000000000000000000000000000009091041691810191909152815180830190925280519091908190612626908790612f6d565b6fffffffffffffffffffffffffffffffff16815260200185836020015161264d9190612f6d565b6fffffffffffffffffffffffffffffffff9081169091526001600160a01b03808816600081815260056020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127d95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127476000888488611f9e565b6127b95760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e74657200000000000000000000000000606482015260840161072f565b816127c381612ead565b92505080806127d190612ead565b9150506126fa565b506001819055611b48565b6000806000835160411461283a5760405162461bcd60e51b815260206004820152600e60248201527f696e76616c6964206c656e677468000000000000000000000000000000000000604482015260640161072f565b50505060208101516040820151606083015160001a9190601b83101561286857612865601b84613046565b92505b8260ff16601b148061287d57508260ff16601c145b6128c95760405162461bcd60e51b815260206004820152600b60248201527f76616c7565206f66207620000000000000000000000000000000000000000000604482015260640161072f565b9193909250565b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152509050808360405160200161291e92919061306b565b60405160208183030381529060405280519060200120915050919050565b82805461294890612e62565b90600052602060002090601f01602090048101928261296a57600085556129b0565b82601f1061298357805160ff19168380011785556129b0565b828001600101855582156129b0579182015b828111156129b0578251825591602001919060010190612995565b50610cf8929150612a30565b8280546129c890612e62565b90600052602060002090601f0160209004810192826129ea57600085556129b0565b82601f10612a035782800160ff198235161785556129b0565b828001600101855582156129b0579182015b828111156129b0578235825591602001919060010190612a15565b5b80821115610cf85760008155600101612a31565b6001600160e01b031981168114610c5b57600080fd5b600060208284031215612a6d57600080fd5b813561142081612a45565b60005b83811015612a93578181015183820152602001612a7b565b838111156113465750506000910152565b60008151808452612abc816020860160208601612a78565b601f01601f19169290920160200192915050565b6020815260006114206020830184612aa4565b600060208284031215612af557600080fd5b5035919050565b80356001600160a01b0381168114612b1357600080fd5b919050565b60008060408385031215612b2b57600080fd5b612b3483612afc565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612b7357612b73612b42565b604051601f8501601f19908116603f01168101908282118183101715612b9b57612b9b612b42565b81604052809350858152868686011115612bb457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612be057600080fd5b813567ffffffffffffffff811115612bf757600080fd5b8201601f81018413612c0857600080fd5b61211d84823560208401612b58565b600080600060608486031215612c2c57600080fd5b612c3584612afc565b9250612c4360208501612afc565b9150604084013590509250925092565b60008060208385031215612c6657600080fd5b823567ffffffffffffffff80821115612c7e57600080fd5b818501915085601f830112612c9257600080fd5b813581811115612ca157600080fd5b866020828501011115612cb357600080fd5b60209290920196919550909350505050565b600060208284031215612cd757600080fd5b61142082612afc565b6020808252825182820181905260009190848201906040850190845b81811015612d1857835183529284019291840191600101612cfc565b50909695505050505050565b60008060408385031215612d3757600080fd5b612d4083612afc565b915060208301358015158114612d5557600080fd5b809150509250929050565b600082601f830112612d7157600080fd5b61142083833560208501612b58565b60008060008060808587031215612d9657600080fd5b612d9f85612afc565b9350612dad60208601612afc565b925060408501359150606085013567ffffffffffffffff811115612dd057600080fd5b612ddc87828801612d60565b91505092959194509250565b60008060408385031215612dfb57600080fd5b82359150602083013567ffffffffffffffff811115612e1957600080fd5b612e2585828601612d60565b9150509250929050565b60008060408385031215612e4257600080fd5b612e4b83612afc565b9150612e5960208401612afc565b90509250929050565b600181811c90821680612e7657607f821691505b60208210811415610fa557634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612ec157612ec1612e97565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082821015612ef057612ef0612e97565b500390565b60008351612f07818460208801612a78565b835190830190612f1b818360208801612a78565b01949350505050565b60008219821115612f3757612f37612e97565b500190565b60006fffffffffffffffffffffffffffffffff83811690831681811015612f6557612f65612e97565b039392505050565b60006fffffffffffffffffffffffffffffffff808316818516808303821115612f1b57612f1b612e97565b600081612fa757612fa7612e97565b506000190190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612fe16080830184612aa4565b9695505050505050565b600060208284031215612ffd57600080fd5b815161142081612a45565b634e487b7160e01b600052601260045260246000fd5b60008261302d5761302d613008565b500490565b60008261304157613041613008565b500690565b600060ff821660ff84168060ff0382111561306357613063612e97565b019392505050565b6000835161307d818460208801612a78565b919091019182525060200191905056fea2646970667358221220aa5f3682b8f124c5aec16350af807d73ba0d6bbb1b3c7275d68b3d85e9eff2db64736f6c634300080c003346524545202876697369742068747470733a2f2f70726f6261626c796e6f7468696e672e636f6d2f4b4556494e544f41445a20746f20676574206d696e742d6b657929

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102775760003560e01c806377da3fec11610160578063b66a0e5d116100d8578063d7224ba01161008c578063dc33e68111610071578063dc33e681146104ef578063e985e9c514610502578063f2fde38b1461053e57600080fd5b8063d7224ba0146104d3578063db7fd408146104dc57600080fd5b8063c87b56dd116100bd578063c87b56dd146104af578063cd3293de146104c2578063d42c5249146104cb57600080fd5b8063b66a0e5d14610494578063b88d4fde1461049c57600080fd5b80638e825be01161012f5780639470799211610114578063947079921461047157806395d89b4114610479578063a22cb4651461048157600080fd5b80638e825be01461041d5780639231ab2a1461043057600080fd5b806377da3fec146103db5780638462151c146103e45780638d859f3e146104045780638da5cb5b1461040c57600080fd5b80632f745c59116101f357806355367ba9116101c25780636352211e116101a75780636352211e146103ad57806370a08231146103c0578063715018a6146103d357600080fd5b806355367ba91461039257806355f804b31461039a57600080fd5b80632f745c59146103515780633ccfd60b1461036457806342842e0e1461036c5780634f6ccce71461037f57600080fd5b8063095ea7b31161024a57806318160ddd1161022f57806318160ddd1461031957806323b872dd1461032b5780632d20fb601461033e57600080fd5b8063095ea7b3146102f1578063109695231461030657600080fd5b806301ffc9a71461027c57806306eda1b5146102a457806306fdde03146102b1578063081812fc146102c6575b600080fd5b61028f61028a366004612a5b565b610551565b60405190151581526020015b60405180910390f35b600b5461028f9060ff1681565b6102b9610622565b60405161029b9190612ad0565b6102d96102d4366004612ae3565b6106b4565b6040516001600160a01b03909116815260200161029b565b6103046102ff366004612b18565b610754565b005b610304610314366004612bce565b610887565b6001545b60405190815260200161029b565b610304610339366004612c17565b6108f8565b61030461034c366004612ae3565b610903565b61031d61035f366004612b18565b6109c6565b610304610b69565b61030461037a366004612c17565b610c5e565b61031d61038d366004612ae3565b610c79565b610304610cfc565b6103046103a8366004612c53565b610d62565b6102d96103bb366004612ae3565b610dc8565b61031d6103ce366004612cc5565b610dda565b610304610e86565b61031d600c5481565b6103f76103f2366004612cc5565b610eec565b60405161029b9190612ce0565b6102b9610fab565b6000546001600160a01b03166102d9565b61030461042b366004612b18565b611039565b61044361043e366004612ae3565b611110565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161029b565b61031d601481565b6102b961112d565b61030461048f366004612d24565b61113c565b610304611201565b6103046104aa366004612d80565b6112bd565b6102b96104bd366004612ae3565b61134c565b61031d600e5481565b6102b9611427565b61031d60085481565b6103046104ea366004612de8565b611434565b61031d6104fd366004612cc5565b611615565b61028f610510366004612e2f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61030461054c366004612cc5565b611620565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105b457506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105e857506001600160e01b031982167f780e9d6300000000000000000000000000000000000000000000000000000000145b8061061c57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606002805461063190612e62565b80601f016020809104026020016040519081016040528092919081815260200182805461065d90612e62565b80156106aa5780601f1061067f576101008083540402835291602001916106aa565b820191906000526020600020905b81548152906001019060200180831161068d57829003601f168201915b5050505050905090565b60006106c1826001541190565b6107385760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e0000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075f82610dc8565b9050806001600160a01b0316836001600160a01b031614156107e95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f6572000000000000000000000000000000000000000000000000000000000000606482015260840161072f565b336001600160a01b038216148061080557506108058133610510565b6108775760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161072f565b6108828383836116ff565b505050565b6000546001600160a01b031633146108e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b80516108f490600a90602084019061293c565b5050565b610882838383611773565b6000546001600160a01b0316331461095d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b600260095414156109b05760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161072f565b60026009556109be81611b50565b506001600955565b60006109d183610dda565b8210610a455760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f6473000000000000000000000000000000000000000000000000000000000000606482015260840161072f565b6000610a5060015490565b905060008060005b83811015610afa576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610aab57805192505b876001600160a01b0316836001600160a01b03161415610ae75786841415610ad95750935061061c92505050565b83610ae381612ead565b9450505b5080610af281612ead565b915050610a58565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e646578000000000000000000000000000000000000606482015260840161072f565b6000546001600160a01b03163314610bc35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b604051600090339047908381818185875af1925050503d8060008114610c05576040519150601f19603f3d011682016040523d82523d6000602084013e610c0a565b606091505b5050905080610c5b5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e00000000000000000000000000000000604482015260640161072f565b50565b610882838383604051806020016040528060008152506112bd565b6000610c8460015490565b8210610cf85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e64730000000000000000000000000000000000000000000000000000000000606482015260840161072f565b5090565b6000546001600160a01b03163314610d565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b600b805460ff19169055565b6000546001600160a01b03163314610dbc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b610882600f83836129bc565b6000610dd382611d51565b5192915050565b60006001600160a01b038216610e585760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f2061646472657373000000000000000000000000000000000000000000606482015260840161072f565b506001600160a01b03166000908152600560205260409020546fffffffffffffffffffffffffffffffff1690565b6000546001600160a01b03163314610ee05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b610eea6000611f1c565b565b60606000610ef983610dda565b905080610f1a5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610f3557610f35612b42565b604051908082528060200260200182016040528015610f5e578160200160208202803683370190505b50905060005b82811015610f1257610f7685826109c6565b828281518110610f8857610f88612ec8565b602090810291909101015280610f9d81612ead565b915050610f64565b50919050565b600d8054610fb890612e62565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe490612e62565b80156110315780601f1061100657610100808354040283529160200191611031565b820191906000526020600020905b81548152906001019060200180831161101457829003601f168201915b505050505081565b6000546001600160a01b031633146110935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b6000811180156110a55750600e548111155b6110f15760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f7567682072657365727665206c656674000000000000000000604482015260640161072f565b6110fb8282611f84565b80600e546111099190612ede565b600e555050565b604080518082019091526000808252602082015261061c82611d51565b60606003805461063190612e62565b6001600160a01b0382163314156111955760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161072f565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b0316331461125b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b600b5460ff16156112ae5760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c652068617320616c726561647920626567756e000000604482015260640161072f565b600b805460ff19166001179055565b6112c8848484611773565b6112d484848484611f9e565b6113465760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e74657200000000000000000000000000606482015260840161072f565b50505050565b6060611359826001541190565b6113cb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161072f565b60006113d5612125565b905060008151116113f55760405180602001604052806000815250611420565b806113ff84612134565b604051602001611410929190612ef5565b6040516020818303038152906040525b9392505050565b600a8054610fb890612e62565b600061143f60015490565b600b5490915060ff166114ba5760405162461bcd60e51b815260206004820152602260248201527f53616c65206d7573742062652061637469766520746f206d696e74204b45564960448201527f4e5a000000000000000000000000000000000000000000000000000000000000606482015260840161072f565b601583106115305760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60448201527f6500000000000000000000000000000000000000000000000000000000000000606482015260840161072f565b611b3a61153d8483612f24565b106115b05760405162461bcd60e51b815260206004820152602b60248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201527f206f66204b4556494e5a73000000000000000000000000000000000000000000606482015260840161072f565b60006115bc3384612266565b90508061160b5760405162461bcd60e51b815260206004820152601c60248201527f456c69676962696c697479206b6579206973206e6f742076616c696400000000604482015260640161072f565b6113463385611f84565b600061061c82612387565b6000546001600160a01b0316331461167a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161072f565b6001600160a01b0381166116f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161072f565b610c5b81611f1c565b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061177e82611d51565b80519091506000906001600160a01b0316336001600160a01b031614806117b55750336117aa846106b4565b6001600160a01b0316145b806117c7575081516117c79033610510565b90508061183c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000606482015260840161072f565b846001600160a01b031682600001516001600160a01b0316146118c75760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e65720000000000000000000000000000000000000000000000000000606482015260840161072f565b6001600160a01b0384166119435760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161072f565b61195360008484600001516116ff565b6001600160a01b038516600090815260056020526040812080546001929061198e9084906fffffffffffffffffffffffffffffffff16612f3c565b82546101009290920a6fffffffffffffffffffffffffffffffff8181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926119e391859116612f6d565b82546fffffffffffffffffffffffffffffffff9182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a74846001612f24565b6000818152600460205260409020549091506001600160a01b0316611b0657611a9e816001541190565b15611b065760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60085481611ba05760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161072f565b60006001611bae8484612f24565b611bb89190612ede565b9050611be560017f0000000000000000000000000000000000000000000000000000000000001b39612ede565b811115611c1a57611c1760017f0000000000000000000000000000000000000000000000000000000000001b39612ede565b90505b611c25816001541190565b611c975760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201527f6c65616e75700000000000000000000000000000000000000000000000000000606482015260840161072f565b815b818111611d3d576000818152600460205260409020546001600160a01b0316611d2b576000611cc782611d51565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611d3581612ead565b915050611c99565b50611d49816001612f24565b600855505050565b6040805180820190915260008082526020820152611d70826001541190565b611de25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e00000000000000000000000000000000000000000000606482015260840161072f565b60007f00000000000000000000000000000000000000000000000000000000000000148310611e4357611e357f000000000000000000000000000000000000000000000000000000000000001484612ede565b611e40906001612f24565b90505b825b818110611ead576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e9a57949350505050565b5080611ea581612f98565b915050611e45565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000606482015260840161072f565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108f4828260405180602001604052806000815250612447565b60006001600160a01b0384163b15612119576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611ffb903390899088908890600401612faf565b6020604051808303816000875af1925050508015612036575060408051601f3d908101601f1916820190925261203391810190612feb565b60015b6120e6573d808015612064576040519150601f19603f3d011682016040523d82523d6000602084013e612069565b606091505b5080516120de5760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e74657200000000000000000000000000606482015260840161072f565b805181602001fd5b6001600160e01b0319167f150b7a020000000000000000000000000000000000000000000000000000000014905061211d565b5060015b949350505050565b6060600f805461063190612e62565b60608161217457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561219e578061218881612ead565b91506121979050600a8361301e565b9150612178565b60008167ffffffffffffffff8111156121b9576121b9612b42565b6040519080825280601f01601f1916602001820160405280156121e3576020820181803683370190505b5090505b841561211d576121f8600183612ede565b9150612205600a86613032565b612210906030612f24565b60f81b81838151811061222557612225612ec8565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061225f600a8661301e565b94506121e7565b600080600080612275856127e4565b6040517f4b4556494e5a2d0000000000000000000000000000000000000000000000000060208201527fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608b901b1660278201529295509093509150600090603b0160405160208183030381529060405280519060200120905060006122fb826128d0565b60408051600081526020810180835283905260ff881691810191909152606081018690526080810185905290915060019060a0016020604051602081039080840390855afa158015612351573d6000803e3d6000fd5b5050604051601f1901516001600160a01b03167320ff11c0383c3e84d2d251ab77ebbad667c2964c149998505050505050505050565b60006001600160a01b0382166124055760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f2061646472657373000000000000000000000000000000606482015260840161072f565b506001600160a01b031660009081526005602052604090205470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1690565b6001546001600160a01b0384166124c65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161072f565b6124d1816001541190565b1561251e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161072f565b7f00000000000000000000000000000000000000000000000000000000000000148311156125b45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f6768000000000000000000000000000000000000000000000000000000000000606482015260840161072f565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff80821683527001000000000000000000000000000000009091041691810191909152815180830190925280519091908190612626908790612f6d565b6fffffffffffffffffffffffffffffffff16815260200185836020015161264d9190612f6d565b6fffffffffffffffffffffffffffffffff9081169091526001600160a01b03808816600081815260056020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127d95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127476000888488611f9e565b6127b95760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e74657200000000000000000000000000606482015260840161072f565b816127c381612ead565b92505080806127d190612ead565b9150506126fa565b506001819055611b48565b6000806000835160411461283a5760405162461bcd60e51b815260206004820152600e60248201527f696e76616c6964206c656e677468000000000000000000000000000000000000604482015260640161072f565b50505060208101516040820151606083015160001a9190601b83101561286857612865601b84613046565b92505b8260ff16601b148061287d57508260ff16601c145b6128c95760405162461bcd60e51b815260206004820152600b60248201527f76616c7565206f66207620000000000000000000000000000000000000000000604482015260640161072f565b9193909250565b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152509050808360405160200161291e92919061306b565b60405160208183030381529060405280519060200120915050919050565b82805461294890612e62565b90600052602060002090601f01602090048101928261296a57600085556129b0565b82601f1061298357805160ff19168380011785556129b0565b828001600101855582156129b0579182015b828111156129b0578251825591602001919060010190612995565b50610cf8929150612a30565b8280546129c890612e62565b90600052602060002090601f0160209004810192826129ea57600085556129b0565b82601f10612a035782800160ff198235161785556129b0565b828001600101855582156129b0579182015b828111156129b0578235825591602001919060010190612a15565b5b80821115610cf85760008155600101612a31565b6001600160e01b031981168114610c5b57600080fd5b600060208284031215612a6d57600080fd5b813561142081612a45565b60005b83811015612a93578181015183820152602001612a7b565b838111156113465750506000910152565b60008151808452612abc816020860160208601612a78565b601f01601f19169290920160200192915050565b6020815260006114206020830184612aa4565b600060208284031215612af557600080fd5b5035919050565b80356001600160a01b0381168114612b1357600080fd5b919050565b60008060408385031215612b2b57600080fd5b612b3483612afc565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612b7357612b73612b42565b604051601f8501601f19908116603f01168101908282118183101715612b9b57612b9b612b42565b81604052809350858152868686011115612bb457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612be057600080fd5b813567ffffffffffffffff811115612bf757600080fd5b8201601f81018413612c0857600080fd5b61211d84823560208401612b58565b600080600060608486031215612c2c57600080fd5b612c3584612afc565b9250612c4360208501612afc565b9150604084013590509250925092565b60008060208385031215612c6657600080fd5b823567ffffffffffffffff80821115612c7e57600080fd5b818501915085601f830112612c9257600080fd5b813581811115612ca157600080fd5b866020828501011115612cb357600080fd5b60209290920196919550909350505050565b600060208284031215612cd757600080fd5b61142082612afc565b6020808252825182820181905260009190848201906040850190845b81811015612d1857835183529284019291840191600101612cfc565b50909695505050505050565b60008060408385031215612d3757600080fd5b612d4083612afc565b915060208301358015158114612d5557600080fd5b809150509250929050565b600082601f830112612d7157600080fd5b61142083833560208501612b58565b60008060008060808587031215612d9657600080fd5b612d9f85612afc565b9350612dad60208601612afc565b925060408501359150606085013567ffffffffffffffff811115612dd057600080fd5b612ddc87828801612d60565b91505092959194509250565b60008060408385031215612dfb57600080fd5b82359150602083013567ffffffffffffffff811115612e1957600080fd5b612e2585828601612d60565b9150509250929050565b60008060408385031215612e4257600080fd5b612e4b83612afc565b9150612e5960208401612afc565b90509250929050565b600181811c90821680612e7657607f821691505b60208210811415610fa557634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612ec157612ec1612e97565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600082821015612ef057612ef0612e97565b500390565b60008351612f07818460208801612a78565b835190830190612f1b818360208801612a78565b01949350505050565b60008219821115612f3757612f37612e97565b500190565b60006fffffffffffffffffffffffffffffffff83811690831681811015612f6557612f65612e97565b039392505050565b60006fffffffffffffffffffffffffffffffff808316818516808303821115612f1b57612f1b612e97565b600081612fa757612fa7612e97565b506000190190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612fe16080830184612aa4565b9695505050505050565b600060208284031215612ffd57600080fd5b815161142081612a45565b634e487b7160e01b600052601260045260246000fd5b60008261302d5761302d613008565b500490565b60008261304157613041613008565b500690565b600060ff821660ff84168060ff0382111561306357613063612e97565b019392505050565b6000835161307d818460208801612a78565b919091019182525060200191905056fea2646970667358221220aa5f3682b8f124c5aec16350af807d73ba0d6bbb1b3c7275d68b3d85e9eff2db64736f6c634300080c0033

Deployed Bytecode Sourcemap

3028:5080:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3963:370:3;;;;;;:::i;:::-;;:::i;:::-;;;611:14:13;;604:22;586:41;;574:2;559:18;3963:370:3;;;;;;;;3146:34:9;;;;;;;;;5689:94:3;;;:::i;:::-;;;;;;;:::i;7214:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1797:55:13;;;1779:74;;1767:2;1752:18;7214:204:3;1633:226:13;6777:379:3;;;;;;:::i;:::-;;:::i;:::-;;5730:127:9;;;;;;:::i;:::-;;:::i;2524:94:3:-;2600:12;;2524:94;;;3811:25:13;;;3799:2;3784:18;2524:94:3;3665:177:13;8064:142:3;;;;;;:::i;:::-;;:::i;7697:122:9:-;;;;;;:::i;:::-;;:::i;3155:744:3:-;;;;;;:::i;:::-;;:::i;5276:167:9:-;;;:::i;8269:157:3:-;;;;;;:::i;:::-;;:::i;2687:177::-;;;;;;:::i;:::-;;:::i;6025:81:9:-;;;:::i;7585:104::-;;;;;;:::i;:::-;;:::i;5512:118:3:-;;;;;;:::i;:::-;;:::i;4389:211::-;;;;;;:::i;:::-;;:::i;1661:101:10:-;;;:::i;3340:32:9:-;;;;;;6290:500;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3476:91::-;;;:::i;1029:85:10:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:10;1029:85;;5451:271:9;;;;;;:::i;:::-;;:::i;7946:159::-;;;;;;:::i;:::-;;:::i;:::-;;;;5835:13:13;;-1:-1:-1;;;;;5831:62:13;5813:81;;5954:4;5942:17;;;5936:24;5962:18;5932:49;5910:20;;;5903:79;;;;5786:18;7946:159:9;5605:383:13;3193:45:9;;3236:2;3193:45;;5844:98:3;;;:::i;7482:274::-;;;;;;:::i;:::-;;:::i;5869:148:9:-;;;:::i;8489:311:3:-;;;;;;:::i;:::-;;:::i;6005:394::-;;;;;;:::i;:::-;;:::i;3580:24:9:-;;;;;;3101:36;;;:::i;12908:43:3:-;;;;;;6798:601:9;;;;;;:::i;:::-;;:::i;7827:111::-;;;;;;:::i;:::-;;:::i;7819:186:3:-;;;;;;:::i;:::-;-1:-1:-1;;;;;7964:25:3;;;7941:4;7964:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7819:186;1911:198:10;;;;;;:::i;:::-;;:::i;3963:370:3:-;4090:4;-1:-1:-1;;;;;;4120:40:3;;4135:25;4120:40;;:99;;-1:-1:-1;;;;;;;4171:48:3;;4186:33;4171:48;4120:99;:160;;;-1:-1:-1;;;;;;;4230:50:3;;4245:35;4230:50;4120:160;:207;;;-1:-1:-1;952:25:2;-1:-1:-1;;;;;;937:40:2;;;4291:36:3;4106:221;3963:370;-1:-1:-1;;3963:370:3:o;5689:94::-;5743:13;5772:5;5765:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5689:94;:::o;7214:204::-;7282:7;7306:16;7314:7;9126:12;;-1:-1:-1;9116:22:3;9039:105;7306:16;7298:74;;;;-1:-1:-1;;;7298:74:3;;8415:2:13;7298:74:3;;;8397:21:13;8454:2;8434:18;;;8427:30;8493:34;8473:18;;;8466:62;8564:15;8544:18;;;8537:43;8597:19;;7298:74:3;;;;;;;;;-1:-1:-1;7388:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7388:24:3;;7214:204::o;6777:379::-;6846:13;6862:24;6878:7;6862:15;:24::i;:::-;6846:40;;6907:5;-1:-1:-1;;;;;6901:11:3;:2;-1:-1:-1;;;;;6901:11:3;;;6893:58;;;;-1:-1:-1;;;6893:58:3;;8829:2:13;6893:58:3;;;8811:21:13;8868:2;8848:18;;;8841:30;8907:34;8887:18;;;8880:62;8978:4;8958:18;;;8951:32;9000:19;;6893:58:3;8627:398:13;6893:58:3;719:10:1;-1:-1:-1;;;;;6976:21:3;;;;:62;;-1:-1:-1;7001:37:3;7018:5;719:10:1;7819:186:3;:::i;7001:37::-;6960:153;;;;-1:-1:-1;;;6960:153:3;;9232:2:13;6960:153:3;;;9214:21:13;9271:2;9251:18;;;9244:30;9310:34;9290:18;;;9283:62;9381:27;9361:18;;;9354:55;9426:19;;6960:153:3;9030:421:13;6960:153:3;7122:28;7131:2;7135:7;7144:5;7122:8;:28::i;:::-;6839:317;6777:379;;:::o;5730:127:9:-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;9658:2:13;1233:68:10;;;9640:21:13;;;9677:18;;;9670:30;9736:34;9716:18;;;9709:62;9788:18;;1233:68:10;9456:356:13;1233:68:10;5815:34:9;;::::1;::::0;:17:::1;::::0;:34:::1;::::0;::::1;::::0;::::1;:::i;:::-;;5730:127:::0;:::o;8064:142:3:-;8172:28;8182:4;8188:2;8192:7;8172:9;:28::i;7697:122:9:-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;9658:2:13;1233:68:10;;;9640:21:13;;;9677:18;;;9670:30;9736:34;9716:18;;;9709:62;9788:18;;1233:68:10;9456:356:13;1233:68:10;1744:1:11::1;2325:7;;:19;;2317:63;;;::::0;-1:-1:-1;;;2317:63:11;;10019:2:13;2317:63:11::1;::::0;::::1;10001:21:13::0;10058:2;10038:18;;;10031:30;10097:33;10077:18;;;10070:61;10148:18;;2317:63:11::1;9817:355:13::0;2317:63:11::1;1744:1;2455:7;:18:::0;7783:28:9::2;7802:8:::0;7783:18:::2;:28::i;:::-;-1:-1:-1::0;1701:1:11::1;2628:7;:22:::0;7697:122:9:o;3155:744:3:-;3264:7;3299:16;3309:5;3299:9;:16::i;:::-;3291:5;:24;3283:71;;;;-1:-1:-1;;;3283:71:3;;10379:2:13;3283:71:3;;;10361:21:13;10418:2;10398:18;;;10391:30;10457:34;10437:18;;;10430:62;10528:4;10508:18;;;10501:32;10550:19;;3283:71:3;10177:398:13;3283:71:3;3361:22;3386:13;2600:12;;;2524:94;3386:13;3361:38;;3406:19;3436:25;3486:9;3481:350;3505:14;3501:1;:18;3481:350;;;3535:31;3569:14;;;:11;:14;;;;;;;;;3535:48;;;;;;;;;-1:-1:-1;;;;;3535:48:3;;;;;-1:-1:-1;;;3535:48:3;;;;;;;;;;;;3596:28;3592:89;;3657:14;;;-1:-1:-1;3592:89:3;3714:5;-1:-1:-1;;;;;3693:26:3;:17;-1:-1:-1;;;;;3693:26:3;;3689:135;;;3751:5;3736:11;:20;3732:59;;;-1:-1:-1;3778:1:3;-1:-1:-1;3771:8:3;;-1:-1:-1;;;3771:8:3;3732:59;3801:13;;;;:::i;:::-;;;;3689:135;-1:-1:-1;3521:3:3;;;;:::i;:::-;;;;3481:350;;;-1:-1:-1;3837:56:3;;-1:-1:-1;;;3837:56:3;;11171:2:13;3837:56:3;;;11153:21:13;11210:2;11190:18;;;11183:30;11249:34;11229:18;;;11222:62;11320:16;11300:18;;;11293:44;11354:19;;3837:56:3;10969:410:13;5276:167:9;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;9658:2:13;1233:68:10;;;9640:21:13;;;9677:18;;;9670:30;9736:34;9716:18;;;9709:62;9788:18;;1233:68:10;9456:356:13;1233:68:10;5341:49:9::1;::::0;5323:12:::1;::::0;5341:10:::1;::::0;5364:21:::1;::::0;5323:12;5341:49;5323:12;5341:49;5364:21;5341:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5322:68;;;5407:7;5399:36;;;::::0;-1:-1:-1;;;5399:36:9;;11796:2:13;5399:36:9::1;::::0;::::1;11778:21:13::0;11835:2;11815:18;;;11808:30;11874:18;11854;;;11847:46;11910:18;;5399:36:9::1;11594:340:13::0;5399:36:9::1;5313:130;5276:167::o:0;8269:157:3:-;8381:39;8398:4;8404:2;8408:7;8381:39;;;;;;;;;;;;:16;:39::i;2687:177::-;2754:7;2786:13;2600:12;;;2524:94;2786:13;2778:5;:21;2770:69;;;;-1:-1:-1;;;2770:69:3;;12141:2:13;2770:69:3;;;12123:21:13;12180:2;12160:18;;;12153:30;12219:34;12199:18;;;12192:62;12290:5;12270:18;;;12263:33;12313:19;;2770:69:3;11939:399:13;2770:69:3;-1:-1:-1;2853:5:3;2687:177::o;6025:81:9:-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;9658:2:13;1233:68:10;;;9640:21:13;;;9677:18;;;9670:30;9736:34;9716:18;;;9709:62;9788:18;;1233:68:10;9456:356:13;1233:68:10;6076:14:9::1;:22:::0;;-1:-1:-1;;6076:22:9::1;::::0;;6025:81::o;7585:104::-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;9658:2:13;1233:68:10;;;9640:21:13;;;9677:18;;;9670:30;9736:34;9716:18;;;9709:62;9788:18;;1233:68:10;9456:356:13;1233:68:10;7658:23:9::1;:13;7674:7:::0;;7658:23:::1;:::i;5512:118:3:-:0;5576:7;5599:20;5611:7;5599:11;:20::i;:::-;:25;;5512:118;-1:-1:-1;;5512:118:3:o;4389:211::-;4453:7;-1:-1:-1;;;;;4477:19:3;;4469:75;;;;-1:-1:-1;;;4469:75:3;;12545:2:13;4469:75:3;;;12527:21:13;12584:2;12564:18;;;12557:30;12623:34;12603:18;;;12596:62;12694:13;12674:18;;;12667:41;12725:19;;4469:75:3;12343:407:13;4469:75:3;-1:-1:-1;;;;;;4566:19:3;;;;;:12;:19;;;;;:27;;;;4389:211::o;1661:101:10:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;9658:2:13;1233:68:10;;;9640:21:13;;;9677:18;;;9670:30;9736:34;9716:18;;;9709:62;9788:18;;1233:68:10;9456:356:13;1233:68:10;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;6290:500:9:-;6349:16;6379:18;6400:17;6410:6;6400:9;:17::i;:::-;6379:38;-1:-1:-1;6432:15:9;6428:355;;6471:16;;;6485:1;6471:16;;;;;;;;;;;-1:-1:-1;6464:23:9;6290:500;-1:-1:-1;;;6290:500:9:o;6428:355::-;6520:23;6560:10;6546:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6546:25:9;;6520:51;;6586:13;6614:130;6638:10;6630:5;:18;6614:130;;;6694:34;6714:6;6722:5;6694:19;:34::i;:::-;6678:6;6685:5;6678:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;6650:7;;;;:::i;:::-;;;;6614:130;;6428:355;6368:422;6290:500;;;:::o;3476:91::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5451:271::-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;9658:2:13;1233:68:10;;;9640:21:13;;;9677:18;;;9670:30;9736:34;9716:18;;;9709:62;9788:18;;1233:68:10;9456:356:13;1233:68:10;5570:1:9::1;5553:14;:18;:47;;;;;5593:7;;5575:14;:25;;5553:47;5545:83;;;::::0;-1:-1:-1;;;5545:83:9;;13146:2:13;5545:83:9::1;::::0;::::1;13128:21:13::0;13185:2;13165:18;;;13158:30;13224:25;13204:18;;;13197:53;13267:18;;5545:83:9::1;12944:347:13::0;5545:83:9::1;5639:30;5649:3;5654:14;5639:9;:30::i;:::-;5700:14;5690:7;;:24;;;;:::i;:::-;5680:7;:34:::0;-1:-1:-1;;5451:271:9:o;7946:159::-;-1:-1:-1;;;;;;;;;;;;;;;;;8077:20:9;8089:7;8077:11;:20::i;5844:98:3:-;5900:13;5929:7;5922:14;;;;;:::i;7482:274::-;-1:-1:-1;;;;;7573:24:3;;719:10:1;7573:24:3;;7565:63;;;;-1:-1:-1;;;7565:63:3;;13628:2:13;7565:63:3;;;13610:21:13;13667:2;13647:18;;;13640:30;13706:28;13686:18;;;13679:56;13752:18;;7565:63:3;13426:350:13;7565:63:3;719:10:1;7637:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7637:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;7637:53:3;;;;;;;;;;7702:48;;586:41:13;;;7637:42:3;;719:10:1;7702:48:3;;559:18:13;7702:48:3;;;;;;;7482:274;;:::o;5869:148:9:-;1075:7:10;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;9658:2:13;1233:68:10;;;9640:21:13;;;9677:18;;;9670:30;9736:34;9716:18;;;9709:62;9788:18;;1233:68:10;9456:356:13;1233:68:10;5929:14:9::1;::::0;::::1;;5928:15;5920:57;;;::::0;-1:-1:-1;;;5920:57:9;;13983:2:13;5920:57:9::1;::::0;::::1;13965:21:13::0;14022:2;14002:18;;;13995:30;14061:31;14041:18;;;14034:59;14110:18;;5920:57:9::1;13781:353:13::0;5920:57:9::1;5988:14;:21:::0;;-1:-1:-1;;5988:21:9::1;6005:4;5988:21;::::0;;5869:148::o;8489:311:3:-;8626:28;8636:4;8642:2;8646:7;8626:9;:28::i;:::-;8677:48;8700:4;8706:2;8710:7;8719:5;8677:22;:48::i;:::-;8661:133;;;;-1:-1:-1;;;8661:133:3;;14341:2:13;8661:133:3;;;14323:21:13;14380:2;14360:18;;;14353:30;14419:34;14399:18;;;14392:62;14490:21;14470:18;;;14463:49;14529:19;;8661:133:3;14139:415:13;8661:133:3;8489:311;;;;:::o;6005:394::-;6103:13;6144:16;6152:7;9126:12;;-1:-1:-1;9116:22:3;9039:105;6144:16;6128:97;;;;-1:-1:-1;;;6128:97:3;;14761:2:13;6128:97:3;;;14743:21:13;14800:2;14780:18;;;14773:30;14839:34;14819:18;;;14812:62;14910:17;14890:18;;;14883:45;14945:19;;6128:97:3;14559:411:13;6128:97:3;6234:21;6258:10;:8;:10::i;:::-;6234:34;;6313:1;6295:7;6289:21;:25;:104;;;;;;;;;;;;;;;;;6350:7;6359:18;:7;:16;:18::i;:::-;6333:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6289:104;6275:118;6005:394;-1:-1:-1;;;6005:394:3:o;3101:36:9:-;;;;;;;:::i;6798:601::-;6873:26;6902:13;2600:12:3;;;2524:94;6902:13:9;6934:14;;6873:42;;-1:-1:-1;6934:14:9;;6926:61;;;;-1:-1:-1;;;6926:61:9;;15652:2:13;6926:61:9;;;15634:21:13;15691:2;15671:18;;;15664:30;15730:34;15710:18;;;15703:62;15801:4;15781:18;;;15774:32;15823:19;;6926:61:9;15450:398:13;6926:61:9;7023:2;7006:14;:19;6998:65;;;;-1:-1:-1;;;6998:65:9;;16055:2:13;6998:65:9;;;16037:21:13;16094:2;16074:18;;;16067:30;16133:34;16113:18;;;16106:62;16204:3;16184:18;;;16177:31;16225:19;;6998:65:9;15853:397:13;6998:65:9;7120:4;7082:35;7103:14;7082:18;:35;:::i;:::-;:42;7074:98;;;;-1:-1:-1;;;7074:98:9;;16590:2:13;7074:98:9;;;16572:21:13;16629:2;16609:18;;;16602:30;16668:34;16648:18;;;16641:62;16739:13;16719:18;;;16712:41;16770:19;;7074:98:9;16388:407:13;7074:98:9;7201:19;7223:43;7246:10;7258:7;7223:22;:43::i;:::-;7201:65;;7285:14;7277:55;;;;-1:-1:-1;;;7277:55:9;;17002:2:13;7277:55:9;;;16984:21:13;17041:2;17021:18;;;17014:30;17080;17060:18;;;17053:58;17128:18;;7277:55:9;16800:352:13;7277:55:9;7354:37;7364:10;7376:14;7354:9;:37::i;7827:111::-;7885:7;7910:20;7924:5;7910:13;:20::i;1911:198:10:-;1075:7;1101:6;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;9658:2:13;1233:68:10;;;9640:21:13;;;9677:18;;;9670:30;9736:34;9716:18;;;9709:62;9788:18;;1233:68:10;9456:356:13;1233:68:10;-1:-1:-1;;;;;1999:22:10;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:10;;17359:2:13;1991:73:10::1;::::0;::::1;17341:21:13::0;17398:2;17378:18;;;17371:30;17437:34;17417:18;;;17410:62;17508:8;17488:18;;;17481:36;17534:19;;1991:73:10::1;17157:402:13::0;1991:73:10::1;2074:28;2093:8;2074:18;:28::i;12730:172:3:-:0;12827:24;;;;:15;:24;;;;;;:29;;;;-1:-1:-1;;;;;12827:29:3;;;;;;;;;12868:28;;12827:24;;12868:28;;;;;;;12730:172;;;:::o;11091:1533::-;11188:35;11226:20;11238:7;11226:11;:20::i;:::-;11297:18;;11188:58;;-1:-1:-1;11255:22:3;;-1:-1:-1;;;;;11281:34:3;719:10:1;-1:-1:-1;;;;;11281:34:3;;:81;;;-1:-1:-1;719:10:1;11326:20:3;11338:7;11326:11;:20::i;:::-;-1:-1:-1;;;;;11326:36:3;;11281:81;:142;;;-1:-1:-1;11390:18:3;;11373:50;;719:10:1;7819:186:3;:::i;11373:50::-;11255:169;;11449:17;11433:101;;;;-1:-1:-1;;;11433:101:3;;17766:2:13;11433:101:3;;;17748:21:13;17805:2;17785:18;;;17778:30;17844:34;17824:18;;;17817:62;17915:20;17895:18;;;17888:48;17953:19;;11433:101:3;17564:414:13;11433:101:3;11581:4;-1:-1:-1;;;;;11559:26:3;:13;:18;;;-1:-1:-1;;;;;11559:26:3;;11543:98;;;;-1:-1:-1;;;11543:98:3;;18185:2:13;11543:98:3;;;18167:21:13;18224:2;18204:18;;;18197:30;18263:34;18243:18;;;18236:62;18334:8;18314:18;;;18307:36;18360:19;;11543:98:3;17983:402:13;11543:98:3;-1:-1:-1;;;;;11656:16:3;;11648:66;;;;-1:-1:-1;;;11648:66:3;;18592:2:13;11648:66:3;;;18574:21:13;18631:2;18611:18;;;18604:30;18670:34;18650:18;;;18643:62;18741:7;18721:18;;;18714:35;18766:19;;11648:66:3;18390:401:13;11648:66:3;11823:49;11840:1;11844:7;11853:13;:18;;;11823:8;:49::i;:::-;-1:-1:-1;;;;;11881:18:3;;;;;;:12;:18;;;;;:31;;11911:1;;11881:18;:31;;11911:1;;11881:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11919:16:3;;-1:-1:-1;11919:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;11919:16:3;;:29;;-1:-1:-1;;11919:29:3;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11978:43:3;;;;;;;;-1:-1:-1;;;;;11978:43:3;;;;;;12004:15;11978:43;;;;;;;;;-1:-1:-1;11955:20:3;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11955:66:3;-1:-1:-1;;;;;;11955:66:3;;;;;;;;;;;12271:11;11967:7;-1:-1:-1;12271:11:3;:::i;:::-;12334:1;12293:24;;;:11;:24;;;;;:29;12249:33;;-1:-1:-1;;;;;;12293:29:3;12289:236;;12351:20;12359:11;9126:12;;-1:-1:-1;9116:22:3;9039:105;12351:20;12347:171;;;12411:97;;;;;;;;12438:18;;-1:-1:-1;;;;;12411:97:3;;;;;;12469:28;;;;12411:97;;;;;;;;;;-1:-1:-1;12384:24:3;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;12384:124:3;-1:-1:-1;;;;;;12384:124:3;;;;;;;;;;;;12347:171;12561:7;12557:2;-1:-1:-1;;;;;12542:27:3;12551:4;-1:-1:-1;;;;;12542:27:3;;;;;;;;;;;12576:42;11181:1443;;;11091:1533;;;:::o;13056:846::-;13146:24;;13185:12;13177:49;;;;-1:-1:-1;;;13177:49:3;;19507:2:13;13177:49:3;;;19489:21:13;19546:2;19526:18;;;19519:30;19585:26;19565:18;;;19558:54;19629:18;;13177:49:3;19305:348:13;13177:49:3;13233:16;13283:1;13252:28;13272:8;13252:17;:28;:::i;:::-;:32;;;;:::i;:::-;13233:51;-1:-1:-1;13306:18:3;13323:1;13306:14;:18;:::i;:::-;13295:8;:29;13291:81;;;13346:18;13363:1;13346:14;:18;:::i;:::-;13335:29;;13291:81;13487:17;13495:8;9126:12;;-1:-1:-1;9116:22:3;9039:105;13487:17;13479:68;;;;-1:-1:-1;;;13479:68:3;;19860:2:13;13479:68:3;;;19842:21:13;19899:2;19879:18;;;19872:30;19938:34;19918:18;;;19911:62;20009:8;19989:18;;;19982:36;20035:19;;13479:68:3;19658:402:13;13479:68:3;13571:17;13554:297;13595:8;13590:1;:13;13554:297;;13654:1;13623:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;13623:19:3;13619:225;;13669:31;13703:14;13715:1;13703:11;:14::i;:::-;13745:89;;;;;;;;13772:14;;-1:-1:-1;;;;;13745:89:3;;;;;;13799:24;;;;13745:89;;;;;;;;;;-1:-1:-1;13728:14:3;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;13728:106:3;-1:-1:-1;;;;;;13728:106:3;;;;;;;;;;;;-1:-1:-1;13619:225:3;13605:3;;;;:::i;:::-;;;;13554:297;;;-1:-1:-1;13884:12:3;:8;13895:1;13884:12;:::i;:::-;13857:24;:39;-1:-1:-1;;;13056:846:3:o;4852:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;4969:16:3;4977:7;9126:12;;-1:-1:-1;9116:22:3;9039:105;4969:16;4961:71;;;;-1:-1:-1;;;4961:71:3;;20267:2:13;4961:71:3;;;20249:21:13;20306:2;20286:18;;;20279:30;20345:34;20325:18;;;20318:62;20416:12;20396:18;;;20389:40;20446:19;;4961:71:3;20065:406:13;4961:71:3;5041:26;5089:12;5078:7;:23;5074:93;;5133:22;5143:12;5133:7;:22;:::i;:::-;:26;;5158:1;5133:26;:::i;:::-;5112:47;;5074:93;5195:7;5175:212;5212:18;5204:4;:26;5175:212;;5249:31;5283:17;;;:11;:17;;;;;;;;;5249:51;;;;;;;;;-1:-1:-1;;;;;5249:51:3;;;;;-1:-1:-1;;;5249:51:3;;;;;;;;;;;;5313:28;5309:71;;5361:9;4852:606;-1:-1:-1;;;;4852:606:3:o;5309:71::-;-1:-1:-1;5232:6:3;;;;:::i;:::-;;;;5175:212;;;-1:-1:-1;5395:57:3;;-1:-1:-1;;;5395:57:3;;20879:2:13;5395:57:3;;;20861:21:13;20918:2;20898:18;;;20891:30;20957:34;20937:18;;;20930:62;21028:17;21008:18;;;21001:45;21063:19;;5395:57:3;20677:411:13;2263:187:10;2336:16;2355:6;;-1:-1:-1;;;;;2371:17:10;;;;;;;;;;2403:40;;2355:6;;;;;;;2403:40;;2336:16;2403:40;2326:124;2263:187;:::o;9150:98:3:-;9215:27;9225:2;9229:8;9215:27;;;;;;;;;;;;:9;:27::i;14445:690::-;14582:4;-1:-1:-1;;;;;14599:13:3;;1087:20:0;1133:8;14595:535:3;;14638:72;;;;;-1:-1:-1;;;;;14638:36:3;;;;;:72;;719:10:1;;14689:4:3;;14695:7;;14704:5;;14638:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14638:72:3;;;;;;;;-1:-1:-1;;14638:72:3;;;;;;;;;;;;:::i;:::-;;;14625:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14869:13:3;;14865:215;;14902:61;;-1:-1:-1;;;14902:61:3;;14341:2:13;14902:61:3;;;14323:21:13;14380:2;14360:18;;;14353:30;14419:34;14399:18;;;14392:62;14490:21;14470:18;;;14463:49;14529:19;;14902:61:3;14139:415:13;14865:215:3;15048:6;15042:13;15033:6;15029:2;15025:15;15018:38;14625:464;-1:-1:-1;;;;;;14760:55:3;14770:45;14760:55;;-1:-1:-1;14753:62:3;;14595:535;-1:-1:-1;15118:4:3;14595:535;14445:690;;;;;;:::o;7465:112:9:-;7525:13;7556;7549:20;;;;;:::i;328:703:12:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:12;;;;;;;;;;;;;;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:12;;-1:-1:-1;773:2:12;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:12;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:12;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:12;981:2;972:11;;:::i;:::-;;;844:150;;4650:433:9;4758:4;4776:7;4785:9;4796;4809:30;4824:14;4809;:30::i;:::-;4882:43;;22537:9:13;4882:43:9;;;22525:22:13;22597:66;22584:2;22580:15;;;22576:88;22563:11;;;22556:109;4775:64:9;;-1:-1:-1;4775:64:9;;-1:-1:-1;4775:64:9;-1:-1:-1;4850:19:9;;22681:12:13;;4882:43:9;;;;;;;;;;;;4872:54;;;;;;4850:76;;4937:15;4955:28;4971:11;4955:15;:28::i;:::-;5002:27;;;;;;;;;;;;22931:25:13;;;23004:4;22992:17;;22972:18;;;22965:45;;;;23026:18;;;23019:34;;;23069:18;;;23062:34;;;4937:46:9;;-1:-1:-1;5002:27:9;;22903:19:13;;5002:27:9;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5002:27:9;;-1:-1:-1;;5002:27:9;;-1:-1:-1;;;;;5002:73:9;5033:42;5002:73;;;-1:-1:-1;;;;;;;;;4650:433:9:o;4606:240:3:-;4667:7;-1:-1:-1;;;;;4699:19:3;;4683:102;;;;-1:-1:-1;;;4683:102:3;;23309:2:13;4683:102:3;;;23291:21:13;23348:2;23328:18;;;23321:30;23387:34;23367:18;;;23360:62;23458:19;23438:18;;;23431:47;23495:19;;4683:102:3;23107:413:13;4683:102:3;-1:-1:-1;;;;;;4807:19:3;;;;;:12;:19;;;;;:32;;;;;;;4606:240::o;9587:1272::-;9715:12;;-1:-1:-1;;;;;9742:16:3;;9734:62;;;;-1:-1:-1;;;9734:62:3;;23727:2:13;9734:62:3;;;23709:21:13;23766:2;23746:18;;;23739:30;23805:34;23785:18;;;23778:62;23876:3;23856:18;;;23849:31;23897:19;;9734:62:3;23525:397:13;9734:62:3;9933:21;9941:12;9126;;-1:-1:-1;9116:22:3;9039:105;9933:21;9932:22;9924:64;;;;-1:-1:-1;;;9924:64:3;;24129:2:13;9924:64:3;;;24111:21:13;24168:2;24148:18;;;24141:30;24207:31;24187:18;;;24180:59;24256:18;;9924:64:3;23927:353:13;9924:64:3;10015:12;10003:8;:24;;9995:71;;;;-1:-1:-1;;;9995:71:3;;24487:2:13;9995:71:3;;;24469:21:13;24526:2;24506:18;;;24499:30;24565:34;24545:18;;;24538:62;24636:4;24616:18;;;24609:32;24658:19;;9995:71:3;24285:398:13;9995:71:3;-1:-1:-1;;;;;10178:16:3;;10145:30;10178:16;;;:12;:16;;;;;;;;;10145:49;;;;;;;;;;;;;;;;;;;;;;;;;;;10220:119;;;;;;;;10240:19;;10145:49;;10220:119;;;10240:39;;10270:8;;10240:39;:::i;:::-;10220:119;;;;;;10323:8;10288:11;:24;;;:44;;;;:::i;:::-;10220:119;;;;;;;-1:-1:-1;;;;;10201:16:3;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;10374:43;;;;;;;;;;;10400:15;10374:43;;;;;;;;10346:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;10346:71:3;-1:-1:-1;;;;;;10346:71:3;;;;;;;;;;;;;;;;;;10358:12;;10470:281;10494:8;10490:1;:12;10470:281;;;10523:38;;10548:12;;-1:-1:-1;;;;;10523:38:3;;;10540:1;;10523:38;;10540:1;;10523:38;10588:59;10619:1;10623:2;10627:12;10641:5;10588:22;:59::i;:::-;10570:150;;;;-1:-1:-1;;;10570:150:3;;14341:2:13;10570:150:3;;;14323:21:13;14380:2;14360:18;;;14353:30;14419:34;14399:18;;;14392:62;14490:21;14470:18;;;14463:49;14529:19;;10570:150:3;14139:415:13;10570:150:3;10729:14;;;;:::i;:::-;;;;10504:3;;;;;:::i;:::-;;;;10470:281;;;-1:-1:-1;10759:12:3;:27;;;10793:60;8489:311;4188:450:9;4253:7;4262:9;4273;4303:3;:10;4317:2;4303:16;4295:44;;;;-1:-1:-1;;;4295:44:9;;24890:2:13;4295:44:9;;;24872:21:13;24929:2;24909:18;;;24902:30;24968:16;24948:18;;;24941:44;25002:18;;4295:44:9;24688:338:13;4295:44:9;-1:-1:-1;;;4394:2:9;4385:12;;4379:19;4432:2;4423:12;;4417:19;4478:2;4469:12;;4463:19;4460:1;4455:28;;4379:19;4512:2;4508:6;;4504:46;;;4531:7;4536:2;4531:7;;:::i;:::-;;;4504:46;4568:1;:7;;4573:2;4568:7;:18;;;;4579:1;:7;;4584:2;4579:7;4568:18;4560:43;;;;-1:-1:-1;;;4560:43:9;;25442:2:13;4560:43:9;;;25424:21:13;25481:2;25461:18;;;25454:30;25520:13;25500:18;;;25493:41;25551:18;;4560:43:9;25240:335:13;4560:43:9;4188:450;;;;;:::o;3953:227::-;4022:7;4042:23;:60;;;;;;;;;;;;;;;;;;;4147:10;4159:11;4130:41;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4120:52;;;;;;4113:59;;;3953:227;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:177:13;-1:-1:-1;;;;;;92:5:13;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:13;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;-1:-1:-1;;1116:88:13;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:13:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:13;;1448:180;-1:-1:-1;1448:180:13:o;1864:196::-;1932:20;;-1:-1:-1;;;;;1981:54:13;;1971:65;;1961:93;;2050:1;2047;2040:12;1961:93;1864:196;;;:::o;2065:254::-;2133:6;2141;2194:2;2182:9;2173:7;2169:23;2165:32;2162:52;;;2210:1;2207;2200:12;2162:52;2233:29;2252:9;2233:29;:::i;:::-;2223:39;2309:2;2294:18;;;;2281:32;;-1:-1:-1;;;2065:254:13:o;2324:184::-;-1:-1:-1;;;2373:1:13;2366:88;2473:4;2470:1;2463:15;2497:4;2494:1;2487:15;2513:691;2578:5;2608:18;2649:2;2641:6;2638:14;2635:40;;;2655:18;;:::i;:::-;2789:2;2783:9;2855:2;2843:15;;-1:-1:-1;;2839:24:13;;;2865:2;2835:33;2831:42;2819:55;;;2889:18;;;2909:22;;;2886:46;2883:72;;;2935:18;;:::i;:::-;2975:10;2971:2;2964:22;3004:6;2995:15;;3034:6;3026;3019:22;3074:3;3065:6;3060:3;3056:16;3053:25;3050:45;;;3091:1;3088;3081:12;3050:45;3141:6;3136:3;3129:4;3121:6;3117:17;3104:44;3196:1;3189:4;3180:6;3172;3168:19;3164:30;3157:41;;;;2513:691;;;;;:::o;3209:451::-;3278:6;3331:2;3319:9;3310:7;3306:23;3302:32;3299:52;;;3347:1;3344;3337:12;3299:52;3387:9;3374:23;3420:18;3412:6;3409:30;3406:50;;;3452:1;3449;3442:12;3406:50;3475:22;;3528:4;3520:13;;3516:27;-1:-1:-1;3506:55:13;;3557:1;3554;3547:12;3506:55;3580:74;3646:7;3641:2;3628:16;3623:2;3619;3615:11;3580:74;:::i;3847:328::-;3924:6;3932;3940;3993:2;3981:9;3972:7;3968:23;3964:32;3961:52;;;4009:1;4006;3999:12;3961:52;4032:29;4051:9;4032:29;:::i;:::-;4022:39;;4080:38;4114:2;4103:9;4099:18;4080:38;:::i;:::-;4070:48;;4165:2;4154:9;4150:18;4137:32;4127:42;;3847:328;;;;;:::o;4180:592::-;4251:6;4259;4312:2;4300:9;4291:7;4287:23;4283:32;4280:52;;;4328:1;4325;4318:12;4280:52;4368:9;4355:23;4397:18;4438:2;4430:6;4427:14;4424:34;;;4454:1;4451;4444:12;4424:34;4492:6;4481:9;4477:22;4467:32;;4537:7;4530:4;4526:2;4522:13;4518:27;4508:55;;4559:1;4556;4549:12;4508:55;4599:2;4586:16;4625:2;4617:6;4614:14;4611:34;;;4641:1;4638;4631:12;4611:34;4686:7;4681:2;4672:6;4668:2;4664:15;4660:24;4657:37;4654:57;;;4707:1;4704;4697:12;4654:57;4738:2;4730:11;;;;;4760:6;;-1:-1:-1;4180:592:13;;-1:-1:-1;;;;4180:592:13:o;4777:186::-;4836:6;4889:2;4877:9;4868:7;4864:23;4860:32;4857:52;;;4905:1;4902;4895:12;4857:52;4928:29;4947:9;4928:29;:::i;4968:632::-;5139:2;5191:21;;;5261:13;;5164:18;;;5283:22;;;5110:4;;5139:2;5362:15;;;;5336:2;5321:18;;;5110:4;5405:169;5419:6;5416:1;5413:13;5405:169;;;5480:13;;5468:26;;5549:15;;;;5514:12;;;;5441:1;5434:9;5405:169;;;-1:-1:-1;5591:3:13;;4968:632;-1:-1:-1;;;;;;4968:632:13:o;5993:347::-;6058:6;6066;6119:2;6107:9;6098:7;6094:23;6090:32;6087:52;;;6135:1;6132;6125:12;6087:52;6158:29;6177:9;6158:29;:::i;:::-;6148:39;;6237:2;6226:9;6222:18;6209:32;6284:5;6277:13;6270:21;6263:5;6260:32;6250:60;;6306:1;6303;6296:12;6250:60;6329:5;6319:15;;;5993:347;;;;;:::o;6345:221::-;6387:5;6440:3;6433:4;6425:6;6421:17;6417:27;6407:55;;6458:1;6455;6448:12;6407:55;6480:80;6556:3;6547:6;6534:20;6527:4;6519:6;6515:17;6480:80;:::i;6571:537::-;6666:6;6674;6682;6690;6743:3;6731:9;6722:7;6718:23;6714:33;6711:53;;;6760:1;6757;6750:12;6711:53;6783:29;6802:9;6783:29;:::i;:::-;6773:39;;6831:38;6865:2;6854:9;6850:18;6831:38;:::i;:::-;6821:48;;6916:2;6905:9;6901:18;6888:32;6878:42;;6971:2;6960:9;6956:18;6943:32;6998:18;6990:6;6987:30;6984:50;;;7030:1;7027;7020:12;6984:50;7053:49;7094:7;7085:6;7074:9;7070:22;7053:49;:::i;:::-;7043:59;;;6571:537;;;;;;;:::o;7113:388::-;7190:6;7198;7251:2;7239:9;7230:7;7226:23;7222:32;7219:52;;;7267:1;7264;7257:12;7219:52;7303:9;7290:23;7280:33;;7364:2;7353:9;7349:18;7336:32;7391:18;7383:6;7380:30;7377:50;;;7423:1;7420;7413:12;7377:50;7446:49;7487:7;7478:6;7467:9;7463:22;7446:49;:::i;:::-;7436:59;;;7113:388;;;;;:::o;7506:260::-;7574:6;7582;7635:2;7623:9;7614:7;7610:23;7606:32;7603:52;;;7651:1;7648;7641:12;7603:52;7674:29;7693:9;7674:29;:::i;:::-;7664:39;;7722:38;7756:2;7745:9;7741:18;7722:38;:::i;:::-;7712:48;;7506:260;;;;;:::o;7771:437::-;7850:1;7846:12;;;;7893;;;7914:61;;7968:4;7960:6;7956:17;7946:27;;7914:61;8021:2;8013:6;8010:14;7990:18;7987:38;7984:218;;;-1:-1:-1;;;8055:1:13;8048:88;8159:4;8156:1;8149:15;8187:4;8184:1;8177:15;10580:184;-1:-1:-1;;;10629:1:13;10622:88;10729:4;10726:1;10719:15;10753:4;10750:1;10743:15;10769:195;10808:3;-1:-1:-1;;10832:5:13;10829:77;10826:103;;;10909:18;;:::i;:::-;-1:-1:-1;10956:1:13;10945:13;;10769:195::o;12755:184::-;-1:-1:-1;;;12804:1:13;12797:88;12904:4;12901:1;12894:15;12928:4;12925:1;12918:15;13296:125;13336:4;13364:1;13361;13358:8;13355:34;;;13369:18;;:::i;:::-;-1:-1:-1;13406:9:13;;13296:125::o;14975:470::-;15154:3;15192:6;15186:13;15208:53;15254:6;15249:3;15242:4;15234:6;15230:17;15208:53;:::i;:::-;15324:13;;15283:16;;;;15346:57;15324:13;15283:16;15380:4;15368:17;;15346:57;:::i;:::-;15419:20;;14975:470;-1:-1:-1;;;;14975:470:13:o;16255:128::-;16295:3;16326:1;16322:6;16319:1;16316:13;16313:39;;;16332:18;;:::i;:::-;-1:-1:-1;16368:9:13;;16255:128::o;18796:246::-;18836:4;18865:34;18949:10;;;;18919;;18971:12;;;18968:38;;;18986:18;;:::i;:::-;19023:13;;18796:246;-1:-1:-1;;;18796:246:13:o;19047:253::-;19087:3;19115:34;19176:2;19173:1;19169:10;19206:2;19203:1;19199:10;19237:3;19233:2;19229:12;19224:3;19221:21;19218:47;;;19245:18;;:::i;20476:196::-;20515:3;20543:5;20533:39;;20552:18;;:::i;:::-;-1:-1:-1;;;20588:78:13;;20476:196::o;21093:512::-;21287:4;-1:-1:-1;;;;;21397:2:13;21389:6;21385:15;21374:9;21367:34;21449:2;21441:6;21437:15;21432:2;21421:9;21417:18;21410:43;;21489:6;21484:2;21473:9;21469:18;21462:34;21532:3;21527:2;21516:9;21512:18;21505:31;21553:46;21594:3;21583:9;21579:19;21571:6;21553:46;:::i;:::-;21545:54;21093:512;-1:-1:-1;;;;;;21093:512:13:o;21610:249::-;21679:6;21732:2;21720:9;21711:7;21707:23;21703:32;21700:52;;;21748:1;21745;21738:12;21700:52;21780:9;21774:16;21799:30;21823:5;21799:30;:::i;21864:184::-;-1:-1:-1;;;21913:1:13;21906:88;22013:4;22010:1;22003:15;22037:4;22034:1;22027:15;22053:120;22093:1;22119;22109:35;;22124:18;;:::i;:::-;-1:-1:-1;22158:9:13;;22053:120::o;22178:112::-;22210:1;22236;22226:35;;22241:18;;:::i;:::-;-1:-1:-1;22275:9:13;;22178:112::o;25031:204::-;25069:3;25105:4;25102:1;25098:12;25137:4;25134:1;25130:12;25172:3;25166:4;25162:14;25157:3;25154:23;25151:49;;;25180:18;;:::i;:::-;25216:13;;25031:204;-1:-1:-1;;;25031:204:13:o;25580:370::-;25737:3;25775:6;25769:13;25791:53;25837:6;25832:3;25825:4;25817:6;25813:17;25791:53;:::i;:::-;25866:16;;;;25891:21;;;-1:-1:-1;25939:4:13;25928:16;;25580:370;-1:-1:-1;25580:370:13:o

Swarm Source

ipfs://aa5f3682b8f124c5aec16350af807d73ba0d6bbb1b3c7275d68b3d85e9eff2db
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.