ETH Price: $3,477.43 (+0.46%)
Gas: 5 Gwei

Token

Long Live The Queen (LLTQ)
 

Overview

Max Total Supply

4,961 LLTQ

Holders

1,246

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 LLTQ
0xd25d62cf36a0163a0b41436d8da3d53bb888bc16
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:
LongLiveTheQueen

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 13 : LongLiveTheQueen.sol
// SPDX-License-Identifier: MIT

// _,   _, _, _  _,   _,  _ _,_ __,   ___ _,_ __,    _, _,_ __, __, _, _
// |   / \ |\ | / _   |   | | / |_     |  |_| |_    / \ | | |_  |_  |\ |
// | , \ / | \| \ /   | , | |/  |      |  | | |     \\/ | | |   |   | \|
// ~~~  ~  ~  ~  ~    ~~~ ~ ~   ~~~    ~  ~ ~ ~~~    ~` `~' ~~~ ~~~ ~  ~
// Mint From Contract Only
// Pay Your Respects


pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721A.sol";

contract LongLiveTheQueen is ERC721A, Ownable, ReentrancyGuard {

    mapping (address => uint256) public WalletMint;
    uint public MintPrice = 0.0025 ether; 
    string public baseURI;  
    uint public claimFree = 4;
    uint public maxPerTransaction = 40;  
    uint public maxSupply = 9696;

    constructor() ERC721A("Long Live The Queen", "LLTQ",96,9696){}

    function mint(uint256 amount) external payable
    {
        require(totalSupply() + amount <= maxSupply,"Soldout");
        require(amount <= maxPerTransaction, "Max Per Tx");
        if(WalletMint[msg.sender] < claimFree) 
        {
            if(amount < claimFree) amount = claimFree;
           require(msg.value >= (amount - claimFree) * MintPrice,"Not Enough Funds");
            WalletMint[msg.sender] += amount;
           _safeMint(msg.sender, amount);
        }
        else
        {
           require(msg.value >= amount * MintPrice,"Not Enough Funds");
            WalletMint[msg.sender] += amount;
           _safeMint(msg.sender, amount);
        }
    }

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

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

    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":[{"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":"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":"claimFree","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":"maxPerTransaction","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":"amount","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":"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"}]

60c06040526000805560006007556608e1bc9bf04000600b556004600d556028600e556125e0600f553480156200003557600080fd5b506040518060400160405280601381526020017f4c6f6e67204c6976652054686520517565656e000000000000000000000000008152506040518060400160405280600481526020017f4c4c54510000000000000000000000000000000000000000000000000000000081525060606125e060008111620000ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000e49062000395565b60405180910390fd5b6000821162000133576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012a9062000373565b60405180910390fd5b83600190805190602001906200014b92919062000275565b5082600290805190602001906200016492919062000275565b508160a08181525050806080818152505050505050620001996200018d620001a760201b60201c565b620001af60201b60201c565b6001600981905550620004cb565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028390620003c8565b90600052602060002090601f016020900481019282620002a75760008555620002f3565b82601f10620002c257805160ff1916838001178555620002f3565b82800160010185558215620002f3579182015b82811115620002f2578251825591602001919060010190620002d5565b5b50905062000302919062000306565b5090565b5b808211156200032157600081600090555060010162000307565b5090565b600062000334602783620003b7565b915062000341826200042d565b604082019050919050565b60006200035b602e83620003b7565b915062000368826200047c565b604082019050919050565b600060208201905081810360008301526200038e8162000325565b9050919050565b60006020820190508181036000830152620003b0816200034c565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003e157607f821691505b60208210811415620003f857620003f7620003fe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05161414b620004fc60003960008181611de301528181611e0c01526124cd01526000505061414b6000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063c87b56dd11610095578063e985e9c511610064578063e985e9c514610647578063f2fde38b14610684578063f366afc9146106ad578063fdbf9ef2146106d8576101c2565b8063c87b56dd14610577578063d5abeb01146105b4578063d7224ba0146105df578063e645f7081461060a576101c2565b806395d89b41116100d157806395d89b41146104de578063a0712d6814610509578063a22cb46514610525578063b88d4fde1461054e576101c2565b806370a082311461045f578063715018a61461049c5780638da5cb5b146104b3576101c2565b80633ccfd60b116101645780634f6ccce71161013e5780634f6ccce71461039157806355f804b3146103ce5780636352211e146103f75780636c0360eb14610434576101c2565b80633ccfd60b1461032657806342842e0e1461033d5780634b980d6714610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612cdd565b610703565b6040516101fb9190613231565b60405180910390f35b34801561021057600080fd5b5061021961084d565b604051610226919061324c565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612d84565b6108df565b60405161026391906131ca565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612c9d565b610964565b005b3480156102a157600080fd5b506102aa610a7d565b6040516102b7919061354e565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612b87565b610a86565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612c9d565b610a96565b60405161031d919061354e565b60405180910390f35b34801561033257600080fd5b5061033b610c94565b005b34801561034957600080fd5b50610364600480360381019061035f9190612b87565b610cfc565b005b34801561037257600080fd5b5061037b610d1c565b604051610388919061354e565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190612d84565b610d22565b6040516103c5919061354e565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190612d37565b610d75565b005b34801561040357600080fd5b5061041e60048036038101906104199190612d84565b610d93565b60405161042b91906131ca565b60405180910390f35b34801561044057600080fd5b50610449610da9565b604051610456919061324c565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612b1a565b610e37565b604051610493919061354e565b60405180910390f35b3480156104a857600080fd5b506104b1610f20565b005b3480156104bf57600080fd5b506104c8610f34565b6040516104d591906131ca565b60405180910390f35b3480156104ea57600080fd5b506104f3610f5e565b604051610500919061324c565b60405180910390f35b610523600480360381019061051e9190612d84565b610ff0565b005b34801561053157600080fd5b5061054c60048036038101906105479190612c5d565b61125b565b005b34801561055a57600080fd5b5061057560048036038101906105709190612bda565b6113dc565b005b34801561058357600080fd5b5061059e60048036038101906105999190612d84565b611438565b6040516105ab919061324c565b60405180910390f35b3480156105c057600080fd5b506105c96114df565b6040516105d6919061354e565b60405180910390f35b3480156105eb57600080fd5b506105f46114e5565b604051610601919061354e565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190612b1a565b6114eb565b60405161063e919061354e565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612b47565b611503565b60405161067b9190613231565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190612b1a565b611597565b005b3480156106b957600080fd5b506106c261161b565b6040516106cf919061354e565b60405180910390f35b3480156106e457600080fd5b506106ed611621565b6040516106fa919061354e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610846575061084582611627565b5b9050919050565b60606001805461085c9061388d565b80601f01602080910402602001604051908101604052809291908181526020018280546108889061388d565b80156108d55780601f106108aa576101008083540402835291602001916108d5565b820191906000526020600020905b8154815290600101906020018083116108b857829003601f168201915b5050505050905090565b60006108ea82611691565b610929576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109209061350e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096f82610d93565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d79061344e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ff61169e565b73ffffffffffffffffffffffffffffffffffffffff161480610a2e5750610a2d81610a2861169e565b611503565b5b610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a649061334e565b60405180910390fd5b610a788383836116a6565b505050565b60008054905090565b610a91838383611758565b505050565b6000610aa183610e37565b8210610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad99061326e565b60405180910390fd5b6000610aec610a7d565b905060008060005b83811015610c52576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610be657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3e5786841415610c2f578195505050505050610c8e565b8380610c3a906138f0565b9450505b508080610c4a906138f0565b915050610af4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c85906134ce565b60405180910390fd5b92915050565b610c9c611d11565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610cf9573d6000803e3d6000fd5b50565b610d17838383604051806020016040528060008152506113dc565b505050565b600e5481565b6000610d2c610a7d565b8210610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d64906132ce565b60405180910390fd5b819050919050565b610d7d611d11565b8181600c9190610d8e92919061290e565b505050565b6000610d9e82611d8f565b600001519050919050565b600c8054610db69061388d565b80601f0160208091040260200160405190810160405280929190818152602001828054610de29061388d565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f9061336e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f28611d11565b610f326000611f92565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610f6d9061388d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f999061388d565b8015610fe65780601f10610fbb57610100808354040283529160200191610fe6565b820191906000526020600020905b815481529060010190602001808311610fc957829003601f168201915b5050505050905090565b600f5481610ffc610a7d565b6110069190613648565b1115611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e9061332e565b60405180910390fd5b600e5481111561108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110839061342e565b60405180910390fd5b600d54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156111a757600d548110156110e557600d5490505b600b54600d54826110f6919061375d565b61110091906136cf565b341015611142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111399061330e565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111919190613648565b925050819055506111a23382612058565b611258565b600b54816111b591906136cf565b3410156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee9061330e565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112469190613648565b925050819055506112573382612058565b5b50565b61126361169e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c8906133ee565b60405180910390fd5b80600660006112de61169e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661138b61169e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113d09190613231565b60405180910390a35050565b6113e7848484611758565b6113f384848484612076565b611432576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114299061346e565b60405180910390fd5b50505050565b606061144382611691565b611482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611479906133ce565b60405180910390fd5b600061148c61220d565b905060008151116114ac57604051806020016040528060008152506114d7565b806114b68461229f565b6040516020016114c79291906131a6565b6040516020818303038152906040525b915050919050565b600f5481565b60075481565b600a6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61159f611d11565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561160f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116069061328e565b60405180910390fd5b61161881611f92565b50565b600d5481565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061176382611d8f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661178a61169e565b73ffffffffffffffffffffffffffffffffffffffff1614806117e657506117af61169e565b73ffffffffffffffffffffffffffffffffffffffff166117ce846108df565b73ffffffffffffffffffffffffffffffffffffffff16145b80611802575061180182600001516117fc61169e565b611503565b5b905080611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b9061340e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad9061338e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d906132ee565b60405180910390fd5b6119338585856001612400565b61194360008484600001516116a6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166119b19190613729565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a559190613602565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611b5b9190613648565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ca157611bd181611691565b15611ca0576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d098686866001612406565b505050505050565b611d1961169e565b73ffffffffffffffffffffffffffffffffffffffff16611d37610f34565b73ffffffffffffffffffffffffffffffffffffffff1614611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d84906133ae565b60405180910390fd5b565b611d97612994565b611da082611691565b611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd6906132ae565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611e435760017f000000000000000000000000000000000000000000000000000000000000000084611e36919061375d565b611e409190613648565b90505b60008390505b818110611f51576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f3d57809350505050611f8d565b508080611f4990613863565b915050611e49565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f84906134ee565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61207282826040518060200160405280600081525061240c565b5050565b60006120978473ffffffffffffffffffffffffffffffffffffffff166128eb565b15612200578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120c061169e565b8786866040518563ffffffff1660e01b81526004016120e294939291906131e5565b602060405180830381600087803b1580156120fc57600080fd5b505af192505050801561212d57506040513d601f19601f8201168201806040525081019061212a9190612d0a565b60015b6121b0573d806000811461215d576040519150601f19603f3d011682016040523d82523d6000602084013e612162565b606091505b506000815114156121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f9061346e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612205565b600190505b949350505050565b6060600c805461221c9061388d565b80601f01602080910402602001604051908101604052809291908181526020018280546122489061388d565b80156122955780601f1061226a57610100808354040283529160200191612295565b820191906000526020600020905b81548152906001019060200180831161227857829003601f168201915b5050505050905090565b606060008214156122e7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123fb565b600082905060005b60008214612319578080612302906138f0565b915050600a82612312919061369e565b91506122ef565b60008167ffffffffffffffff81111561233557612334613a26565b5b6040519080825280601f01601f1916602001820160405280156123675781602001600182028036833780820191505090505b5090505b600085146123f457600182612380919061375d565b9150600a8561238f9190613939565b603061239b9190613648565b60f81b8183815181106123b1576123b06139f7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123ed919061369e565b945061236b565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612479906134ae565b60405180910390fd5b61248b81611691565b156124cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c29061348e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561252e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125259061352e565b60405180910390fd5b61253b6000858386612400565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516126389190613602565b6fffffffffffffffffffffffffffffffff16815260200185836020015161265f9190613602565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156128ce57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461286e6000888488612076565b6128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a49061346e565b60405180910390fd5b81806128b8906138f0565b92505080806128c6906138f0565b9150506127fd565b50806000819055506128e36000878588612406565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461291a9061388d565b90600052602060002090601f01602090048101928261293c5760008555612983565b82601f1061295557803560ff1916838001178555612983565b82800160010185558215612983579182015b82811115612982578235825591602001919060010190612967565b5b50905061299091906129ce565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156129e75760008160009055506001016129cf565b5090565b60006129fe6129f98461358e565b613569565b905082815260208101848484011115612a1a57612a19613a64565b5b612a25848285613821565b509392505050565b600081359050612a3c816140b9565b92915050565b600081359050612a51816140d0565b92915050565b600081359050612a66816140e7565b92915050565b600081519050612a7b816140e7565b92915050565b600082601f830112612a9657612a95613a5a565b5b8135612aa68482602086016129eb565b91505092915050565b60008083601f840112612ac557612ac4613a5a565b5b8235905067ffffffffffffffff811115612ae257612ae1613a55565b5b602083019150836001820283011115612afe57612afd613a5f565b5b9250929050565b600081359050612b14816140fe565b92915050565b600060208284031215612b3057612b2f613a6e565b5b6000612b3e84828501612a2d565b91505092915050565b60008060408385031215612b5e57612b5d613a6e565b5b6000612b6c85828601612a2d565b9250506020612b7d85828601612a2d565b9150509250929050565b600080600060608486031215612ba057612b9f613a6e565b5b6000612bae86828701612a2d565b9350506020612bbf86828701612a2d565b9250506040612bd086828701612b05565b9150509250925092565b60008060008060808587031215612bf457612bf3613a6e565b5b6000612c0287828801612a2d565b9450506020612c1387828801612a2d565b9350506040612c2487828801612b05565b925050606085013567ffffffffffffffff811115612c4557612c44613a69565b5b612c5187828801612a81565b91505092959194509250565b60008060408385031215612c7457612c73613a6e565b5b6000612c8285828601612a2d565b9250506020612c9385828601612a42565b9150509250929050565b60008060408385031215612cb457612cb3613a6e565b5b6000612cc285828601612a2d565b9250506020612cd385828601612b05565b9150509250929050565b600060208284031215612cf357612cf2613a6e565b5b6000612d0184828501612a57565b91505092915050565b600060208284031215612d2057612d1f613a6e565b5b6000612d2e84828501612a6c565b91505092915050565b60008060208385031215612d4e57612d4d613a6e565b5b600083013567ffffffffffffffff811115612d6c57612d6b613a69565b5b612d7885828601612aaf565b92509250509250929050565b600060208284031215612d9a57612d99613a6e565b5b6000612da884828501612b05565b91505092915050565b612dba81613791565b82525050565b612dc9816137a3565b82525050565b6000612dda826135bf565b612de481856135d5565b9350612df4818560208601613830565b612dfd81613a73565b840191505092915050565b6000612e13826135ca565b612e1d81856135e6565b9350612e2d818560208601613830565b612e3681613a73565b840191505092915050565b6000612e4c826135ca565b612e5681856135f7565b9350612e66818560208601613830565b80840191505092915050565b6000612e7f6022836135e6565b9150612e8a82613a84565b604082019050919050565b6000612ea26026836135e6565b9150612ead82613ad3565b604082019050919050565b6000612ec5602a836135e6565b9150612ed082613b22565b604082019050919050565b6000612ee86023836135e6565b9150612ef382613b71565b604082019050919050565b6000612f0b6025836135e6565b9150612f1682613bc0565b604082019050919050565b6000612f2e6010836135e6565b9150612f3982613c0f565b602082019050919050565b6000612f516007836135e6565b9150612f5c82613c38565b602082019050919050565b6000612f746039836135e6565b9150612f7f82613c61565b604082019050919050565b6000612f97602b836135e6565b9150612fa282613cb0565b604082019050919050565b6000612fba6026836135e6565b9150612fc582613cff565b604082019050919050565b6000612fdd6020836135e6565b9150612fe882613d4e565b602082019050919050565b6000613000602f836135e6565b915061300b82613d77565b604082019050919050565b6000613023601a836135e6565b915061302e82613dc6565b602082019050919050565b60006130466032836135e6565b915061305182613def565b604082019050919050565b6000613069600a836135e6565b915061307482613e3e565b602082019050919050565b600061308c6022836135e6565b915061309782613e67565b604082019050919050565b60006130af6033836135e6565b91506130ba82613eb6565b604082019050919050565b60006130d2601d836135e6565b91506130dd82613f05565b602082019050919050565b60006130f56021836135e6565b915061310082613f2e565b604082019050919050565b6000613118602e836135e6565b915061312382613f7d565b604082019050919050565b600061313b602f836135e6565b915061314682613fcc565b604082019050919050565b600061315e602d836135e6565b91506131698261401b565b604082019050919050565b60006131816022836135e6565b915061318c8261406a565b604082019050919050565b6131a081613817565b82525050565b60006131b28285612e41565b91506131be8284612e41565b91508190509392505050565b60006020820190506131df6000830184612db1565b92915050565b60006080820190506131fa6000830187612db1565b6132076020830186612db1565b6132146040830185613197565b81810360608301526132268184612dcf565b905095945050505050565b60006020820190506132466000830184612dc0565b92915050565b600060208201905081810360008301526132668184612e08565b905092915050565b6000602082019050818103600083015261328781612e72565b9050919050565b600060208201905081810360008301526132a781612e95565b9050919050565b600060208201905081810360008301526132c781612eb8565b9050919050565b600060208201905081810360008301526132e781612edb565b9050919050565b6000602082019050818103600083015261330781612efe565b9050919050565b6000602082019050818103600083015261332781612f21565b9050919050565b6000602082019050818103600083015261334781612f44565b9050919050565b6000602082019050818103600083015261336781612f67565b9050919050565b6000602082019050818103600083015261338781612f8a565b9050919050565b600060208201905081810360008301526133a781612fad565b9050919050565b600060208201905081810360008301526133c781612fd0565b9050919050565b600060208201905081810360008301526133e781612ff3565b9050919050565b6000602082019050818103600083015261340781613016565b9050919050565b6000602082019050818103600083015261342781613039565b9050919050565b600060208201905081810360008301526134478161305c565b9050919050565b600060208201905081810360008301526134678161307f565b9050919050565b60006020820190508181036000830152613487816130a2565b9050919050565b600060208201905081810360008301526134a7816130c5565b9050919050565b600060208201905081810360008301526134c7816130e8565b9050919050565b600060208201905081810360008301526134e78161310b565b9050919050565b600060208201905081810360008301526135078161312e565b9050919050565b6000602082019050818103600083015261352781613151565b9050919050565b6000602082019050818103600083015261354781613174565b9050919050565b60006020820190506135636000830184613197565b92915050565b6000613573613584565b905061357f82826138bf565b919050565b6000604051905090565b600067ffffffffffffffff8211156135a9576135a8613a26565b5b6135b282613a73565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061360d826137db565b9150613618836137db565b9250826fffffffffffffffffffffffffffffffff0382111561363d5761363c61396a565b5b828201905092915050565b600061365382613817565b915061365e83613817565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136935761369261396a565b5b828201905092915050565b60006136a982613817565b91506136b483613817565b9250826136c4576136c3613999565b5b828204905092915050565b60006136da82613817565b91506136e583613817565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561371e5761371d61396a565b5b828202905092915050565b6000613734826137db565b915061373f836137db565b9250828210156137525761375161396a565b5b828203905092915050565b600061376882613817565b915061377383613817565b9250828210156137865761378561396a565b5b828203905092915050565b600061379c826137f7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561384e578082015181840152602081019050613833565b8381111561385d576000848401525b50505050565b600061386e82613817565b915060008214156138825761388161396a565b5b600182039050919050565b600060028204905060018216806138a557607f821691505b602082108114156138b9576138b86139c8565b5b50919050565b6138c882613a73565b810181811067ffffffffffffffff821117156138e7576138e6613a26565b5b80604052505050565b60006138fb82613817565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561392e5761392d61396a565b5b600182019050919050565b600061394482613817565b915061394f83613817565b92508261395f5761395e613999565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420456e6f7567682046756e647300000000000000000000000000000000600082015250565b7f536f6c646f757400000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d61782050657220547800000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6140c281613791565b81146140cd57600080fd5b50565b6140d9816137a3565b81146140e457600080fd5b50565b6140f0816137af565b81146140fb57600080fd5b50565b61410781613817565b811461411257600080fd5b5056fea26469706673582212203720b1d62dec9c6d619d263e486441e497c7c964372fde18acc65e5e6fcc811264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806370a08231116100f7578063c87b56dd11610095578063e985e9c511610064578063e985e9c514610647578063f2fde38b14610684578063f366afc9146106ad578063fdbf9ef2146106d8576101c2565b8063c87b56dd14610577578063d5abeb01146105b4578063d7224ba0146105df578063e645f7081461060a576101c2565b806395d89b41116100d157806395d89b41146104de578063a0712d6814610509578063a22cb46514610525578063b88d4fde1461054e576101c2565b806370a082311461045f578063715018a61461049c5780638da5cb5b146104b3576101c2565b80633ccfd60b116101645780634f6ccce71161013e5780634f6ccce71461039157806355f804b3146103ce5780636352211e146103f75780636c0360eb14610434576101c2565b80633ccfd60b1461032657806342842e0e1461033d5780634b980d6714610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c05780632f745c59146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612cdd565b610703565b6040516101fb9190613231565b60405180910390f35b34801561021057600080fd5b5061021961084d565b604051610226919061324c565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612d84565b6108df565b60405161026391906131ca565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612c9d565b610964565b005b3480156102a157600080fd5b506102aa610a7d565b6040516102b7919061354e565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612b87565b610a86565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612c9d565b610a96565b60405161031d919061354e565b60405180910390f35b34801561033257600080fd5b5061033b610c94565b005b34801561034957600080fd5b50610364600480360381019061035f9190612b87565b610cfc565b005b34801561037257600080fd5b5061037b610d1c565b604051610388919061354e565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190612d84565b610d22565b6040516103c5919061354e565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190612d37565b610d75565b005b34801561040357600080fd5b5061041e60048036038101906104199190612d84565b610d93565b60405161042b91906131ca565b60405180910390f35b34801561044057600080fd5b50610449610da9565b604051610456919061324c565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612b1a565b610e37565b604051610493919061354e565b60405180910390f35b3480156104a857600080fd5b506104b1610f20565b005b3480156104bf57600080fd5b506104c8610f34565b6040516104d591906131ca565b60405180910390f35b3480156104ea57600080fd5b506104f3610f5e565b604051610500919061324c565b60405180910390f35b610523600480360381019061051e9190612d84565b610ff0565b005b34801561053157600080fd5b5061054c60048036038101906105479190612c5d565b61125b565b005b34801561055a57600080fd5b5061057560048036038101906105709190612bda565b6113dc565b005b34801561058357600080fd5b5061059e60048036038101906105999190612d84565b611438565b6040516105ab919061324c565b60405180910390f35b3480156105c057600080fd5b506105c96114df565b6040516105d6919061354e565b60405180910390f35b3480156105eb57600080fd5b506105f46114e5565b604051610601919061354e565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190612b1a565b6114eb565b60405161063e919061354e565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612b47565b611503565b60405161067b9190613231565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190612b1a565b611597565b005b3480156106b957600080fd5b506106c261161b565b6040516106cf919061354e565b60405180910390f35b3480156106e457600080fd5b506106ed611621565b6040516106fa919061354e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ce57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610846575061084582611627565b5b9050919050565b60606001805461085c9061388d565b80601f01602080910402602001604051908101604052809291908181526020018280546108889061388d565b80156108d55780601f106108aa576101008083540402835291602001916108d5565b820191906000526020600020905b8154815290600101906020018083116108b857829003601f168201915b5050505050905090565b60006108ea82611691565b610929576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109209061350e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096f82610d93565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d79061344e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ff61169e565b73ffffffffffffffffffffffffffffffffffffffff161480610a2e5750610a2d81610a2861169e565b611503565b5b610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a649061334e565b60405180910390fd5b610a788383836116a6565b505050565b60008054905090565b610a91838383611758565b505050565b6000610aa183610e37565b8210610ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad99061326e565b60405180910390fd5b6000610aec610a7d565b905060008060005b83811015610c52576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610be657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3e5786841415610c2f578195505050505050610c8e565b8380610c3a906138f0565b9450505b508080610c4a906138f0565b915050610af4565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c85906134ce565b60405180910390fd5b92915050565b610c9c611d11565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610cf9573d6000803e3d6000fd5b50565b610d17838383604051806020016040528060008152506113dc565b505050565b600e5481565b6000610d2c610a7d565b8210610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d64906132ce565b60405180910390fd5b819050919050565b610d7d611d11565b8181600c9190610d8e92919061290e565b505050565b6000610d9e82611d8f565b600001519050919050565b600c8054610db69061388d565b80601f0160208091040260200160405190810160405280929190818152602001828054610de29061388d565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f9061336e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f28611d11565b610f326000611f92565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610f6d9061388d565b80601f0160208091040260200160405190810160405280929190818152602001828054610f999061388d565b8015610fe65780601f10610fbb57610100808354040283529160200191610fe6565b820191906000526020600020905b815481529060010190602001808311610fc957829003601f168201915b5050505050905090565b600f5481610ffc610a7d565b6110069190613648565b1115611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e9061332e565b60405180910390fd5b600e5481111561108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110839061342e565b60405180910390fd5b600d54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156111a757600d548110156110e557600d5490505b600b54600d54826110f6919061375d565b61110091906136cf565b341015611142576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111399061330e565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111919190613648565b925050819055506111a23382612058565b611258565b600b54816111b591906136cf565b3410156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee9061330e565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112469190613648565b925050819055506112573382612058565b5b50565b61126361169e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c8906133ee565b60405180910390fd5b80600660006112de61169e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661138b61169e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113d09190613231565b60405180910390a35050565b6113e7848484611758565b6113f384848484612076565b611432576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114299061346e565b60405180910390fd5b50505050565b606061144382611691565b611482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611479906133ce565b60405180910390fd5b600061148c61220d565b905060008151116114ac57604051806020016040528060008152506114d7565b806114b68461229f565b6040516020016114c79291906131a6565b6040516020818303038152906040525b915050919050565b600f5481565b60075481565b600a6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61159f611d11565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561160f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116069061328e565b60405180910390fd5b61161881611f92565b50565b600d5481565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061176382611d8f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661178a61169e565b73ffffffffffffffffffffffffffffffffffffffff1614806117e657506117af61169e565b73ffffffffffffffffffffffffffffffffffffffff166117ce846108df565b73ffffffffffffffffffffffffffffffffffffffff16145b80611802575061180182600001516117fc61169e565b611503565b5b905080611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b9061340e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146118b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ad9061338e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d906132ee565b60405180910390fd5b6119338585856001612400565b61194360008484600001516116a6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166119b19190613729565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a559190613602565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611b5b9190613648565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ca157611bd181611691565b15611ca0576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d098686866001612406565b505050505050565b611d1961169e565b73ffffffffffffffffffffffffffffffffffffffff16611d37610f34565b73ffffffffffffffffffffffffffffffffffffffff1614611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d84906133ae565b60405180910390fd5b565b611d97612994565b611da082611691565b611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd6906132ae565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000608310611e435760017f000000000000000000000000000000000000000000000000000000000000006084611e36919061375d565b611e409190613648565b90505b60008390505b818110611f51576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f3d57809350505050611f8d565b508080611f4990613863565b915050611e49565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f84906134ee565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61207282826040518060200160405280600081525061240c565b5050565b60006120978473ffffffffffffffffffffffffffffffffffffffff166128eb565b15612200578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120c061169e565b8786866040518563ffffffff1660e01b81526004016120e294939291906131e5565b602060405180830381600087803b1580156120fc57600080fd5b505af192505050801561212d57506040513d601f19601f8201168201806040525081019061212a9190612d0a565b60015b6121b0573d806000811461215d576040519150601f19603f3d011682016040523d82523d6000602084013e612162565b606091505b506000815114156121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219f9061346e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612205565b600190505b949350505050565b6060600c805461221c9061388d565b80601f01602080910402602001604051908101604052809291908181526020018280546122489061388d565b80156122955780601f1061226a57610100808354040283529160200191612295565b820191906000526020600020905b81548152906001019060200180831161227857829003601f168201915b5050505050905090565b606060008214156122e7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123fb565b600082905060005b60008214612319578080612302906138f0565b915050600a82612312919061369e565b91506122ef565b60008167ffffffffffffffff81111561233557612334613a26565b5b6040519080825280601f01601f1916602001820160405280156123675781602001600182028036833780820191505090505b5090505b600085146123f457600182612380919061375d565b9150600a8561238f9190613939565b603061239b9190613648565b60f81b8183815181106123b1576123b06139f7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123ed919061369e565b945061236b565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612479906134ae565b60405180910390fd5b61248b81611691565b156124cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c29061348e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000006083111561252e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125259061352e565b60405180910390fd5b61253b6000858386612400565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516126389190613602565b6fffffffffffffffffffffffffffffffff16815260200185836020015161265f9190613602565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156128ce57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461286e6000888488612076565b6128ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a49061346e565b60405180910390fd5b81806128b8906138f0565b92505080806128c6906138f0565b9150506127fd565b50806000819055506128e36000878588612406565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461291a9061388d565b90600052602060002090601f01602090048101928261293c5760008555612983565b82601f1061295557803560ff1916838001178555612983565b82800160010185558215612983579182015b82811115612982578235825591602001919060010190612967565b5b50905061299091906129ce565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156129e75760008160009055506001016129cf565b5090565b60006129fe6129f98461358e565b613569565b905082815260208101848484011115612a1a57612a19613a64565b5b612a25848285613821565b509392505050565b600081359050612a3c816140b9565b92915050565b600081359050612a51816140d0565b92915050565b600081359050612a66816140e7565b92915050565b600081519050612a7b816140e7565b92915050565b600082601f830112612a9657612a95613a5a565b5b8135612aa68482602086016129eb565b91505092915050565b60008083601f840112612ac557612ac4613a5a565b5b8235905067ffffffffffffffff811115612ae257612ae1613a55565b5b602083019150836001820283011115612afe57612afd613a5f565b5b9250929050565b600081359050612b14816140fe565b92915050565b600060208284031215612b3057612b2f613a6e565b5b6000612b3e84828501612a2d565b91505092915050565b60008060408385031215612b5e57612b5d613a6e565b5b6000612b6c85828601612a2d565b9250506020612b7d85828601612a2d565b9150509250929050565b600080600060608486031215612ba057612b9f613a6e565b5b6000612bae86828701612a2d565b9350506020612bbf86828701612a2d565b9250506040612bd086828701612b05565b9150509250925092565b60008060008060808587031215612bf457612bf3613a6e565b5b6000612c0287828801612a2d565b9450506020612c1387828801612a2d565b9350506040612c2487828801612b05565b925050606085013567ffffffffffffffff811115612c4557612c44613a69565b5b612c5187828801612a81565b91505092959194509250565b60008060408385031215612c7457612c73613a6e565b5b6000612c8285828601612a2d565b9250506020612c9385828601612a42565b9150509250929050565b60008060408385031215612cb457612cb3613a6e565b5b6000612cc285828601612a2d565b9250506020612cd385828601612b05565b9150509250929050565b600060208284031215612cf357612cf2613a6e565b5b6000612d0184828501612a57565b91505092915050565b600060208284031215612d2057612d1f613a6e565b5b6000612d2e84828501612a6c565b91505092915050565b60008060208385031215612d4e57612d4d613a6e565b5b600083013567ffffffffffffffff811115612d6c57612d6b613a69565b5b612d7885828601612aaf565b92509250509250929050565b600060208284031215612d9a57612d99613a6e565b5b6000612da884828501612b05565b91505092915050565b612dba81613791565b82525050565b612dc9816137a3565b82525050565b6000612dda826135bf565b612de481856135d5565b9350612df4818560208601613830565b612dfd81613a73565b840191505092915050565b6000612e13826135ca565b612e1d81856135e6565b9350612e2d818560208601613830565b612e3681613a73565b840191505092915050565b6000612e4c826135ca565b612e5681856135f7565b9350612e66818560208601613830565b80840191505092915050565b6000612e7f6022836135e6565b9150612e8a82613a84565b604082019050919050565b6000612ea26026836135e6565b9150612ead82613ad3565b604082019050919050565b6000612ec5602a836135e6565b9150612ed082613b22565b604082019050919050565b6000612ee86023836135e6565b9150612ef382613b71565b604082019050919050565b6000612f0b6025836135e6565b9150612f1682613bc0565b604082019050919050565b6000612f2e6010836135e6565b9150612f3982613c0f565b602082019050919050565b6000612f516007836135e6565b9150612f5c82613c38565b602082019050919050565b6000612f746039836135e6565b9150612f7f82613c61565b604082019050919050565b6000612f97602b836135e6565b9150612fa282613cb0565b604082019050919050565b6000612fba6026836135e6565b9150612fc582613cff565b604082019050919050565b6000612fdd6020836135e6565b9150612fe882613d4e565b602082019050919050565b6000613000602f836135e6565b915061300b82613d77565b604082019050919050565b6000613023601a836135e6565b915061302e82613dc6565b602082019050919050565b60006130466032836135e6565b915061305182613def565b604082019050919050565b6000613069600a836135e6565b915061307482613e3e565b602082019050919050565b600061308c6022836135e6565b915061309782613e67565b604082019050919050565b60006130af6033836135e6565b91506130ba82613eb6565b604082019050919050565b60006130d2601d836135e6565b91506130dd82613f05565b602082019050919050565b60006130f56021836135e6565b915061310082613f2e565b604082019050919050565b6000613118602e836135e6565b915061312382613f7d565b604082019050919050565b600061313b602f836135e6565b915061314682613fcc565b604082019050919050565b600061315e602d836135e6565b91506131698261401b565b604082019050919050565b60006131816022836135e6565b915061318c8261406a565b604082019050919050565b6131a081613817565b82525050565b60006131b28285612e41565b91506131be8284612e41565b91508190509392505050565b60006020820190506131df6000830184612db1565b92915050565b60006080820190506131fa6000830187612db1565b6132076020830186612db1565b6132146040830185613197565b81810360608301526132268184612dcf565b905095945050505050565b60006020820190506132466000830184612dc0565b92915050565b600060208201905081810360008301526132668184612e08565b905092915050565b6000602082019050818103600083015261328781612e72565b9050919050565b600060208201905081810360008301526132a781612e95565b9050919050565b600060208201905081810360008301526132c781612eb8565b9050919050565b600060208201905081810360008301526132e781612edb565b9050919050565b6000602082019050818103600083015261330781612efe565b9050919050565b6000602082019050818103600083015261332781612f21565b9050919050565b6000602082019050818103600083015261334781612f44565b9050919050565b6000602082019050818103600083015261336781612f67565b9050919050565b6000602082019050818103600083015261338781612f8a565b9050919050565b600060208201905081810360008301526133a781612fad565b9050919050565b600060208201905081810360008301526133c781612fd0565b9050919050565b600060208201905081810360008301526133e781612ff3565b9050919050565b6000602082019050818103600083015261340781613016565b9050919050565b6000602082019050818103600083015261342781613039565b9050919050565b600060208201905081810360008301526134478161305c565b9050919050565b600060208201905081810360008301526134678161307f565b9050919050565b60006020820190508181036000830152613487816130a2565b9050919050565b600060208201905081810360008301526134a7816130c5565b9050919050565b600060208201905081810360008301526134c7816130e8565b9050919050565b600060208201905081810360008301526134e78161310b565b9050919050565b600060208201905081810360008301526135078161312e565b9050919050565b6000602082019050818103600083015261352781613151565b9050919050565b6000602082019050818103600083015261354781613174565b9050919050565b60006020820190506135636000830184613197565b92915050565b6000613573613584565b905061357f82826138bf565b919050565b6000604051905090565b600067ffffffffffffffff8211156135a9576135a8613a26565b5b6135b282613a73565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061360d826137db565b9150613618836137db565b9250826fffffffffffffffffffffffffffffffff0382111561363d5761363c61396a565b5b828201905092915050565b600061365382613817565b915061365e83613817565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136935761369261396a565b5b828201905092915050565b60006136a982613817565b91506136b483613817565b9250826136c4576136c3613999565b5b828204905092915050565b60006136da82613817565b91506136e583613817565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561371e5761371d61396a565b5b828202905092915050565b6000613734826137db565b915061373f836137db565b9250828210156137525761375161396a565b5b828203905092915050565b600061376882613817565b915061377383613817565b9250828210156137865761378561396a565b5b828203905092915050565b600061379c826137f7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561384e578082015181840152602081019050613833565b8381111561385d576000848401525b50505050565b600061386e82613817565b915060008214156138825761388161396a565b5b600182039050919050565b600060028204905060018216806138a557607f821691505b602082108114156138b9576138b86139c8565b5b50919050565b6138c882613a73565b810181811067ffffffffffffffff821117156138e7576138e6613a26565b5b80604052505050565b60006138fb82613817565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561392e5761392d61396a565b5b600182019050919050565b600061394482613817565b915061394f83613817565b92508261395f5761395e613999565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420456e6f7567682046756e647300000000000000000000000000000000600082015250565b7f536f6c646f757400000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d61782050657220547800000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6140c281613791565b81146140cd57600080fd5b50565b6140d9816137a3565b81146140e457600080fd5b50565b6140f0816137af565b81146140fb57600080fd5b50565b61410781613817565b811461411257600080fd5b5056fea26469706673582212203720b1d62dec9c6d619d263e486441e497c7c964372fde18acc65e5e6fcc811264736f6c63430008070033

Deployed Bytecode Sourcemap

557:1425: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;:::-;;;;;;;;8352:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3443:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1861:116:12;;;;;;;;;;;;;:::i;:::-;;8557:157:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;788:34:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2975:177:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1635:102:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5800:118:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;726:21:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;1201:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6132:98:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;938:689:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7770:274:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8777:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6293:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;831:28:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;629:46:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8107:186:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;756:25:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;682:36;;;;;;;;;;;;;:::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;8352:142::-;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;1861:116:12:-;1094:13:0;:11;:13::i;:::-;1917:10:12::1;1909:28;;:60;1954:4;1938:30;;;1909:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1861:116::o:0;8557:157:11:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;788:34: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;1635:102:12:-;1094:13:0;:11;:13::i;:::-;1721:8:12::1;;1711:7;:18;;;;;;;:::i;:::-;;1635:102:::0;;:::o;5800:118:11:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;726: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;1201:85::-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;6132:98:11:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;938:689:12:-;1035:9;;1025:6;1009:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;1001:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1084:17;;1074:6;:27;;1066:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;1155:9;;1130:10;:22;1141:10;1130:22;;;;;;;;;;;;;;;;:34;1127:493;;;1203:9;;1194:6;:18;1191:41;;;1223:9;;1214:18;;1191:41;1290:9;;1277;;1268:6;:18;;;;:::i;:::-;1267:32;;;;:::i;:::-;1254:9;:45;;1246:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1360:6;1334:10;:22;1345:10;1334:22;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;1380:29;1390:10;1402:6;1380:9;:29::i;:::-;1127:493;;;1489:9;;1480:6;:18;;;;:::i;:::-;1467:9;:31;;1459:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;1559:6;1533:10;:22;1544:10;1533:22;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;1579:29;1589:10;1601:6;1579:9;:29::i;:::-;1127:493;938:689;:::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;8777:311::-;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;831:28:12:-;;;;:::o;13192:43:11:-;;;;:::o;629:46:12:-;;;;;;;;;;;;;;;;;:::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;756:25:12:-;;;;:::o;682:36::-;;;;:::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;11379:1529::-;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;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;5140:606:11:-;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;14729:690::-;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;1745:108:12:-;1805:13;1838:7;1831:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1745: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:365::-;10705:3;10726:66;10790:1;10785:3;10726:66;:::i;:::-;10719:73;;10801:93;10890:3;10801:93;:::i;:::-;10919:2;10914:3;10910:12;10903:19;;10563:365;;;:::o;10934:366::-;11076:3;11097:67;11161:2;11156:3;11097:67;:::i;:::-;11090:74;;11173:93;11262:3;11173:93;:::i;:::-;11291:2;11286:3;11282:12;11275:19;;10934:366;;;:::o;11306:::-;11448:3;11469:67;11533:2;11528:3;11469:67;:::i;:::-;11462:74;;11545:93;11634:3;11545:93;:::i;:::-;11663:2;11658:3;11654:12;11647:19;;11306:366;;;:::o;11678:::-;11820:3;11841:67;11905:2;11900:3;11841:67;:::i;:::-;11834:74;;11917:93;12006:3;11917:93;:::i;:::-;12035:2;12030:3;12026:12;12019:19;;11678:366;;;:::o;12050:::-;12192:3;12213:67;12277:2;12272:3;12213:67;:::i;:::-;12206:74;;12289:93;12378:3;12289:93;:::i;:::-;12407:2;12402:3;12398:12;12391:19;;12050:366;;;:::o;12422:::-;12564:3;12585:67;12649:2;12644:3;12585:67;:::i;:::-;12578:74;;12661:93;12750:3;12661:93;:::i;:::-;12779:2;12774:3;12770:12;12763:19;;12422:366;;;:::o;12794:::-;12936:3;12957:67;13021:2;13016:3;12957:67;:::i;:::-;12950:74;;13033:93;13122:3;13033:93;:::i;:::-;13151:2;13146:3;13142:12;13135:19;;12794:366;;;:::o;13166:::-;13308:3;13329:67;13393:2;13388:3;13329:67;:::i;:::-;13322:74;;13405:93;13494:3;13405:93;:::i;:::-;13523:2;13518:3;13514:12;13507:19;;13166:366;;;:::o;13538:::-;13680:3;13701:67;13765:2;13760:3;13701:67;:::i;:::-;13694:74;;13777:93;13866:3;13777:93;:::i;:::-;13895:2;13890:3;13886:12;13879:19;;13538:366;;;:::o;13910:::-;14052:3;14073:67;14137:2;14132:3;14073:67;:::i;:::-;14066:74;;14149:93;14238:3;14149:93;:::i;:::-;14267:2;14262:3;14258:12;14251:19;;13910:366;;;:::o;14282:::-;14424:3;14445:67;14509:2;14504:3;14445:67;:::i;:::-;14438:74;;14521:93;14610:3;14521:93;:::i;:::-;14639:2;14634:3;14630:12;14623:19;;14282:366;;;:::o;14654:::-;14796:3;14817:67;14881:2;14876:3;14817:67;:::i;:::-;14810:74;;14893:93;14982:3;14893:93;:::i;:::-;15011:2;15006:3;15002:12;14995:19;;14654:366;;;:::o;15026:::-;15168:3;15189:67;15253:2;15248:3;15189:67;:::i;:::-;15182:74;;15265:93;15354:3;15265:93;:::i;:::-;15383:2;15378:3;15374:12;15367:19;;15026:366;;;:::o;15398:::-;15540:3;15561:67;15625:2;15620:3;15561:67;:::i;:::-;15554:74;;15637:93;15726:3;15637:93;:::i;:::-;15755:2;15750:3;15746:12;15739:19;;15398:366;;;:::o;15770:::-;15912:3;15933:67;15997:2;15992:3;15933:67;:::i;:::-;15926:74;;16009:93;16098:3;16009:93;:::i;:::-;16127:2;16122:3;16118:12;16111:19;;15770:366;;;:::o;16142:::-;16284:3;16305:67;16369:2;16364:3;16305:67;:::i;:::-;16298:74;;16381:93;16470:3;16381:93;:::i;:::-;16499:2;16494:3;16490:12;16483:19;;16142:366;;;:::o;16514:::-;16656:3;16677:67;16741:2;16736:3;16677:67;:::i;:::-;16670:74;;16753:93;16842:3;16753:93;:::i;:::-;16871:2;16866:3;16862:12;16855:19;;16514:366;;;:::o;16886:118::-;16973:24;16991:5;16973:24;:::i;:::-;16968:3;16961:37;16886:118;;:::o;17010:435::-;17190:3;17212:95;17303:3;17294:6;17212:95;:::i;:::-;17205:102;;17324:95;17415:3;17406:6;17324:95;:::i;:::-;17317:102;;17436:3;17429:10;;17010:435;;;;;:::o;17451:222::-;17544:4;17582:2;17571:9;17567:18;17559:26;;17595:71;17663:1;17652:9;17648:17;17639:6;17595:71;:::i;:::-;17451:222;;;;:::o;17679:640::-;17874:4;17912:3;17901:9;17897:19;17889:27;;17926:71;17994:1;17983:9;17979:17;17970:6;17926:71;:::i;:::-;18007:72;18075:2;18064:9;18060:18;18051:6;18007:72;:::i;:::-;18089;18157:2;18146:9;18142:18;18133:6;18089:72;:::i;:::-;18208:9;18202:4;18198:20;18193:2;18182:9;18178:18;18171:48;18236:76;18307:4;18298:6;18236:76;:::i;:::-;18228:84;;17679:640;;;;;;;:::o;18325:210::-;18412:4;18450:2;18439:9;18435:18;18427:26;;18463:65;18525:1;18514:9;18510:17;18501:6;18463:65;:::i;:::-;18325:210;;;;:::o;18541:313::-;18654:4;18692:2;18681:9;18677:18;18669:26;;18741:9;18735:4;18731:20;18727:1;18716:9;18712:17;18705:47;18769:78;18842:4;18833:6;18769:78;:::i;:::-;18761:86;;18541:313;;;;:::o;18860:419::-;19026:4;19064:2;19053:9;19049:18;19041:26;;19113:9;19107:4;19103:20;19099:1;19088:9;19084:17;19077:47;19141:131;19267:4;19141:131;:::i;:::-;19133:139;;18860:419;;;:::o;19285:::-;19451:4;19489:2;19478:9;19474:18;19466:26;;19538:9;19532:4;19528:20;19524:1;19513:9;19509:17;19502:47;19566:131;19692:4;19566:131;:::i;:::-;19558:139;;19285:419;;;:::o;19710:::-;19876:4;19914:2;19903:9;19899:18;19891:26;;19963:9;19957:4;19953:20;19949:1;19938:9;19934:17;19927:47;19991:131;20117:4;19991:131;:::i;:::-;19983:139;;19710:419;;;:::o;20135:::-;20301:4;20339:2;20328:9;20324:18;20316:26;;20388:9;20382:4;20378:20;20374:1;20363:9;20359:17;20352:47;20416:131;20542:4;20416:131;:::i;:::-;20408:139;;20135:419;;;:::o;20560:::-;20726:4;20764:2;20753:9;20749:18;20741:26;;20813:9;20807:4;20803:20;20799:1;20788:9;20784:17;20777:47;20841:131;20967:4;20841:131;:::i;:::-;20833:139;;20560:419;;;:::o;20985:::-;21151:4;21189:2;21178:9;21174:18;21166:26;;21238:9;21232:4;21228:20;21224:1;21213:9;21209:17;21202:47;21266:131;21392:4;21266:131;:::i;:::-;21258:139;;20985:419;;;:::o;21410:::-;21576:4;21614:2;21603:9;21599:18;21591:26;;21663:9;21657:4;21653:20;21649:1;21638:9;21634:17;21627:47;21691:131;21817:4;21691:131;:::i;:::-;21683:139;;21410:419;;;:::o;21835:::-;22001:4;22039:2;22028:9;22024:18;22016:26;;22088:9;22082:4;22078:20;22074:1;22063:9;22059:17;22052:47;22116:131;22242:4;22116:131;:::i;:::-;22108:139;;21835:419;;;:::o;22260:::-;22426:4;22464:2;22453:9;22449:18;22441:26;;22513:9;22507:4;22503:20;22499:1;22488:9;22484:17;22477:47;22541:131;22667:4;22541:131;:::i;:::-;22533:139;;22260:419;;;:::o;22685:::-;22851:4;22889:2;22878:9;22874:18;22866:26;;22938:9;22932:4;22928:20;22924:1;22913:9;22909:17;22902:47;22966:131;23092:4;22966:131;:::i;:::-;22958:139;;22685:419;;;:::o;23110:::-;23276:4;23314:2;23303:9;23299:18;23291:26;;23363:9;23357:4;23353:20;23349:1;23338:9;23334:17;23327:47;23391:131;23517:4;23391:131;:::i;:::-;23383:139;;23110:419;;;:::o;23535:::-;23701:4;23739:2;23728:9;23724:18;23716:26;;23788:9;23782:4;23778:20;23774:1;23763:9;23759:17;23752:47;23816:131;23942:4;23816:131;:::i;:::-;23808:139;;23535:419;;;:::o;23960:::-;24126:4;24164:2;24153:9;24149:18;24141:26;;24213:9;24207:4;24203:20;24199:1;24188:9;24184:17;24177:47;24241:131;24367:4;24241:131;:::i;:::-;24233:139;;23960:419;;;:::o;24385:::-;24551:4;24589:2;24578:9;24574:18;24566:26;;24638:9;24632:4;24628:20;24624:1;24613:9;24609:17;24602:47;24666:131;24792:4;24666:131;:::i;:::-;24658:139;;24385:419;;;:::o;24810:::-;24976:4;25014:2;25003:9;24999:18;24991:26;;25063:9;25057:4;25053:20;25049:1;25038:9;25034:17;25027:47;25091:131;25217:4;25091:131;:::i;:::-;25083:139;;24810:419;;;:::o;25235:::-;25401:4;25439:2;25428:9;25424:18;25416:26;;25488:9;25482:4;25478:20;25474:1;25463:9;25459:17;25452:47;25516:131;25642:4;25516:131;:::i;:::-;25508:139;;25235:419;;;:::o;25660:::-;25826:4;25864:2;25853:9;25849:18;25841:26;;25913:9;25907:4;25903:20;25899:1;25888:9;25884:17;25877:47;25941:131;26067:4;25941:131;:::i;:::-;25933:139;;25660:419;;;:::o;26085:::-;26251:4;26289:2;26278:9;26274:18;26266:26;;26338:9;26332:4;26328:20;26324:1;26313:9;26309:17;26302:47;26366:131;26492:4;26366:131;:::i;:::-;26358:139;;26085:419;;;:::o;26510:::-;26676:4;26714:2;26703:9;26699:18;26691:26;;26763:9;26757:4;26753:20;26749:1;26738:9;26734:17;26727:47;26791:131;26917:4;26791:131;:::i;:::-;26783:139;;26510:419;;;:::o;26935:::-;27101:4;27139:2;27128:9;27124:18;27116:26;;27188:9;27182:4;27178:20;27174:1;27163:9;27159:17;27152:47;27216:131;27342:4;27216:131;:::i;:::-;27208:139;;26935:419;;;:::o;27360:::-;27526:4;27564:2;27553:9;27549:18;27541:26;;27613:9;27607:4;27603:20;27599:1;27588:9;27584:17;27577:47;27641:131;27767:4;27641:131;:::i;:::-;27633:139;;27360:419;;;:::o;27785:::-;27951:4;27989:2;27978:9;27974:18;27966:26;;28038:9;28032:4;28028:20;28024:1;28013:9;28009:17;28002:47;28066:131;28192:4;28066:131;:::i;:::-;28058:139;;27785:419;;;:::o;28210:::-;28376:4;28414:2;28403:9;28399:18;28391:26;;28463:9;28457:4;28453:20;28449:1;28438:9;28434:17;28427:47;28491:131;28617:4;28491:131;:::i;:::-;28483:139;;28210:419;;;:::o;28635:222::-;28728:4;28766:2;28755:9;28751:18;28743:26;;28779:71;28847:1;28836:9;28832:17;28823:6;28779:71;:::i;:::-;28635:222;;;;:::o;28863:129::-;28897:6;28924:20;;:::i;:::-;28914:30;;28953:33;28981:4;28973:6;28953:33;:::i;:::-;28863:129;;;:::o;28998:75::-;29031:6;29064:2;29058:9;29048:19;;28998:75;:::o;29079:307::-;29140:4;29230:18;29222:6;29219:30;29216:56;;;29252:18;;:::i;:::-;29216:56;29290:29;29312:6;29290:29;:::i;:::-;29282:37;;29374:4;29368;29364:15;29356:23;;29079:307;;;:::o;29392:98::-;29443:6;29477:5;29471:12;29461:22;;29392:98;;;:::o;29496:99::-;29548:6;29582:5;29576:12;29566:22;;29496:99;;;:::o;29601:168::-;29684:11;29718:6;29713:3;29706:19;29758:4;29753:3;29749:14;29734:29;;29601:168;;;;:::o;29775:169::-;29859:11;29893:6;29888:3;29881:19;29933:4;29928:3;29924:14;29909:29;;29775:169;;;;:::o;29950:148::-;30052:11;30089:3;30074:18;;29950:148;;;;:::o;30104:273::-;30144:3;30163:20;30181:1;30163:20;:::i;:::-;30158:25;;30197:20;30215:1;30197:20;:::i;:::-;30192:25;;30319:1;30283:34;30279:42;30276:1;30273:49;30270:75;;;30325:18;;:::i;:::-;30270:75;30369:1;30366;30362:9;30355:16;;30104:273;;;;:::o;30383:305::-;30423:3;30442:20;30460:1;30442:20;:::i;:::-;30437:25;;30476:20;30494:1;30476:20;:::i;:::-;30471:25;;30630:1;30562:66;30558:74;30555:1;30552:81;30549:107;;;30636:18;;:::i;:::-;30549:107;30680:1;30677;30673:9;30666:16;;30383:305;;;;:::o;30694:185::-;30734:1;30751:20;30769:1;30751:20;:::i;:::-;30746:25;;30785:20;30803:1;30785:20;:::i;:::-;30780:25;;30824:1;30814:35;;30829:18;;:::i;:::-;30814:35;30871:1;30868;30864:9;30859:14;;30694:185;;;;:::o;30885:348::-;30925:7;30948:20;30966:1;30948:20;:::i;:::-;30943:25;;30982:20;31000:1;30982:20;:::i;:::-;30977:25;;31170:1;31102:66;31098:74;31095:1;31092:81;31087:1;31080:9;31073:17;31069:105;31066:131;;;31177:18;;:::i;:::-;31066:131;31225:1;31222;31218:9;31207:20;;30885:348;;;;:::o;31239:191::-;31279:4;31299:20;31317:1;31299:20;:::i;:::-;31294:25;;31333:20;31351:1;31333:20;:::i;:::-;31328:25;;31372:1;31369;31366:8;31363:34;;;31377:18;;:::i;:::-;31363:34;31422:1;31419;31415:9;31407:17;;31239:191;;;;:::o;31436:::-;31476:4;31496:20;31514:1;31496:20;:::i;:::-;31491:25;;31530:20;31548:1;31530:20;:::i;:::-;31525:25;;31569:1;31566;31563:8;31560:34;;;31574:18;;:::i;:::-;31560:34;31619:1;31616;31612:9;31604:17;;31436:191;;;;:::o;31633:96::-;31670:7;31699:24;31717:5;31699:24;:::i;:::-;31688:35;;31633:96;;;:::o;31735:90::-;31769:7;31812:5;31805:13;31798:21;31787:32;;31735:90;;;:::o;31831:149::-;31867:7;31907:66;31900:5;31896:78;31885:89;;31831:149;;;:::o;31986:118::-;32023:7;32063:34;32056:5;32052:46;32041:57;;31986:118;;;:::o;32110:126::-;32147:7;32187:42;32180:5;32176:54;32165:65;;32110:126;;;:::o;32242:77::-;32279:7;32308:5;32297:16;;32242:77;;;:::o;32325:154::-;32409:6;32404:3;32399;32386:30;32471:1;32462:6;32457:3;32453:16;32446:27;32325:154;;;:::o;32485:307::-;32553:1;32563:113;32577:6;32574:1;32571:13;32563:113;;;32662:1;32657:3;32653:11;32647:18;32643:1;32638:3;32634:11;32627:39;32599:2;32596:1;32592:10;32587:15;;32563:113;;;32694:6;32691:1;32688:13;32685:101;;;32774:1;32765:6;32760:3;32756:16;32749:27;32685:101;32534:258;32485:307;;;:::o;32798:171::-;32837:3;32860:24;32878:5;32860:24;:::i;:::-;32851:33;;32906:4;32899:5;32896:15;32893:41;;;32914:18;;:::i;:::-;32893:41;32961:1;32954:5;32950:13;32943:20;;32798:171;;;:::o;32975:320::-;33019:6;33056:1;33050:4;33046:12;33036:22;;33103:1;33097:4;33093:12;33124:18;33114:81;;33180:4;33172:6;33168:17;33158:27;;33114:81;33242:2;33234:6;33231:14;33211:18;33208:38;33205:84;;;33261:18;;:::i;:::-;33205:84;33026:269;32975:320;;;:::o;33301:281::-;33384:27;33406:4;33384:27;:::i;:::-;33376:6;33372:40;33514:6;33502:10;33499:22;33478:18;33466:10;33463:34;33460:62;33457:88;;;33525:18;;:::i;:::-;33457:88;33565:10;33561:2;33554:22;33344:238;33301:281;;:::o;33588:233::-;33627:3;33650:24;33668:5;33650:24;:::i;:::-;33641:33;;33696:66;33689:5;33686:77;33683:103;;;33766:18;;:::i;:::-;33683:103;33813:1;33806:5;33802:13;33795:20;;33588:233;;;:::o;33827:176::-;33859:1;33876:20;33894:1;33876:20;:::i;:::-;33871:25;;33910:20;33928:1;33910:20;:::i;:::-;33905:25;;33949:1;33939:35;;33954:18;;:::i;:::-;33939:35;33995:1;33992;33988:9;33983:14;;33827:176;;;;:::o;34009:180::-;34057:77;34054:1;34047:88;34154:4;34151:1;34144:15;34178:4;34175:1;34168:15;34195:180;34243:77;34240:1;34233:88;34340:4;34337:1;34330:15;34364:4;34361:1;34354:15;34381:180;34429:77;34426:1;34419:88;34526:4;34523:1;34516:15;34550:4;34547:1;34540:15;34567:180;34615:77;34612:1;34605:88;34712:4;34709:1;34702:15;34736:4;34733:1;34726:15;34753:180;34801:77;34798:1;34791:88;34898:4;34895:1;34888:15;34922:4;34919:1;34912:15;34939:117;35048:1;35045;35038:12;35062:117;35171:1;35168;35161:12;35185:117;35294:1;35291;35284:12;35308:117;35417:1;35414;35407:12;35431:117;35540:1;35537;35530:12;35554:117;35663:1;35660;35653:12;35677:102;35718:6;35769:2;35765:7;35760:2;35753:5;35749:14;35745:28;35735:38;;35677:102;;;:::o;35785:221::-;35925:34;35921:1;35913:6;35909:14;35902:58;35994:4;35989:2;35981:6;35977:15;35970:29;35785:221;:::o;36012:225::-;36152:34;36148:1;36140:6;36136:14;36129:58;36221:8;36216:2;36208:6;36204:15;36197:33;36012:225;:::o;36243:229::-;36383:34;36379:1;36371:6;36367:14;36360:58;36452:12;36447:2;36439:6;36435:15;36428:37;36243:229;:::o;36478:222::-;36618:34;36614:1;36606:6;36602:14;36595:58;36687:5;36682:2;36674:6;36670:15;36663:30;36478:222;:::o;36706:224::-;36846:34;36842:1;36834:6;36830:14;36823:58;36915:7;36910:2;36902:6;36898:15;36891:32;36706:224;:::o;36936:166::-;37076:18;37072:1;37064:6;37060:14;37053:42;36936:166;:::o;37108:157::-;37248:9;37244:1;37236:6;37232:14;37225:33;37108:157;:::o;37271:244::-;37411:34;37407:1;37399:6;37395:14;37388:58;37480:27;37475:2;37467:6;37463:15;37456:52;37271:244;:::o;37521:230::-;37661:34;37657:1;37649:6;37645:14;37638:58;37730:13;37725:2;37717:6;37713:15;37706:38;37521:230;:::o;37757:225::-;37897:34;37893:1;37885:6;37881:14;37874:58;37966:8;37961:2;37953:6;37949:15;37942:33;37757:225;:::o;37988:182::-;38128:34;38124:1;38116:6;38112:14;38105:58;37988:182;:::o;38176:234::-;38316:34;38312:1;38304:6;38300:14;38293:58;38385:17;38380:2;38372:6;38368:15;38361:42;38176:234;:::o;38416:176::-;38556:28;38552:1;38544:6;38540:14;38533:52;38416:176;:::o;38598:237::-;38738:34;38734:1;38726:6;38722:14;38715:58;38807:20;38802:2;38794:6;38790:15;38783:45;38598:237;:::o;38841:160::-;38981:12;38977:1;38969:6;38965:14;38958:36;38841:160;:::o;39007:221::-;39147:34;39143:1;39135:6;39131:14;39124:58;39216:4;39211:2;39203:6;39199:15;39192:29;39007:221;:::o;39234:238::-;39374:34;39370:1;39362:6;39358:14;39351:58;39443:21;39438:2;39430:6;39426:15;39419:46;39234:238;:::o;39478:179::-;39618:31;39614:1;39606:6;39602:14;39595:55;39478:179;:::o;39663:220::-;39803:34;39799:1;39791:6;39787:14;39780:58;39872:3;39867:2;39859:6;39855:15;39848:28;39663:220;:::o;39889:233::-;40029:34;40025:1;40017:6;40013:14;40006:58;40098:16;40093:2;40085:6;40081:15;40074:41;39889:233;:::o;40128:234::-;40268:34;40264:1;40256:6;40252:14;40245:58;40337:17;40332:2;40324:6;40320:15;40313:42;40128:234;:::o;40368:232::-;40508:34;40504:1;40496:6;40492:14;40485:58;40577:15;40572:2;40564:6;40560:15;40553:40;40368:232;:::o;40606:221::-;40746:34;40742:1;40734:6;40730:14;40723:58;40815:4;40810:2;40802:6;40798:15;40791:29;40606:221;:::o;40833:122::-;40906:24;40924:5;40906:24;:::i;:::-;40899:5;40896:35;40886:63;;40945:1;40942;40935:12;40886:63;40833:122;:::o;40961:116::-;41031:21;41046:5;41031:21;:::i;:::-;41024:5;41021:32;41011:60;;41067:1;41064;41057:12;41011:60;40961:116;:::o;41083:120::-;41155:23;41172:5;41155:23;:::i;:::-;41148:5;41145:34;41135:62;;41193:1;41190;41183:12;41135:62;41083:120;:::o;41209:122::-;41282:24;41300:5;41282:24;:::i;:::-;41275:5;41272:35;41262:63;;41321:1;41318;41311:12;41262:63;41209:122;:::o

Swarm Source

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