ETH Price: $2,427.10 (-0.53%)

Token

Proof Of Vitalik (POV)
 

Overview

Max Total Supply

710 POV

Holders

282

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 POV
0x6aabdc1b4325cce43f3a151dcbaa64310dc4d644
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:
ProofOfVitalik

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 13 : ProofOfVitalik.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721A.sol";

contract ProofOfVitalik is  Ownable,ERC721A,ReentrancyGuard {

    mapping (address => uint256) public WalletMint;
    bool public MintStatus = false;
    uint public MintPrice = 0.0035 ether; //0.0035 ETH
    string public baseURI;  
    uint public freeMint = 2;
    uint public maxMintPerTx = 20;  
    uint public maxSupply = 6969;

    constructor() ERC721A("Proof Of Vitalik", "POV",69,6969){}

    function mint(uint256 qty) external payable
    {
        require(MintStatus , "Notification:  Minting Public Pause");
        require(qty <= maxMintPerTx, "Notification:  Limit Per Transaction");
        require(totalSupply() + qty <= maxSupply,"Notification:  Soldout");
        _safemint(qty);
    }

    function _safemint(uint256 qty) internal
    {
        if(WalletMint[msg.sender] < freeMint) 
        {
            if(qty < freeMint) qty = freeMint;
           require(msg.value >= (qty - freeMint) * MintPrice,"Notification:  Fund not enough");
            WalletMint[msg.sender] += qty;
           _safeMint(msg.sender, qty);
        }
        else
        {
           require(msg.value >= qty * MintPrice,"Notification:  Fund not enough");
            WalletMint[msg.sender] += qty;
           _safeMint(msg.sender, qty);
        }
    }

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

    function airdrop(address to ,uint256 qty) external onlyOwner
    {
        _safeMint(to, qty);
    }

    function OwnerBatchMint(uint256 qty) external onlyOwner
    {
        _safeMint(msg.sender, qty);
    }

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

    function setPrice(uint256 price_) external onlyOwner {
        MintPrice = price_;
    }

    function setmaxMintPerTx(uint256 maxMintPerTx_) external onlyOwner {
        maxMintPerTx = maxMintPerTx_;
    }

    function setMaxFreeMint(uint256 qty_) external onlyOwner {
        freeMint = qty_;
    }

    function setmaxSupply(uint256 qty_) external onlyOwner {
        maxSupply = qty_;
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(payable(address(this)).balance);
    }

}

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

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/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 3 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 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 5 of 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 6 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 7 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 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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 10 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 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 13 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"OwnerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"qty_","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx_","type":"uint256"}],"name":"setmaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600060015560006008556000600b60006101000a81548160ff021916908315150217905550660c6f3b40b6c000600c556002600e556014600f55611b396010553480156200005157600080fd5b506040518060400160405280601081526020017f50726f6f66204f6620566974616c696b000000000000000000000000000000008152506040518060400160405280600381526020017f504f5600000000000000000000000000000000000000000000000000000000008152506045611b39620000e3620000d7620001c360201b60201c565b620001cb60201b60201c565b6000811162000129576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012090620003af565b60405180910390fd5b600082116200016f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000166906200038d565b60405180910390fd5b8360029080519060200190620001879291906200028f565b508260039080519060200190620001a09291906200028f565b508160a081815250508060808181525050505050506001600981905550620004e5565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029d90620003e2565b90600052602060002090601f016020900481019282620002c157600085556200030d565b82601f10620002dc57805160ff19168380011785556200030d565b828001600101855582156200030d579182015b828111156200030c578251825591602001919060010190620002ef565b5b5090506200031c919062000320565b5090565b5b808211156200033b57600081600090555060010162000321565b5090565b60006200034e602783620003d1565b91506200035b8262000447565b604082019050919050565b600062000375602e83620003d1565b9150620003828262000496565b604082019050919050565b60006020820190508181036000830152620003a8816200033f565b9050919050565b60006020820190508181036000830152620003ca8162000366565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003fb57607f821691505b6020821081141562000412576200041162000418565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516144a86200051660003960008181611eba01528181611ee301526127720152600050506144a86000f3fe60806040526004361061021a5760003560e01c8063742a4c9b11610123578063ac915c06116100ab578063de7fcb1d1161006f578063de7fcb1d1461079a578063e645f708146107c5578063e985e9c514610802578063f2fde38b1461083f578063fdbf9ef2146108685761021a565b8063ac915c06146106c7578063b88d4fde146106de578063c87b56dd14610707578063d5abeb0114610744578063d7224ba01461076f5761021a565b80638da5cb5b116100f25780638da5cb5b1461060357806391b7f5ed1461062e57806395d89b4114610657578063a0712d6814610682578063a22cb4651461069e5761021a565b8063742a4c9b1461055f57806379f34a10146105885780638171609b146105b15780638ba4cc3c146105da5761021a565b806342842e0e116101a65780635b70ea9f116101755780635b70ea9f146104785780636352211e146104a35780636c0360eb146104e057806370a082311461050b578063715018a6146105485761021a565b806342842e0e146103be5780634b818477146103e75780634f6ccce71461041257806355f804b31461044f5761021a565b806318160ddd116101ed57806318160ddd146102ed578063228025e81461031857806323b872dd146103415780632f745c591461036a5780633ccfd60b146103a75761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612f82565b610893565b60405161025391906134f9565b60405180910390f35b34801561026857600080fd5b506102716109dd565b60405161027e9190613514565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613029565b610a6f565b6040516102bb9190613492565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612f42565b610af4565b005b3480156102f957600080fd5b50610302610c0d565b60405161030f9190613836565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190613029565b610c17565b005b34801561034d57600080fd5b5061036860048036038101906103639190612e2c565b610c29565b005b34801561037657600080fd5b50610391600480360381019061038c9190612f42565b610c39565b60405161039e9190613836565b60405180910390f35b3480156103b357600080fd5b506103bc610e37565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190612e2c565b610e9f565b005b3480156103f357600080fd5b506103fc610ebf565b60405161040991906134f9565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190613029565b610ed2565b6040516104469190613836565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612fdc565b610f25565b005b34801561048457600080fd5b5061048d610f43565b60405161049a9190613836565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190613029565b610f49565b6040516104d79190613492565b60405180910390f35b3480156104ec57600080fd5b506104f5610f5f565b6040516105029190613514565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190612dbf565b610fed565b60405161053f9190613836565b60405180910390f35b34801561055457600080fd5b5061055d6110d6565b005b34801561056b57600080fd5b5061058660048036038101906105819190613029565b6110ea565b005b34801561059457600080fd5b506105af60048036038101906105aa9190613029565b6110fc565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613029565b61110e565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190612f42565b611123565b005b34801561060f57600080fd5b50610618611139565b6040516106259190613492565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190613029565b611162565b005b34801561066357600080fd5b5061066c611174565b6040516106799190613514565b60405180910390f35b61069c60048036038101906106979190613029565b611206565b005b3480156106aa57600080fd5b506106c560048036038101906106c09190612f02565b6112fd565b005b3480156106d357600080fd5b506106dc61147e565b005b3480156106ea57600080fd5b5061070560048036038101906107009190612e7f565b6114b2565b005b34801561071357600080fd5b5061072e60048036038101906107299190613029565b61150e565b60405161073b9190613514565b60405180910390f35b34801561075057600080fd5b506107596115b5565b6040516107669190613836565b60405180910390f35b34801561077b57600080fd5b506107846115bb565b6040516107919190613836565b60405180910390f35b3480156107a657600080fd5b506107af6115c1565b6040516107bc9190613836565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612dbf565b6115c7565b6040516107f99190613836565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190612dec565b6115df565b60405161083691906134f9565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190612dbf565b611673565b005b34801561087457600080fd5b5061087d6116f7565b60405161088a9190613836565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d657506109d5826116fd565b5b9050919050565b6060600280546109ec90613b75565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1890613b75565b8015610a655780601f10610a3a57610100808354040283529160200191610a65565b820191906000526020600020905b815481529060010190602001808311610a4857829003601f168201915b5050505050905090565b6000610a7a82611767565b610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab0906137f6565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aff82610f49565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790613716565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8f611775565b73ffffffffffffffffffffffffffffffffffffffff161480610bbe5750610bbd81610bb8611775565b6115df565b5b610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf4906135f6565b60405180910390fd5b610c0883838361177d565b505050565b6000600154905090565b610c1f61182f565b8060108190555050565b610c348383836118ad565b505050565b6000610c4483610fed565b8210610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90613536565b60405180910390fd5b6000610c8f610c0d565b905060008060005b83811015610df5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d8957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de15786841415610dd2578195505050505050610e31565b8380610ddd90613bd8565b9450505b508080610ded90613bd8565b915050610c97565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890613796565b60405180910390fd5b92915050565b610e3f61182f565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610e9c573d6000803e3d6000fd5b50565b610eba838383604051806020016040528060008152506114b2565b505050565b600b60009054906101000a900460ff1681565b6000610edc610c0d565b8210610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f14906135b6565b60405180910390fd5b819050919050565b610f2d61182f565b8181600d9190610f3e929190612bb3565b505050565b600e5481565b6000610f5482611e66565b600001519050919050565b600d8054610f6c90613b75565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9890613b75565b8015610fe55780601f10610fba57610100808354040283529160200191610fe5565b820191906000526020600020905b815481529060010190602001808311610fc857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590613656565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110de61182f565b6110e86000612069565b565b6110f261182f565b80600e8190555050565b61110461182f565b80600f8190555050565b61111661182f565b611120338261212d565b50565b61112b61182f565b611135828261212d565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61116a61182f565b80600c8190555050565b60606003805461118390613b75565b80601f01602080910402602001604051908101604052809291908181526020018280546111af90613b75565b80156111fc5780601f106111d1576101008083540402835291602001916111fc565b820191906000526020600020905b8154815290600101906020018083116111df57829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c906137b6565b60405180910390fd5b600f5481111561129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190613616565b60405180910390fd5b601054816112a6610c0d565b6112b09190613930565b11156112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890613636565b60405180910390fd5b6112fa8161214b565b50565b611305611775565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906136d6565b60405180910390fd5b8060076000611380611775565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661142d611775565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147291906134f9565b60405180910390a35050565b61148661182f565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6114bd8484846118ad565b6114c98484848461231a565b611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90613736565b60405180910390fd5b50505050565b606061151982611767565b611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f906136b6565b60405180910390fd5b60006115626124b1565b9050600081511161158257604051806020016040528060008152506115ad565b8061158c84612543565b60405160200161159d92919061346e565b6040516020818303038152906040525b915050919050565b60105481565b60085481565b600f5481565b600a6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61167b61182f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e290613556565b60405180910390fd5b6116f481612069565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611837611775565b73ffffffffffffffffffffffffffffffffffffffff16611855611139565b73ffffffffffffffffffffffffffffffffffffffff16146118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a290613696565b60405180910390fd5b565b60006118b882611e66565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118df611775565b73ffffffffffffffffffffffffffffffffffffffff16148061193b5750611904611775565b73ffffffffffffffffffffffffffffffffffffffff1661192384610a6f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061195757506119568260000151611951611775565b6115df565b5b905080611999576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611990906136f6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290613676565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a72906135d6565b60405180910390fd5b611a8885858560016126a4565b611a98600084846000015161177d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b069190613a11565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611baa91906138ea565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611cb09190613930565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611df657611d2681611767565b15611df5576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e5e86868660016126aa565b505050505050565b611e6e612c39565b611e7782611767565b611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613576565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611f1a5760017f000000000000000000000000000000000000000000000000000000000000000084611f0d9190613a45565b611f179190613930565b90505b60008390505b818110612028576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461201457809350505050612064565b50808061202090613b4b565b915050611f20565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205b906137d6565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121478282604051806020016040528060008152506126b0565b5050565b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561226657600e548110156121a457600e5490505b600c54600e54826121b59190613a45565b6121bf91906139b7565b341015612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890613596565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122509190613930565b92505081905550612261338261212d565b612317565b600c548161227491906139b7565b3410156122b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ad90613596565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123059190613930565b92505081905550612316338261212d565b5b50565b600061233b8473ffffffffffffffffffffffffffffffffffffffff16612b90565b156124a4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612364611775565b8786866040518563ffffffff1660e01b815260040161238694939291906134ad565b602060405180830381600087803b1580156123a057600080fd5b505af19250505080156123d157506040513d601f19601f820116820180604052508101906123ce9190612faf565b60015b612454573d8060008114612401576040519150601f19603f3d011682016040523d82523d6000602084013e612406565b606091505b5060008151141561244c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244390613736565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124a9565b600190505b949350505050565b6060600d80546124c090613b75565b80601f01602080910402602001604051908101604052809291908181526020018280546124ec90613b75565b80156125395780601f1061250e57610100808354040283529160200191612539565b820191906000526020600020905b81548152906001019060200180831161251c57829003601f168201915b5050505050905090565b6060600082141561258b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061269f565b600082905060005b600082146125bd5780806125a690613bd8565b915050600a826125b69190613986565b9150612593565b60008167ffffffffffffffff8111156125d9576125d8613d0e565b5b6040519080825280601f01601f19166020018201604052801561260b5781602001600182028036833780820191505090505b5090505b60008514612698576001826126249190613a45565b9150600a856126339190613c21565b603061263f9190613930565b60f81b81838151811061265557612654613cdf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126919190613986565b945061260f565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271e90613776565b60405180910390fd5b61273081611767565b15612770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276790613756565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156127d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ca90613816565b60405180910390fd5b6127e060008583866126a4565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516128dd91906138ea565b6fffffffffffffffffffffffffffffffff16815260200185836020015161290491906138ea565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612b7357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b13600088848861231a565b612b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4990613736565b60405180910390fd5b8180612b5d90613bd8565b9250508080612b6b90613bd8565b915050612aa2565b5080600181905550612b8860008785886126aa565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612bbf90613b75565b90600052602060002090601f016020900481019282612be15760008555612c28565b82601f10612bfa57803560ff1916838001178555612c28565b82800160010185558215612c28579182015b82811115612c27578235825591602001919060010190612c0c565b5b509050612c359190612c73565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612c8c576000816000905550600101612c74565b5090565b6000612ca3612c9e84613876565b613851565b905082815260208101848484011115612cbf57612cbe613d4c565b5b612cca848285613b09565b509392505050565b600081359050612ce181614416565b92915050565b600081359050612cf68161442d565b92915050565b600081359050612d0b81614444565b92915050565b600081519050612d2081614444565b92915050565b600082601f830112612d3b57612d3a613d42565b5b8135612d4b848260208601612c90565b91505092915050565b60008083601f840112612d6a57612d69613d42565b5b8235905067ffffffffffffffff811115612d8757612d86613d3d565b5b602083019150836001820283011115612da357612da2613d47565b5b9250929050565b600081359050612db98161445b565b92915050565b600060208284031215612dd557612dd4613d56565b5b6000612de384828501612cd2565b91505092915050565b60008060408385031215612e0357612e02613d56565b5b6000612e1185828601612cd2565b9250506020612e2285828601612cd2565b9150509250929050565b600080600060608486031215612e4557612e44613d56565b5b6000612e5386828701612cd2565b9350506020612e6486828701612cd2565b9250506040612e7586828701612daa565b9150509250925092565b60008060008060808587031215612e9957612e98613d56565b5b6000612ea787828801612cd2565b9450506020612eb887828801612cd2565b9350506040612ec987828801612daa565b925050606085013567ffffffffffffffff811115612eea57612ee9613d51565b5b612ef687828801612d26565b91505092959194509250565b60008060408385031215612f1957612f18613d56565b5b6000612f2785828601612cd2565b9250506020612f3885828601612ce7565b9150509250929050565b60008060408385031215612f5957612f58613d56565b5b6000612f6785828601612cd2565b9250506020612f7885828601612daa565b9150509250929050565b600060208284031215612f9857612f97613d56565b5b6000612fa684828501612cfc565b91505092915050565b600060208284031215612fc557612fc4613d56565b5b6000612fd384828501612d11565b91505092915050565b60008060208385031215612ff357612ff2613d56565b5b600083013567ffffffffffffffff81111561301157613010613d51565b5b61301d85828601612d54565b92509250509250929050565b60006020828403121561303f5761303e613d56565b5b600061304d84828501612daa565b91505092915050565b61305f81613a79565b82525050565b61306e81613a8b565b82525050565b600061307f826138a7565b61308981856138bd565b9350613099818560208601613b18565b6130a281613d5b565b840191505092915050565b60006130b8826138b2565b6130c281856138ce565b93506130d2818560208601613b18565b6130db81613d5b565b840191505092915050565b60006130f1826138b2565b6130fb81856138df565b935061310b818560208601613b18565b80840191505092915050565b60006131246022836138ce565b915061312f82613d6c565b604082019050919050565b60006131476026836138ce565b915061315282613dbb565b604082019050919050565b600061316a602a836138ce565b915061317582613e0a565b604082019050919050565b600061318d601e836138ce565b915061319882613e59565b602082019050919050565b60006131b06023836138ce565b91506131bb82613e82565b604082019050919050565b60006131d36025836138ce565b91506131de82613ed1565b604082019050919050565b60006131f66039836138ce565b915061320182613f20565b604082019050919050565b60006132196024836138ce565b915061322482613f6f565b604082019050919050565b600061323c6016836138ce565b915061324782613fbe565b602082019050919050565b600061325f602b836138ce565b915061326a82613fe7565b604082019050919050565b60006132826026836138ce565b915061328d82614036565b604082019050919050565b60006132a56020836138ce565b91506132b082614085565b602082019050919050565b60006132c8602f836138ce565b91506132d3826140ae565b604082019050919050565b60006132eb601a836138ce565b91506132f6826140fd565b602082019050919050565b600061330e6032836138ce565b915061331982614126565b604082019050919050565b60006133316022836138ce565b915061333c82614175565b604082019050919050565b60006133546033836138ce565b915061335f826141c4565b604082019050919050565b6000613377601d836138ce565b915061338282614213565b602082019050919050565b600061339a6021836138ce565b91506133a58261423c565b604082019050919050565b60006133bd602e836138ce565b91506133c88261428b565b604082019050919050565b60006133e06023836138ce565b91506133eb826142da565b604082019050919050565b6000613403602f836138ce565b915061340e82614329565b604082019050919050565b6000613426602d836138ce565b915061343182614378565b604082019050919050565b60006134496022836138ce565b9150613454826143c7565b604082019050919050565b61346881613aff565b82525050565b600061347a82856130e6565b915061348682846130e6565b91508190509392505050565b60006020820190506134a76000830184613056565b92915050565b60006080820190506134c26000830187613056565b6134cf6020830186613056565b6134dc604083018561345f565b81810360608301526134ee8184613074565b905095945050505050565b600060208201905061350e6000830184613065565b92915050565b6000602082019050818103600083015261352e81846130ad565b905092915050565b6000602082019050818103600083015261354f81613117565b9050919050565b6000602082019050818103600083015261356f8161313a565b9050919050565b6000602082019050818103600083015261358f8161315d565b9050919050565b600060208201905081810360008301526135af81613180565b9050919050565b600060208201905081810360008301526135cf816131a3565b9050919050565b600060208201905081810360008301526135ef816131c6565b9050919050565b6000602082019050818103600083015261360f816131e9565b9050919050565b6000602082019050818103600083015261362f8161320c565b9050919050565b6000602082019050818103600083015261364f8161322f565b9050919050565b6000602082019050818103600083015261366f81613252565b9050919050565b6000602082019050818103600083015261368f81613275565b9050919050565b600060208201905081810360008301526136af81613298565b9050919050565b600060208201905081810360008301526136cf816132bb565b9050919050565b600060208201905081810360008301526136ef816132de565b9050919050565b6000602082019050818103600083015261370f81613301565b9050919050565b6000602082019050818103600083015261372f81613324565b9050919050565b6000602082019050818103600083015261374f81613347565b9050919050565b6000602082019050818103600083015261376f8161336a565b9050919050565b6000602082019050818103600083015261378f8161338d565b9050919050565b600060208201905081810360008301526137af816133b0565b9050919050565b600060208201905081810360008301526137cf816133d3565b9050919050565b600060208201905081810360008301526137ef816133f6565b9050919050565b6000602082019050818103600083015261380f81613419565b9050919050565b6000602082019050818103600083015261382f8161343c565b9050919050565b600060208201905061384b600083018461345f565b92915050565b600061385b61386c565b90506138678282613ba7565b919050565b6000604051905090565b600067ffffffffffffffff82111561389157613890613d0e565b5b61389a82613d5b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138f582613ac3565b915061390083613ac3565b9250826fffffffffffffffffffffffffffffffff0382111561392557613924613c52565b5b828201905092915050565b600061393b82613aff565b915061394683613aff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561397b5761397a613c52565b5b828201905092915050565b600061399182613aff565b915061399c83613aff565b9250826139ac576139ab613c81565b5b828204905092915050565b60006139c282613aff565b91506139cd83613aff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0657613a05613c52565b5b828202905092915050565b6000613a1c82613ac3565b9150613a2783613ac3565b925082821015613a3a57613a39613c52565b5b828203905092915050565b6000613a5082613aff565b9150613a5b83613aff565b925082821015613a6e57613a6d613c52565b5b828203905092915050565b6000613a8482613adf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b36578082015181840152602081019050613b1b565b83811115613b45576000848401525b50505050565b6000613b5682613aff565b91506000821415613b6a57613b69613c52565b5b600182039050919050565b60006002820490506001821680613b8d57607f821691505b60208210811415613ba157613ba0613cb0565b5b50919050565b613bb082613d5b565b810181811067ffffffffffffffff82111715613bcf57613bce613d0e565b5b80604052505050565b6000613be382613aff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1657613c15613c52565b5b600182019050919050565b6000613c2c82613aff565b9150613c3783613aff565b925082613c4757613c46613c81565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f74696669636174696f6e3a202046756e64206e6f7420656e6f7567680000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f4e6f74696669636174696f6e3a20204c696d697420506572205472616e73616360008201527f74696f6e00000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74696669636174696f6e3a2020536f6c646f757400000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f4e6f74696669636174696f6e3a20204d696e74696e67205075626c696320506160008201527f7573650000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61441f81613a79565b811461442a57600080fd5b50565b61443681613a8b565b811461444157600080fd5b50565b61444d81613a97565b811461445857600080fd5b50565b61446481613aff565b811461446f57600080fd5b5056fea26469706673582212203ae41ece2bfd6ed978c23f4ebb51e347b3994ca220a0df35cc1b59ede40e13d064736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063742a4c9b11610123578063ac915c06116100ab578063de7fcb1d1161006f578063de7fcb1d1461079a578063e645f708146107c5578063e985e9c514610802578063f2fde38b1461083f578063fdbf9ef2146108685761021a565b8063ac915c06146106c7578063b88d4fde146106de578063c87b56dd14610707578063d5abeb0114610744578063d7224ba01461076f5761021a565b80638da5cb5b116100f25780638da5cb5b1461060357806391b7f5ed1461062e57806395d89b4114610657578063a0712d6814610682578063a22cb4651461069e5761021a565b8063742a4c9b1461055f57806379f34a10146105885780638171609b146105b15780638ba4cc3c146105da5761021a565b806342842e0e116101a65780635b70ea9f116101755780635b70ea9f146104785780636352211e146104a35780636c0360eb146104e057806370a082311461050b578063715018a6146105485761021a565b806342842e0e146103be5780634b818477146103e75780634f6ccce71461041257806355f804b31461044f5761021a565b806318160ddd116101ed57806318160ddd146102ed578063228025e81461031857806323b872dd146103415780632f745c591461036a5780633ccfd60b146103a75761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612f82565b610893565b60405161025391906134f9565b60405180910390f35b34801561026857600080fd5b506102716109dd565b60405161027e9190613514565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613029565b610a6f565b6040516102bb9190613492565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190612f42565b610af4565b005b3480156102f957600080fd5b50610302610c0d565b60405161030f9190613836565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190613029565b610c17565b005b34801561034d57600080fd5b5061036860048036038101906103639190612e2c565b610c29565b005b34801561037657600080fd5b50610391600480360381019061038c9190612f42565b610c39565b60405161039e9190613836565b60405180910390f35b3480156103b357600080fd5b506103bc610e37565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190612e2c565b610e9f565b005b3480156103f357600080fd5b506103fc610ebf565b60405161040991906134f9565b60405180910390f35b34801561041e57600080fd5b5061043960048036038101906104349190613029565b610ed2565b6040516104469190613836565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612fdc565b610f25565b005b34801561048457600080fd5b5061048d610f43565b60405161049a9190613836565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190613029565b610f49565b6040516104d79190613492565b60405180910390f35b3480156104ec57600080fd5b506104f5610f5f565b6040516105029190613514565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190612dbf565b610fed565b60405161053f9190613836565b60405180910390f35b34801561055457600080fd5b5061055d6110d6565b005b34801561056b57600080fd5b5061058660048036038101906105819190613029565b6110ea565b005b34801561059457600080fd5b506105af60048036038101906105aa9190613029565b6110fc565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613029565b61110e565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190612f42565b611123565b005b34801561060f57600080fd5b50610618611139565b6040516106259190613492565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190613029565b611162565b005b34801561066357600080fd5b5061066c611174565b6040516106799190613514565b60405180910390f35b61069c60048036038101906106979190613029565b611206565b005b3480156106aa57600080fd5b506106c560048036038101906106c09190612f02565b6112fd565b005b3480156106d357600080fd5b506106dc61147e565b005b3480156106ea57600080fd5b5061070560048036038101906107009190612e7f565b6114b2565b005b34801561071357600080fd5b5061072e60048036038101906107299190613029565b61150e565b60405161073b9190613514565b60405180910390f35b34801561075057600080fd5b506107596115b5565b6040516107669190613836565b60405180910390f35b34801561077b57600080fd5b506107846115bb565b6040516107919190613836565b60405180910390f35b3480156107a657600080fd5b506107af6115c1565b6040516107bc9190613836565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612dbf565b6115c7565b6040516107f99190613836565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190612dec565b6115df565b60405161083691906134f9565b60405180910390f35b34801561084b57600080fd5b5061086660048036038101906108619190612dbf565b611673565b005b34801561087457600080fd5b5061087d6116f7565b60405161088a9190613836565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d657506109d5826116fd565b5b9050919050565b6060600280546109ec90613b75565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1890613b75565b8015610a655780601f10610a3a57610100808354040283529160200191610a65565b820191906000526020600020905b815481529060010190602001808311610a4857829003601f168201915b5050505050905090565b6000610a7a82611767565b610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab0906137f6565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aff82610f49565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790613716565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8f611775565b73ffffffffffffffffffffffffffffffffffffffff161480610bbe5750610bbd81610bb8611775565b6115df565b5b610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf4906135f6565b60405180910390fd5b610c0883838361177d565b505050565b6000600154905090565b610c1f61182f565b8060108190555050565b610c348383836118ad565b505050565b6000610c4483610fed565b8210610c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7c90613536565b60405180910390fd5b6000610c8f610c0d565b905060008060005b83811015610df5576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d8957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de15786841415610dd2578195505050505050610e31565b8380610ddd90613bd8565b9450505b508080610ded90613bd8565b915050610c97565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890613796565b60405180910390fd5b92915050565b610e3f61182f565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610e9c573d6000803e3d6000fd5b50565b610eba838383604051806020016040528060008152506114b2565b505050565b600b60009054906101000a900460ff1681565b6000610edc610c0d565b8210610f1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f14906135b6565b60405180910390fd5b819050919050565b610f2d61182f565b8181600d9190610f3e929190612bb3565b505050565b600e5481565b6000610f5482611e66565b600001519050919050565b600d8054610f6c90613b75565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9890613b75565b8015610fe55780601f10610fba57610100808354040283529160200191610fe5565b820191906000526020600020905b815481529060010190602001808311610fc857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590613656565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110de61182f565b6110e86000612069565b565b6110f261182f565b80600e8190555050565b61110461182f565b80600f8190555050565b61111661182f565b611120338261212d565b50565b61112b61182f565b611135828261212d565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61116a61182f565b80600c8190555050565b60606003805461118390613b75565b80601f01602080910402602001604051908101604052809291908181526020018280546111af90613b75565b80156111fc5780601f106111d1576101008083540402835291602001916111fc565b820191906000526020600020905b8154815290600101906020018083116111df57829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c906137b6565b60405180910390fd5b600f5481111561129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190613616565b60405180910390fd5b601054816112a6610c0d565b6112b09190613930565b11156112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890613636565b60405180910390fd5b6112fa8161214b565b50565b611305611775565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906136d6565b60405180910390fd5b8060076000611380611775565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661142d611775565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147291906134f9565b60405180910390a35050565b61148661182f565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6114bd8484846118ad565b6114c98484848461231a565b611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90613736565b60405180910390fd5b50505050565b606061151982611767565b611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f906136b6565b60405180910390fd5b60006115626124b1565b9050600081511161158257604051806020016040528060008152506115ad565b8061158c84612543565b60405160200161159d92919061346e565b6040516020818303038152906040525b915050919050565b60105481565b60085481565b600f5481565b600a6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61167b61182f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e290613556565b60405180910390fd5b6116f481612069565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611837611775565b73ffffffffffffffffffffffffffffffffffffffff16611855611139565b73ffffffffffffffffffffffffffffffffffffffff16146118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a290613696565b60405180910390fd5b565b60006118b882611e66565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118df611775565b73ffffffffffffffffffffffffffffffffffffffff16148061193b5750611904611775565b73ffffffffffffffffffffffffffffffffffffffff1661192384610a6f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061195757506119568260000151611951611775565b6115df565b5b905080611999576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611990906136f6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290613676565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a72906135d6565b60405180910390fd5b611a8885858560016126a4565b611a98600084846000015161177d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b069190613a11565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611baa91906138ea565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611cb09190613930565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611df657611d2681611767565b15611df5576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e5e86868660016126aa565b505050505050565b611e6e612c39565b611e7782611767565b611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613576565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000458310611f1a5760017f000000000000000000000000000000000000000000000000000000000000004584611f0d9190613a45565b611f179190613930565b90505b60008390505b818110612028576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461201457809350505050612064565b50808061202090613b4b565b915050611f20565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205b906137d6565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121478282604051806020016040528060008152506126b0565b5050565b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561226657600e548110156121a457600e5490505b600c54600e54826121b59190613a45565b6121bf91906139b7565b341015612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890613596565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122509190613930565b92505081905550612261338261212d565b612317565b600c548161227491906139b7565b3410156122b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ad90613596565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123059190613930565b92505081905550612316338261212d565b5b50565b600061233b8473ffffffffffffffffffffffffffffffffffffffff16612b90565b156124a4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612364611775565b8786866040518563ffffffff1660e01b815260040161238694939291906134ad565b602060405180830381600087803b1580156123a057600080fd5b505af19250505080156123d157506040513d601f19601f820116820180604052508101906123ce9190612faf565b60015b612454573d8060008114612401576040519150601f19603f3d011682016040523d82523d6000602084013e612406565b606091505b5060008151141561244c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244390613736565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124a9565b600190505b949350505050565b6060600d80546124c090613b75565b80601f01602080910402602001604051908101604052809291908181526020018280546124ec90613b75565b80156125395780601f1061250e57610100808354040283529160200191612539565b820191906000526020600020905b81548152906001019060200180831161251c57829003601f168201915b5050505050905090565b6060600082141561258b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061269f565b600082905060005b600082146125bd5780806125a690613bd8565b915050600a826125b69190613986565b9150612593565b60008167ffffffffffffffff8111156125d9576125d8613d0e565b5b6040519080825280601f01601f19166020018201604052801561260b5781602001600182028036833780820191505090505b5090505b60008514612698576001826126249190613a45565b9150600a856126339190613c21565b603061263f9190613930565b60f81b81838151811061265557612654613cdf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126919190613986565b945061260f565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271e90613776565b60405180910390fd5b61273081611767565b15612770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276790613756565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000458311156127d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ca90613816565b60405180910390fd5b6127e060008583866126a4565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516128dd91906138ea565b6fffffffffffffffffffffffffffffffff16815260200185836020015161290491906138ea565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612b7357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b13600088848861231a565b612b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4990613736565b60405180910390fd5b8180612b5d90613bd8565b9250508080612b6b90613bd8565b915050612aa2565b5080600181905550612b8860008785886126aa565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612bbf90613b75565b90600052602060002090601f016020900481019282612be15760008555612c28565b82601f10612bfa57803560ff1916838001178555612c28565b82800160010185558215612c28579182015b82811115612c27578235825591602001919060010190612c0c565b5b509050612c359190612c73565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612c8c576000816000905550600101612c74565b5090565b6000612ca3612c9e84613876565b613851565b905082815260208101848484011115612cbf57612cbe613d4c565b5b612cca848285613b09565b509392505050565b600081359050612ce181614416565b92915050565b600081359050612cf68161442d565b92915050565b600081359050612d0b81614444565b92915050565b600081519050612d2081614444565b92915050565b600082601f830112612d3b57612d3a613d42565b5b8135612d4b848260208601612c90565b91505092915050565b60008083601f840112612d6a57612d69613d42565b5b8235905067ffffffffffffffff811115612d8757612d86613d3d565b5b602083019150836001820283011115612da357612da2613d47565b5b9250929050565b600081359050612db98161445b565b92915050565b600060208284031215612dd557612dd4613d56565b5b6000612de384828501612cd2565b91505092915050565b60008060408385031215612e0357612e02613d56565b5b6000612e1185828601612cd2565b9250506020612e2285828601612cd2565b9150509250929050565b600080600060608486031215612e4557612e44613d56565b5b6000612e5386828701612cd2565b9350506020612e6486828701612cd2565b9250506040612e7586828701612daa565b9150509250925092565b60008060008060808587031215612e9957612e98613d56565b5b6000612ea787828801612cd2565b9450506020612eb887828801612cd2565b9350506040612ec987828801612daa565b925050606085013567ffffffffffffffff811115612eea57612ee9613d51565b5b612ef687828801612d26565b91505092959194509250565b60008060408385031215612f1957612f18613d56565b5b6000612f2785828601612cd2565b9250506020612f3885828601612ce7565b9150509250929050565b60008060408385031215612f5957612f58613d56565b5b6000612f6785828601612cd2565b9250506020612f7885828601612daa565b9150509250929050565b600060208284031215612f9857612f97613d56565b5b6000612fa684828501612cfc565b91505092915050565b600060208284031215612fc557612fc4613d56565b5b6000612fd384828501612d11565b91505092915050565b60008060208385031215612ff357612ff2613d56565b5b600083013567ffffffffffffffff81111561301157613010613d51565b5b61301d85828601612d54565b92509250509250929050565b60006020828403121561303f5761303e613d56565b5b600061304d84828501612daa565b91505092915050565b61305f81613a79565b82525050565b61306e81613a8b565b82525050565b600061307f826138a7565b61308981856138bd565b9350613099818560208601613b18565b6130a281613d5b565b840191505092915050565b60006130b8826138b2565b6130c281856138ce565b93506130d2818560208601613b18565b6130db81613d5b565b840191505092915050565b60006130f1826138b2565b6130fb81856138df565b935061310b818560208601613b18565b80840191505092915050565b60006131246022836138ce565b915061312f82613d6c565b604082019050919050565b60006131476026836138ce565b915061315282613dbb565b604082019050919050565b600061316a602a836138ce565b915061317582613e0a565b604082019050919050565b600061318d601e836138ce565b915061319882613e59565b602082019050919050565b60006131b06023836138ce565b91506131bb82613e82565b604082019050919050565b60006131d36025836138ce565b91506131de82613ed1565b604082019050919050565b60006131f66039836138ce565b915061320182613f20565b604082019050919050565b60006132196024836138ce565b915061322482613f6f565b604082019050919050565b600061323c6016836138ce565b915061324782613fbe565b602082019050919050565b600061325f602b836138ce565b915061326a82613fe7565b604082019050919050565b60006132826026836138ce565b915061328d82614036565b604082019050919050565b60006132a56020836138ce565b91506132b082614085565b602082019050919050565b60006132c8602f836138ce565b91506132d3826140ae565b604082019050919050565b60006132eb601a836138ce565b91506132f6826140fd565b602082019050919050565b600061330e6032836138ce565b915061331982614126565b604082019050919050565b60006133316022836138ce565b915061333c82614175565b604082019050919050565b60006133546033836138ce565b915061335f826141c4565b604082019050919050565b6000613377601d836138ce565b915061338282614213565b602082019050919050565b600061339a6021836138ce565b91506133a58261423c565b604082019050919050565b60006133bd602e836138ce565b91506133c88261428b565b604082019050919050565b60006133e06023836138ce565b91506133eb826142da565b604082019050919050565b6000613403602f836138ce565b915061340e82614329565b604082019050919050565b6000613426602d836138ce565b915061343182614378565b604082019050919050565b60006134496022836138ce565b9150613454826143c7565b604082019050919050565b61346881613aff565b82525050565b600061347a82856130e6565b915061348682846130e6565b91508190509392505050565b60006020820190506134a76000830184613056565b92915050565b60006080820190506134c26000830187613056565b6134cf6020830186613056565b6134dc604083018561345f565b81810360608301526134ee8184613074565b905095945050505050565b600060208201905061350e6000830184613065565b92915050565b6000602082019050818103600083015261352e81846130ad565b905092915050565b6000602082019050818103600083015261354f81613117565b9050919050565b6000602082019050818103600083015261356f8161313a565b9050919050565b6000602082019050818103600083015261358f8161315d565b9050919050565b600060208201905081810360008301526135af81613180565b9050919050565b600060208201905081810360008301526135cf816131a3565b9050919050565b600060208201905081810360008301526135ef816131c6565b9050919050565b6000602082019050818103600083015261360f816131e9565b9050919050565b6000602082019050818103600083015261362f8161320c565b9050919050565b6000602082019050818103600083015261364f8161322f565b9050919050565b6000602082019050818103600083015261366f81613252565b9050919050565b6000602082019050818103600083015261368f81613275565b9050919050565b600060208201905081810360008301526136af81613298565b9050919050565b600060208201905081810360008301526136cf816132bb565b9050919050565b600060208201905081810360008301526136ef816132de565b9050919050565b6000602082019050818103600083015261370f81613301565b9050919050565b6000602082019050818103600083015261372f81613324565b9050919050565b6000602082019050818103600083015261374f81613347565b9050919050565b6000602082019050818103600083015261376f8161336a565b9050919050565b6000602082019050818103600083015261378f8161338d565b9050919050565b600060208201905081810360008301526137af816133b0565b9050919050565b600060208201905081810360008301526137cf816133d3565b9050919050565b600060208201905081810360008301526137ef816133f6565b9050919050565b6000602082019050818103600083015261380f81613419565b9050919050565b6000602082019050818103600083015261382f8161343c565b9050919050565b600060208201905061384b600083018461345f565b92915050565b600061385b61386c565b90506138678282613ba7565b919050565b6000604051905090565b600067ffffffffffffffff82111561389157613890613d0e565b5b61389a82613d5b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138f582613ac3565b915061390083613ac3565b9250826fffffffffffffffffffffffffffffffff0382111561392557613924613c52565b5b828201905092915050565b600061393b82613aff565b915061394683613aff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561397b5761397a613c52565b5b828201905092915050565b600061399182613aff565b915061399c83613aff565b9250826139ac576139ab613c81565b5b828204905092915050565b60006139c282613aff565b91506139cd83613aff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0657613a05613c52565b5b828202905092915050565b6000613a1c82613ac3565b9150613a2783613ac3565b925082821015613a3a57613a39613c52565b5b828203905092915050565b6000613a5082613aff565b9150613a5b83613aff565b925082821015613a6e57613a6d613c52565b5b828203905092915050565b6000613a8482613adf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b36578082015181840152602081019050613b1b565b83811115613b45576000848401525b50505050565b6000613b5682613aff565b91506000821415613b6a57613b69613c52565b5b600182039050919050565b60006002820490506001821680613b8d57607f821691505b60208210811415613ba157613ba0613cb0565b5b50919050565b613bb082613d5b565b810181811067ffffffffffffffff82111715613bcf57613bce613d0e565b5b80604052505050565b6000613be382613aff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1657613c15613c52565b5b600182019050919050565b6000613c2c82613aff565b9150613c3783613aff565b925082613c4757613c46613c81565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f74696669636174696f6e3a202046756e64206e6f7420656e6f7567680000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f4e6f74696669636174696f6e3a20204c696d697420506572205472616e73616360008201527f74696f6e00000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74696669636174696f6e3a2020536f6c646f757400000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f4e6f74696669636174696f6e3a20204d696e74696e67205075626c696320506160008201527f7573650000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61441f81613a79565b811461442a57600080fd5b50565b61443681613a8b565b811461444157600080fd5b50565b61444d81613a97565b811461445857600080fd5b50565b61446481613aff565b811461446f57600080fd5b5056fea26469706673582212203ae41ece2bfd6ed978c23f4ebb51e347b3994ca220a0df35cc1b59ede40e13d064736f6c63430008070033

Deployed Bytecode Sourcemap

203:2391:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2812:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2375:90:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8352:142:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3443:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2473:116:12;;;;;;;;;;;;;:::i;:::-;;8557:157:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;325:30:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2975:177:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1946:102:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;448:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5800:118:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;418:21:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;2276:91:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2154:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1728:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1617:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2056:90:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6132:98:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;620:308:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7770:274:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1842:92:12;;;;;;;;;;;;;:::i;:::-;;8777:311:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6293:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;517:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;479:29:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;272:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8107:186:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;362:36:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4251:370:11;4378:4;4423:25;4408:40;;;:11;:40;;;;:99;;;;4474:33;4459:48;;;:11;:48;;;;4408:99;:160;;;;4533:35;4518:50;;;:11;:50;;;;4408:160;:207;;;;4579:36;4603:11;4579:23;:36::i;:::-;4408:207;4394:221;;4251:370;;;:::o;5977:94::-;6031:13;6060:5;6053:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5977:94;:::o;7502:204::-;7570:7;7594:16;7602:7;7594;:16::i;:::-;7586:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7676:15;:24;7692:7;7676:24;;;;;;;;;;;;;;;;;;;;;7669:31;;7502:204;;;:::o;7065:379::-;7134:13;7150:24;7166:7;7150:15;:24::i;:::-;7134:40;;7195:5;7189:11;;:2;:11;;;;7181:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;7280:5;7264:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7289:37;7306:5;7313:12;:10;:12::i;:::-;7289:16;:37::i;:::-;7264:62;7248:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;7410:28;7419:2;7423:7;7432:5;7410:8;:28::i;:::-;7127:317;7065:379;;:::o;2812:94::-;2865:7;2888:12;;2881:19;;2812:94;:::o;2375:90:12:-;1094:13:0;:11;:13::i;:::-;2453:4:12::1;2441:9;:16;;;;2375:90:::0;:::o;8352:142:11:-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;3443:744::-;3552:7;3587:16;3597:5;3587:9;:16::i;:::-;3579:5;:24;3571:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3649:22;3674:13;:11;:13::i;:::-;3649:38;;3694:19;3724:25;3774:9;3769:350;3793:14;3789:1;:18;3769:350;;;3823:31;3857:11;:14;3869:1;3857:14;;;;;;;;;;;3823:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3910:1;3884:28;;:9;:14;;;:28;;;3880:89;;3945:9;:14;;;3925:34;;3880:89;4002:5;3981:26;;:17;:26;;;3977:135;;;4039:5;4024:11;:20;4020:59;;;4066:1;4059:8;;;;;;;;;4020:59;4089:13;;;;;:::i;:::-;;;;3977:135;3814:305;3809:3;;;;;:::i;:::-;;;;3769:350;;;;4125:56;;;;;;;;;;:::i;:::-;;;;;;;;3443:744;;;;;:::o;2473:116:12:-;1094:13:0;:11;:13::i;:::-;2529:10:12::1;2521:28;;:60;2566:4;2550:30;;;2521:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2473:116::o:0;8557:157:11:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;325:30:12:-;;;;;;;;;;;;;:::o;2975:177:11:-;3042:7;3074:13;:11;:13::i;:::-;3066:5;:21;3058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:5;3134:12;;2975:177;;;:::o;1946:102:12:-;1094:13:0;:11;:13::i;:::-;2032:8:12::1;;2022:7;:18;;;;;;;:::i;:::-;;1946:102:::0;;:::o;448:24::-;;;;:::o;5800:118:11:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;418:21:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4677:211:11:-;4741:7;4782:1;4765:19;;:5;:19;;;;4757:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4854:12;:19;4867:5;4854:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4846:36;;4839:43;;4677:211;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;2276:91:12:-;1094:13:0;:11;:13::i;:::-;2355:4:12::1;2344:8;:15;;;;2276:91:::0;:::o;2154:114::-;1094:13:0;:11;:13::i;:::-;2247::12::1;2232:12;:28;;;;2154:114:::0;:::o;1728:106::-;1094:13:0;:11;:13::i;:::-;1800:26:12::1;1810:10;1822:3;1800:9;:26::i;:::-;1728:106:::0;:::o;1617:103::-;1094:13:0;:11;:13::i;:::-;1694:18:12::1;1704:2;1708:3;1694:9;:18::i;:::-;1617:103:::0;;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;2056:90:12:-;1094:13:0;:11;:13::i;:::-;2132:6:12::1;2120:9;:18;;;;2056:90:::0;:::o;6132:98:11:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;620:308:12:-;688:10;;;;;;;;;;;680:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;765:12;;758:3;:19;;750:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;860:9;;853:3;837:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;829:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;906:14;916:3;906:9;:14::i;:::-;620:308;:::o;7770:274:11:-;7873:12;:10;:12::i;:::-;7861:24;;:8;:24;;;;7853:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7970:8;7925:18;:32;7944:12;:10;:12::i;:::-;7925:32;;;;;;;;;;;;;;;:42;7958:8;7925:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;8019:8;7990:48;;8005:12;:10;:12::i;:::-;7990:48;;;8029:8;7990:48;;;;;;:::i;:::-;;;;;;;;7770:274;;:::o;1842:92:12:-;1094:13:0;:11;:13::i;:::-;1915:10:12::1;;;;;;;;;;;1914:11;1900:10;;:25;;;;;;;;;;;;;;;;;;1842:92::o:0;8777:311:11:-;8914:28;8924:4;8930:2;8934:7;8914:9;:28::i;:::-;8965:48;8988:4;8994:2;8998:7;9007:5;8965:22;:48::i;:::-;8949:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;8777:311;;;;:::o;6293:394::-;6391:13;6432:16;6440:7;6432;:16::i;:::-;6416:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;6522:21;6546:10;:8;:10::i;:::-;6522:34;;6601:1;6583:7;6577:21;:25;:104;;;;;;;;;;;;;;;;;6638:7;6647:18;:7;:16;:18::i;:::-;6621:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6577:104;6563:118;;;6293:394;;;:::o;517:28:12:-;;;;:::o;13192:43:11:-;;;;:::o;479:29:12:-;;;;:::o;272:46::-;;;;;;;;;;;;;;;;;:::o;8107:186:11:-;8229:4;8252:18;:25;8271:5;8252:25;;;;;;;;;;;;;;;:35;8278:8;8252:35;;;;;;;;;;;;;;;;;;;;;;;;;8245:42;;8107:186;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;362:36:12:-;;;;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9327:105:11:-;9384:4;9414:12;;9404:7;:22;9397:29;;9327:105;;;:::o;640:96:7:-;693:7;719:10;712:17;;640:96;:::o;13014:172:11:-;13138:2;13111:15;:24;13127:7;13111:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;13172:7;13168:2;13152:28;;13161:5;13152:28;;;;;;;;;;;;13014:172;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;11379:1529:11:-;11476:35;11514:20;11526:7;11514:11;:20::i;:::-;11476:58;;11543:22;11585:13;:18;;;11569:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;11638:12;:10;:12::i;:::-;11614:36;;:20;11626:7;11614:11;:20::i;:::-;:36;;;11569:81;:142;;;;11661:50;11678:13;:18;;;11698:12;:10;:12::i;:::-;11661:16;:50::i;:::-;11569:142;11543:169;;11737:17;11721:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;11869:4;11847:26;;:13;:18;;;:26;;;11831:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;11958:1;11944:16;;:2;:16;;;;11936:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;12011:43;12033:4;12039:2;12043:7;12052:1;12011:21;:43::i;:::-;12111:49;12128:1;12132:7;12141:13;:18;;;12111:8;:49::i;:::-;12199:1;12169:12;:18;12182:4;12169:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12235:1;12207:12;:16;12220:2;12207:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12266:43;;;;;;;;12281:2;12266:43;;;;;;12292:15;12266:43;;;;;12243:11;:20;12255:7;12243:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12537:19;12569:1;12559:7;:11;;;;:::i;:::-;12537:33;;12622:1;12581:43;;:11;:24;12593:11;12581:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;12577:236;;;12639:20;12647:11;12639:7;:20::i;:::-;12635:171;;;12699:97;;;;;;;;12726:13;:18;;;12699:97;;;;;;12757:13;:28;;;12699:97;;;;;12672:11;:24;12684:11;12672:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12635:171;12577:236;12845:7;12841:2;12826:27;;12835:4;12826:27;;;;;;;;;;;;12860:42;12881:4;12887:2;12891:7;12900:1;12860:20;:42::i;:::-;11469:1439;;;11379:1529;;;:::o;5140:606::-;5216:21;;:::i;:::-;5257:16;5265:7;5257;:16::i;:::-;5249:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5329:26;5377:12;5366:7;:23;5362:93;;5446:1;5431:12;5421:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;5400:47;;5362:93;5468:12;5483:7;5468:22;;5463:212;5500:18;5492:4;:26;5463:212;;5537:31;5571:11;:17;5583:4;5571:17;;;;;;;;;;;5537:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5627:1;5601:28;;:9;:14;;;:28;;;5597:71;;5649:9;5642:16;;;;;;;5597:71;5528:147;5520:6;;;;;:::i;:::-;;;;5463:212;;;;5683:57;;;;;;;;;;:::i;:::-;;;;;;;;5140:606;;;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;9438:98:11:-;9503:27;9513:2;9517:8;9503:27;;;;;;;;;;;;:9;:27::i;:::-;9438:98;;:::o;936:557:12:-;1021:8;;996:10;:22;1007:10;996:22;;;;;;;;;;;;;;;;:33;993:493;;;1065:8;;1059:3;:14;1056:33;;;1081:8;;1075:14;;1056:33;1143:9;;1131:8;;1125:3;:14;;;;:::i;:::-;1124:28;;;;:::i;:::-;1111:9;:41;;1103:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;1227:3;1201:10;:22;1212:10;1201:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;1244:26;1254:10;1266:3;1244:9;:26::i;:::-;993:493;;;1347:9;;1341:3;:15;;;;:::i;:::-;1328:9;:28;;1320:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;1431:3;1405:10;:22;1416:10;1405:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;1448:26;1458:10;1470:3;1448:9;:26::i;:::-;993:493;936:557;:::o;14729:690:11:-;14866:4;14883:15;:2;:13;;;:15::i;:::-;14879:535;;;14938:2;14922:36;;;14959:12;:10;:12::i;:::-;14973:4;14979:7;14988:5;14922:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14909:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15170:1;15153:6;:13;:18;15149:215;;;15186:61;;;;;;;;;;:::i;:::-;;;;;;;;15149:215;15332:6;15326:13;15317:6;15313:2;15309:15;15302:38;14909:464;15054:45;;;15044:55;;;:6;:55;;;;15037:62;;;;;14879:535;15402:4;15395:11;;14729:690;;;;;;;:::o;1501:108:12:-;1561:13;1594:7;1587:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1501:108;:::o;392:703:8:-;448:13;674:1;665:5;:10;661:51;;;691:10;;;;;;;;;;;;;;;;;;;;;661:51;721:12;736:5;721:20;;751:14;775:75;790:1;782:4;:9;775:75;;807:8;;;;;:::i;:::-;;;;837:2;829:10;;;;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;859:39;;908:150;924:1;915:5;:10;908:150;;951:1;941:11;;;;;:::i;:::-;;;1017:2;1009:5;:10;;;;:::i;:::-;996:2;:24;;;;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1045:2;1036:11;;;;;:::i;:::-;;;908:150;;;1081:6;1067:21;;;;;392:703;;;;:::o;15881:141:11:-;;;;;:::o;16408:140::-;;;;;:::o;9875:1272::-;9980:20;10003:12;;9980:35;;10044:1;10030:16;;:2;:16;;;;10022:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;10221:21;10229:12;10221:7;:21::i;:::-;10220:22;10212:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10303:12;10291:8;:24;;10283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10363:61;10393:1;10397:2;10401:12;10415:8;10363:21;:61::i;:::-;10433:30;10466:12;:16;10479:2;10466:16;;;;;;;;;;;;;;;10433:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10508:119;;;;;;;;10558:8;10528:11;:19;;;:39;;;;:::i;:::-;10508:119;;;;;;10611:8;10576:11;:24;;;:44;;;;:::i;:::-;10508:119;;;;;10489:12;:16;10502:2;10489:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10662:43;;;;;;;;10677:2;10662:43;;;;;;10688:15;10662:43;;;;;10634:11;:25;10646:12;10634:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10714:20;10737:12;10714:35;;10763:9;10758:281;10782:8;10778:1;:12;10758:281;;;10836:12;10832:2;10811:38;;10828:1;10811:38;;;;;;;;;;;;10876:59;10907:1;10911:2;10915:12;10929:5;10876:22;:59::i;:::-;10858:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;11017:14;;;;;:::i;:::-;;;;10792:3;;;;;:::i;:::-;;;;10758:281;;;;11062:12;11047;:27;;;;11081:60;11110:1;11114:2;11118:12;11132:8;11081:20;:60::i;:::-;9973:1174;;;9875:1272;;;:::o;1175:320:6:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:::-;11077:3;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11174:93;11263:3;11174:93;:::i;:::-;11292:2;11287:3;11283:12;11276:19;;10935:366;;;:::o;11307:::-;11449:3;11470:67;11534:2;11529:3;11470:67;:::i;:::-;11463:74;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11307:366;;;:::o;11679:::-;11821:3;11842:67;11906:2;11901:3;11842:67;:::i;:::-;11835:74;;11918:93;12007:3;11918:93;:::i;:::-;12036:2;12031:3;12027:12;12020:19;;11679:366;;;:::o;12051:::-;12193:3;12214:67;12278:2;12273:3;12214:67;:::i;:::-;12207:74;;12290:93;12379:3;12290:93;:::i;:::-;12408:2;12403:3;12399:12;12392:19;;12051:366;;;:::o;12423:::-;12565:3;12586:67;12650:2;12645:3;12586:67;:::i;:::-;12579:74;;12662:93;12751:3;12662:93;:::i;:::-;12780:2;12775:3;12771:12;12764:19;;12423:366;;;:::o;12795:::-;12937:3;12958:67;13022:2;13017:3;12958:67;:::i;:::-;12951:74;;13034:93;13123:3;13034:93;:::i;:::-;13152:2;13147:3;13143:12;13136:19;;12795:366;;;:::o;13167:::-;13309:3;13330:67;13394:2;13389:3;13330:67;:::i;:::-;13323:74;;13406:93;13495:3;13406:93;:::i;:::-;13524:2;13519:3;13515:12;13508:19;;13167:366;;;:::o;13539:::-;13681:3;13702:67;13766:2;13761:3;13702:67;:::i;:::-;13695:74;;13778:93;13867:3;13778:93;:::i;:::-;13896:2;13891:3;13887:12;13880:19;;13539:366;;;:::o;13911:::-;14053:3;14074:67;14138:2;14133:3;14074:67;:::i;:::-;14067:74;;14150:93;14239:3;14150:93;:::i;:::-;14268:2;14263:3;14259:12;14252:19;;13911:366;;;:::o;14283:::-;14425:3;14446:67;14510:2;14505:3;14446:67;:::i;:::-;14439:74;;14522:93;14611:3;14522:93;:::i;:::-;14640:2;14635:3;14631:12;14624:19;;14283:366;;;:::o;14655:::-;14797:3;14818:67;14882:2;14877:3;14818:67;:::i;:::-;14811:74;;14894:93;14983:3;14894:93;:::i;:::-;15012:2;15007:3;15003:12;14996:19;;14655:366;;;:::o;15027:::-;15169:3;15190:67;15254:2;15249:3;15190:67;:::i;:::-;15183:74;;15266:93;15355:3;15266:93;:::i;:::-;15384:2;15379:3;15375:12;15368:19;;15027:366;;;:::o;15399:::-;15541:3;15562:67;15626:2;15621:3;15562:67;:::i;:::-;15555:74;;15638:93;15727:3;15638:93;:::i;:::-;15756:2;15751:3;15747:12;15740:19;;15399:366;;;:::o;15771:::-;15913:3;15934:67;15998:2;15993:3;15934:67;:::i;:::-;15927:74;;16010:93;16099:3;16010:93;:::i;:::-;16128:2;16123:3;16119:12;16112:19;;15771:366;;;:::o;16143:::-;16285:3;16306:67;16370:2;16365:3;16306:67;:::i;:::-;16299:74;;16382:93;16471:3;16382:93;:::i;:::-;16500:2;16495:3;16491:12;16484:19;;16143:366;;;:::o;16515:::-;16657:3;16678:67;16742:2;16737:3;16678:67;:::i;:::-;16671:74;;16754:93;16843:3;16754:93;:::i;:::-;16872:2;16867:3;16863:12;16856:19;;16515:366;;;:::o;16887:::-;17029:3;17050:67;17114:2;17109:3;17050:67;:::i;:::-;17043:74;;17126:93;17215:3;17126:93;:::i;:::-;17244:2;17239:3;17235:12;17228:19;;16887:366;;;:::o;17259:118::-;17346:24;17364:5;17346:24;:::i;:::-;17341:3;17334:37;17259:118;;:::o;17383:435::-;17563:3;17585:95;17676:3;17667:6;17585:95;:::i;:::-;17578:102;;17697:95;17788:3;17779:6;17697:95;:::i;:::-;17690:102;;17809:3;17802:10;;17383:435;;;;;:::o;17824:222::-;17917:4;17955:2;17944:9;17940:18;17932:26;;17968:71;18036:1;18025:9;18021:17;18012:6;17968:71;:::i;:::-;17824:222;;;;:::o;18052:640::-;18247:4;18285:3;18274:9;18270:19;18262:27;;18299:71;18367:1;18356:9;18352:17;18343:6;18299:71;:::i;:::-;18380:72;18448:2;18437:9;18433:18;18424:6;18380:72;:::i;:::-;18462;18530:2;18519:9;18515:18;18506:6;18462:72;:::i;:::-;18581:9;18575:4;18571:20;18566:2;18555:9;18551:18;18544:48;18609:76;18680:4;18671:6;18609:76;:::i;:::-;18601:84;;18052:640;;;;;;;:::o;18698:210::-;18785:4;18823:2;18812:9;18808:18;18800:26;;18836:65;18898:1;18887:9;18883:17;18874:6;18836:65;:::i;:::-;18698:210;;;;:::o;18914:313::-;19027:4;19065:2;19054:9;19050:18;19042:26;;19114:9;19108:4;19104:20;19100:1;19089:9;19085:17;19078:47;19142:78;19215:4;19206:6;19142:78;:::i;:::-;19134:86;;18914:313;;;;:::o;19233:419::-;19399:4;19437:2;19426:9;19422:18;19414:26;;19486:9;19480:4;19476:20;19472:1;19461:9;19457:17;19450:47;19514:131;19640:4;19514:131;:::i;:::-;19506:139;;19233:419;;;:::o;19658:::-;19824:4;19862:2;19851:9;19847:18;19839:26;;19911:9;19905:4;19901:20;19897:1;19886:9;19882:17;19875:47;19939:131;20065:4;19939:131;:::i;:::-;19931:139;;19658:419;;;:::o;20083:::-;20249:4;20287:2;20276:9;20272:18;20264:26;;20336:9;20330:4;20326:20;20322:1;20311:9;20307:17;20300:47;20364:131;20490:4;20364:131;:::i;:::-;20356:139;;20083:419;;;:::o;20508:::-;20674:4;20712:2;20701:9;20697:18;20689:26;;20761:9;20755:4;20751:20;20747:1;20736:9;20732:17;20725:47;20789:131;20915:4;20789:131;:::i;:::-;20781:139;;20508:419;;;:::o;20933:::-;21099:4;21137:2;21126:9;21122:18;21114:26;;21186:9;21180:4;21176:20;21172:1;21161:9;21157:17;21150:47;21214:131;21340:4;21214:131;:::i;:::-;21206:139;;20933:419;;;:::o;21358:::-;21524:4;21562:2;21551:9;21547:18;21539:26;;21611:9;21605:4;21601:20;21597:1;21586:9;21582:17;21575:47;21639:131;21765:4;21639:131;:::i;:::-;21631:139;;21358:419;;;:::o;21783:::-;21949:4;21987:2;21976:9;21972:18;21964:26;;22036:9;22030:4;22026:20;22022:1;22011:9;22007:17;22000:47;22064:131;22190:4;22064:131;:::i;:::-;22056:139;;21783:419;;;:::o;22208:::-;22374:4;22412:2;22401:9;22397:18;22389:26;;22461:9;22455:4;22451:20;22447:1;22436:9;22432:17;22425:47;22489:131;22615:4;22489:131;:::i;:::-;22481:139;;22208:419;;;:::o;22633:::-;22799:4;22837:2;22826:9;22822:18;22814:26;;22886:9;22880:4;22876:20;22872:1;22861:9;22857:17;22850:47;22914:131;23040:4;22914:131;:::i;:::-;22906:139;;22633:419;;;:::o;23058:::-;23224:4;23262:2;23251:9;23247:18;23239:26;;23311:9;23305:4;23301:20;23297:1;23286:9;23282:17;23275:47;23339:131;23465:4;23339:131;:::i;:::-;23331:139;;23058:419;;;:::o;23483:::-;23649:4;23687:2;23676:9;23672:18;23664:26;;23736:9;23730:4;23726:20;23722:1;23711:9;23707:17;23700:47;23764:131;23890:4;23764:131;:::i;:::-;23756:139;;23483:419;;;:::o;23908:::-;24074:4;24112:2;24101:9;24097:18;24089:26;;24161:9;24155:4;24151:20;24147:1;24136:9;24132:17;24125:47;24189:131;24315:4;24189:131;:::i;:::-;24181:139;;23908:419;;;:::o;24333:::-;24499:4;24537:2;24526:9;24522:18;24514:26;;24586:9;24580:4;24576:20;24572:1;24561:9;24557:17;24550:47;24614:131;24740:4;24614:131;:::i;:::-;24606:139;;24333:419;;;:::o;24758:::-;24924:4;24962:2;24951:9;24947:18;24939:26;;25011:9;25005:4;25001:20;24997:1;24986:9;24982:17;24975:47;25039:131;25165:4;25039:131;:::i;:::-;25031:139;;24758:419;;;:::o;25183:::-;25349:4;25387:2;25376:9;25372:18;25364:26;;25436:9;25430:4;25426:20;25422:1;25411:9;25407:17;25400:47;25464:131;25590:4;25464:131;:::i;:::-;25456:139;;25183:419;;;:::o;25608:::-;25774:4;25812:2;25801:9;25797:18;25789:26;;25861:9;25855:4;25851:20;25847:1;25836:9;25832:17;25825:47;25889:131;26015:4;25889:131;:::i;:::-;25881:139;;25608:419;;;:::o;26033:::-;26199:4;26237:2;26226:9;26222:18;26214:26;;26286:9;26280:4;26276:20;26272:1;26261:9;26257:17;26250:47;26314:131;26440:4;26314:131;:::i;:::-;26306:139;;26033:419;;;:::o;26458:::-;26624:4;26662:2;26651:9;26647:18;26639:26;;26711:9;26705:4;26701:20;26697:1;26686:9;26682:17;26675:47;26739:131;26865:4;26739:131;:::i;:::-;26731:139;;26458:419;;;:::o;26883:::-;27049:4;27087:2;27076:9;27072:18;27064:26;;27136:9;27130:4;27126:20;27122:1;27111:9;27107:17;27100:47;27164:131;27290:4;27164:131;:::i;:::-;27156:139;;26883:419;;;:::o;27308:::-;27474:4;27512:2;27501:9;27497:18;27489:26;;27561:9;27555:4;27551:20;27547:1;27536:9;27532:17;27525:47;27589:131;27715:4;27589:131;:::i;:::-;27581:139;;27308:419;;;:::o;27733:::-;27899:4;27937:2;27926:9;27922:18;27914:26;;27986:9;27980:4;27976:20;27972:1;27961:9;27957:17;27950:47;28014:131;28140:4;28014:131;:::i;:::-;28006:139;;27733:419;;;:::o;28158:::-;28324:4;28362:2;28351:9;28347:18;28339:26;;28411:9;28405:4;28401:20;28397:1;28386:9;28382:17;28375:47;28439:131;28565:4;28439:131;:::i;:::-;28431:139;;28158:419;;;:::o;28583:::-;28749:4;28787:2;28776:9;28772:18;28764:26;;28836:9;28830:4;28826:20;28822:1;28811:9;28807:17;28800:47;28864:131;28990:4;28864:131;:::i;:::-;28856:139;;28583:419;;;:::o;29008:::-;29174:4;29212:2;29201:9;29197:18;29189:26;;29261:9;29255:4;29251:20;29247:1;29236:9;29232:17;29225:47;29289:131;29415:4;29289:131;:::i;:::-;29281:139;;29008:419;;;:::o;29433:222::-;29526:4;29564:2;29553:9;29549:18;29541:26;;29577:71;29645:1;29634:9;29630:17;29621:6;29577:71;:::i;:::-;29433:222;;;;:::o;29661:129::-;29695:6;29722:20;;:::i;:::-;29712:30;;29751:33;29779:4;29771:6;29751:33;:::i;:::-;29661:129;;;:::o;29796:75::-;29829:6;29862:2;29856:9;29846:19;;29796:75;:::o;29877:307::-;29938:4;30028:18;30020:6;30017:30;30014:56;;;30050:18;;:::i;:::-;30014:56;30088:29;30110:6;30088:29;:::i;:::-;30080:37;;30172:4;30166;30162:15;30154:23;;29877:307;;;:::o;30190:98::-;30241:6;30275:5;30269:12;30259:22;;30190:98;;;:::o;30294:99::-;30346:6;30380:5;30374:12;30364:22;;30294:99;;;:::o;30399:168::-;30482:11;30516:6;30511:3;30504:19;30556:4;30551:3;30547:14;30532:29;;30399:168;;;;:::o;30573:169::-;30657:11;30691:6;30686:3;30679:19;30731:4;30726:3;30722:14;30707:29;;30573:169;;;;:::o;30748:148::-;30850:11;30887:3;30872:18;;30748:148;;;;:::o;30902:273::-;30942:3;30961:20;30979:1;30961:20;:::i;:::-;30956:25;;30995:20;31013:1;30995:20;:::i;:::-;30990:25;;31117:1;31081:34;31077:42;31074:1;31071:49;31068:75;;;31123:18;;:::i;:::-;31068:75;31167:1;31164;31160:9;31153:16;;30902:273;;;;:::o;31181:305::-;31221:3;31240:20;31258:1;31240:20;:::i;:::-;31235:25;;31274:20;31292:1;31274:20;:::i;:::-;31269:25;;31428:1;31360:66;31356:74;31353:1;31350:81;31347:107;;;31434:18;;:::i;:::-;31347:107;31478:1;31475;31471:9;31464:16;;31181:305;;;;:::o;31492:185::-;31532:1;31549:20;31567:1;31549:20;:::i;:::-;31544:25;;31583:20;31601:1;31583:20;:::i;:::-;31578:25;;31622:1;31612:35;;31627:18;;:::i;:::-;31612:35;31669:1;31666;31662:9;31657:14;;31492:185;;;;:::o;31683:348::-;31723:7;31746:20;31764:1;31746:20;:::i;:::-;31741:25;;31780:20;31798:1;31780:20;:::i;:::-;31775:25;;31968:1;31900:66;31896:74;31893:1;31890:81;31885:1;31878:9;31871:17;31867:105;31864:131;;;31975:18;;:::i;:::-;31864:131;32023:1;32020;32016:9;32005:20;;31683:348;;;;:::o;32037:191::-;32077:4;32097:20;32115:1;32097:20;:::i;:::-;32092:25;;32131:20;32149:1;32131:20;:::i;:::-;32126:25;;32170:1;32167;32164:8;32161:34;;;32175:18;;:::i;:::-;32161:34;32220:1;32217;32213:9;32205:17;;32037:191;;;;:::o;32234:::-;32274:4;32294:20;32312:1;32294:20;:::i;:::-;32289:25;;32328:20;32346:1;32328:20;:::i;:::-;32323:25;;32367:1;32364;32361:8;32358:34;;;32372:18;;:::i;:::-;32358:34;32417:1;32414;32410:9;32402:17;;32234:191;;;;:::o;32431:96::-;32468:7;32497:24;32515:5;32497:24;:::i;:::-;32486:35;;32431:96;;;:::o;32533:90::-;32567:7;32610:5;32603:13;32596:21;32585:32;;32533:90;;;:::o;32629:149::-;32665:7;32705:66;32698:5;32694:78;32683:89;;32629:149;;;:::o;32784:118::-;32821:7;32861:34;32854:5;32850:46;32839:57;;32784:118;;;:::o;32908:126::-;32945:7;32985:42;32978:5;32974:54;32963:65;;32908:126;;;:::o;33040:77::-;33077:7;33106:5;33095:16;;33040:77;;;:::o;33123:154::-;33207:6;33202:3;33197;33184:30;33269:1;33260:6;33255:3;33251:16;33244:27;33123:154;;;:::o;33283:307::-;33351:1;33361:113;33375:6;33372:1;33369:13;33361:113;;;33460:1;33455:3;33451:11;33445:18;33441:1;33436:3;33432:11;33425:39;33397:2;33394:1;33390:10;33385:15;;33361:113;;;33492:6;33489:1;33486:13;33483:101;;;33572:1;33563:6;33558:3;33554:16;33547:27;33483:101;33332:258;33283:307;;;:::o;33596:171::-;33635:3;33658:24;33676:5;33658:24;:::i;:::-;33649:33;;33704:4;33697:5;33694:15;33691:41;;;33712:18;;:::i;:::-;33691:41;33759:1;33752:5;33748:13;33741:20;;33596:171;;;:::o;33773:320::-;33817:6;33854:1;33848:4;33844:12;33834:22;;33901:1;33895:4;33891:12;33922:18;33912:81;;33978:4;33970:6;33966:17;33956:27;;33912:81;34040:2;34032:6;34029:14;34009:18;34006:38;34003:84;;;34059:18;;:::i;:::-;34003:84;33824:269;33773:320;;;:::o;34099:281::-;34182:27;34204:4;34182:27;:::i;:::-;34174:6;34170:40;34312:6;34300:10;34297:22;34276:18;34264:10;34261:34;34258:62;34255:88;;;34323:18;;:::i;:::-;34255:88;34363:10;34359:2;34352:22;34142:238;34099:281;;:::o;34386:233::-;34425:3;34448:24;34466:5;34448:24;:::i;:::-;34439:33;;34494:66;34487:5;34484:77;34481:103;;;34564:18;;:::i;:::-;34481:103;34611:1;34604:5;34600:13;34593:20;;34386:233;;;:::o;34625:176::-;34657:1;34674:20;34692:1;34674:20;:::i;:::-;34669:25;;34708:20;34726:1;34708:20;:::i;:::-;34703:25;;34747:1;34737:35;;34752:18;;:::i;:::-;34737:35;34793:1;34790;34786:9;34781:14;;34625:176;;;;:::o;34807:180::-;34855:77;34852:1;34845:88;34952:4;34949:1;34942:15;34976:4;34973:1;34966:15;34993:180;35041:77;35038:1;35031:88;35138:4;35135:1;35128:15;35162:4;35159:1;35152:15;35179:180;35227:77;35224:1;35217:88;35324:4;35321:1;35314:15;35348:4;35345:1;35338:15;35365:180;35413:77;35410:1;35403:88;35510:4;35507:1;35500:15;35534:4;35531:1;35524:15;35551:180;35599:77;35596:1;35589:88;35696:4;35693:1;35686:15;35720:4;35717:1;35710:15;35737:117;35846:1;35843;35836:12;35860:117;35969:1;35966;35959:12;35983:117;36092:1;36089;36082:12;36106:117;36215:1;36212;36205:12;36229:117;36338:1;36335;36328:12;36352:117;36461:1;36458;36451:12;36475:102;36516:6;36567:2;36563:7;36558:2;36551:5;36547:14;36543:28;36533:38;;36475:102;;;:::o;36583:221::-;36723:34;36719:1;36711:6;36707:14;36700:58;36792:4;36787:2;36779:6;36775:15;36768:29;36583:221;:::o;36810:225::-;36950:34;36946:1;36938:6;36934:14;36927:58;37019:8;37014:2;37006:6;37002:15;36995:33;36810:225;:::o;37041:229::-;37181:34;37177:1;37169:6;37165:14;37158:58;37250:12;37245:2;37237:6;37233:15;37226:37;37041:229;:::o;37276:180::-;37416:32;37412:1;37404:6;37400:14;37393:56;37276:180;:::o;37462:222::-;37602:34;37598:1;37590:6;37586:14;37579:58;37671:5;37666:2;37658:6;37654:15;37647:30;37462:222;:::o;37690:224::-;37830:34;37826:1;37818:6;37814:14;37807:58;37899:7;37894:2;37886:6;37882:15;37875:32;37690:224;:::o;37920:244::-;38060:34;38056:1;38048:6;38044:14;38037:58;38129:27;38124:2;38116:6;38112:15;38105:52;37920:244;:::o;38170:223::-;38310:34;38306:1;38298:6;38294:14;38287:58;38379:6;38374:2;38366:6;38362:15;38355:31;38170:223;:::o;38399:172::-;38539:24;38535:1;38527:6;38523:14;38516:48;38399:172;:::o;38577:230::-;38717:34;38713:1;38705:6;38701:14;38694:58;38786:13;38781:2;38773:6;38769:15;38762:38;38577:230;:::o;38813:225::-;38953:34;38949:1;38941:6;38937:14;38930:58;39022:8;39017:2;39009:6;39005:15;38998:33;38813:225;:::o;39044:182::-;39184:34;39180:1;39172:6;39168:14;39161:58;39044:182;:::o;39232:234::-;39372:34;39368:1;39360:6;39356:14;39349:58;39441:17;39436:2;39428:6;39424:15;39417:42;39232:234;:::o;39472:176::-;39612:28;39608:1;39600:6;39596:14;39589:52;39472:176;:::o;39654:237::-;39794:34;39790:1;39782:6;39778:14;39771:58;39863:20;39858:2;39850:6;39846:15;39839:45;39654:237;:::o;39897:221::-;40037:34;40033:1;40025:6;40021:14;40014:58;40106:4;40101:2;40093:6;40089:15;40082:29;39897:221;:::o;40124:238::-;40264:34;40260:1;40252:6;40248:14;40241:58;40333:21;40328:2;40320:6;40316:15;40309:46;40124:238;:::o;40368:179::-;40508:31;40504:1;40496:6;40492:14;40485:55;40368:179;:::o;40553:220::-;40693:34;40689:1;40681:6;40677:14;40670:58;40762:3;40757:2;40749:6;40745:15;40738:28;40553:220;:::o;40779:233::-;40919:34;40915:1;40907:6;40903:14;40896:58;40988:16;40983:2;40975:6;40971:15;40964:41;40779:233;:::o;41018:222::-;41158:34;41154:1;41146:6;41142:14;41135:58;41227:5;41222:2;41214:6;41210:15;41203:30;41018:222;:::o;41246:234::-;41386:34;41382:1;41374:6;41370:14;41363:58;41455:17;41450:2;41442:6;41438:15;41431:42;41246:234;:::o;41486:232::-;41626:34;41622:1;41614:6;41610:14;41603:58;41695:15;41690:2;41682:6;41678:15;41671:40;41486:232;:::o;41724:221::-;41864:34;41860:1;41852:6;41848:14;41841:58;41933:4;41928:2;41920:6;41916:15;41909:29;41724:221;:::o;41951:122::-;42024:24;42042:5;42024:24;:::i;:::-;42017:5;42014:35;42004:63;;42063:1;42060;42053:12;42004:63;41951:122;:::o;42079:116::-;42149:21;42164:5;42149:21;:::i;:::-;42142:5;42139:32;42129:60;;42185:1;42182;42175:12;42129:60;42079:116;:::o;42201:120::-;42273:23;42290:5;42273:23;:::i;:::-;42266:5;42263:34;42253:62;;42311:1;42308;42301:12;42253:62;42201:120;:::o;42327:122::-;42400:24;42418:5;42400:24;:::i;:::-;42393:5;42390:35;42380:63;;42439:1;42436;42429:12;42380:63;42327:122;:::o

Swarm Source

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