ETH Price: $2,979.81 (+4.01%)
Gas: 1 Gwei

Token

Eth Apes Business (EAB)
 

Overview

Max Total Supply

5,000 EAB

Holders

1,014

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 EAB
0x0f211999060608ac300d49dd43f51c0163688859
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:
EAB

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 13 : EAB.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract EAB is ERC721A, Ownable, ReentrancyGuard {

    string public baseURI;  
    uint public price = 10000000000000000; //0.01 ETH
    uint public maxPerTx = 10; 
    uint public maxPerWallet = 90;
    uint public totalFree = 500;
    uint public maxSupply = 5000;
    uint public freeMint = 2;
    bool public mintEnabled;
    mapping (address => uint256) public addressMint;
    constructor() ERC721A("Eth Apes Business", "EAB",10,5000){}

    function mint(uint256 amount) external payable
    {
        uint cost = price;
        if(msg.value == 0 && totalSupply() + amount <= totalFree) {
           require(addressMint[msg.sender] + amount <= freeMint,"Limit");
           cost = 0;
           addressMint[msg.sender] += amount;
        }
        require(msg.value == amount * cost,"Insufficient Funds");
        require(totalSupply() + amount <= maxSupply,"Soldout");
        require(mintEnabled, "Minting Pause");
        require(numberMinted(msg.sender) + amount <= maxPerWallet,"Max Per Wallet");
        require(amount <= maxPerTx, "Limit Per Transaction");
        _safeMint(msg.sender, amount);
    }

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

    function ownerBatchMint(uint256 amount) external onlyOwner
    {
        require(totalSupply() + amount <= maxSupply,"too many!");

        _safeMint(msg.sender, amount);
    }

    function toggleMinting() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

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

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

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

    function setTotalFree(uint256 totalFree_) external onlyOwner {
        totalFree = totalFree_;
    }
    function setFreeMint(uint256 freeMint_) external onlyOwner {
        freeMint = freeMint_;
    }

    function setMaxPerTx(uint256 maxPerTx_) external onlyOwner {
        maxPerTx = maxPerTx_;
    }

    function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner {
        maxPerWallet = maxPerWallet_;
    }

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

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

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

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

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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 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 v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 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.5.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

                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.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

    /**
     * @dev 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":[{"internalType":"address","name":"","type":"address"}],"name":"addressMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","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":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMint_","type":"uint256"}],"name":"setFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600080556000600755662386f26fc10000600b55600a600c55605a600d556101f4600e55611388600f5560026010553480156200004057600080fd5b506040518060400160405280601181526020017f457468204170657320427573696e6573730000000000000000000000000000008152506040518060400160405280600381526020017f4541420000000000000000000000000000000000000000000000000000000000815250600a61138860008111620000f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ef90620003a0565b60405180910390fd5b600082116200013e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000135906200037e565b60405180910390fd5b83600190805190602001906200015692919062000280565b5082600290805190602001906200016f92919062000280565b508160a08181525050806080818152505050505050620001a462000198620001b260201b60201c565b620001ba60201b60201c565b6001600981905550620004d6565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028e90620003d3565b90600052602060002090601f016020900481019282620002b25760008555620002fe565b82601f10620002cd57805160ff1916838001178555620002fe565b82800160010185558215620002fe579182015b82811115620002fd578251825591602001919060010190620002e0565b5b5090506200030d919062000311565b5090565b5b808211156200032c57600081600090555060010162000312565b5090565b60006200033f602783620003c2565b91506200034c8262000438565b604082019050919050565b600062000366602e83620003c2565b9150620003738262000487565b604082019050919050565b60006020820190508181036000830152620003998162000330565b9050919050565b60006020820190508181036000830152620003bb8162000357565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003ec57607f821691505b6020821081141562000403576200040262000409565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516155656200051160003960008181612c3a01528181612c63015261340d0152600081816129c201526129f601526155656000f3fe6080604052600436106102675760003560e01c80637294e1ef11610144578063b88d4fde116100b6578063d7224ba01161007a578063d7224ba014610909578063dc33e68114610934578063e268e4d314610971578063e985e9c51461099a578063f2fde38b146109d7578063f968adbe14610a0057610267565b8063b88d4fde14610824578063c6f6f2161461084d578063c87b56dd14610876578063d1239730146108b3578063d5abeb01146108de57610267565b806391b7f5ed1161010857806391b7f5ed146107235780639231ab2a1461074c57806395d89b4114610789578063a035b1fe146107b4578063a0712d68146107df578063a22cb465146107fb57610267565b80637294e1ef146106525780637d55094d1461068f5780638ba4cc3c146106a65780638da5cb5b146106cf5780638db89f07146106fa57610267565b806342842e0e116101dd5780635b70ea9f116101a15780635b70ea9f146105425780636352211e1461056d5780636c0360eb146105aa57806370a08231146105d557806370e0936914610612578063715018a61461063b57610267565b806342842e0e1461045f578063453c2310146104885780634f6ccce7146104b357806355f804b3146104f0578063563aaf111461051957610267565b8063228025e81161022f578063228025e81461036557806323b872dd1461038e5780632d20fb60146103b75780632f745c59146103e0578063333e44e61461041d5780633ccfd60b1461044857610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806318160ddd1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613c1d565b610a2b565b6040516102a09190614331565b60405180910390f35b3480156102b557600080fd5b506102be610b75565b6040516102cb919061434c565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613cc4565b610c07565b60405161030891906142ca565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613bdd565b610c8c565b005b34801561034657600080fd5b5061034f610da5565b60405161035c9190614789565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613cc4565b610dae565b005b34801561039a57600080fd5b506103b560048036038101906103b09190613ac7565b610e34565b005b3480156103c357600080fd5b506103de60048036038101906103d99190613cc4565b610e44565b005b3480156103ec57600080fd5b5061040760048036038101906104029190613bdd565b610f22565b6040516104149190614789565b60405180910390f35b34801561042957600080fd5b50610432611120565b60405161043f9190614789565b60405180910390f35b34801561045457600080fd5b5061045d611126565b005b34801561046b57600080fd5b5061048660048036038101906104819190613ac7565b6112a7565b005b34801561049457600080fd5b5061049d6112c7565b6040516104aa9190614789565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613cc4565b6112cd565b6040516104e79190614789565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190613c77565b611320565b005b34801561052557600080fd5b50610540600480360381019061053b9190613cc4565b6113b2565b005b34801561054e57600080fd5b50610557611438565b6040516105649190614789565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190613cc4565b61143e565b6040516105a191906142ca565b60405180910390f35b3480156105b657600080fd5b506105bf611454565b6040516105cc919061434c565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613a5a565b6114e2565b6040516106099190614789565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190613cc4565b6115cb565b005b34801561064757600080fd5b50610650611651565b005b34801561065e57600080fd5b5061067960048036038101906106749190613a5a565b6116d9565b6040516106869190614789565b60405180910390f35b34801561069b57600080fd5b506106a46116f1565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190613bdd565b611799565b005b3480156106db57600080fd5b506106e4611823565b6040516106f191906142ca565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190613cc4565b61184d565b005b34801561072f57600080fd5b5061074a60048036038101906107459190613cc4565b61192d565b005b34801561075857600080fd5b50610773600480360381019061076e9190613cc4565b6119b3565b604051610780919061476e565b60405180910390f35b34801561079557600080fd5b5061079e6119cb565b6040516107ab919061434c565b60405180910390f35b3480156107c057600080fd5b506107c9611a5d565b6040516107d69190614789565b60405180910390f35b6107f960048036038101906107f49190613cc4565b611a63565b005b34801561080757600080fd5b50610822600480360381019061081d9190613b9d565b611d1b565b005b34801561083057600080fd5b5061084b60048036038101906108469190613b1a565b611e9c565b005b34801561085957600080fd5b50610874600480360381019061086f9190613cc4565b611ef8565b005b34801561088257600080fd5b5061089d60048036038101906108989190613cc4565b611f7e565b6040516108aa919061434c565b60405180910390f35b3480156108bf57600080fd5b506108c8612025565b6040516108d59190614331565b60405180910390f35b3480156108ea57600080fd5b506108f3612038565b6040516109009190614789565b60405180910390f35b34801561091557600080fd5b5061091e61203e565b60405161092b9190614789565b60405180910390f35b34801561094057600080fd5b5061095b60048036038101906109569190613a5a565b612044565b6040516109689190614789565b60405180910390f35b34801561097d57600080fd5b5061099860048036038101906109939190613cc4565b612056565b005b3480156109a657600080fd5b506109c160048036038101906109bc9190613a87565b6120dc565b6040516109ce9190614331565b60405180910390f35b3480156109e357600080fd5b506109fe60048036038101906109f99190613a5a565b612170565b005b348015610a0c57600080fd5b50610a15612268565b604051610a229190614789565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b6e5750610b6d8261226e565b5b9050919050565b606060018054610b8490614ae7565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb090614ae7565b8015610bfd5780601f10610bd257610100808354040283529160200191610bfd565b820191906000526020600020905b815481529060010190602001808311610be057829003601f168201915b5050505050905090565b6000610c12826122d8565b610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c489061472e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c978261143e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff906145ee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d276122e5565b73ffffffffffffffffffffffffffffffffffffffff161480610d565750610d5581610d506122e5565b6120dc565b5b610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c906144ee565b60405180910390fd5b610da08383836122ed565b505050565b60008054905090565b610db66122e5565b73ffffffffffffffffffffffffffffffffffffffff16610dd4611823565b73ffffffffffffffffffffffffffffffffffffffff1614610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e219061456e565b60405180910390fd5b80600f8190555050565b610e3f83838361239f565b505050565b610e4c6122e5565b73ffffffffffffffffffffffffffffffffffffffff16610e6a611823565b73ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb79061456e565b60405180910390fd5b60026009541415610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd906146ee565b60405180910390fd5b6002600981905550610f1781612958565b600160098190555050565b6000610f2d836114e2565b8210610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f659061436e565b60405180910390fd5b6000610f78610da5565b905060008060005b838110156110de576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461107257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110ca57868414156110bb57819550505050505061111a565b83806110c690614b4a565b9450505b5080806110d690614b4a565b915050610f80565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611111906146ae565b60405180910390fd5b92915050565b600e5481565b61112e6122e5565b73ffffffffffffffffffffffffffffffffffffffff1661114c611823565b73ffffffffffffffffffffffffffffffffffffffff16146111a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111999061456e565b60405180910390fd5b600260095414156111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df906146ee565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611216906142b5565b60006040518083038185875af1925050503d8060008114611253576040519150601f19603f3d011682016040523d82523d6000602084013e611258565b606091505b505090508061129c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112939061460e565b60405180910390fd5b506001600981905550565b6112c283838360405180602001604052806000815250611e9c565b505050565b600d5481565b60006112d7610da5565b8210611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f9061442e565b60405180910390fd5b819050919050565b6113286122e5565b73ffffffffffffffffffffffffffffffffffffffff16611346611823565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113939061456e565b60405180910390fd5b8181600a91906113ad92919061384e565b505050565b6113ba6122e5565b73ffffffffffffffffffffffffffffffffffffffff166113d8611823565b73ffffffffffffffffffffffffffffffffffffffff161461142e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114259061456e565b60405180910390fd5b80600e8190555050565b60105481565b600061144982612be6565b600001519050919050565b600a805461146190614ae7565b80601f016020809104026020016040519081016040528092919081815260200182805461148d90614ae7565b80156114da5780601f106114af576101008083540402835291602001916114da565b820191906000526020600020905b8154815290600101906020018083116114bd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a9061452e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6115d36122e5565b73ffffffffffffffffffffffffffffffffffffffff166115f1611823565b73ffffffffffffffffffffffffffffffffffffffff1614611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e9061456e565b60405180910390fd5b8060108190555050565b6116596122e5565b73ffffffffffffffffffffffffffffffffffffffff16611677611823565b73ffffffffffffffffffffffffffffffffffffffff16146116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c49061456e565b60405180910390fd5b6116d76000612de9565b565b60126020528060005260406000206000915090505481565b6116f96122e5565b73ffffffffffffffffffffffffffffffffffffffff16611717611823565b73ffffffffffffffffffffffffffffffffffffffff161461176d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117649061456e565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6117a16122e5565b73ffffffffffffffffffffffffffffffffffffffff166117bf611823565b73ffffffffffffffffffffffffffffffffffffffff1614611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c9061456e565b60405180910390fd5b61181f8282612eaf565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118556122e5565b73ffffffffffffffffffffffffffffffffffffffff16611873611823565b73ffffffffffffffffffffffffffffffffffffffff16146118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c09061456e565b60405180910390fd5b600f54816118d5610da5565b6118df919061488e565b1115611920576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611917906144ae565b60405180910390fd5b61192a3382612eaf565b50565b6119356122e5565b73ffffffffffffffffffffffffffffffffffffffff16611953611823565b73ffffffffffffffffffffffffffffffffffffffff16146119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a09061456e565b60405180910390fd5b80600b8190555050565b6119bb6138d4565b6119c482612be6565b9050919050565b6060600280546119da90614ae7565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0690614ae7565b8015611a535780601f10611a2857610100808354040283529160200191611a53565b820191906000526020600020905b815481529060010190602001808311611a3657829003601f168201915b5050505050905090565b600b5481565b6000600b549050600034148015611a8e5750600e5482611a81610da5565b611a8b919061488e565b11155b15611b7d5760105482601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ae1919061488e565b1115611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b199061468e565b60405180910390fd5b6000905081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b75919061488e565b925050819055505b8082611b899190614915565b3414611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc19061440e565b60405180910390fd5b600f5482611bd6610da5565b611be0919061488e565b1115611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c18906144ce565b60405180910390fd5b601160009054906101000a900460ff16611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c67906143ee565b60405180910390fd5b600d5482611c7d33612044565b611c87919061488e565b1115611cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbf9061448e565b60405180910390fd5b600c54821115611d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d049061438e565b60405180910390fd5b611d173383612eaf565b5050565b611d236122e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d88906145ae565b60405180910390fd5b8060066000611d9e6122e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e4b6122e5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e909190614331565b60405180910390a35050565b611ea784848461239f565b611eb384848484612ecd565b611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee99061462e565b60405180910390fd5b50505050565b611f006122e5565b73ffffffffffffffffffffffffffffffffffffffff16611f1e611823565b73ffffffffffffffffffffffffffffffffffffffff1614611f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6b9061456e565b60405180910390fd5b80600c8190555050565b6060611f89826122d8565b611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf9061458e565b60405180910390fd5b6000611fd2613064565b90506000815111611ff2576040518060200160405280600081525061201d565b80611ffc846130f6565b60405160200161200d929190614291565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b600f5481565b60075481565b600061204f82613257565b9050919050565b61205e6122e5565b73ffffffffffffffffffffffffffffffffffffffff1661207c611823565b73ffffffffffffffffffffffffffffffffffffffff16146120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c99061456e565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121786122e5565b73ffffffffffffffffffffffffffffffffffffffff16612196611823565b73ffffffffffffffffffffffffffffffffffffffff16146121ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e39061456e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561225c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612253906143ae565b60405180910390fd5b61226581612de9565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006123aa82612be6565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166123d16122e5565b73ffffffffffffffffffffffffffffffffffffffff16148061242d57506123f66122e5565b73ffffffffffffffffffffffffffffffffffffffff1661241584610c07565b73ffffffffffffffffffffffffffffffffffffffff16145b80612449575061244882600001516124436122e5565b6120dc565b5b90508061248b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612482906145ce565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f49061454e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561256d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125649061444e565b60405180910390fd5b61257a8585856001613340565b61258a60008484600001516122ed565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125f8919061496f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661269c9190614848565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846127a2919061488e565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128e857612818816122d8565b156128e7576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129508686866001613346565b505050505050565b60006007549050600082116129a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129999061450e565b60405180910390fd5b6000600183836129b2919061488e565b6129bc91906149a3565b905060017f00000000000000000000000000000000000000000000000000000000000000006129eb91906149a3565b811115612a225760017f0000000000000000000000000000000000000000000000000000000000000000612a1f91906149a3565b90505b612a2b816122d8565b612a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a61906146ce565b60405180910390fd5b60008290505b818111612bcd57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612bba576000612aed82612be6565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612bc590614b4a565b915050612a70565b50600181612bdb919061488e565b600781905550505050565b612bee6138d4565b612bf7826122d8565b612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d906143ce565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612c9a5760017f000000000000000000000000000000000000000000000000000000000000000084612c8d91906149a3565b612c97919061488e565b90505b60008390505b818110612da8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d9457809350505050612de4565b508080612da090614abd565b915050612ca0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddb9061470e565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ec982826040518060200160405280600081525061334c565b5050565b6000612eee8473ffffffffffffffffffffffffffffffffffffffff1661382b565b15613057578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f176122e5565b8786866040518563ffffffff1660e01b8152600401612f3994939291906142e5565b602060405180830381600087803b158015612f5357600080fd5b505af1925050508015612f8457506040513d601f19601f82011682018060405250810190612f819190613c4a565b60015b613007573d8060008114612fb4576040519150601f19603f3d011682016040523d82523d6000602084013e612fb9565b606091505b50600081511415612fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff69061462e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061305c565b600190505b949350505050565b6060600a805461307390614ae7565b80601f016020809104026020016040519081016040528092919081815260200182805461309f90614ae7565b80156130ec5780601f106130c1576101008083540402835291602001916130ec565b820191906000526020600020905b8154815290600101906020018083116130cf57829003601f168201915b5050505050905090565b6060600082141561313e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613252565b600082905060005b6000821461317057808061315990614b4a565b915050600a8261316991906148e4565b9150613146565b60008167ffffffffffffffff81111561318c5761318b614c80565b5b6040519080825280601f01601f1916602001820160405280156131be5781602001600182028036833780820191505090505b5090505b6000851461324b576001826131d791906149a3565b9150600a856131e69190614b93565b60306131f2919061488e565b60f81b81838151811061320857613207614c51565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561324491906148e4565b94506131c2565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132bf9061446e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156133c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b99061466e565b60405180910390fd5b6133cb816122d8565b1561340b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134029061464e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561346e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134659061474e565b60405180910390fd5b61347b6000858386613340565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516135789190614848565b6fffffffffffffffffffffffffffffffff16815260200185836020015161359f9190614848565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561380e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137ae6000888488612ecd565b6137ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137e49061462e565b60405180910390fd5b81806137f890614b4a565b925050808061380690614b4a565b91505061373d565b50806000819055506138236000878588613346565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461385a90614ae7565b90600052602060002090601f01602090048101928261387c57600085556138c3565b82601f1061389557803560ff19168380011785556138c3565b828001600101855582156138c3579182015b828111156138c25782358255916020019190600101906138a7565b5b5090506138d0919061390e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561392757600081600090555060010161390f565b5090565b600061393e613939846147c9565b6147a4565b90508281526020810184848401111561395a57613959614cbe565b5b613965848285614a7b565b509392505050565b60008135905061397c816154d3565b92915050565b600081359050613991816154ea565b92915050565b6000813590506139a681615501565b92915050565b6000815190506139bb81615501565b92915050565b600082601f8301126139d6576139d5614cb4565b5b81356139e684826020860161392b565b91505092915050565b60008083601f840112613a0557613a04614cb4565b5b8235905067ffffffffffffffff811115613a2257613a21614caf565b5b602083019150836001820283011115613a3e57613a3d614cb9565b5b9250929050565b600081359050613a5481615518565b92915050565b600060208284031215613a7057613a6f614cc8565b5b6000613a7e8482850161396d565b91505092915050565b60008060408385031215613a9e57613a9d614cc8565b5b6000613aac8582860161396d565b9250506020613abd8582860161396d565b9150509250929050565b600080600060608486031215613ae057613adf614cc8565b5b6000613aee8682870161396d565b9350506020613aff8682870161396d565b9250506040613b1086828701613a45565b9150509250925092565b60008060008060808587031215613b3457613b33614cc8565b5b6000613b428782880161396d565b9450506020613b538782880161396d565b9350506040613b6487828801613a45565b925050606085013567ffffffffffffffff811115613b8557613b84614cc3565b5b613b91878288016139c1565b91505092959194509250565b60008060408385031215613bb457613bb3614cc8565b5b6000613bc28582860161396d565b9250506020613bd385828601613982565b9150509250929050565b60008060408385031215613bf457613bf3614cc8565b5b6000613c028582860161396d565b9250506020613c1385828601613a45565b9150509250929050565b600060208284031215613c3357613c32614cc8565b5b6000613c4184828501613997565b91505092915050565b600060208284031215613c6057613c5f614cc8565b5b6000613c6e848285016139ac565b91505092915050565b60008060208385031215613c8e57613c8d614cc8565b5b600083013567ffffffffffffffff811115613cac57613cab614cc3565b5b613cb8858286016139ef565b92509250509250929050565b600060208284031215613cda57613cd9614cc8565b5b6000613ce884828501613a45565b91505092915050565b613cfa816149d7565b82525050565b613d09816149d7565b82525050565b613d18816149e9565b82525050565b6000613d29826147fa565b613d338185614810565b9350613d43818560208601614a8a565b613d4c81614ccd565b840191505092915050565b6000613d6282614805565b613d6c818561482c565b9350613d7c818560208601614a8a565b613d8581614ccd565b840191505092915050565b6000613d9b82614805565b613da5818561483d565b9350613db5818560208601614a8a565b80840191505092915050565b6000613dce60228361482c565b9150613dd982614cde565b604082019050919050565b6000613df160158361482c565b9150613dfc82614d2d565b602082019050919050565b6000613e1460268361482c565b9150613e1f82614d56565b604082019050919050565b6000613e37602a8361482c565b9150613e4282614da5565b604082019050919050565b6000613e5a600d8361482c565b9150613e6582614df4565b602082019050919050565b6000613e7d60128361482c565b9150613e8882614e1d565b602082019050919050565b6000613ea060238361482c565b9150613eab82614e46565b604082019050919050565b6000613ec360258361482c565b9150613ece82614e95565b604082019050919050565b6000613ee660318361482c565b9150613ef182614ee4565b604082019050919050565b6000613f09600e8361482c565b9150613f1482614f33565b602082019050919050565b6000613f2c60098361482c565b9150613f3782614f5c565b602082019050919050565b6000613f4f60078361482c565b9150613f5a82614f85565b602082019050919050565b6000613f7260398361482c565b9150613f7d82614fae565b604082019050919050565b6000613f9560188361482c565b9150613fa082614ffd565b602082019050919050565b6000613fb8602b8361482c565b9150613fc382615026565b604082019050919050565b6000613fdb60268361482c565b9150613fe682615075565b604082019050919050565b6000613ffe60208361482c565b9150614009826150c4565b602082019050919050565b6000614021602f8361482c565b915061402c826150ed565b604082019050919050565b6000614044601a8361482c565b915061404f8261513c565b602082019050919050565b600061406760328361482c565b915061407282615165565b604082019050919050565b600061408a60228361482c565b9150614095826151b4565b604082019050919050565b60006140ad600083614821565b91506140b882615203565b600082019050919050565b60006140d060108361482c565b91506140db82615206565b602082019050919050565b60006140f360338361482c565b91506140fe8261522f565b604082019050919050565b6000614116601d8361482c565b91506141218261527e565b602082019050919050565b600061413960218361482c565b9150614144826152a7565b604082019050919050565b600061415c60058361482c565b9150614167826152f6565b602082019050919050565b600061417f602e8361482c565b915061418a8261531f565b604082019050919050565b60006141a260268361482c565b91506141ad8261536e565b604082019050919050565b60006141c5601f8361482c565b91506141d0826153bd565b602082019050919050565b60006141e8602f8361482c565b91506141f3826153e6565b604082019050919050565b600061420b602d8361482c565b915061421682615435565b604082019050919050565b600061422e60228361482c565b915061423982615484565b604082019050919050565b60408201600082015161425a6000850182613cf1565b50602082015161426d6020850182614282565b50505050565b61427c81614a5d565b82525050565b61428b81614a67565b82525050565b600061429d8285613d90565b91506142a98284613d90565b91508190509392505050565b60006142c0826140a0565b9150819050919050565b60006020820190506142df6000830184613d00565b92915050565b60006080820190506142fa6000830187613d00565b6143076020830186613d00565b6143146040830185614273565b81810360608301526143268184613d1e565b905095945050505050565b60006020820190506143466000830184613d0f565b92915050565b600060208201905081810360008301526143668184613d57565b905092915050565b6000602082019050818103600083015261438781613dc1565b9050919050565b600060208201905081810360008301526143a781613de4565b9050919050565b600060208201905081810360008301526143c781613e07565b9050919050565b600060208201905081810360008301526143e781613e2a565b9050919050565b6000602082019050818103600083015261440781613e4d565b9050919050565b6000602082019050818103600083015261442781613e70565b9050919050565b6000602082019050818103600083015261444781613e93565b9050919050565b6000602082019050818103600083015261446781613eb6565b9050919050565b6000602082019050818103600083015261448781613ed9565b9050919050565b600060208201905081810360008301526144a781613efc565b9050919050565b600060208201905081810360008301526144c781613f1f565b9050919050565b600060208201905081810360008301526144e781613f42565b9050919050565b6000602082019050818103600083015261450781613f65565b9050919050565b6000602082019050818103600083015261452781613f88565b9050919050565b6000602082019050818103600083015261454781613fab565b9050919050565b6000602082019050818103600083015261456781613fce565b9050919050565b6000602082019050818103600083015261458781613ff1565b9050919050565b600060208201905081810360008301526145a781614014565b9050919050565b600060208201905081810360008301526145c781614037565b9050919050565b600060208201905081810360008301526145e78161405a565b9050919050565b600060208201905081810360008301526146078161407d565b9050919050565b60006020820190508181036000830152614627816140c3565b9050919050565b60006020820190508181036000830152614647816140e6565b9050919050565b6000602082019050818103600083015261466781614109565b9050919050565b600060208201905081810360008301526146878161412c565b9050919050565b600060208201905081810360008301526146a78161414f565b9050919050565b600060208201905081810360008301526146c781614172565b9050919050565b600060208201905081810360008301526146e781614195565b9050919050565b60006020820190508181036000830152614707816141b8565b9050919050565b60006020820190508181036000830152614727816141db565b9050919050565b60006020820190508181036000830152614747816141fe565b9050919050565b6000602082019050818103600083015261476781614221565b9050919050565b60006040820190506147836000830184614244565b92915050565b600060208201905061479e6000830184614273565b92915050565b60006147ae6147bf565b90506147ba8282614b19565b919050565b6000604051905090565b600067ffffffffffffffff8211156147e4576147e3614c80565b5b6147ed82614ccd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061485382614a21565b915061485e83614a21565b9250826fffffffffffffffffffffffffffffffff0382111561488357614882614bc4565b5b828201905092915050565b600061489982614a5d565b91506148a483614a5d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148d9576148d8614bc4565b5b828201905092915050565b60006148ef82614a5d565b91506148fa83614a5d565b92508261490a57614909614bf3565b5b828204905092915050565b600061492082614a5d565b915061492b83614a5d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561496457614963614bc4565b5b828202905092915050565b600061497a82614a21565b915061498583614a21565b92508282101561499857614997614bc4565b5b828203905092915050565b60006149ae82614a5d565b91506149b983614a5d565b9250828210156149cc576149cb614bc4565b5b828203905092915050565b60006149e282614a3d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614aa8578082015181840152602081019050614a8d565b83811115614ab7576000848401525b50505050565b6000614ac882614a5d565b91506000821415614adc57614adb614bc4565b5b600182039050919050565b60006002820490506001821680614aff57607f821691505b60208210811415614b1357614b12614c22565b5b50919050565b614b2282614ccd565b810181811067ffffffffffffffff82111715614b4157614b40614c80565b5b80604052505050565b6000614b5582614a5d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b8857614b87614bc4565b5b600182019050919050565b6000614b9e82614a5d565b9150614ba983614a5d565b925082614bb957614bb8614bf3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4c696d697420506572205472616e73616374696f6e0000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720506175736500000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4d6178205065722057616c6c6574000000000000000000000000000000000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f536f6c646f757400000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4c696d6974000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6154dc816149d7565b81146154e757600080fd5b50565b6154f3816149e9565b81146154fe57600080fd5b50565b61550a816149f5565b811461551557600080fd5b50565b61552181614a5d565b811461552c57600080fd5b5056fea2646970667358221220db24b9c8dcce7fbb0a9217dd7a370374e9fbf43cc9810710f7c6c5424608021664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102675760003560e01c80637294e1ef11610144578063b88d4fde116100b6578063d7224ba01161007a578063d7224ba014610909578063dc33e68114610934578063e268e4d314610971578063e985e9c51461099a578063f2fde38b146109d7578063f968adbe14610a0057610267565b8063b88d4fde14610824578063c6f6f2161461084d578063c87b56dd14610876578063d1239730146108b3578063d5abeb01146108de57610267565b806391b7f5ed1161010857806391b7f5ed146107235780639231ab2a1461074c57806395d89b4114610789578063a035b1fe146107b4578063a0712d68146107df578063a22cb465146107fb57610267565b80637294e1ef146106525780637d55094d1461068f5780638ba4cc3c146106a65780638da5cb5b146106cf5780638db89f07146106fa57610267565b806342842e0e116101dd5780635b70ea9f116101a15780635b70ea9f146105425780636352211e1461056d5780636c0360eb146105aa57806370a08231146105d557806370e0936914610612578063715018a61461063b57610267565b806342842e0e1461045f578063453c2310146104885780634f6ccce7146104b357806355f804b3146104f0578063563aaf111461051957610267565b8063228025e81161022f578063228025e81461036557806323b872dd1461038e5780632d20fb60146103b75780632f745c59146103e0578063333e44e61461041d5780633ccfd60b1461044857610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806318160ddd1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613c1d565b610a2b565b6040516102a09190614331565b60405180910390f35b3480156102b557600080fd5b506102be610b75565b6040516102cb919061434c565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613cc4565b610c07565b60405161030891906142ca565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613bdd565b610c8c565b005b34801561034657600080fd5b5061034f610da5565b60405161035c9190614789565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613cc4565b610dae565b005b34801561039a57600080fd5b506103b560048036038101906103b09190613ac7565b610e34565b005b3480156103c357600080fd5b506103de60048036038101906103d99190613cc4565b610e44565b005b3480156103ec57600080fd5b5061040760048036038101906104029190613bdd565b610f22565b6040516104149190614789565b60405180910390f35b34801561042957600080fd5b50610432611120565b60405161043f9190614789565b60405180910390f35b34801561045457600080fd5b5061045d611126565b005b34801561046b57600080fd5b5061048660048036038101906104819190613ac7565b6112a7565b005b34801561049457600080fd5b5061049d6112c7565b6040516104aa9190614789565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613cc4565b6112cd565b6040516104e79190614789565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190613c77565b611320565b005b34801561052557600080fd5b50610540600480360381019061053b9190613cc4565b6113b2565b005b34801561054e57600080fd5b50610557611438565b6040516105649190614789565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f9190613cc4565b61143e565b6040516105a191906142ca565b60405180910390f35b3480156105b657600080fd5b506105bf611454565b6040516105cc919061434c565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613a5a565b6114e2565b6040516106099190614789565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190613cc4565b6115cb565b005b34801561064757600080fd5b50610650611651565b005b34801561065e57600080fd5b5061067960048036038101906106749190613a5a565b6116d9565b6040516106869190614789565b60405180910390f35b34801561069b57600080fd5b506106a46116f1565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190613bdd565b611799565b005b3480156106db57600080fd5b506106e4611823565b6040516106f191906142ca565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190613cc4565b61184d565b005b34801561072f57600080fd5b5061074a60048036038101906107459190613cc4565b61192d565b005b34801561075857600080fd5b50610773600480360381019061076e9190613cc4565b6119b3565b604051610780919061476e565b60405180910390f35b34801561079557600080fd5b5061079e6119cb565b6040516107ab919061434c565b60405180910390f35b3480156107c057600080fd5b506107c9611a5d565b6040516107d69190614789565b60405180910390f35b6107f960048036038101906107f49190613cc4565b611a63565b005b34801561080757600080fd5b50610822600480360381019061081d9190613b9d565b611d1b565b005b34801561083057600080fd5b5061084b60048036038101906108469190613b1a565b611e9c565b005b34801561085957600080fd5b50610874600480360381019061086f9190613cc4565b611ef8565b005b34801561088257600080fd5b5061089d60048036038101906108989190613cc4565b611f7e565b6040516108aa919061434c565b60405180910390f35b3480156108bf57600080fd5b506108c8612025565b6040516108d59190614331565b60405180910390f35b3480156108ea57600080fd5b506108f3612038565b6040516109009190614789565b60405180910390f35b34801561091557600080fd5b5061091e61203e565b60405161092b9190614789565b60405180910390f35b34801561094057600080fd5b5061095b60048036038101906109569190613a5a565b612044565b6040516109689190614789565b60405180910390f35b34801561097d57600080fd5b5061099860048036038101906109939190613cc4565b612056565b005b3480156109a657600080fd5b506109c160048036038101906109bc9190613a87565b6120dc565b6040516109ce9190614331565b60405180910390f35b3480156109e357600080fd5b506109fe60048036038101906109f99190613a5a565b612170565b005b348015610a0c57600080fd5b50610a15612268565b604051610a229190614789565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b6e5750610b6d8261226e565b5b9050919050565b606060018054610b8490614ae7565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb090614ae7565b8015610bfd5780601f10610bd257610100808354040283529160200191610bfd565b820191906000526020600020905b815481529060010190602001808311610be057829003601f168201915b5050505050905090565b6000610c12826122d8565b610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c489061472e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c978261143e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff906145ee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d276122e5565b73ffffffffffffffffffffffffffffffffffffffff161480610d565750610d5581610d506122e5565b6120dc565b5b610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c906144ee565b60405180910390fd5b610da08383836122ed565b505050565b60008054905090565b610db66122e5565b73ffffffffffffffffffffffffffffffffffffffff16610dd4611823565b73ffffffffffffffffffffffffffffffffffffffff1614610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e219061456e565b60405180910390fd5b80600f8190555050565b610e3f83838361239f565b505050565b610e4c6122e5565b73ffffffffffffffffffffffffffffffffffffffff16610e6a611823565b73ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb79061456e565b60405180910390fd5b60026009541415610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd906146ee565b60405180910390fd5b6002600981905550610f1781612958565b600160098190555050565b6000610f2d836114e2565b8210610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f659061436e565b60405180910390fd5b6000610f78610da5565b905060008060005b838110156110de576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461107257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110ca57868414156110bb57819550505050505061111a565b83806110c690614b4a565b9450505b5080806110d690614b4a565b915050610f80565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611111906146ae565b60405180910390fd5b92915050565b600e5481565b61112e6122e5565b73ffffffffffffffffffffffffffffffffffffffff1661114c611823565b73ffffffffffffffffffffffffffffffffffffffff16146111a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111999061456e565b60405180910390fd5b600260095414156111e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111df906146ee565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611216906142b5565b60006040518083038185875af1925050503d8060008114611253576040519150601f19603f3d011682016040523d82523d6000602084013e611258565b606091505b505090508061129c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112939061460e565b60405180910390fd5b506001600981905550565b6112c283838360405180602001604052806000815250611e9c565b505050565b600d5481565b60006112d7610da5565b8210611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f9061442e565b60405180910390fd5b819050919050565b6113286122e5565b73ffffffffffffffffffffffffffffffffffffffff16611346611823565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113939061456e565b60405180910390fd5b8181600a91906113ad92919061384e565b505050565b6113ba6122e5565b73ffffffffffffffffffffffffffffffffffffffff166113d8611823565b73ffffffffffffffffffffffffffffffffffffffff161461142e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114259061456e565b60405180910390fd5b80600e8190555050565b60105481565b600061144982612be6565b600001519050919050565b600a805461146190614ae7565b80601f016020809104026020016040519081016040528092919081815260200182805461148d90614ae7565b80156114da5780601f106114af576101008083540402835291602001916114da565b820191906000526020600020905b8154815290600101906020018083116114bd57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a9061452e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6115d36122e5565b73ffffffffffffffffffffffffffffffffffffffff166115f1611823565b73ffffffffffffffffffffffffffffffffffffffff1614611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e9061456e565b60405180910390fd5b8060108190555050565b6116596122e5565b73ffffffffffffffffffffffffffffffffffffffff16611677611823565b73ffffffffffffffffffffffffffffffffffffffff16146116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c49061456e565b60405180910390fd5b6116d76000612de9565b565b60126020528060005260406000206000915090505481565b6116f96122e5565b73ffffffffffffffffffffffffffffffffffffffff16611717611823565b73ffffffffffffffffffffffffffffffffffffffff161461176d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117649061456e565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6117a16122e5565b73ffffffffffffffffffffffffffffffffffffffff166117bf611823565b73ffffffffffffffffffffffffffffffffffffffff1614611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c9061456e565b60405180910390fd5b61181f8282612eaf565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118556122e5565b73ffffffffffffffffffffffffffffffffffffffff16611873611823565b73ffffffffffffffffffffffffffffffffffffffff16146118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c09061456e565b60405180910390fd5b600f54816118d5610da5565b6118df919061488e565b1115611920576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611917906144ae565b60405180910390fd5b61192a3382612eaf565b50565b6119356122e5565b73ffffffffffffffffffffffffffffffffffffffff16611953611823565b73ffffffffffffffffffffffffffffffffffffffff16146119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a09061456e565b60405180910390fd5b80600b8190555050565b6119bb6138d4565b6119c482612be6565b9050919050565b6060600280546119da90614ae7565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0690614ae7565b8015611a535780601f10611a2857610100808354040283529160200191611a53565b820191906000526020600020905b815481529060010190602001808311611a3657829003601f168201915b5050505050905090565b600b5481565b6000600b549050600034148015611a8e5750600e5482611a81610da5565b611a8b919061488e565b11155b15611b7d5760105482601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ae1919061488e565b1115611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b199061468e565b60405180910390fd5b6000905081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b75919061488e565b925050819055505b8082611b899190614915565b3414611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc19061440e565b60405180910390fd5b600f5482611bd6610da5565b611be0919061488e565b1115611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c18906144ce565b60405180910390fd5b601160009054906101000a900460ff16611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c67906143ee565b60405180910390fd5b600d5482611c7d33612044565b611c87919061488e565b1115611cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbf9061448e565b60405180910390fd5b600c54821115611d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d049061438e565b60405180910390fd5b611d173383612eaf565b5050565b611d236122e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d88906145ae565b60405180910390fd5b8060066000611d9e6122e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e4b6122e5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e909190614331565b60405180910390a35050565b611ea784848461239f565b611eb384848484612ecd565b611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee99061462e565b60405180910390fd5b50505050565b611f006122e5565b73ffffffffffffffffffffffffffffffffffffffff16611f1e611823565b73ffffffffffffffffffffffffffffffffffffffff1614611f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6b9061456e565b60405180910390fd5b80600c8190555050565b6060611f89826122d8565b611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf9061458e565b60405180910390fd5b6000611fd2613064565b90506000815111611ff2576040518060200160405280600081525061201d565b80611ffc846130f6565b60405160200161200d929190614291565b6040516020818303038152906040525b915050919050565b601160009054906101000a900460ff1681565b600f5481565b60075481565b600061204f82613257565b9050919050565b61205e6122e5565b73ffffffffffffffffffffffffffffffffffffffff1661207c611823565b73ffffffffffffffffffffffffffffffffffffffff16146120d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c99061456e565b60405180910390fd5b80600d8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121786122e5565b73ffffffffffffffffffffffffffffffffffffffff16612196611823565b73ffffffffffffffffffffffffffffffffffffffff16146121ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e39061456e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561225c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612253906143ae565b60405180910390fd5b61226581612de9565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006123aa82612be6565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166123d16122e5565b73ffffffffffffffffffffffffffffffffffffffff16148061242d57506123f66122e5565b73ffffffffffffffffffffffffffffffffffffffff1661241584610c07565b73ffffffffffffffffffffffffffffffffffffffff16145b80612449575061244882600001516124436122e5565b6120dc565b5b90508061248b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612482906145ce565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146124fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f49061454e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561256d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125649061444e565b60405180910390fd5b61257a8585856001613340565b61258a60008484600001516122ed565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125f8919061496f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661269c9190614848565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846127a2919061488e565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156128e857612818816122d8565b156128e7576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129508686866001613346565b505050505050565b60006007549050600082116129a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129999061450e565b60405180910390fd5b6000600183836129b2919061488e565b6129bc91906149a3565b905060017f00000000000000000000000000000000000000000000000000000000000013886129eb91906149a3565b811115612a225760017f0000000000000000000000000000000000000000000000000000000000001388612a1f91906149a3565b90505b612a2b816122d8565b612a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a61906146ce565b60405180910390fd5b60008290505b818111612bcd57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612bba576000612aed82612be6565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612bc590614b4a565b915050612a70565b50600181612bdb919061488e565b600781905550505050565b612bee6138d4565b612bf7826122d8565b612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d906143ce565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a8310612c9a5760017f000000000000000000000000000000000000000000000000000000000000000a84612c8d91906149a3565b612c97919061488e565b90505b60008390505b818110612da8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d9457809350505050612de4565b508080612da090614abd565b915050612ca0565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddb9061470e565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ec982826040518060200160405280600081525061334c565b5050565b6000612eee8473ffffffffffffffffffffffffffffffffffffffff1661382b565b15613057578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f176122e5565b8786866040518563ffffffff1660e01b8152600401612f3994939291906142e5565b602060405180830381600087803b158015612f5357600080fd5b505af1925050508015612f8457506040513d601f19601f82011682018060405250810190612f819190613c4a565b60015b613007573d8060008114612fb4576040519150601f19603f3d011682016040523d82523d6000602084013e612fb9565b606091505b50600081511415612fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff69061462e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061305c565b600190505b949350505050565b6060600a805461307390614ae7565b80601f016020809104026020016040519081016040528092919081815260200182805461309f90614ae7565b80156130ec5780601f106130c1576101008083540402835291602001916130ec565b820191906000526020600020905b8154815290600101906020018083116130cf57829003601f168201915b5050505050905090565b6060600082141561313e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613252565b600082905060005b6000821461317057808061315990614b4a565b915050600a8261316991906148e4565b9150613146565b60008167ffffffffffffffff81111561318c5761318b614c80565b5b6040519080825280601f01601f1916602001820160405280156131be5781602001600182028036833780820191505090505b5090505b6000851461324b576001826131d791906149a3565b9150600a856131e69190614b93565b60306131f2919061488e565b60f81b81838151811061320857613207614c51565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561324491906148e4565b94506131c2565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132bf9061446e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156133c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b99061466e565b60405180910390fd5b6133cb816122d8565b1561340b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134029061464e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a83111561346e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134659061474e565b60405180910390fd5b61347b6000858386613340565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516135789190614848565b6fffffffffffffffffffffffffffffffff16815260200185836020015161359f9190614848565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561380e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137ae6000888488612ecd565b6137ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137e49061462e565b60405180910390fd5b81806137f890614b4a565b925050808061380690614b4a565b91505061373d565b50806000819055506138236000878588613346565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461385a90614ae7565b90600052602060002090601f01602090048101928261387c57600085556138c3565b82601f1061389557803560ff19168380011785556138c3565b828001600101855582156138c3579182015b828111156138c25782358255916020019190600101906138a7565b5b5090506138d0919061390e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561392757600081600090555060010161390f565b5090565b600061393e613939846147c9565b6147a4565b90508281526020810184848401111561395a57613959614cbe565b5b613965848285614a7b565b509392505050565b60008135905061397c816154d3565b92915050565b600081359050613991816154ea565b92915050565b6000813590506139a681615501565b92915050565b6000815190506139bb81615501565b92915050565b600082601f8301126139d6576139d5614cb4565b5b81356139e684826020860161392b565b91505092915050565b60008083601f840112613a0557613a04614cb4565b5b8235905067ffffffffffffffff811115613a2257613a21614caf565b5b602083019150836001820283011115613a3e57613a3d614cb9565b5b9250929050565b600081359050613a5481615518565b92915050565b600060208284031215613a7057613a6f614cc8565b5b6000613a7e8482850161396d565b91505092915050565b60008060408385031215613a9e57613a9d614cc8565b5b6000613aac8582860161396d565b9250506020613abd8582860161396d565b9150509250929050565b600080600060608486031215613ae057613adf614cc8565b5b6000613aee8682870161396d565b9350506020613aff8682870161396d565b9250506040613b1086828701613a45565b9150509250925092565b60008060008060808587031215613b3457613b33614cc8565b5b6000613b428782880161396d565b9450506020613b538782880161396d565b9350506040613b6487828801613a45565b925050606085013567ffffffffffffffff811115613b8557613b84614cc3565b5b613b91878288016139c1565b91505092959194509250565b60008060408385031215613bb457613bb3614cc8565b5b6000613bc28582860161396d565b9250506020613bd385828601613982565b9150509250929050565b60008060408385031215613bf457613bf3614cc8565b5b6000613c028582860161396d565b9250506020613c1385828601613a45565b9150509250929050565b600060208284031215613c3357613c32614cc8565b5b6000613c4184828501613997565b91505092915050565b600060208284031215613c6057613c5f614cc8565b5b6000613c6e848285016139ac565b91505092915050565b60008060208385031215613c8e57613c8d614cc8565b5b600083013567ffffffffffffffff811115613cac57613cab614cc3565b5b613cb8858286016139ef565b92509250509250929050565b600060208284031215613cda57613cd9614cc8565b5b6000613ce884828501613a45565b91505092915050565b613cfa816149d7565b82525050565b613d09816149d7565b82525050565b613d18816149e9565b82525050565b6000613d29826147fa565b613d338185614810565b9350613d43818560208601614a8a565b613d4c81614ccd565b840191505092915050565b6000613d6282614805565b613d6c818561482c565b9350613d7c818560208601614a8a565b613d8581614ccd565b840191505092915050565b6000613d9b82614805565b613da5818561483d565b9350613db5818560208601614a8a565b80840191505092915050565b6000613dce60228361482c565b9150613dd982614cde565b604082019050919050565b6000613df160158361482c565b9150613dfc82614d2d565b602082019050919050565b6000613e1460268361482c565b9150613e1f82614d56565b604082019050919050565b6000613e37602a8361482c565b9150613e4282614da5565b604082019050919050565b6000613e5a600d8361482c565b9150613e6582614df4565b602082019050919050565b6000613e7d60128361482c565b9150613e8882614e1d565b602082019050919050565b6000613ea060238361482c565b9150613eab82614e46565b604082019050919050565b6000613ec360258361482c565b9150613ece82614e95565b604082019050919050565b6000613ee660318361482c565b9150613ef182614ee4565b604082019050919050565b6000613f09600e8361482c565b9150613f1482614f33565b602082019050919050565b6000613f2c60098361482c565b9150613f3782614f5c565b602082019050919050565b6000613f4f60078361482c565b9150613f5a82614f85565b602082019050919050565b6000613f7260398361482c565b9150613f7d82614fae565b604082019050919050565b6000613f9560188361482c565b9150613fa082614ffd565b602082019050919050565b6000613fb8602b8361482c565b9150613fc382615026565b604082019050919050565b6000613fdb60268361482c565b9150613fe682615075565b604082019050919050565b6000613ffe60208361482c565b9150614009826150c4565b602082019050919050565b6000614021602f8361482c565b915061402c826150ed565b604082019050919050565b6000614044601a8361482c565b915061404f8261513c565b602082019050919050565b600061406760328361482c565b915061407282615165565b604082019050919050565b600061408a60228361482c565b9150614095826151b4565b604082019050919050565b60006140ad600083614821565b91506140b882615203565b600082019050919050565b60006140d060108361482c565b91506140db82615206565b602082019050919050565b60006140f360338361482c565b91506140fe8261522f565b604082019050919050565b6000614116601d8361482c565b91506141218261527e565b602082019050919050565b600061413960218361482c565b9150614144826152a7565b604082019050919050565b600061415c60058361482c565b9150614167826152f6565b602082019050919050565b600061417f602e8361482c565b915061418a8261531f565b604082019050919050565b60006141a260268361482c565b91506141ad8261536e565b604082019050919050565b60006141c5601f8361482c565b91506141d0826153bd565b602082019050919050565b60006141e8602f8361482c565b91506141f3826153e6565b604082019050919050565b600061420b602d8361482c565b915061421682615435565b604082019050919050565b600061422e60228361482c565b915061423982615484565b604082019050919050565b60408201600082015161425a6000850182613cf1565b50602082015161426d6020850182614282565b50505050565b61427c81614a5d565b82525050565b61428b81614a67565b82525050565b600061429d8285613d90565b91506142a98284613d90565b91508190509392505050565b60006142c0826140a0565b9150819050919050565b60006020820190506142df6000830184613d00565b92915050565b60006080820190506142fa6000830187613d00565b6143076020830186613d00565b6143146040830185614273565b81810360608301526143268184613d1e565b905095945050505050565b60006020820190506143466000830184613d0f565b92915050565b600060208201905081810360008301526143668184613d57565b905092915050565b6000602082019050818103600083015261438781613dc1565b9050919050565b600060208201905081810360008301526143a781613de4565b9050919050565b600060208201905081810360008301526143c781613e07565b9050919050565b600060208201905081810360008301526143e781613e2a565b9050919050565b6000602082019050818103600083015261440781613e4d565b9050919050565b6000602082019050818103600083015261442781613e70565b9050919050565b6000602082019050818103600083015261444781613e93565b9050919050565b6000602082019050818103600083015261446781613eb6565b9050919050565b6000602082019050818103600083015261448781613ed9565b9050919050565b600060208201905081810360008301526144a781613efc565b9050919050565b600060208201905081810360008301526144c781613f1f565b9050919050565b600060208201905081810360008301526144e781613f42565b9050919050565b6000602082019050818103600083015261450781613f65565b9050919050565b6000602082019050818103600083015261452781613f88565b9050919050565b6000602082019050818103600083015261454781613fab565b9050919050565b6000602082019050818103600083015261456781613fce565b9050919050565b6000602082019050818103600083015261458781613ff1565b9050919050565b600060208201905081810360008301526145a781614014565b9050919050565b600060208201905081810360008301526145c781614037565b9050919050565b600060208201905081810360008301526145e78161405a565b9050919050565b600060208201905081810360008301526146078161407d565b9050919050565b60006020820190508181036000830152614627816140c3565b9050919050565b60006020820190508181036000830152614647816140e6565b9050919050565b6000602082019050818103600083015261466781614109565b9050919050565b600060208201905081810360008301526146878161412c565b9050919050565b600060208201905081810360008301526146a78161414f565b9050919050565b600060208201905081810360008301526146c781614172565b9050919050565b600060208201905081810360008301526146e781614195565b9050919050565b60006020820190508181036000830152614707816141b8565b9050919050565b60006020820190508181036000830152614727816141db565b9050919050565b60006020820190508181036000830152614747816141fe565b9050919050565b6000602082019050818103600083015261476781614221565b9050919050565b60006040820190506147836000830184614244565b92915050565b600060208201905061479e6000830184614273565b92915050565b60006147ae6147bf565b90506147ba8282614b19565b919050565b6000604051905090565b600067ffffffffffffffff8211156147e4576147e3614c80565b5b6147ed82614ccd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061485382614a21565b915061485e83614a21565b9250826fffffffffffffffffffffffffffffffff0382111561488357614882614bc4565b5b828201905092915050565b600061489982614a5d565b91506148a483614a5d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148d9576148d8614bc4565b5b828201905092915050565b60006148ef82614a5d565b91506148fa83614a5d565b92508261490a57614909614bf3565b5b828204905092915050565b600061492082614a5d565b915061492b83614a5d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561496457614963614bc4565b5b828202905092915050565b600061497a82614a21565b915061498583614a21565b92508282101561499857614997614bc4565b5b828203905092915050565b60006149ae82614a5d565b91506149b983614a5d565b9250828210156149cc576149cb614bc4565b5b828203905092915050565b60006149e282614a3d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614aa8578082015181840152602081019050614a8d565b83811115614ab7576000848401525b50505050565b6000614ac882614a5d565b91506000821415614adc57614adb614bc4565b5b600182039050919050565b60006002820490506001821680614aff57607f821691505b60208210811415614b1357614b12614c22565b5b50919050565b614b2282614ccd565b810181811067ffffffffffffffff82111715614b4157614b40614c80565b5b80604052505050565b6000614b5582614a5d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b8857614b87614bc4565b5b600182019050919050565b6000614b9e82614a5d565b9150614ba983614a5d565b925082614bb957614bb8614bf3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4c696d697420506572205472616e73616374696f6e0000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720506175736500000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4d6178205065722057616c6c6574000000000000000000000000000000000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f536f6c646f757400000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4c696d6974000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6154dc816149d7565b81146154e757600080fd5b50565b6154f3816149e9565b81146154fe57600080fd5b50565b61550a816149f5565b811461551557600080fd5b50565b61552181614a5d565b811461552c57600080fd5b5056fea2646970667358221220db24b9c8dcce7fbb0a9217dd7a370374e9fbf43cc9810710f7c6c5424608021664736f6c63430008070033

Deployed Bytecode Sourcemap

205:3016:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2812:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2528:102:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8352:142:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3094:124:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3443:744:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;418:27:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2754:186;;;;;;;;;;;;;:::i;:::-;;8557:157:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;382:29:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2975:177:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1882:102:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2086;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;487:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5800:118:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;264:21:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2194:98:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1668:101:0;;;;;;;;;;;;;:::i;:::-;;548:47:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1664:89;;;;;;;;;;;;;:::i;:::-;;1358:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1036:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1475:181:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1992:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2946:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6132:98:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;294:37:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;669:681;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7770:274:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8777:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2300:98:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6293:394:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;518:23:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;452:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1761:113:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2406:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8107:186:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;349:25:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4251:370:12;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;2528:102:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2612:10:11::1;2600:9;:22;;;;2528:102:::0;:::o;8352:142:12:-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;3094:124:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1:1::1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;3182:28:11::2;3201:8;3182:18;:28::i;:::-;1701:1:1::1;2628:7;:22;;;;3094:124:11::0;:::o;3443:744:12:-;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;418:27:11:-;;;;:::o;2754:186::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1:1::1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;2818:12:11::2;2836:10;:15;;2859:21;2836:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2817:68;;;2904:7;2896:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;2806:134;1701:1:1::1;2628:7;:22;;;;2754:186:11:o:0;8557:157:12:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;382:29:11:-;;;;:::o;2975:177:12:-;3042:7;3074:13;:11;:13::i;:::-;3066:5;:21;3058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:5;3134:12;;2975:177;;;:::o;1882:102:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1968:8:11::1;;1958:7;:18;;;;;;;:::i;:::-;;1882:102:::0;;:::o;2086:::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2170:10:11::1;2158:9;:22;;;;2086:102:::0;:::o;487:24::-;;;;:::o;5800:118:12:-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;264:21:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4677:211:12:-;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;2194:98:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2275:9:11::1;2264:8;:20;;;;2194:98:::0;:::o;1668:101:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;548:47:11:-;;;;;;;;;;;;;;;;;:::o;1664:89::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1734:11:11::1;;;;;;;;;;;1733:12;1719:11;;:26;;;;;;;;;;;;;;;;;;1664:89::o:0;1358:109::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1438:21:11::1;1448:2;1452:6;1438:9;:21::i;:::-;1358:109:::0;;:::o;1036:85:0:-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;1475:181:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1584:9:11::1;;1574:6;1558:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;1550:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1619:29;1629:10;1641:6;1619:9;:29::i;:::-;1475:181:::0;:::o;1992:86::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2064:6:11::1;2056:5;:14;;;;1992:86:::0;:::o;2946:140::-;3012:21;;:::i;:::-;3058:20;3070:7;3058:11;:20::i;:::-;3051:27;;2946:140;;;:::o;6132:98:12:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;294:37:11:-;;;;:::o;669:681::-;732:9;744:5;;732:17;;776:1;763:9;:14;:53;;;;;807:9;;797:6;781:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;763:53;760:214;;;876:8;;866:6;840:11;:23;852:10;840:23;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:44;;832:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;914:1;907:8;;956:6;929:11;:23;941:10;929:23;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;760:214;1014:4;1005:6;:13;;;;:::i;:::-;992:9;:26;984:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1085:9;;1075:6;1059:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;1051:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1124:11;;;;;;;;;;;1116:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;1209:12;;1199:6;1172:24;1185:10;1172:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;1164:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1268:8;;1258:6;:18;;1250:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;1313:29;1323:10;1335:6;1313:9;:29::i;:::-;721:629;669:681;:::o;7770:274:12:-;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;2300:98:11:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2381:9:11::1;2370:8;:20;;;;2300:98:::0;:::o;6293:394:12:-;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;518:23:11:-;;;;;;;;;;;;;:::o;452:28::-;;;;:::o;13192:43:12:-;;;;:::o;1761:113:11:-;1819:7;1846:20;1860:5;1846:13;:20::i;:::-;1839:27;;1761:113;;;:::o;2406:114::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2499:13:11::1;2484:12;:28;;;;2406:114:::0;:::o;8107:186:12:-;8229:4;8252:18;:25;8271:5;8252:25;;;;;;;;;;;;;;;:35;8278:8;8252:35;;;;;;;;;;;;;;;;;;;;;;;;;8245:42;;8107:186;;;;:::o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;349:25:11:-;;;;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9327:105:12:-;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:12:-;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;13340:846::-;13402:25;13430:24;;13402:52;;13480:1;13469:8;:12;13461:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;13517:16;13567:1;13556:8;13536:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;13517:51;;13607:1;13590:14;:18;;;;:::i;:::-;13579:8;:29;13575:81;;;13647:1;13630:14;:18;;;;:::i;:::-;13619:29;;13575:81;13771:17;13779:8;13771:7;:17::i;:::-;13763:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13843:9;13855:17;13843:29;;13838:297;13879:8;13874:1;:13;13838:297;;13938:1;13907:33;;:11;:14;13919:1;13907:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;13903:225;;;13953:31;13987:14;13999:1;13987:11;:14::i;:::-;13953:48;;14029:89;;;;;;;;14056:9;:14;;;14029:89;;;;;;14083:9;:24;;;14029:89;;;;;14012:11;:14;14024:1;14012:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13942:186;13903:225;13889:3;;;;;:::i;:::-;;;;13838:297;;;;14179:1;14168:8;:12;;;;:::i;:::-;14141:24;:39;;;;13395:791;;13340:846;:::o;5140:606::-;5216:21;;:::i;:::-;5257:16;5265:7;5257;:16::i;:::-;5249:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5329:26;5377:12;5366:7;:23;5362:93;;5446:1;5431:12;5421:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;5400:47;;5362:93;5468:12;5483:7;5468:22;;5463:212;5500:18;5492:4;:26;5463:212;;5537:31;5571:11;:17;5583:4;5571:17;;;;;;;;;;;5537:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5627:1;5601:28;;:9;:14;;;:28;;;5597:71;;5649:9;5642:16;;;;;;;5597:71;5528:147;5520:6;;;;;:::i;:::-;;;;5463:212;;;;5683:57;;;;;;;;;;:::i;:::-;;;;;;;;5140:606;;;;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;9438:98:12:-;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;2638:108:11:-;2698:13;2731:7;2724:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2638:108;:::o;328:703:8:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;4894:240:12:-;4955:7;5004:1;4987:19;;:5;:19;;;;4971:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;5095:12;:19;5108:5;5095:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;5087:41;;5080:48;;4894:240;;;:::o;15881:141::-;;;;;:::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:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:::-;11935:3;11956:67;12020:2;12015:3;11956:67;:::i;:::-;11949:74;;12032:93;12121:3;12032:93;:::i;:::-;12150:2;12145:3;12141:12;12134:19;;11793:366;;;:::o;12165:365::-;12307:3;12328:66;12392:1;12387:3;12328:66;:::i;:::-;12321:73;;12403:93;12492:3;12403:93;:::i;:::-;12521:2;12516:3;12512:12;12505:19;;12165:365;;;:::o;12536:::-;12678:3;12699:66;12763:1;12758:3;12699:66;:::i;:::-;12692:73;;12774:93;12863:3;12774:93;:::i;:::-;12892:2;12887:3;12883:12;12876:19;;12536:365;;;:::o;12907:366::-;13049:3;13070:67;13134:2;13129:3;13070:67;:::i;:::-;13063:74;;13146:93;13235:3;13146:93;:::i;:::-;13264:2;13259:3;13255:12;13248:19;;12907:366;;;:::o;13279:::-;13421:3;13442:67;13506:2;13501:3;13442:67;:::i;:::-;13435:74;;13518:93;13607:3;13518:93;:::i;:::-;13636:2;13631:3;13627:12;13620:19;;13279:366;;;:::o;13651:::-;13793:3;13814:67;13878:2;13873:3;13814:67;:::i;:::-;13807:74;;13890:93;13979:3;13890:93;:::i;:::-;14008:2;14003:3;13999:12;13992:19;;13651:366;;;:::o;14023:::-;14165:3;14186:67;14250:2;14245:3;14186:67;:::i;:::-;14179:74;;14262:93;14351:3;14262:93;:::i;:::-;14380:2;14375:3;14371:12;14364:19;;14023:366;;;:::o;14395:::-;14537:3;14558:67;14622:2;14617:3;14558:67;:::i;:::-;14551:74;;14634:93;14723:3;14634:93;:::i;:::-;14752:2;14747:3;14743:12;14736:19;;14395:366;;;:::o;14767:::-;14909:3;14930:67;14994:2;14989:3;14930:67;:::i;:::-;14923:74;;15006:93;15095:3;15006:93;:::i;:::-;15124:2;15119:3;15115:12;15108:19;;14767:366;;;:::o;15139:::-;15281:3;15302:67;15366:2;15361:3;15302:67;:::i;:::-;15295:74;;15378:93;15467:3;15378:93;:::i;:::-;15496:2;15491:3;15487:12;15480:19;;15139:366;;;:::o;15511:::-;15653:3;15674:67;15738:2;15733:3;15674:67;:::i;:::-;15667:74;;15750:93;15839:3;15750:93;:::i;:::-;15868:2;15863:3;15859:12;15852:19;;15511:366;;;:::o;15883:::-;16025:3;16046:67;16110:2;16105:3;16046:67;:::i;:::-;16039:74;;16122:93;16211:3;16122:93;:::i;:::-;16240:2;16235:3;16231:12;16224:19;;15883:366;;;:::o;16255:398::-;16414:3;16435:83;16516:1;16511:3;16435:83;:::i;:::-;16428:90;;16527:93;16616:3;16527:93;:::i;:::-;16645:1;16640:3;16636:11;16629:18;;16255:398;;;:::o;16659:366::-;16801:3;16822:67;16886:2;16881:3;16822:67;:::i;:::-;16815:74;;16898:93;16987:3;16898:93;:::i;:::-;17016:2;17011:3;17007:12;17000:19;;16659:366;;;:::o;17031:::-;17173:3;17194:67;17258:2;17253:3;17194:67;:::i;:::-;17187:74;;17270:93;17359:3;17270:93;:::i;:::-;17388:2;17383:3;17379:12;17372:19;;17031:366;;;:::o;17403:::-;17545:3;17566:67;17630:2;17625:3;17566:67;:::i;:::-;17559:74;;17642:93;17731:3;17642:93;:::i;:::-;17760:2;17755:3;17751:12;17744:19;;17403:366;;;:::o;17775:::-;17917:3;17938:67;18002:2;17997:3;17938:67;:::i;:::-;17931:74;;18014:93;18103:3;18014:93;:::i;:::-;18132:2;18127:3;18123:12;18116:19;;17775:366;;;:::o;18147:365::-;18289:3;18310:66;18374:1;18369:3;18310:66;:::i;:::-;18303:73;;18385:93;18474:3;18385:93;:::i;:::-;18503:2;18498:3;18494:12;18487:19;;18147:365;;;:::o;18518:366::-;18660:3;18681:67;18745:2;18740:3;18681:67;:::i;:::-;18674:74;;18757:93;18846:3;18757:93;:::i;:::-;18875:2;18870:3;18866:12;18859:19;;18518:366;;;:::o;18890:::-;19032:3;19053:67;19117:2;19112:3;19053:67;:::i;:::-;19046:74;;19129:93;19218:3;19129:93;:::i;:::-;19247:2;19242:3;19238:12;19231:19;;18890:366;;;:::o;19262:::-;19404:3;19425:67;19489:2;19484:3;19425:67;:::i;:::-;19418:74;;19501:93;19590:3;19501:93;:::i;:::-;19619:2;19614:3;19610:12;19603:19;;19262:366;;;:::o;19634:::-;19776:3;19797:67;19861:2;19856:3;19797:67;:::i;:::-;19790:74;;19873:93;19962:3;19873:93;:::i;:::-;19991:2;19986:3;19982:12;19975:19;;19634:366;;;:::o;20006:::-;20148:3;20169:67;20233:2;20228:3;20169:67;:::i;:::-;20162:74;;20245:93;20334:3;20245:93;:::i;:::-;20363:2;20358:3;20354:12;20347:19;;20006:366;;;:::o;20378:::-;20520:3;20541:67;20605:2;20600:3;20541:67;:::i;:::-;20534:74;;20617:93;20706:3;20617:93;:::i;:::-;20735:2;20730:3;20726:12;20719:19;;20378:366;;;:::o;20820:529::-;20981:4;20976:3;20972:14;21068:4;21061:5;21057:16;21051:23;21087:63;21144:4;21139:3;21135:14;21121:12;21087:63;:::i;:::-;20996:164;21252:4;21245:5;21241:16;21235:23;21271:61;21326:4;21321:3;21317:14;21303:12;21271:61;:::i;:::-;21170:172;20950:399;20820:529;;:::o;21355:118::-;21442:24;21460:5;21442:24;:::i;:::-;21437:3;21430:37;21355:118;;:::o;21479:105::-;21554:23;21571:5;21554:23;:::i;:::-;21549:3;21542:36;21479:105;;:::o;21590:435::-;21770:3;21792:95;21883:3;21874:6;21792:95;:::i;:::-;21785:102;;21904:95;21995:3;21986:6;21904:95;:::i;:::-;21897:102;;22016:3;22009:10;;21590:435;;;;;:::o;22031:379::-;22215:3;22237:147;22380:3;22237:147;:::i;:::-;22230:154;;22401:3;22394:10;;22031:379;;;:::o;22416:222::-;22509:4;22547:2;22536:9;22532:18;22524:26;;22560:71;22628:1;22617:9;22613:17;22604:6;22560:71;:::i;:::-;22416:222;;;;:::o;22644:640::-;22839:4;22877:3;22866:9;22862:19;22854:27;;22891:71;22959:1;22948:9;22944:17;22935:6;22891:71;:::i;:::-;22972:72;23040:2;23029:9;23025:18;23016:6;22972:72;:::i;:::-;23054;23122:2;23111:9;23107:18;23098:6;23054:72;:::i;:::-;23173:9;23167:4;23163:20;23158:2;23147:9;23143:18;23136:48;23201:76;23272:4;23263:6;23201:76;:::i;:::-;23193:84;;22644:640;;;;;;;:::o;23290:210::-;23377:4;23415:2;23404:9;23400:18;23392:26;;23428:65;23490:1;23479:9;23475:17;23466:6;23428:65;:::i;:::-;23290:210;;;;:::o;23506:313::-;23619:4;23657:2;23646:9;23642:18;23634:26;;23706:9;23700:4;23696:20;23692:1;23681:9;23677:17;23670:47;23734:78;23807:4;23798:6;23734:78;:::i;:::-;23726:86;;23506:313;;;;:::o;23825:419::-;23991:4;24029:2;24018:9;24014:18;24006:26;;24078:9;24072:4;24068:20;24064:1;24053:9;24049:17;24042:47;24106:131;24232:4;24106:131;:::i;:::-;24098:139;;23825:419;;;:::o;24250:::-;24416:4;24454:2;24443:9;24439:18;24431:26;;24503:9;24497:4;24493:20;24489:1;24478:9;24474:17;24467:47;24531:131;24657:4;24531:131;:::i;:::-;24523:139;;24250:419;;;:::o;24675:::-;24841:4;24879:2;24868:9;24864:18;24856:26;;24928:9;24922:4;24918:20;24914:1;24903:9;24899:17;24892:47;24956:131;25082:4;24956:131;:::i;:::-;24948:139;;24675:419;;;:::o;25100:::-;25266:4;25304:2;25293:9;25289:18;25281:26;;25353:9;25347:4;25343:20;25339:1;25328:9;25324:17;25317:47;25381:131;25507:4;25381:131;:::i;:::-;25373:139;;25100:419;;;:::o;25525:::-;25691:4;25729:2;25718:9;25714:18;25706:26;;25778:9;25772:4;25768:20;25764:1;25753:9;25749:17;25742:47;25806:131;25932:4;25806:131;:::i;:::-;25798:139;;25525:419;;;:::o;25950:::-;26116:4;26154:2;26143:9;26139:18;26131:26;;26203:9;26197:4;26193:20;26189:1;26178:9;26174:17;26167:47;26231:131;26357:4;26231:131;:::i;:::-;26223:139;;25950:419;;;:::o;26375:::-;26541:4;26579:2;26568:9;26564:18;26556:26;;26628:9;26622:4;26618:20;26614:1;26603:9;26599:17;26592:47;26656:131;26782:4;26656:131;:::i;:::-;26648:139;;26375:419;;;:::o;26800:::-;26966:4;27004:2;26993:9;26989:18;26981:26;;27053:9;27047:4;27043:20;27039:1;27028:9;27024:17;27017:47;27081:131;27207:4;27081:131;:::i;:::-;27073:139;;26800:419;;;:::o;27225:::-;27391:4;27429:2;27418:9;27414:18;27406:26;;27478:9;27472:4;27468:20;27464:1;27453:9;27449:17;27442:47;27506:131;27632:4;27506:131;:::i;:::-;27498:139;;27225:419;;;:::o;27650:::-;27816:4;27854:2;27843:9;27839:18;27831:26;;27903:9;27897:4;27893:20;27889:1;27878:9;27874:17;27867:47;27931:131;28057:4;27931:131;:::i;:::-;27923:139;;27650:419;;;:::o;28075:::-;28241:4;28279:2;28268:9;28264:18;28256:26;;28328:9;28322:4;28318:20;28314:1;28303:9;28299:17;28292:47;28356:131;28482:4;28356:131;:::i;:::-;28348:139;;28075:419;;;:::o;28500:::-;28666:4;28704:2;28693:9;28689:18;28681:26;;28753:9;28747:4;28743:20;28739:1;28728:9;28724:17;28717:47;28781:131;28907:4;28781:131;:::i;:::-;28773:139;;28500:419;;;:::o;28925:::-;29091:4;29129:2;29118:9;29114:18;29106:26;;29178:9;29172:4;29168:20;29164:1;29153:9;29149:17;29142:47;29206:131;29332:4;29206:131;:::i;:::-;29198:139;;28925:419;;;:::o;29350:::-;29516:4;29554:2;29543:9;29539:18;29531:26;;29603:9;29597:4;29593:20;29589:1;29578:9;29574:17;29567:47;29631:131;29757:4;29631:131;:::i;:::-;29623:139;;29350:419;;;:::o;29775:::-;29941:4;29979:2;29968:9;29964:18;29956:26;;30028:9;30022:4;30018:20;30014:1;30003:9;29999:17;29992:47;30056:131;30182:4;30056:131;:::i;:::-;30048:139;;29775:419;;;:::o;30200:::-;30366:4;30404:2;30393:9;30389:18;30381:26;;30453:9;30447:4;30443:20;30439:1;30428:9;30424:17;30417:47;30481:131;30607:4;30481:131;:::i;:::-;30473:139;;30200:419;;;:::o;30625:::-;30791:4;30829:2;30818:9;30814:18;30806:26;;30878:9;30872:4;30868:20;30864:1;30853:9;30849:17;30842:47;30906:131;31032:4;30906:131;:::i;:::-;30898:139;;30625:419;;;:::o;31050:::-;31216:4;31254:2;31243:9;31239:18;31231:26;;31303:9;31297:4;31293:20;31289:1;31278:9;31274:17;31267:47;31331:131;31457:4;31331:131;:::i;:::-;31323:139;;31050:419;;;:::o;31475:::-;31641:4;31679:2;31668:9;31664:18;31656:26;;31728:9;31722:4;31718:20;31714:1;31703:9;31699:17;31692:47;31756:131;31882:4;31756:131;:::i;:::-;31748:139;;31475:419;;;:::o;31900:::-;32066:4;32104:2;32093:9;32089:18;32081:26;;32153:9;32147:4;32143:20;32139:1;32128:9;32124:17;32117:47;32181:131;32307:4;32181:131;:::i;:::-;32173:139;;31900:419;;;:::o;32325:::-;32491:4;32529:2;32518:9;32514:18;32506:26;;32578:9;32572:4;32568:20;32564:1;32553:9;32549:17;32542:47;32606:131;32732:4;32606:131;:::i;:::-;32598:139;;32325:419;;;:::o;32750:::-;32916:4;32954:2;32943:9;32939:18;32931:26;;33003:9;32997:4;32993:20;32989:1;32978:9;32974:17;32967:47;33031:131;33157:4;33031:131;:::i;:::-;33023:139;;32750:419;;;:::o;33175:::-;33341:4;33379:2;33368:9;33364:18;33356:26;;33428:9;33422:4;33418:20;33414:1;33403:9;33399:17;33392:47;33456:131;33582:4;33456:131;:::i;:::-;33448:139;;33175:419;;;:::o;33600:::-;33766:4;33804:2;33793:9;33789:18;33781:26;;33853:9;33847:4;33843:20;33839:1;33828:9;33824:17;33817:47;33881:131;34007:4;33881:131;:::i;:::-;33873:139;;33600:419;;;:::o;34025:::-;34191:4;34229:2;34218:9;34214:18;34206:26;;34278:9;34272:4;34268:20;34264:1;34253:9;34249:17;34242:47;34306:131;34432:4;34306:131;:::i;:::-;34298:139;;34025:419;;;:::o;34450:::-;34616:4;34654:2;34643:9;34639:18;34631:26;;34703:9;34697:4;34693:20;34689:1;34678:9;34674:17;34667:47;34731:131;34857:4;34731:131;:::i;:::-;34723:139;;34450:419;;;:::o;34875:::-;35041:4;35079:2;35068:9;35064:18;35056:26;;35128:9;35122:4;35118:20;35114:1;35103:9;35099:17;35092:47;35156:131;35282:4;35156:131;:::i;:::-;35148:139;;34875:419;;;:::o;35300:::-;35466:4;35504:2;35493:9;35489:18;35481:26;;35553:9;35547:4;35543:20;35539:1;35528:9;35524:17;35517:47;35581:131;35707:4;35581:131;:::i;:::-;35573:139;;35300:419;;;:::o;35725:::-;35891:4;35929:2;35918:9;35914:18;35906:26;;35978:9;35972:4;35968:20;35964:1;35953:9;35949:17;35942:47;36006:131;36132:4;36006:131;:::i;:::-;35998:139;;35725:419;;;:::o;36150:::-;36316:4;36354:2;36343:9;36339:18;36331:26;;36403:9;36397:4;36393:20;36389:1;36378:9;36374:17;36367:47;36431:131;36557:4;36431:131;:::i;:::-;36423:139;;36150:419;;;:::o;36575:::-;36741:4;36779:2;36768:9;36764:18;36756:26;;36828:9;36822:4;36818:20;36814:1;36803:9;36799:17;36792:47;36856:131;36982:4;36856:131;:::i;:::-;36848:139;;36575:419;;;:::o;37000:::-;37166:4;37204:2;37193:9;37189:18;37181:26;;37253:9;37247:4;37243:20;37239:1;37228:9;37224:17;37217:47;37281:131;37407:4;37281:131;:::i;:::-;37273:139;;37000:419;;;:::o;37425:350::-;37582:4;37620:2;37609:9;37605:18;37597:26;;37633:135;37765:1;37754:9;37750:17;37741:6;37633:135;:::i;:::-;37425:350;;;;:::o;37781:222::-;37874:4;37912:2;37901:9;37897:18;37889:26;;37925:71;37993:1;37982:9;37978:17;37969:6;37925:71;:::i;:::-;37781:222;;;;:::o;38009:129::-;38043:6;38070:20;;:::i;:::-;38060:30;;38099:33;38127:4;38119:6;38099:33;:::i;:::-;38009:129;;;:::o;38144:75::-;38177:6;38210:2;38204:9;38194:19;;38144:75;:::o;38225:307::-;38286:4;38376:18;38368:6;38365:30;38362:56;;;38398:18;;:::i;:::-;38362:56;38436:29;38458:6;38436:29;:::i;:::-;38428:37;;38520:4;38514;38510:15;38502:23;;38225:307;;;:::o;38538:98::-;38589:6;38623:5;38617:12;38607:22;;38538:98;;;:::o;38642:99::-;38694:6;38728:5;38722:12;38712:22;;38642:99;;;:::o;38747:168::-;38830:11;38864:6;38859:3;38852:19;38904:4;38899:3;38895:14;38880:29;;38747:168;;;;:::o;38921:147::-;39022:11;39059:3;39044:18;;38921:147;;;;:::o;39074:169::-;39158:11;39192:6;39187:3;39180:19;39232:4;39227:3;39223:14;39208:29;;39074:169;;;;:::o;39249:148::-;39351:11;39388:3;39373:18;;39249:148;;;;:::o;39403:273::-;39443:3;39462:20;39480:1;39462:20;:::i;:::-;39457:25;;39496:20;39514:1;39496:20;:::i;:::-;39491:25;;39618:1;39582:34;39578:42;39575:1;39572:49;39569:75;;;39624:18;;:::i;:::-;39569:75;39668:1;39665;39661:9;39654:16;;39403:273;;;;:::o;39682:305::-;39722:3;39741:20;39759:1;39741:20;:::i;:::-;39736:25;;39775:20;39793:1;39775:20;:::i;:::-;39770:25;;39929:1;39861:66;39857:74;39854:1;39851:81;39848:107;;;39935:18;;:::i;:::-;39848:107;39979:1;39976;39972:9;39965:16;;39682:305;;;;:::o;39993:185::-;40033:1;40050:20;40068:1;40050:20;:::i;:::-;40045:25;;40084:20;40102:1;40084:20;:::i;:::-;40079:25;;40123:1;40113:35;;40128:18;;:::i;:::-;40113:35;40170:1;40167;40163:9;40158:14;;39993:185;;;;:::o;40184:348::-;40224:7;40247:20;40265:1;40247:20;:::i;:::-;40242:25;;40281:20;40299:1;40281:20;:::i;:::-;40276:25;;40469:1;40401:66;40397:74;40394:1;40391:81;40386:1;40379:9;40372:17;40368:105;40365:131;;;40476:18;;:::i;:::-;40365:131;40524:1;40521;40517:9;40506:20;;40184:348;;;;:::o;40538:191::-;40578:4;40598:20;40616:1;40598:20;:::i;:::-;40593:25;;40632:20;40650:1;40632:20;:::i;:::-;40627:25;;40671:1;40668;40665:8;40662:34;;;40676:18;;:::i;:::-;40662:34;40721:1;40718;40714:9;40706:17;;40538:191;;;;:::o;40735:::-;40775:4;40795:20;40813:1;40795:20;:::i;:::-;40790:25;;40829:20;40847:1;40829:20;:::i;:::-;40824:25;;40868:1;40865;40862:8;40859:34;;;40873:18;;:::i;:::-;40859:34;40918:1;40915;40911:9;40903:17;;40735:191;;;;:::o;40932:96::-;40969:7;40998:24;41016:5;40998:24;:::i;:::-;40987:35;;40932:96;;;:::o;41034:90::-;41068:7;41111:5;41104:13;41097:21;41086:32;;41034:90;;;:::o;41130:149::-;41166:7;41206:66;41199:5;41195:78;41184:89;;41130:149;;;:::o;41285:118::-;41322:7;41362:34;41355:5;41351:46;41340:57;;41285:118;;;:::o;41409:126::-;41446:7;41486:42;41479:5;41475:54;41464:65;;41409:126;;;:::o;41541:77::-;41578:7;41607:5;41596:16;;41541:77;;;:::o;41624:101::-;41660:7;41700:18;41693:5;41689:30;41678:41;;41624:101;;;:::o;41731:154::-;41815:6;41810:3;41805;41792:30;41877:1;41868:6;41863:3;41859:16;41852:27;41731:154;;;:::o;41891:307::-;41959:1;41969:113;41983:6;41980:1;41977:13;41969:113;;;42068:1;42063:3;42059:11;42053:18;42049:1;42044:3;42040:11;42033:39;42005:2;42002:1;41998:10;41993:15;;41969:113;;;42100:6;42097:1;42094:13;42091:101;;;42180:1;42171:6;42166:3;42162:16;42155:27;42091:101;41940:258;41891:307;;;:::o;42204:171::-;42243:3;42266:24;42284:5;42266:24;:::i;:::-;42257:33;;42312:4;42305:5;42302:15;42299:41;;;42320:18;;:::i;:::-;42299:41;42367:1;42360:5;42356:13;42349:20;;42204:171;;;:::o;42381:320::-;42425:6;42462:1;42456:4;42452:12;42442:22;;42509:1;42503:4;42499:12;42530:18;42520:81;;42586:4;42578:6;42574:17;42564:27;;42520:81;42648:2;42640:6;42637:14;42617:18;42614:38;42611:84;;;42667:18;;:::i;:::-;42611:84;42432:269;42381:320;;;:::o;42707:281::-;42790:27;42812:4;42790:27;:::i;:::-;42782:6;42778:40;42920:6;42908:10;42905:22;42884:18;42872:10;42869:34;42866:62;42863:88;;;42931:18;;:::i;:::-;42863:88;42971:10;42967:2;42960:22;42750:238;42707:281;;:::o;42994:233::-;43033:3;43056:24;43074:5;43056:24;:::i;:::-;43047:33;;43102:66;43095:5;43092:77;43089:103;;;43172:18;;:::i;:::-;43089:103;43219:1;43212:5;43208:13;43201:20;;42994:233;;;:::o;43233:176::-;43265:1;43282:20;43300:1;43282:20;:::i;:::-;43277:25;;43316:20;43334:1;43316:20;:::i;:::-;43311:25;;43355:1;43345:35;;43360:18;;:::i;:::-;43345:35;43401:1;43398;43394:9;43389:14;;43233:176;;;;:::o;43415:180::-;43463:77;43460:1;43453:88;43560:4;43557:1;43550:15;43584:4;43581:1;43574:15;43601:180;43649:77;43646:1;43639:88;43746:4;43743:1;43736:15;43770:4;43767:1;43760:15;43787:180;43835:77;43832:1;43825:88;43932:4;43929:1;43922:15;43956:4;43953:1;43946:15;43973:180;44021:77;44018:1;44011:88;44118:4;44115:1;44108:15;44142:4;44139:1;44132:15;44159:180;44207:77;44204:1;44197:88;44304:4;44301:1;44294:15;44328:4;44325:1;44318:15;44345:117;44454:1;44451;44444:12;44468:117;44577:1;44574;44567:12;44591:117;44700:1;44697;44690:12;44714:117;44823:1;44820;44813:12;44837:117;44946:1;44943;44936:12;44960:117;45069:1;45066;45059:12;45083:102;45124:6;45175:2;45171:7;45166:2;45159:5;45155:14;45151:28;45141:38;;45083:102;;;:::o;45191:221::-;45331:34;45327:1;45319:6;45315:14;45308:58;45400:4;45395:2;45387:6;45383:15;45376:29;45191:221;:::o;45418:171::-;45558:23;45554:1;45546:6;45542:14;45535:47;45418:171;:::o;45595:225::-;45735:34;45731:1;45723:6;45719:14;45712:58;45804:8;45799:2;45791:6;45787:15;45780:33;45595:225;:::o;45826:229::-;45966:34;45962:1;45954:6;45950:14;45943:58;46035:12;46030:2;46022:6;46018:15;46011:37;45826:229;:::o;46061:163::-;46201:15;46197:1;46189:6;46185:14;46178:39;46061:163;:::o;46230:168::-;46370:20;46366:1;46358:6;46354:14;46347:44;46230:168;:::o;46404:222::-;46544:34;46540:1;46532:6;46528:14;46521:58;46613:5;46608:2;46600:6;46596:15;46589:30;46404:222;:::o;46632:224::-;46772:34;46768:1;46760:6;46756:14;46749:58;46841:7;46836:2;46828:6;46824:15;46817:32;46632:224;:::o;46862:236::-;47002:34;46998:1;46990:6;46986:14;46979:58;47071:19;47066:2;47058:6;47054:15;47047:44;46862:236;:::o;47104:164::-;47244:16;47240:1;47232:6;47228:14;47221:40;47104:164;:::o;47274:159::-;47414:11;47410:1;47402:6;47398:14;47391:35;47274:159;:::o;47439:157::-;47579:9;47575:1;47567:6;47563:14;47556:33;47439:157;:::o;47602:244::-;47742:34;47738:1;47730:6;47726:14;47719:58;47811:27;47806:2;47798:6;47794:15;47787:52;47602:244;:::o;47852:174::-;47992:26;47988:1;47980:6;47976:14;47969:50;47852:174;:::o;48032:230::-;48172:34;48168:1;48160:6;48156:14;48149:58;48241:13;48236:2;48228:6;48224:15;48217:38;48032:230;:::o;48268:225::-;48408:34;48404:1;48396:6;48392:14;48385:58;48477:8;48472:2;48464:6;48460:15;48453:33;48268:225;:::o;48499:182::-;48639:34;48635:1;48627:6;48623:14;48616:58;48499:182;:::o;48687:234::-;48827:34;48823:1;48815:6;48811:14;48804:58;48896:17;48891:2;48883:6;48879:15;48872:42;48687:234;:::o;48927:176::-;49067:28;49063:1;49055:6;49051:14;49044:52;48927:176;:::o;49109:237::-;49249:34;49245:1;49237:6;49233:14;49226:58;49318:20;49313:2;49305:6;49301:15;49294:45;49109:237;:::o;49352:221::-;49492:34;49488:1;49480:6;49476:14;49469:58;49561:4;49556:2;49548:6;49544:15;49537:29;49352:221;:::o;49579:114::-;;:::o;49699:166::-;49839:18;49835:1;49827:6;49823:14;49816:42;49699:166;:::o;49871:238::-;50011:34;50007:1;49999:6;49995:14;49988:58;50080:21;50075:2;50067:6;50063:15;50056:46;49871:238;:::o;50115:179::-;50255:31;50251:1;50243:6;50239:14;50232:55;50115:179;:::o;50300:220::-;50440:34;50436:1;50428:6;50424:14;50417:58;50509:3;50504:2;50496:6;50492:15;50485:28;50300:220;:::o;50526:155::-;50666:7;50662:1;50654:6;50650:14;50643:31;50526:155;:::o;50687:233::-;50827:34;50823:1;50815:6;50811:14;50804:58;50896:16;50891:2;50883:6;50879:15;50872:41;50687:233;:::o;50926:225::-;51066:34;51062:1;51054:6;51050:14;51043:58;51135:8;51130:2;51122:6;51118:15;51111:33;50926:225;:::o;51157:181::-;51297:33;51293:1;51285:6;51281:14;51274:57;51157:181;:::o;51344:234::-;51484:34;51480:1;51472:6;51468:14;51461:58;51553:17;51548:2;51540:6;51536:15;51529:42;51344:234;:::o;51584:232::-;51724:34;51720:1;51712:6;51708:14;51701:58;51793:15;51788:2;51780:6;51776:15;51769:40;51584:232;:::o;51822:221::-;51962:34;51958:1;51950:6;51946:14;51939:58;52031:4;52026:2;52018:6;52014:15;52007:29;51822:221;:::o;52049:122::-;52122:24;52140:5;52122:24;:::i;:::-;52115:5;52112:35;52102:63;;52161:1;52158;52151:12;52102:63;52049:122;:::o;52177:116::-;52247:21;52262:5;52247:21;:::i;:::-;52240:5;52237:32;52227:60;;52283:1;52280;52273:12;52227:60;52177:116;:::o;52299:120::-;52371:23;52388:5;52371:23;:::i;:::-;52364:5;52361:34;52351:62;;52409:1;52406;52399:12;52351:62;52299:120;:::o;52425:122::-;52498:24;52516:5;52498:24;:::i;:::-;52491:5;52488:35;52478:63;;52537:1;52534;52527:12;52478:63;52425:122;:::o

Swarm Source

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