ETH Price: $2,368.44 (-2.95%)
Gas: 9.97 Gwei

Token

Ascii Frens (0xAF)
 

Overview

Max Total Supply

463 0xAF

Holders

158

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 0xAF
0xa1777b5646a8dd49550adb540751d05f83073ee0
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:
AsciiFrensNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import './ERC721A.sol';

contract AsciiFrensNFT is Ownable, ERC721A, ReentrancyGuard {

    uint public immutable MAX_SUPPLY = 100000;
    uint16 public immutable MAX_TEAM_SUPPLY = 250;
    uint16 public teamCounter = 0;
    uint8 public saleStage; // 0: PAUSED | 1: SALE | 2: SOLDOUT
    string public baseTokenURI;

    constructor() ERC721A('Ascii Frens', '0xAF', 20, 100000) {
        saleStage = 0;
    }

    // UPDATE SALESTAGE

    function setSaleStage(uint8 _saleStage) external onlyOwner {
        require(saleStage != 2, "Cannot update if already reached soldout stage.");
        saleStage = _saleStage;
    }

    // PUBLIC MINT 

    function publicMint(uint _quantity) external nonReentrant {
        require(saleStage == 1, "Public sale is not active.");
        require(balanceOf(msg.sender) + _quantity <= 3, "Would reach the max mint amount per holder.");
        require(totalSupply() + _quantity + (MAX_TEAM_SUPPLY-teamCounter) < MAX_SUPPLY, "Mint would exceed max supply.");

        _safeMint(msg.sender, _quantity);
        if (totalSupply() + (MAX_TEAM_SUPPLY-teamCounter) == MAX_SUPPLY) {
            saleStage = 2;
        }
    }

    // TEAM MINT

    function teamMint(address _to, uint16 quantity) external onlyOwner {
        require(teamCounter + quantity <= MAX_TEAM_SUPPLY, "Wouldl exceed max team supply.");
        _safeMint(_to, quantity);
        teamCounter += quantity;
    }
    
    // METADATA URI

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

    function setBaseTokenUri(string calldata _baseTokenURI) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexisting token");
        string memory base = _baseURI();
        return bytes(base).length > 0 ? string(abi.encodePacked(base, Strings.toString(tokenId), ".json")) : "https://bafybeiabjl4zvtctltv7vhrzjdo73lgxp4ef3x33hgqkvgcnbe3ehkibfm.ipfs.dweb.link/metadata.json";
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 5 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 6 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 7 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TEAM_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleStage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_saleStage","type":"uint8"}],"name":"setSaleStage","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":"teamCounter","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"quantity","type":"uint16"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405260006001556000600855620186a060c09081525060fa61ffff1660e09061ffff1660f01b8152506000600a60006101000a81548161ffff021916908361ffff1602179055503480156200005757600080fd5b506040518060400160405280600b81526020017f4173636969204672656e730000000000000000000000000000000000000000008152506040518060400160405280600481526020017f30784146000000000000000000000000000000000000000000000000000000008152506014620186a0620000ea620000de620001e660201b60201c565b620001ee60201b60201c565b6000811162000130576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012790620003d2565b60405180910390fd5b6000821162000176576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016d90620003b0565b60405180910390fd5b83600290805190602001906200018e929190620002b2565b508260039080519060200190620001a7929190620002b2565b508160a0818152505080608081815250505050505060016009819055506000600a60026101000a81548160ff021916908360ff16021790555062000508565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c09062000405565b90600052602060002090601f016020900481019282620002e4576000855562000330565b82601f10620002ff57805160ff191683800117855562000330565b8280016001018555821562000330579182015b828111156200032f57825182559160200191906001019062000312565b5b5090506200033f919062000343565b5090565b5b808211156200035e57600081600090555060010162000344565b5090565b600062000371602783620003f4565b91506200037e826200046a565b604082019050919050565b600062000398602e83620003f4565b9150620003a582620004b9565b604082019050919050565b60006020820190508181036000830152620003cb8162000362565b9050919050565b60006020820190508181036000830152620003ed8162000389565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041e57607f821691505b602082108114156200043557620004346200043b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05160c05160e05160f01c6144a46200057360003960008181610a6401528181610b2c0152818161135401526114b9015260008181610a3201528181610afa0152610d99015260008181611d5001528181611d7901526124990152600050506144a46000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063b88d4fde116100a2578063d7224ba011610071578063d7224ba01461051a578063def0c27514610538578063e985e9c514610556578063f2fde38b14610586576101cf565b8063b88d4fde14610494578063c87b56dd146104b0578063ce658079146104e0578063d547cfb7146104fc576101cf565b806395652cfa116100de57806395652cfa1461042257806395d89b411461043e578063a22cb4651461045c578063b44c576714610478576101cf565b806370a08231146103ca578063715018a6146103fa5780638da5cb5b14610404576101cf565b80632f745c591161017157806342842e0e1161014b57806342842e0e146103305780634aaca86d1461034c5780634f6ccce71461036a5780636352211e1461039a576101cf565b80632f745c59146102c457806332cb6b0c146102f457806335eb2be214610312576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806318160ddd1461026e57806323b872dd1461028c5780632db11544146102a8576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e99190612d13565b6105a2565b6040516101fb9190613349565b60405180910390f35b61020c6106ec565b6040516102199190613364565b60405180910390f35b61023c60048036038101906102379190612dba565b61077e565b60405161024991906132e2565b60405180910390f35b61026c60048036038101906102679190612cd3565b610803565b005b61027661091c565b60405161028391906136e1565b60405180910390f35b6102a660048036038101906102a19190612b7d565b610926565b005b6102c260048036038101906102bd9190612dba565b610936565b005b6102de60048036038101906102d99190612cd3565b610b99565b6040516102eb91906136e1565b60405180910390f35b6102fc610d97565b60405161030991906136e1565b60405180910390f35b61031a610dbb565b60405161032791906136c6565b60405180910390f35b61034a60048036038101906103459190612b7d565b610dcf565b005b610354610def565b60405161036191906136fc565b60405180910390f35b610384600480360381019061037f9190612dba565b610e02565b60405161039191906136e1565b60405180910390f35b6103b460048036038101906103af9190612dba565b610e55565b6040516103c191906132e2565b60405180910390f35b6103e460048036038101906103df9190612b10565b610e6b565b6040516103f191906136e1565b60405180910390f35b610402610f54565b005b61040c610f68565b60405161041991906132e2565b60405180910390f35b61043c60048036038101906104379190612d6d565b610f91565b005b610446610faf565b6040516104539190613364565b60405180910390f35b61047660048036038101906104719190612c53565b611041565b005b610492600480360381019061048d9190612de7565b6111c2565b005b6104ae60048036038101906104a99190612bd0565b61123e565b005b6104ca60048036038101906104c59190612dba565b61129a565b6040516104d79190613364565b60405180910390f35b6104fa60048036038101906104f59190612c93565b61134a565b005b610504611423565b6040516105119190613364565b60405180910390f35b6105226114b1565b60405161052f91906136e1565b60405180910390f35b6105406114b7565b60405161054d91906136c6565b60405180910390f35b610570600480360381019061056b9190612b3d565b6114db565b60405161057d9190613349565b60405180910390f35b6105a0600480360381019061059b9190612b10565b61156f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e557506106e4826115f3565b5b9050919050565b6060600280546106fb90613a68565b80601f016020809104026020016040519081016040528092919081815260200182805461072790613a68565b80156107745780601f1061074957610100808354040283529160200191610774565b820191906000526020600020905b81548152906001019060200180831161075757829003601f168201915b5050505050905090565b60006107898261165d565b6107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf90613686565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080e82610e55565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690613586565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089e61166b565b73ffffffffffffffffffffffffffffffffffffffff1614806108cd57506108cc816108c761166b565b6114db565b5b61090c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610903906134a6565b60405180910390fd5b610917838383611673565b505050565b6000600154905090565b610931838383611725565b505050565b6002600954141561097c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097390613646565b60405180910390fd5b60026009819055506001600a60029054906101000a900460ff1660ff16146109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d090613406565b60405180910390fd5b6003816109e533610e6b565b6109ef919061382e565b1115610a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2790613606565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000600a60009054906101000a900461ffff167f0000000000000000000000000000000000000000000000000000000000000000610a8d91906138e9565b61ffff1682610a9a61091c565b610aa4919061382e565b610aae919061382e565b10610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae5906133a6565b60405180910390fd5b610af83382611cde565b7f0000000000000000000000000000000000000000000000000000000000000000600a60009054906101000a900461ffff167f0000000000000000000000000000000000000000000000000000000000000000610b5591906138e9565b61ffff16610b6161091c565b610b6b919061382e565b1415610b8e576002600a60026101000a81548160ff021916908360ff1602179055505b600160098190555050565b6000610ba483610e6b565b8210610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90613386565b60405180910390fd5b6000610bef61091c565b905060008060005b83811015610d55576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ce957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d415786841415610d32578195505050505050610d91565b8380610d3d90613acb565b9450505b508080610d4d90613acb565b915050610bf7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890613626565b60405180910390fd5b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900461ffff1681565b610dea8383836040518060200160405280600081525061123e565b505050565b600a60029054906101000a900460ff1681565b6000610e0c61091c565b8210610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490613426565b60405180910390fd5b819050919050565b6000610e6082611cfc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed3906134c6565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f5c611eff565b610f666000611f7d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f99611eff565b8181600b9190610faa9291906128da565b505050565b606060038054610fbe90613a68565b80601f0160208091040260200160405190810160405280929190818152602001828054610fea90613a68565b80156110375780601f1061100c57610100808354040283529160200191611037565b820191906000526020600020905b81548152906001019060200180831161101a57829003601f168201915b5050505050905090565b61104961166b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90613546565b60405180910390fd5b80600760006110c461166b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661117161166b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111b69190613349565b60405180910390a35050565b6111ca611eff565b6002600a60029054906101000a900460ff1660ff161415611220576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611217906134e6565b60405180910390fd5b80600a60026101000a81548160ff021916908360ff16021790555050565b611249848484611725565b61125584848484612041565b611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b906135a6565b60405180910390fd5b50505050565b60606112a58261165d565b6112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db90613486565b60405180910390fd5b60006112ee6121d8565b905060008151116113175760405180608001604052806060815260200161440f60609139611342565b806113218461226a565b6040516020016113329291906132b3565b6040516020818303038152906040525b915050919050565b611352611eff565b7f000000000000000000000000000000000000000000000000000000000000000061ffff1681600a60009054906101000a900461ffff1661139391906137f6565b61ffff1611156113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90613466565b60405180910390fd5b6113e6828261ffff16611cde565b80600a60008282829054906101000a900461ffff1661140591906137f6565b92506101000a81548161ffff021916908361ffff1602179055505050565b600b805461143090613a68565b80601f016020809104026020016040519081016040528092919081815260200182805461145c90613a68565b80156114a95780601f1061147e576101008083540402835291602001916114a9565b820191906000526020600020905b81548152906001019060200180831161148c57829003601f168201915b505050505081565b60085481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611577611eff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de906133c6565b60405180910390fd5b6115f081611f7d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061173082611cfc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661175761166b565b73ffffffffffffffffffffffffffffffffffffffff1614806117b3575061177c61166b565b73ffffffffffffffffffffffffffffffffffffffff1661179b8461077e565b73ffffffffffffffffffffffffffffffffffffffff16145b806117cf57506117ce82600001516117c961166b565b6114db565b5b905080611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890613566565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a90613506565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea90613446565b60405180910390fd5b61190085858560016123cb565b6119106000848460000151611673565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661197e91906138b5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a2291906137b0565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611b28919061382e565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c6e57611b9e8161165d565b15611c6d576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cd686868660016123d1565b505050505050565b611cf88282604051806020016040528060008152506123d7565b5050565b611d04612960565b611d0d8261165d565b611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d43906133e6565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611db05760017f000000000000000000000000000000000000000000000000000000000000000084611da3919061391d565b611dad919061382e565b90505b60008390505b818110611ebe576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611eaa57809350505050611efa565b508080611eb690613a3e565b915050611db6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef190613666565b60405180910390fd5b919050565b611f0761166b565b73ffffffffffffffffffffffffffffffffffffffff16611f25610f68565b73ffffffffffffffffffffffffffffffffffffffff1614611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290613526565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120628473ffffffffffffffffffffffffffffffffffffffff166128b7565b156121cb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261208b61166b565b8786866040518563ffffffff1660e01b81526004016120ad94939291906132fd565b602060405180830381600087803b1580156120c757600080fd5b505af19250505080156120f857506040513d601f19601f820116820180604052508101906120f59190612d40565b60015b61217b573d8060008114612128576040519150601f19603f3d011682016040523d82523d6000602084013e61212d565b606091505b50600081511415612173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216a906135a6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121d0565b600190505b949350505050565b6060600b80546121e790613a68565b80601f016020809104026020016040519081016040528092919081815260200182805461221390613a68565b80156122605780601f1061223557610100808354040283529160200191612260565b820191906000526020600020905b81548152906001019060200180831161224357829003601f168201915b5050505050905090565b606060008214156122b2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123c6565b600082905060005b600082146122e45780806122cd90613acb565b915050600a826122dd9190613884565b91506122ba565b60008167ffffffffffffffff811115612300576122ff613c01565b5b6040519080825280601f01601f1916602001820160405280156123325781602001600182028036833780820191505090505b5090505b600085146123bf5760018261234b919061391d565b9150600a8561235a9190613b14565b6030612366919061382e565b60f81b81838151811061237c5761237b613bd2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123b89190613884565b9450612336565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561244e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612445906135e6565b60405180910390fd5b6124578161165d565b15612497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248e906135c6565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f1906136a6565b60405180910390fd5b61250760008583866123cb565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161260491906137b0565b6fffffffffffffffffffffffffffffffff16815260200185836020015161262b91906137b0565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561289a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461283a6000888488612041565b612879576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612870906135a6565b60405180910390fd5b818061288490613acb565b925050808061289290613acb565b9150506127c9565b50806001819055506128af60008785886123d1565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546128e690613a68565b90600052602060002090601f016020900481019282612908576000855561294f565b82601f1061292157803560ff191683800117855561294f565b8280016001018555821561294f579182015b8281111561294e578235825591602001919060010190612933565b5b50905061295c919061299a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156129b357600081600090555060010161299b565b5090565b60006129ca6129c58461373c565b613717565b9050828152602081018484840111156129e6576129e5613c3f565b5b6129f18482856139fc565b509392505050565b600081359050612a0881614384565b92915050565b600081359050612a1d8161439b565b92915050565b600081359050612a32816143b2565b92915050565b600081519050612a47816143b2565b92915050565b600082601f830112612a6257612a61613c35565b5b8135612a728482602086016129b7565b91505092915050565b60008083601f840112612a9157612a90613c35565b5b8235905067ffffffffffffffff811115612aae57612aad613c30565b5b602083019150836001820283011115612aca57612ac9613c3a565b5b9250929050565b600081359050612ae0816143c9565b92915050565b600081359050612af5816143e0565b92915050565b600081359050612b0a816143f7565b92915050565b600060208284031215612b2657612b25613c49565b5b6000612b34848285016129f9565b91505092915050565b60008060408385031215612b5457612b53613c49565b5b6000612b62858286016129f9565b9250506020612b73858286016129f9565b9150509250929050565b600080600060608486031215612b9657612b95613c49565b5b6000612ba4868287016129f9565b9350506020612bb5868287016129f9565b9250506040612bc686828701612ae6565b9150509250925092565b60008060008060808587031215612bea57612be9613c49565b5b6000612bf8878288016129f9565b9450506020612c09878288016129f9565b9350506040612c1a87828801612ae6565b925050606085013567ffffffffffffffff811115612c3b57612c3a613c44565b5b612c4787828801612a4d565b91505092959194509250565b60008060408385031215612c6a57612c69613c49565b5b6000612c78858286016129f9565b9250506020612c8985828601612a0e565b9150509250929050565b60008060408385031215612caa57612ca9613c49565b5b6000612cb8858286016129f9565b9250506020612cc985828601612ad1565b9150509250929050565b60008060408385031215612cea57612ce9613c49565b5b6000612cf8858286016129f9565b9250506020612d0985828601612ae6565b9150509250929050565b600060208284031215612d2957612d28613c49565b5b6000612d3784828501612a23565b91505092915050565b600060208284031215612d5657612d55613c49565b5b6000612d6484828501612a38565b91505092915050565b60008060208385031215612d8457612d83613c49565b5b600083013567ffffffffffffffff811115612da257612da1613c44565b5b612dae85828601612a7b565b92509250509250929050565b600060208284031215612dd057612dcf613c49565b5b6000612dde84828501612ae6565b91505092915050565b600060208284031215612dfd57612dfc613c49565b5b6000612e0b84828501612afb565b91505092915050565b612e1d81613951565b82525050565b612e2c81613963565b82525050565b6000612e3d8261376d565b612e478185613783565b9350612e57818560208601613a0b565b612e6081613c4e565b840191505092915050565b6000612e7682613778565b612e808185613794565b9350612e90818560208601613a0b565b612e9981613c4e565b840191505092915050565b6000612eaf82613778565b612eb981856137a5565b9350612ec9818560208601613a0b565b80840191505092915050565b6000612ee2602283613794565b9150612eed82613c5f565b604082019050919050565b6000612f05601d83613794565b9150612f1082613cae565b602082019050919050565b6000612f28602683613794565b9150612f3382613cd7565b604082019050919050565b6000612f4b602a83613794565b9150612f5682613d26565b604082019050919050565b6000612f6e601a83613794565b9150612f7982613d75565b602082019050919050565b6000612f91602383613794565b9150612f9c82613d9e565b604082019050919050565b6000612fb4602583613794565b9150612fbf82613ded565b604082019050919050565b6000612fd7601e83613794565b9150612fe282613e3c565b602082019050919050565b6000612ffa602f83613794565b915061300582613e65565b604082019050919050565b600061301d603983613794565b915061302882613eb4565b604082019050919050565b6000613040602b83613794565b915061304b82613f03565b604082019050919050565b6000613063602f83613794565b915061306e82613f52565b604082019050919050565b6000613086602683613794565b915061309182613fa1565b604082019050919050565b60006130a96005836137a5565b91506130b482613ff0565b600582019050919050565b60006130cc602083613794565b91506130d782614019565b602082019050919050565b60006130ef601a83613794565b91506130fa82614042565b602082019050919050565b6000613112603283613794565b915061311d8261406b565b604082019050919050565b6000613135602283613794565b9150613140826140ba565b604082019050919050565b6000613158603383613794565b915061316382614109565b604082019050919050565b600061317b601d83613794565b915061318682614158565b602082019050919050565b600061319e602183613794565b91506131a982614181565b604082019050919050565b60006131c1602b83613794565b91506131cc826141d0565b604082019050919050565b60006131e4602e83613794565b91506131ef8261421f565b604082019050919050565b6000613207601f83613794565b91506132128261426e565b602082019050919050565b600061322a602f83613794565b915061323582614297565b604082019050919050565b600061324d602d83613794565b9150613258826142e6565b604082019050919050565b6000613270602283613794565b915061327b82614335565b604082019050919050565b61328f816139b7565b82525050565b61329e816139e5565b82525050565b6132ad816139ef565b82525050565b60006132bf8285612ea4565b91506132cb8284612ea4565b91506132d68261309c565b91508190509392505050565b60006020820190506132f76000830184612e14565b92915050565b60006080820190506133126000830187612e14565b61331f6020830186612e14565b61332c6040830185613295565b818103606083015261333e8184612e32565b905095945050505050565b600060208201905061335e6000830184612e23565b92915050565b6000602082019050818103600083015261337e8184612e6b565b905092915050565b6000602082019050818103600083015261339f81612ed5565b9050919050565b600060208201905081810360008301526133bf81612ef8565b9050919050565b600060208201905081810360008301526133df81612f1b565b9050919050565b600060208201905081810360008301526133ff81612f3e565b9050919050565b6000602082019050818103600083015261341f81612f61565b9050919050565b6000602082019050818103600083015261343f81612f84565b9050919050565b6000602082019050818103600083015261345f81612fa7565b9050919050565b6000602082019050818103600083015261347f81612fca565b9050919050565b6000602082019050818103600083015261349f81612fed565b9050919050565b600060208201905081810360008301526134bf81613010565b9050919050565b600060208201905081810360008301526134df81613033565b9050919050565b600060208201905081810360008301526134ff81613056565b9050919050565b6000602082019050818103600083015261351f81613079565b9050919050565b6000602082019050818103600083015261353f816130bf565b9050919050565b6000602082019050818103600083015261355f816130e2565b9050919050565b6000602082019050818103600083015261357f81613105565b9050919050565b6000602082019050818103600083015261359f81613128565b9050919050565b600060208201905081810360008301526135bf8161314b565b9050919050565b600060208201905081810360008301526135df8161316e565b9050919050565b600060208201905081810360008301526135ff81613191565b9050919050565b6000602082019050818103600083015261361f816131b4565b9050919050565b6000602082019050818103600083015261363f816131d7565b9050919050565b6000602082019050818103600083015261365f816131fa565b9050919050565b6000602082019050818103600083015261367f8161321d565b9050919050565b6000602082019050818103600083015261369f81613240565b9050919050565b600060208201905081810360008301526136bf81613263565b9050919050565b60006020820190506136db6000830184613286565b92915050565b60006020820190506136f66000830184613295565b92915050565b600060208201905061371160008301846132a4565b92915050565b6000613721613732565b905061372d8282613a9a565b919050565b6000604051905090565b600067ffffffffffffffff82111561375757613756613c01565b5b61376082613c4e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006137bb8261399b565b91506137c68361399b565b9250826fffffffffffffffffffffffffffffffff038211156137eb576137ea613b45565b5b828201905092915050565b6000613801826139b7565b915061380c836139b7565b92508261ffff0382111561382357613822613b45565b5b828201905092915050565b6000613839826139e5565b9150613844836139e5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561387957613878613b45565b5b828201905092915050565b600061388f826139e5565b915061389a836139e5565b9250826138aa576138a9613b74565b5b828204905092915050565b60006138c08261399b565b91506138cb8361399b565b9250828210156138de576138dd613b45565b5b828203905092915050565b60006138f4826139b7565b91506138ff836139b7565b92508282101561391257613911613b45565b5b828203905092915050565b6000613928826139e5565b9150613933836139e5565b92508282101561394657613945613b45565b5b828203905092915050565b600061395c826139c5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613a29578082015181840152602081019050613a0e565b83811115613a38576000848401525b50505050565b6000613a49826139e5565b91506000821415613a5d57613a5c613b45565b5b600182039050919050565b60006002820490506001821680613a8057607f821691505b60208210811415613a9457613a93613ba3565b5b50919050565b613aa382613c4e565b810181811067ffffffffffffffff82111715613ac257613ac1613c01565b5b80604052505050565b6000613ad6826139e5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b0957613b08613b45565b5b600182019050919050565b6000613b1f826139e5565b9150613b2a836139e5565b925082613b3a57613b39613b74565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420776f756c6420657863656564206d617820737570706c792e000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206163746976652e000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f576f756c646c20657863656564206d6178207465616d20737570706c792e0000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374696e6720746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f43616e6e6f742075706461746520696620616c7265616479207265616368656460008201527f20736f6c646f75742073746167652e0000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f576f756c6420726561636820746865206d6178206d696e7420616d6f756e742060008201527f70657220686f6c6465722e000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61438d81613951565b811461439857600080fd5b50565b6143a481613963565b81146143af57600080fd5b50565b6143bb8161396f565b81146143c657600080fd5b50565b6143d2816139b7565b81146143dd57600080fd5b50565b6143e9816139e5565b81146143f457600080fd5b50565b614400816139ef565b811461440b57600080fd5b5056fe68747470733a2f2f6261667962656961626a6c347a767463746c7476377668727a6a646f37336c677870346566337833336867716b7667636e62653365686b6962666d2e697066732e647765622e6c696e6b2f6d657461646174612e6a736f6ea2646970667358221220d2b615637acfe3782d1bba1e5ded99452eb74a7f124fb40e384ec68b3b5de1c264736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063b88d4fde116100a2578063d7224ba011610071578063d7224ba01461051a578063def0c27514610538578063e985e9c514610556578063f2fde38b14610586576101cf565b8063b88d4fde14610494578063c87b56dd146104b0578063ce658079146104e0578063d547cfb7146104fc576101cf565b806395652cfa116100de57806395652cfa1461042257806395d89b411461043e578063a22cb4651461045c578063b44c576714610478576101cf565b806370a08231146103ca578063715018a6146103fa5780638da5cb5b14610404576101cf565b80632f745c591161017157806342842e0e1161014b57806342842e0e146103305780634aaca86d1461034c5780634f6ccce71461036a5780636352211e1461039a576101cf565b80632f745c59146102c457806332cb6b0c146102f457806335eb2be214610312576101cf565b8063095ea7b3116101ad578063095ea7b31461025257806318160ddd1461026e57806323b872dd1461028c5780632db11544146102a8576101cf565b806301ffc9a7146101d457806306fdde0314610204578063081812fc14610222575b600080fd5b6101ee60048036038101906101e99190612d13565b6105a2565b6040516101fb9190613349565b60405180910390f35b61020c6106ec565b6040516102199190613364565b60405180910390f35b61023c60048036038101906102379190612dba565b61077e565b60405161024991906132e2565b60405180910390f35b61026c60048036038101906102679190612cd3565b610803565b005b61027661091c565b60405161028391906136e1565b60405180910390f35b6102a660048036038101906102a19190612b7d565b610926565b005b6102c260048036038101906102bd9190612dba565b610936565b005b6102de60048036038101906102d99190612cd3565b610b99565b6040516102eb91906136e1565b60405180910390f35b6102fc610d97565b60405161030991906136e1565b60405180910390f35b61031a610dbb565b60405161032791906136c6565b60405180910390f35b61034a60048036038101906103459190612b7d565b610dcf565b005b610354610def565b60405161036191906136fc565b60405180910390f35b610384600480360381019061037f9190612dba565b610e02565b60405161039191906136e1565b60405180910390f35b6103b460048036038101906103af9190612dba565b610e55565b6040516103c191906132e2565b60405180910390f35b6103e460048036038101906103df9190612b10565b610e6b565b6040516103f191906136e1565b60405180910390f35b610402610f54565b005b61040c610f68565b60405161041991906132e2565b60405180910390f35b61043c60048036038101906104379190612d6d565b610f91565b005b610446610faf565b6040516104539190613364565b60405180910390f35b61047660048036038101906104719190612c53565b611041565b005b610492600480360381019061048d9190612de7565b6111c2565b005b6104ae60048036038101906104a99190612bd0565b61123e565b005b6104ca60048036038101906104c59190612dba565b61129a565b6040516104d79190613364565b60405180910390f35b6104fa60048036038101906104f59190612c93565b61134a565b005b610504611423565b6040516105119190613364565b60405180910390f35b6105226114b1565b60405161052f91906136e1565b60405180910390f35b6105406114b7565b60405161054d91906136c6565b60405180910390f35b610570600480360381019061056b9190612b3d565b6114db565b60405161057d9190613349565b60405180910390f35b6105a0600480360381019061059b9190612b10565b61156f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106d557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106e557506106e4826115f3565b5b9050919050565b6060600280546106fb90613a68565b80601f016020809104026020016040519081016040528092919081815260200182805461072790613a68565b80156107745780601f1061074957610100808354040283529160200191610774565b820191906000526020600020905b81548152906001019060200180831161075757829003601f168201915b5050505050905090565b60006107898261165d565b6107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf90613686565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061080e82610e55565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690613586565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089e61166b565b73ffffffffffffffffffffffffffffffffffffffff1614806108cd57506108cc816108c761166b565b6114db565b5b61090c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610903906134a6565b60405180910390fd5b610917838383611673565b505050565b6000600154905090565b610931838383611725565b505050565b6002600954141561097c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097390613646565b60405180910390fd5b60026009819055506001600a60029054906101000a900460ff1660ff16146109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d090613406565b60405180910390fd5b6003816109e533610e6b565b6109ef919061382e565b1115610a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2790613606565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000186a0600a60009054906101000a900461ffff167f00000000000000000000000000000000000000000000000000000000000000fa610a8d91906138e9565b61ffff1682610a9a61091c565b610aa4919061382e565b610aae919061382e565b10610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae5906133a6565b60405180910390fd5b610af83382611cde565b7f00000000000000000000000000000000000000000000000000000000000186a0600a60009054906101000a900461ffff167f00000000000000000000000000000000000000000000000000000000000000fa610b5591906138e9565b61ffff16610b6161091c565b610b6b919061382e565b1415610b8e576002600a60026101000a81548160ff021916908360ff1602179055505b600160098190555050565b6000610ba483610e6b565b8210610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90613386565b60405180910390fd5b6000610bef61091c565b905060008060005b83811015610d55576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ce957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d415786841415610d32578195505050505050610d91565b8380610d3d90613acb565b9450505b508080610d4d90613acb565b915050610bf7565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890613626565b60405180910390fd5b92915050565b7f00000000000000000000000000000000000000000000000000000000000186a081565b600a60009054906101000a900461ffff1681565b610dea8383836040518060200160405280600081525061123e565b505050565b600a60029054906101000a900460ff1681565b6000610e0c61091c565b8210610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4490613426565b60405180910390fd5b819050919050565b6000610e6082611cfc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed3906134c6565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b610f5c611eff565b610f666000611f7d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f99611eff565b8181600b9190610faa9291906128da565b505050565b606060038054610fbe90613a68565b80601f0160208091040260200160405190810160405280929190818152602001828054610fea90613a68565b80156110375780601f1061100c57610100808354040283529160200191611037565b820191906000526020600020905b81548152906001019060200180831161101a57829003601f168201915b5050505050905090565b61104961166b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae90613546565b60405180910390fd5b80600760006110c461166b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661117161166b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111b69190613349565b60405180910390a35050565b6111ca611eff565b6002600a60029054906101000a900460ff1660ff161415611220576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611217906134e6565b60405180910390fd5b80600a60026101000a81548160ff021916908360ff16021790555050565b611249848484611725565b61125584848484612041565b611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b906135a6565b60405180910390fd5b50505050565b60606112a58261165d565b6112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db90613486565b60405180910390fd5b60006112ee6121d8565b905060008151116113175760405180608001604052806060815260200161440f60609139611342565b806113218461226a565b6040516020016113329291906132b3565b6040516020818303038152906040525b915050919050565b611352611eff565b7f00000000000000000000000000000000000000000000000000000000000000fa61ffff1681600a60009054906101000a900461ffff1661139391906137f6565b61ffff1611156113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90613466565b60405180910390fd5b6113e6828261ffff16611cde565b80600a60008282829054906101000a900461ffff1661140591906137f6565b92506101000a81548161ffff021916908361ffff1602179055505050565b600b805461143090613a68565b80601f016020809104026020016040519081016040528092919081815260200182805461145c90613a68565b80156114a95780601f1061147e576101008083540402835291602001916114a9565b820191906000526020600020905b81548152906001019060200180831161148c57829003601f168201915b505050505081565b60085481565b7f00000000000000000000000000000000000000000000000000000000000000fa81565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611577611eff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de906133c6565b60405180910390fd5b6115f081611f7d565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061173082611cfc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661175761166b565b73ffffffffffffffffffffffffffffffffffffffff1614806117b3575061177c61166b565b73ffffffffffffffffffffffffffffffffffffffff1661179b8461077e565b73ffffffffffffffffffffffffffffffffffffffff16145b806117cf57506117ce82600001516117c961166b565b6114db565b5b905080611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890613566565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a90613506565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea90613446565b60405180910390fd5b61190085858560016123cb565b6119106000848460000151611673565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661197e91906138b5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a2291906137b0565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611b28919061382e565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c6e57611b9e8161165d565b15611c6d576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611cd686868660016123d1565b505050505050565b611cf88282604051806020016040528060008152506123d7565b5050565b611d04612960565b611d0d8261165d565b611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d43906133e6565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000148310611db05760017f000000000000000000000000000000000000000000000000000000000000001484611da3919061391d565b611dad919061382e565b90505b60008390505b818110611ebe576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611eaa57809350505050611efa565b508080611eb690613a3e565b915050611db6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef190613666565b60405180910390fd5b919050565b611f0761166b565b73ffffffffffffffffffffffffffffffffffffffff16611f25610f68565b73ffffffffffffffffffffffffffffffffffffffff1614611f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7290613526565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120628473ffffffffffffffffffffffffffffffffffffffff166128b7565b156121cb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261208b61166b565b8786866040518563ffffffff1660e01b81526004016120ad94939291906132fd565b602060405180830381600087803b1580156120c757600080fd5b505af19250505080156120f857506040513d601f19601f820116820180604052508101906120f59190612d40565b60015b61217b573d8060008114612128576040519150601f19603f3d011682016040523d82523d6000602084013e61212d565b606091505b50600081511415612173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216a906135a6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121d0565b600190505b949350505050565b6060600b80546121e790613a68565b80601f016020809104026020016040519081016040528092919081815260200182805461221390613a68565b80156122605780601f1061223557610100808354040283529160200191612260565b820191906000526020600020905b81548152906001019060200180831161224357829003601f168201915b5050505050905090565b606060008214156122b2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123c6565b600082905060005b600082146122e45780806122cd90613acb565b915050600a826122dd9190613884565b91506122ba565b60008167ffffffffffffffff811115612300576122ff613c01565b5b6040519080825280601f01601f1916602001820160405280156123325781602001600182028036833780820191505090505b5090505b600085146123bf5760018261234b919061391d565b9150600a8561235a9190613b14565b6030612366919061382e565b60f81b81838151811061237c5761237b613bd2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123b89190613884565b9450612336565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561244e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612445906135e6565b60405180910390fd5b6124578161165d565b15612497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248e906135c6565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000148311156124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f1906136a6565b60405180910390fd5b61250760008583866123cb565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161260491906137b0565b6fffffffffffffffffffffffffffffffff16815260200185836020015161262b91906137b0565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561289a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461283a6000888488612041565b612879576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612870906135a6565b60405180910390fd5b818061288490613acb565b925050808061289290613acb565b9150506127c9565b50806001819055506128af60008785886123d1565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546128e690613a68565b90600052602060002090601f016020900481019282612908576000855561294f565b82601f1061292157803560ff191683800117855561294f565b8280016001018555821561294f579182015b8281111561294e578235825591602001919060010190612933565b5b50905061295c919061299a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156129b357600081600090555060010161299b565b5090565b60006129ca6129c58461373c565b613717565b9050828152602081018484840111156129e6576129e5613c3f565b5b6129f18482856139fc565b509392505050565b600081359050612a0881614384565b92915050565b600081359050612a1d8161439b565b92915050565b600081359050612a32816143b2565b92915050565b600081519050612a47816143b2565b92915050565b600082601f830112612a6257612a61613c35565b5b8135612a728482602086016129b7565b91505092915050565b60008083601f840112612a9157612a90613c35565b5b8235905067ffffffffffffffff811115612aae57612aad613c30565b5b602083019150836001820283011115612aca57612ac9613c3a565b5b9250929050565b600081359050612ae0816143c9565b92915050565b600081359050612af5816143e0565b92915050565b600081359050612b0a816143f7565b92915050565b600060208284031215612b2657612b25613c49565b5b6000612b34848285016129f9565b91505092915050565b60008060408385031215612b5457612b53613c49565b5b6000612b62858286016129f9565b9250506020612b73858286016129f9565b9150509250929050565b600080600060608486031215612b9657612b95613c49565b5b6000612ba4868287016129f9565b9350506020612bb5868287016129f9565b9250506040612bc686828701612ae6565b9150509250925092565b60008060008060808587031215612bea57612be9613c49565b5b6000612bf8878288016129f9565b9450506020612c09878288016129f9565b9350506040612c1a87828801612ae6565b925050606085013567ffffffffffffffff811115612c3b57612c3a613c44565b5b612c4787828801612a4d565b91505092959194509250565b60008060408385031215612c6a57612c69613c49565b5b6000612c78858286016129f9565b9250506020612c8985828601612a0e565b9150509250929050565b60008060408385031215612caa57612ca9613c49565b5b6000612cb8858286016129f9565b9250506020612cc985828601612ad1565b9150509250929050565b60008060408385031215612cea57612ce9613c49565b5b6000612cf8858286016129f9565b9250506020612d0985828601612ae6565b9150509250929050565b600060208284031215612d2957612d28613c49565b5b6000612d3784828501612a23565b91505092915050565b600060208284031215612d5657612d55613c49565b5b6000612d6484828501612a38565b91505092915050565b60008060208385031215612d8457612d83613c49565b5b600083013567ffffffffffffffff811115612da257612da1613c44565b5b612dae85828601612a7b565b92509250509250929050565b600060208284031215612dd057612dcf613c49565b5b6000612dde84828501612ae6565b91505092915050565b600060208284031215612dfd57612dfc613c49565b5b6000612e0b84828501612afb565b91505092915050565b612e1d81613951565b82525050565b612e2c81613963565b82525050565b6000612e3d8261376d565b612e478185613783565b9350612e57818560208601613a0b565b612e6081613c4e565b840191505092915050565b6000612e7682613778565b612e808185613794565b9350612e90818560208601613a0b565b612e9981613c4e565b840191505092915050565b6000612eaf82613778565b612eb981856137a5565b9350612ec9818560208601613a0b565b80840191505092915050565b6000612ee2602283613794565b9150612eed82613c5f565b604082019050919050565b6000612f05601d83613794565b9150612f1082613cae565b602082019050919050565b6000612f28602683613794565b9150612f3382613cd7565b604082019050919050565b6000612f4b602a83613794565b9150612f5682613d26565b604082019050919050565b6000612f6e601a83613794565b9150612f7982613d75565b602082019050919050565b6000612f91602383613794565b9150612f9c82613d9e565b604082019050919050565b6000612fb4602583613794565b9150612fbf82613ded565b604082019050919050565b6000612fd7601e83613794565b9150612fe282613e3c565b602082019050919050565b6000612ffa602f83613794565b915061300582613e65565b604082019050919050565b600061301d603983613794565b915061302882613eb4565b604082019050919050565b6000613040602b83613794565b915061304b82613f03565b604082019050919050565b6000613063602f83613794565b915061306e82613f52565b604082019050919050565b6000613086602683613794565b915061309182613fa1565b604082019050919050565b60006130a96005836137a5565b91506130b482613ff0565b600582019050919050565b60006130cc602083613794565b91506130d782614019565b602082019050919050565b60006130ef601a83613794565b91506130fa82614042565b602082019050919050565b6000613112603283613794565b915061311d8261406b565b604082019050919050565b6000613135602283613794565b9150613140826140ba565b604082019050919050565b6000613158603383613794565b915061316382614109565b604082019050919050565b600061317b601d83613794565b915061318682614158565b602082019050919050565b600061319e602183613794565b91506131a982614181565b604082019050919050565b60006131c1602b83613794565b91506131cc826141d0565b604082019050919050565b60006131e4602e83613794565b91506131ef8261421f565b604082019050919050565b6000613207601f83613794565b91506132128261426e565b602082019050919050565b600061322a602f83613794565b915061323582614297565b604082019050919050565b600061324d602d83613794565b9150613258826142e6565b604082019050919050565b6000613270602283613794565b915061327b82614335565b604082019050919050565b61328f816139b7565b82525050565b61329e816139e5565b82525050565b6132ad816139ef565b82525050565b60006132bf8285612ea4565b91506132cb8284612ea4565b91506132d68261309c565b91508190509392505050565b60006020820190506132f76000830184612e14565b92915050565b60006080820190506133126000830187612e14565b61331f6020830186612e14565b61332c6040830185613295565b818103606083015261333e8184612e32565b905095945050505050565b600060208201905061335e6000830184612e23565b92915050565b6000602082019050818103600083015261337e8184612e6b565b905092915050565b6000602082019050818103600083015261339f81612ed5565b9050919050565b600060208201905081810360008301526133bf81612ef8565b9050919050565b600060208201905081810360008301526133df81612f1b565b9050919050565b600060208201905081810360008301526133ff81612f3e565b9050919050565b6000602082019050818103600083015261341f81612f61565b9050919050565b6000602082019050818103600083015261343f81612f84565b9050919050565b6000602082019050818103600083015261345f81612fa7565b9050919050565b6000602082019050818103600083015261347f81612fca565b9050919050565b6000602082019050818103600083015261349f81612fed565b9050919050565b600060208201905081810360008301526134bf81613010565b9050919050565b600060208201905081810360008301526134df81613033565b9050919050565b600060208201905081810360008301526134ff81613056565b9050919050565b6000602082019050818103600083015261351f81613079565b9050919050565b6000602082019050818103600083015261353f816130bf565b9050919050565b6000602082019050818103600083015261355f816130e2565b9050919050565b6000602082019050818103600083015261357f81613105565b9050919050565b6000602082019050818103600083015261359f81613128565b9050919050565b600060208201905081810360008301526135bf8161314b565b9050919050565b600060208201905081810360008301526135df8161316e565b9050919050565b600060208201905081810360008301526135ff81613191565b9050919050565b6000602082019050818103600083015261361f816131b4565b9050919050565b6000602082019050818103600083015261363f816131d7565b9050919050565b6000602082019050818103600083015261365f816131fa565b9050919050565b6000602082019050818103600083015261367f8161321d565b9050919050565b6000602082019050818103600083015261369f81613240565b9050919050565b600060208201905081810360008301526136bf81613263565b9050919050565b60006020820190506136db6000830184613286565b92915050565b60006020820190506136f66000830184613295565b92915050565b600060208201905061371160008301846132a4565b92915050565b6000613721613732565b905061372d8282613a9a565b919050565b6000604051905090565b600067ffffffffffffffff82111561375757613756613c01565b5b61376082613c4e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006137bb8261399b565b91506137c68361399b565b9250826fffffffffffffffffffffffffffffffff038211156137eb576137ea613b45565b5b828201905092915050565b6000613801826139b7565b915061380c836139b7565b92508261ffff0382111561382357613822613b45565b5b828201905092915050565b6000613839826139e5565b9150613844836139e5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561387957613878613b45565b5b828201905092915050565b600061388f826139e5565b915061389a836139e5565b9250826138aa576138a9613b74565b5b828204905092915050565b60006138c08261399b565b91506138cb8361399b565b9250828210156138de576138dd613b45565b5b828203905092915050565b60006138f4826139b7565b91506138ff836139b7565b92508282101561391257613911613b45565b5b828203905092915050565b6000613928826139e5565b9150613933836139e5565b92508282101561394657613945613b45565b5b828203905092915050565b600061395c826139c5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613a29578082015181840152602081019050613a0e565b83811115613a38576000848401525b50505050565b6000613a49826139e5565b91506000821415613a5d57613a5c613b45565b5b600182039050919050565b60006002820490506001821680613a8057607f821691505b60208210811415613a9457613a93613ba3565b5b50919050565b613aa382613c4e565b810181811067ffffffffffffffff82111715613ac257613ac1613c01565b5b80604052505050565b6000613ad6826139e5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b0957613b08613b45565b5b600182019050919050565b6000613b1f826139e5565b9150613b2a836139e5565b925082613b3a57613b39613b74565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420776f756c6420657863656564206d617820737570706c792e000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206163746976652e000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f576f756c646c20657863656564206d6178207465616d20737570706c792e0000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374696e6720746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f43616e6e6f742075706461746520696620616c7265616479207265616368656460008201527f20736f6c646f75742073746167652e0000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f576f756c6420726561636820746865206d6178206d696e7420616d6f756e742060008201527f70657220686f6c6465722e000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61438d81613951565b811461439857600080fd5b50565b6143a481613963565b81146143af57600080fd5b50565b6143bb8161396f565b81146143c657600080fd5b50565b6143d2816139b7565b81146143dd57600080fd5b50565b6143e9816139e5565b81146143f457600080fd5b50565b614400816139ef565b811461440b57600080fd5b5056fe68747470733a2f2f6261667962656961626a6c347a767463746c7476377668727a6a646f37336c677870346566337833336867716b7667636e62653365686b6962666d2e697066732e647765622e6c696e6b2f6d657461646174612e6a736f6ea2646970667358221220d2b615637acfe3782d1bba1e5ded99452eb74a7f124fb40e384ec68b3b5de1c264736f6c63430008070033

Deployed Bytecode Sourcemap

260:2155: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;:::-;;;;;;;;8352:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;905:518:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3443:744:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;329:41:11;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;429:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8557:157:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;465:22:11;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2975:177:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5800:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;:::i;:::-;;1201:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1846:122:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6132:98:12;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7770:274;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;689:185:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8777:311:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1976:436:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1451:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;530:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:12;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;377:45:11;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8107:186:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;:::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;8352:142::-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;905:518:11:-;1744:1:1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;995:1:11::1;982:9;;;;;;;;;;;:14;;;974:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;1083:1;1070:9;1046:21;1056:10;1046:9;:21::i;:::-;:33;;;;:::i;:::-;:38;;1038:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;1211:10;1196:11;;;;;;;;;;;1180:15;:27;;;;:::i;:::-;1151:57;;1167:9;1151:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:57;;;;:::i;:::-;:70;1143:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;1268:32;1278:10;1290:9;1268;:32::i;:::-;1364:10;1348:11;;;;;;;;;;;1332:15;:27;;;;:::i;:::-;1315:45;;:13;:11;:13::i;:::-;:45;;;;:::i;:::-;:59;1311:105;;;1403:1;1391:9;;:13;;;;;;;;;;;;;;;;;;1311:105;1701:1:1::0;2628:7;:22;;;;905:518:11;:::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;329:41:11:-;;;:::o;429:29::-;;;;;;;;;;;;;:::o;8557:157:12:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;465:22: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;5800:118::-;5864:7;5887:20;5899:7;5887:11;:20::i;:::-;:25;;;5880:32;;5800:118;;;:::o;4677:211::-;4741:7;4782:1;4765:19;;:5;:19;;;;4757:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4854:12;:19;4867:5;4854:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4846:36;;4839:43;;4677:211;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;1201:85::-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;1846:122:11:-;1094:13:0;:11;:13::i;:::-;1947::11::1;;1932:12;:28;;;;;;;:::i;:::-;;1846:122:::0;;:::o;6132:98:12:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;7770:274::-;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;689:185:11:-;1094:13:0;:11;:13::i;:::-;780:1:11::1;767:9;;;;;;;;;;;:14;;;;759:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;856:10;844:9;;:22;;;;;;;;;;;;;;;;;;689:185:::0;:::o;8777:311:12:-;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;1976:436:11:-;2050:13;2084:16;2092:7;2084;:16::i;:::-;2076:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2163:18;2184:10;:8;:10::i;:::-;2163:31;;2233:1;2218:4;2212:18;:22;:192;;;;;;;;;;;;;;;;;;;;;;2261:4;2267:25;2284:7;2267:16;:25::i;:::-;2244:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2212:192;2205:199;;;1976:436;;;:::o;1451:239::-;1094:13:0;:11;:13::i;:::-;1563:15:11::1;1537:41;;1551:8;1537:11;;;;;;;;;;;:22;;;;:::i;:::-;:41;;;;1529:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;1624:24;1634:3;1639:8;1624:24;;:9;:24::i;:::-;1674:8;1659:11;;:23;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;1451:239:::0;;:::o;530:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13192:43:12:-;;;;:::o;377:45:11:-;;;:::o;8107:186:12:-;8229:4;8252:18;:25;8271:5;8252:25;;;;;;;;;;;;;;;:35;8278:8;8252:35;;;;;;;;;;;;;;;;;;;;;;;;;8245:42;;8107:186;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;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;9438:98::-;9503:27;9513:2;9517:8;9503:27;;;;;;;;;;;;:9;:27::i;:::-;9438:98;;:::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;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;2433:187::-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;14729:690:12:-;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;1725:113:11:-;1785:13;1818:12;1811:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1725:113;:::o;392:703:8:-;448:13;674:1;665:5;:10;661:51;;;691:10;;;;;;;;;;;;;;;;;;;;;661:51;721:12;736:5;721:20;;751:14;775:75;790:1;782:4;:9;775:75;;807:8;;;;;:::i;:::-;;;;837:2;829:10;;;;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;859:39;;908:150;924:1;915:5;:10;908:150;;951:1;941:11;;;;;:::i;:::-;;;1017:2;1009:5;:10;;;;:::i;:::-;996:2;:24;;;;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1045:2;1036:11;;;;;:::i;:::-;;;908:150;;;1081:6;1067:21;;;;;392:703;;;;:::o;15881:141:12:-;;;;;:::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:137::-;1972:5;2010:6;1997:20;1988:29;;2026:32;2052:5;2026:32;:::i;:::-;1927:137;;;;:::o;2070:139::-;2116:5;2154:6;2141:20;2132:29;;2170:33;2197:5;2170:33;:::i;:::-;2070:139;;;;:::o;2215:135::-;2259:5;2297:6;2284:20;2275:29;;2313:31;2338:5;2313:31;:::i;:::-;2215:135;;;;:::o;2356:329::-;2415:6;2464:2;2452:9;2443:7;2439:23;2435:32;2432:119;;;2470:79;;:::i;:::-;2432:119;2590:1;2615:53;2660:7;2651:6;2640:9;2636:22;2615:53;:::i;:::-;2605:63;;2561:117;2356:329;;;;:::o;2691:474::-;2759:6;2767;2816:2;2804:9;2795:7;2791:23;2787:32;2784:119;;;2822:79;;:::i;:::-;2784:119;2942:1;2967:53;3012:7;3003:6;2992:9;2988:22;2967:53;:::i;:::-;2957:63;;2913:117;3069:2;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3040:118;2691:474;;;;;:::o;3171:619::-;3248:6;3256;3264;3313:2;3301:9;3292:7;3288:23;3284:32;3281:119;;;3319:79;;:::i;:::-;3281:119;3439:1;3464:53;3509:7;3500:6;3489:9;3485:22;3464:53;:::i;:::-;3454:63;;3410:117;3566:2;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3537:118;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3171:619;;;;;:::o;3796:943::-;3891:6;3899;3907;3915;3964:3;3952:9;3943:7;3939:23;3935:33;3932:120;;;3971:79;;:::i;:::-;3932:120;4091:1;4116:53;4161:7;4152:6;4141:9;4137:22;4116:53;:::i;:::-;4106:63;;4062:117;4218:2;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4189:118;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4502:2;4491:9;4487:18;4474:32;4533:18;4525:6;4522:30;4519:117;;;4555:79;;:::i;:::-;4519:117;4660:62;4714:7;4705:6;4694:9;4690:22;4660:62;:::i;:::-;4650:72;;4445:287;3796:943;;;;;;;:::o;4745:468::-;4810:6;4818;4867:2;4855:9;4846:7;4842:23;4838:32;4835:119;;;4873:79;;:::i;:::-;4835:119;4993:1;5018:53;5063:7;5054:6;5043:9;5039:22;5018:53;:::i;:::-;5008:63;;4964:117;5120:2;5146:50;5188:7;5179:6;5168:9;5164:22;5146:50;:::i;:::-;5136:60;;5091:115;4745:468;;;;;:::o;5219:472::-;5286:6;5294;5343:2;5331:9;5322:7;5318:23;5314:32;5311:119;;;5349:79;;:::i;:::-;5311:119;5469:1;5494:53;5539:7;5530:6;5519:9;5515:22;5494:53;:::i;:::-;5484:63;;5440:117;5596:2;5622:52;5666:7;5657:6;5646:9;5642:22;5622:52;:::i;:::-;5612:62;;5567:117;5219:472;;;;;:::o;5697:474::-;5765:6;5773;5822:2;5810:9;5801:7;5797:23;5793:32;5790:119;;;5828:79;;:::i;:::-;5790:119;5948:1;5973:53;6018:7;6009:6;5998:9;5994:22;5973:53;:::i;:::-;5963:63;;5919:117;6075:2;6101:53;6146:7;6137:6;6126:9;6122:22;6101:53;:::i;:::-;6091:63;;6046:118;5697:474;;;;;:::o;6177:327::-;6235:6;6284:2;6272:9;6263:7;6259:23;6255:32;6252:119;;;6290:79;;:::i;:::-;6252:119;6410:1;6435:52;6479:7;6470:6;6459:9;6455:22;6435:52;:::i;:::-;6425:62;;6381:116;6177:327;;;;:::o;6510:349::-;6579:6;6628:2;6616:9;6607:7;6603:23;6599:32;6596:119;;;6634:79;;:::i;:::-;6596:119;6754:1;6779:63;6834:7;6825:6;6814:9;6810:22;6779:63;:::i;:::-;6769:73;;6725:127;6510:349;;;;:::o;6865:529::-;6936:6;6944;6993:2;6981:9;6972:7;6968:23;6964:32;6961:119;;;6999:79;;:::i;:::-;6961:119;7147:1;7136:9;7132:17;7119:31;7177:18;7169:6;7166:30;7163:117;;;7199:79;;:::i;:::-;7163:117;7312:65;7369:7;7360:6;7349:9;7345:22;7312:65;:::i;:::-;7294:83;;;;7090:297;6865:529;;;;;:::o;7400:329::-;7459:6;7508:2;7496:9;7487:7;7483:23;7479:32;7476:119;;;7514:79;;:::i;:::-;7476:119;7634:1;7659:53;7704:7;7695:6;7684:9;7680:22;7659:53;:::i;:::-;7649:63;;7605:117;7400:329;;;;:::o;7735:325::-;7792:6;7841:2;7829:9;7820:7;7816:23;7812:32;7809:119;;;7847:79;;:::i;:::-;7809:119;7967:1;7992:51;8035:7;8026:6;8015:9;8011:22;7992:51;:::i;:::-;7982:61;;7938:115;7735:325;;;;:::o;8066:118::-;8153:24;8171:5;8153:24;:::i;:::-;8148:3;8141:37;8066:118;;:::o;8190:109::-;8271:21;8286:5;8271:21;:::i;:::-;8266:3;8259:34;8190:109;;:::o;8305:360::-;8391:3;8419:38;8451:5;8419:38;:::i;:::-;8473:70;8536:6;8531:3;8473:70;:::i;:::-;8466:77;;8552:52;8597:6;8592:3;8585:4;8578:5;8574:16;8552:52;:::i;:::-;8629:29;8651:6;8629:29;:::i;:::-;8624:3;8620:39;8613:46;;8395:270;8305:360;;;;:::o;8671:364::-;8759:3;8787:39;8820:5;8787:39;:::i;:::-;8842:71;8906:6;8901:3;8842:71;:::i;:::-;8835:78;;8922:52;8967:6;8962:3;8955:4;8948:5;8944:16;8922:52;:::i;:::-;8999:29;9021:6;8999:29;:::i;:::-;8994:3;8990:39;8983:46;;8763:272;8671:364;;;;:::o;9041:377::-;9147:3;9175:39;9208:5;9175:39;:::i;:::-;9230:89;9312:6;9307:3;9230:89;:::i;:::-;9223:96;;9328:52;9373:6;9368:3;9361:4;9354:5;9350:16;9328:52;:::i;:::-;9405:6;9400:3;9396:16;9389:23;;9151:267;9041:377;;;;:::o;9424:366::-;9566:3;9587:67;9651:2;9646:3;9587:67;:::i;:::-;9580:74;;9663:93;9752:3;9663:93;:::i;:::-;9781:2;9776:3;9772:12;9765:19;;9424:366;;;:::o;9796:::-;9938:3;9959:67;10023:2;10018:3;9959:67;:::i;:::-;9952:74;;10035:93;10124:3;10035:93;:::i;:::-;10153:2;10148:3;10144:12;10137:19;;9796:366;;;:::o;10168:::-;10310:3;10331:67;10395:2;10390:3;10331:67;:::i;:::-;10324:74;;10407:93;10496:3;10407:93;:::i;:::-;10525:2;10520:3;10516:12;10509:19;;10168:366;;;:::o;10540:::-;10682:3;10703:67;10767:2;10762:3;10703:67;:::i;:::-;10696:74;;10779:93;10868:3;10779:93;:::i;:::-;10897:2;10892:3;10888:12;10881:19;;10540:366;;;:::o;10912:::-;11054:3;11075:67;11139:2;11134:3;11075:67;:::i;:::-;11068:74;;11151:93;11240:3;11151:93;:::i;:::-;11269:2;11264:3;11260:12;11253:19;;10912:366;;;:::o;11284:::-;11426:3;11447:67;11511:2;11506:3;11447:67;:::i;:::-;11440:74;;11523:93;11612:3;11523:93;:::i;:::-;11641:2;11636:3;11632:12;11625:19;;11284:366;;;:::o;11656:::-;11798:3;11819:67;11883:2;11878:3;11819:67;:::i;:::-;11812:74;;11895:93;11984:3;11895:93;:::i;:::-;12013:2;12008:3;12004:12;11997:19;;11656:366;;;:::o;12028:::-;12170:3;12191:67;12255:2;12250:3;12191:67;:::i;:::-;12184:74;;12267:93;12356:3;12267:93;:::i;:::-;12385:2;12380:3;12376:12;12369:19;;12028:366;;;:::o;12400:::-;12542:3;12563:67;12627:2;12622:3;12563:67;:::i;:::-;12556:74;;12639:93;12728:3;12639:93;:::i;:::-;12757:2;12752:3;12748:12;12741:19;;12400:366;;;:::o;12772:::-;12914:3;12935:67;12999:2;12994:3;12935:67;:::i;:::-;12928:74;;13011:93;13100:3;13011:93;:::i;:::-;13129:2;13124:3;13120:12;13113:19;;12772:366;;;:::o;13144:::-;13286:3;13307:67;13371:2;13366:3;13307:67;:::i;:::-;13300:74;;13383:93;13472:3;13383:93;:::i;:::-;13501:2;13496:3;13492:12;13485:19;;13144:366;;;:::o;13516:::-;13658:3;13679:67;13743:2;13738:3;13679:67;:::i;:::-;13672:74;;13755:93;13844:3;13755:93;:::i;:::-;13873:2;13868:3;13864:12;13857:19;;13516:366;;;:::o;13888:::-;14030:3;14051:67;14115:2;14110:3;14051:67;:::i;:::-;14044:74;;14127:93;14216:3;14127:93;:::i;:::-;14245:2;14240:3;14236:12;14229:19;;13888:366;;;:::o;14260:400::-;14420:3;14441:84;14523:1;14518:3;14441:84;:::i;:::-;14434:91;;14534:93;14623:3;14534:93;:::i;:::-;14652:1;14647:3;14643:11;14636:18;;14260:400;;;:::o;14666:366::-;14808:3;14829:67;14893:2;14888:3;14829:67;:::i;:::-;14822:74;;14905:93;14994:3;14905:93;:::i;:::-;15023:2;15018:3;15014:12;15007:19;;14666:366;;;:::o;15038:::-;15180:3;15201:67;15265:2;15260:3;15201:67;:::i;:::-;15194:74;;15277:93;15366:3;15277:93;:::i;:::-;15395:2;15390:3;15386:12;15379:19;;15038:366;;;:::o;15410:::-;15552:3;15573:67;15637:2;15632:3;15573:67;:::i;:::-;15566:74;;15649:93;15738:3;15649:93;:::i;:::-;15767:2;15762:3;15758:12;15751:19;;15410:366;;;:::o;15782:::-;15924:3;15945:67;16009:2;16004:3;15945:67;:::i;:::-;15938:74;;16021:93;16110:3;16021:93;:::i;:::-;16139:2;16134:3;16130:12;16123:19;;15782:366;;;:::o;16154:::-;16296:3;16317:67;16381:2;16376:3;16317:67;:::i;:::-;16310:74;;16393:93;16482:3;16393:93;:::i;:::-;16511:2;16506:3;16502:12;16495:19;;16154:366;;;:::o;16526:::-;16668:3;16689:67;16753:2;16748:3;16689:67;:::i;:::-;16682:74;;16765:93;16854:3;16765:93;:::i;:::-;16883:2;16878:3;16874:12;16867:19;;16526:366;;;:::o;16898:::-;17040:3;17061:67;17125:2;17120:3;17061:67;:::i;:::-;17054:74;;17137:93;17226:3;17137:93;:::i;:::-;17255:2;17250:3;17246:12;17239:19;;16898:366;;;:::o;17270:::-;17412:3;17433:67;17497:2;17492:3;17433:67;:::i;:::-;17426:74;;17509:93;17598:3;17509:93;:::i;:::-;17627:2;17622:3;17618:12;17611:19;;17270:366;;;:::o;17642:::-;17784:3;17805:67;17869:2;17864:3;17805:67;:::i;:::-;17798:74;;17881:93;17970:3;17881:93;:::i;:::-;17999:2;17994:3;17990:12;17983:19;;17642:366;;;:::o;18014:::-;18156:3;18177:67;18241:2;18236:3;18177:67;:::i;:::-;18170:74;;18253:93;18342:3;18253:93;:::i;:::-;18371:2;18366:3;18362:12;18355:19;;18014:366;;;:::o;18386:::-;18528:3;18549:67;18613:2;18608:3;18549:67;:::i;:::-;18542:74;;18625:93;18714:3;18625:93;:::i;:::-;18743:2;18738:3;18734:12;18727:19;;18386:366;;;:::o;18758:::-;18900:3;18921:67;18985:2;18980:3;18921:67;:::i;:::-;18914:74;;18997:93;19086:3;18997:93;:::i;:::-;19115:2;19110:3;19106:12;19099:19;;18758:366;;;:::o;19130:::-;19272:3;19293:67;19357:2;19352:3;19293:67;:::i;:::-;19286:74;;19369:93;19458:3;19369:93;:::i;:::-;19487:2;19482:3;19478:12;19471:19;;19130:366;;;:::o;19502:115::-;19587:23;19604:5;19587:23;:::i;:::-;19582:3;19575:36;19502:115;;:::o;19623:118::-;19710:24;19728:5;19710:24;:::i;:::-;19705:3;19698:37;19623:118;;:::o;19747:112::-;19830:22;19846:5;19830:22;:::i;:::-;19825:3;19818:35;19747:112;;:::o;19865:701::-;20146:3;20168:95;20259:3;20250:6;20168:95;:::i;:::-;20161:102;;20280:95;20371:3;20362:6;20280:95;:::i;:::-;20273:102;;20392:148;20536:3;20392:148;:::i;:::-;20385:155;;20557:3;20550:10;;19865:701;;;;;:::o;20572:222::-;20665:4;20703:2;20692:9;20688:18;20680:26;;20716:71;20784:1;20773:9;20769:17;20760:6;20716:71;:::i;:::-;20572:222;;;;:::o;20800:640::-;20995:4;21033:3;21022:9;21018:19;21010:27;;21047:71;21115:1;21104:9;21100:17;21091:6;21047:71;:::i;:::-;21128:72;21196:2;21185:9;21181:18;21172:6;21128:72;:::i;:::-;21210;21278:2;21267:9;21263:18;21254:6;21210:72;:::i;:::-;21329:9;21323:4;21319:20;21314:2;21303:9;21299:18;21292:48;21357:76;21428:4;21419:6;21357:76;:::i;:::-;21349:84;;20800:640;;;;;;;:::o;21446:210::-;21533:4;21571:2;21560:9;21556:18;21548:26;;21584:65;21646:1;21635:9;21631:17;21622:6;21584:65;:::i;:::-;21446:210;;;;:::o;21662:313::-;21775:4;21813:2;21802:9;21798:18;21790:26;;21862:9;21856:4;21852:20;21848:1;21837:9;21833:17;21826:47;21890:78;21963:4;21954:6;21890:78;:::i;:::-;21882:86;;21662:313;;;;:::o;21981:419::-;22147:4;22185:2;22174:9;22170:18;22162:26;;22234:9;22228:4;22224:20;22220:1;22209:9;22205:17;22198:47;22262:131;22388:4;22262:131;:::i;:::-;22254:139;;21981:419;;;:::o;22406:::-;22572:4;22610:2;22599:9;22595:18;22587:26;;22659:9;22653:4;22649:20;22645:1;22634:9;22630:17;22623:47;22687:131;22813:4;22687:131;:::i;:::-;22679:139;;22406:419;;;:::o;22831:::-;22997:4;23035:2;23024:9;23020:18;23012:26;;23084:9;23078:4;23074:20;23070:1;23059:9;23055:17;23048:47;23112:131;23238:4;23112:131;:::i;:::-;23104:139;;22831:419;;;:::o;23256:::-;23422:4;23460:2;23449:9;23445:18;23437:26;;23509:9;23503:4;23499:20;23495:1;23484:9;23480:17;23473:47;23537:131;23663:4;23537:131;:::i;:::-;23529:139;;23256:419;;;:::o;23681:::-;23847:4;23885:2;23874:9;23870:18;23862:26;;23934:9;23928:4;23924:20;23920:1;23909:9;23905:17;23898:47;23962:131;24088:4;23962:131;:::i;:::-;23954:139;;23681:419;;;:::o;24106:::-;24272:4;24310:2;24299:9;24295:18;24287:26;;24359:9;24353:4;24349:20;24345:1;24334:9;24330:17;24323:47;24387:131;24513:4;24387:131;:::i;:::-;24379:139;;24106:419;;;:::o;24531:::-;24697:4;24735:2;24724:9;24720:18;24712:26;;24784:9;24778:4;24774:20;24770:1;24759:9;24755:17;24748:47;24812:131;24938:4;24812:131;:::i;:::-;24804:139;;24531:419;;;:::o;24956:::-;25122:4;25160:2;25149:9;25145:18;25137:26;;25209:9;25203:4;25199:20;25195:1;25184:9;25180:17;25173:47;25237:131;25363:4;25237:131;:::i;:::-;25229:139;;24956:419;;;:::o;25381:::-;25547:4;25585:2;25574:9;25570:18;25562:26;;25634:9;25628:4;25624:20;25620:1;25609:9;25605:17;25598:47;25662:131;25788:4;25662:131;:::i;:::-;25654:139;;25381:419;;;:::o;25806:::-;25972:4;26010:2;25999:9;25995:18;25987:26;;26059:9;26053:4;26049:20;26045:1;26034:9;26030:17;26023:47;26087:131;26213:4;26087:131;:::i;:::-;26079:139;;25806:419;;;:::o;26231:::-;26397:4;26435:2;26424:9;26420:18;26412:26;;26484:9;26478:4;26474:20;26470:1;26459:9;26455:17;26448:47;26512:131;26638:4;26512:131;:::i;:::-;26504:139;;26231:419;;;:::o;26656:::-;26822:4;26860:2;26849:9;26845:18;26837:26;;26909:9;26903:4;26899:20;26895:1;26884:9;26880:17;26873:47;26937:131;27063:4;26937:131;:::i;:::-;26929:139;;26656:419;;;:::o;27081:::-;27247:4;27285:2;27274:9;27270:18;27262:26;;27334:9;27328:4;27324:20;27320:1;27309:9;27305:17;27298:47;27362:131;27488:4;27362:131;:::i;:::-;27354:139;;27081:419;;;:::o;27506:::-;27672:4;27710:2;27699:9;27695:18;27687:26;;27759:9;27753:4;27749:20;27745:1;27734:9;27730:17;27723:47;27787:131;27913:4;27787:131;:::i;:::-;27779:139;;27506:419;;;:::o;27931:::-;28097:4;28135:2;28124:9;28120:18;28112:26;;28184:9;28178:4;28174:20;28170:1;28159:9;28155:17;28148:47;28212:131;28338:4;28212:131;:::i;:::-;28204:139;;27931:419;;;:::o;28356:::-;28522:4;28560:2;28549:9;28545:18;28537:26;;28609:9;28603:4;28599:20;28595:1;28584:9;28580:17;28573:47;28637:131;28763:4;28637:131;:::i;:::-;28629:139;;28356:419;;;:::o;28781:::-;28947:4;28985:2;28974:9;28970:18;28962:26;;29034:9;29028:4;29024:20;29020:1;29009:9;29005:17;28998:47;29062:131;29188:4;29062:131;:::i;:::-;29054:139;;28781:419;;;:::o;29206:::-;29372:4;29410:2;29399:9;29395:18;29387:26;;29459:9;29453:4;29449:20;29445:1;29434:9;29430:17;29423:47;29487:131;29613:4;29487:131;:::i;:::-;29479:139;;29206:419;;;:::o;29631:::-;29797:4;29835:2;29824:9;29820:18;29812:26;;29884:9;29878:4;29874:20;29870:1;29859:9;29855:17;29848:47;29912:131;30038:4;29912:131;:::i;:::-;29904:139;;29631:419;;;:::o;30056:::-;30222:4;30260:2;30249:9;30245:18;30237:26;;30309:9;30303:4;30299:20;30295:1;30284:9;30280:17;30273:47;30337:131;30463:4;30337:131;:::i;:::-;30329:139;;30056:419;;;:::o;30481:::-;30647:4;30685:2;30674:9;30670:18;30662:26;;30734:9;30728:4;30724:20;30720:1;30709:9;30705:17;30698:47;30762:131;30888:4;30762:131;:::i;:::-;30754:139;;30481:419;;;:::o;30906:::-;31072:4;31110:2;31099:9;31095:18;31087:26;;31159:9;31153:4;31149:20;31145:1;31134:9;31130:17;31123:47;31187:131;31313:4;31187:131;:::i;:::-;31179:139;;30906:419;;;:::o;31331:::-;31497:4;31535:2;31524:9;31520:18;31512:26;;31584:9;31578:4;31574:20;31570:1;31559:9;31555:17;31548:47;31612:131;31738:4;31612:131;:::i;:::-;31604:139;;31331:419;;;:::o;31756:::-;31922:4;31960:2;31949:9;31945:18;31937:26;;32009:9;32003:4;31999:20;31995:1;31984:9;31980:17;31973:47;32037:131;32163:4;32037:131;:::i;:::-;32029:139;;31756:419;;;:::o;32181:::-;32347:4;32385:2;32374:9;32370:18;32362:26;;32434:9;32428:4;32424:20;32420:1;32409:9;32405:17;32398:47;32462:131;32588:4;32462:131;:::i;:::-;32454:139;;32181:419;;;:::o;32606:::-;32772:4;32810:2;32799:9;32795:18;32787:26;;32859:9;32853:4;32849:20;32845:1;32834:9;32830:17;32823:47;32887:131;33013:4;32887:131;:::i;:::-;32879:139;;32606:419;;;:::o;33031:218::-;33122:4;33160:2;33149:9;33145:18;33137:26;;33173:69;33239:1;33228:9;33224:17;33215:6;33173:69;:::i;:::-;33031:218;;;;:::o;33255:222::-;33348:4;33386:2;33375:9;33371:18;33363:26;;33399:71;33467:1;33456:9;33452:17;33443:6;33399:71;:::i;:::-;33255:222;;;;:::o;33483:214::-;33572:4;33610:2;33599:9;33595:18;33587:26;;33623:67;33687:1;33676:9;33672:17;33663:6;33623:67;:::i;:::-;33483:214;;;;:::o;33703:129::-;33737:6;33764:20;;:::i;:::-;33754:30;;33793:33;33821:4;33813:6;33793:33;:::i;:::-;33703:129;;;:::o;33838:75::-;33871:6;33904:2;33898:9;33888:19;;33838:75;:::o;33919:307::-;33980:4;34070:18;34062:6;34059:30;34056:56;;;34092:18;;:::i;:::-;34056:56;34130:29;34152:6;34130:29;:::i;:::-;34122:37;;34214:4;34208;34204:15;34196:23;;33919:307;;;:::o;34232:98::-;34283:6;34317:5;34311:12;34301:22;;34232:98;;;:::o;34336:99::-;34388:6;34422:5;34416:12;34406:22;;34336:99;;;:::o;34441:168::-;34524:11;34558:6;34553:3;34546:19;34598:4;34593:3;34589:14;34574:29;;34441:168;;;;:::o;34615:169::-;34699:11;34733:6;34728:3;34721:19;34773:4;34768:3;34764:14;34749:29;;34615:169;;;;:::o;34790:148::-;34892:11;34929:3;34914:18;;34790:148;;;;:::o;34944:273::-;34984:3;35003:20;35021:1;35003:20;:::i;:::-;34998:25;;35037:20;35055:1;35037:20;:::i;:::-;35032:25;;35159:1;35123:34;35119:42;35116:1;35113:49;35110:75;;;35165:18;;:::i;:::-;35110:75;35209:1;35206;35202:9;35195:16;;34944:273;;;;:::o;35223:242::-;35262:3;35281:19;35298:1;35281:19;:::i;:::-;35276:24;;35314:19;35331:1;35314:19;:::i;:::-;35309:24;;35407:1;35399:6;35395:14;35392:1;35389:21;35386:47;;;35413:18;;:::i;:::-;35386:47;35457:1;35454;35450:9;35443:16;;35223:242;;;;:::o;35471:305::-;35511:3;35530:20;35548:1;35530:20;:::i;:::-;35525:25;;35564:20;35582:1;35564:20;:::i;:::-;35559:25;;35718:1;35650:66;35646:74;35643:1;35640:81;35637:107;;;35724:18;;:::i;:::-;35637:107;35768:1;35765;35761:9;35754:16;;35471:305;;;;:::o;35782:185::-;35822:1;35839:20;35857:1;35839:20;:::i;:::-;35834:25;;35873:20;35891:1;35873:20;:::i;:::-;35868:25;;35912:1;35902:35;;35917:18;;:::i;:::-;35902:35;35959:1;35956;35952:9;35947:14;;35782:185;;;;:::o;35973:191::-;36013:4;36033:20;36051:1;36033:20;:::i;:::-;36028:25;;36067:20;36085:1;36067:20;:::i;:::-;36062:25;;36106:1;36103;36100:8;36097:34;;;36111:18;;:::i;:::-;36097:34;36156:1;36153;36149:9;36141:17;;35973:191;;;;:::o;36170:188::-;36209:4;36229:19;36246:1;36229:19;:::i;:::-;36224:24;;36262:19;36279:1;36262:19;:::i;:::-;36257:24;;36300:1;36297;36294:8;36291:34;;;36305:18;;:::i;:::-;36291:34;36350:1;36347;36343:9;36335:17;;36170:188;;;;:::o;36364:191::-;36404:4;36424:20;36442:1;36424:20;:::i;:::-;36419:25;;36458:20;36476:1;36458:20;:::i;:::-;36453:25;;36497:1;36494;36491:8;36488:34;;;36502:18;;:::i;:::-;36488:34;36547:1;36544;36540:9;36532:17;;36364:191;;;;:::o;36561:96::-;36598:7;36627:24;36645:5;36627:24;:::i;:::-;36616:35;;36561:96;;;:::o;36663:90::-;36697:7;36740:5;36733:13;36726:21;36715:32;;36663:90;;;:::o;36759:149::-;36795:7;36835:66;36828:5;36824:78;36813:89;;36759:149;;;:::o;36914:118::-;36951:7;36991:34;36984:5;36980:46;36969:57;;36914:118;;;:::o;37038:89::-;37074:7;37114:6;37107:5;37103:18;37092:29;;37038:89;;;:::o;37133:126::-;37170:7;37210:42;37203:5;37199:54;37188:65;;37133:126;;;:::o;37265:77::-;37302:7;37331:5;37320:16;;37265:77;;;:::o;37348:86::-;37383:7;37423:4;37416:5;37412:16;37401:27;;37348:86;;;:::o;37440:154::-;37524:6;37519:3;37514;37501:30;37586:1;37577:6;37572:3;37568:16;37561:27;37440:154;;;:::o;37600:307::-;37668:1;37678:113;37692:6;37689:1;37686:13;37678:113;;;37777:1;37772:3;37768:11;37762:18;37758:1;37753:3;37749:11;37742:39;37714:2;37711:1;37707:10;37702:15;;37678:113;;;37809:6;37806:1;37803:13;37800:101;;;37889:1;37880:6;37875:3;37871:16;37864:27;37800:101;37649:258;37600:307;;;:::o;37913:171::-;37952:3;37975:24;37993:5;37975:24;:::i;:::-;37966:33;;38021:4;38014:5;38011:15;38008:41;;;38029:18;;:::i;:::-;38008:41;38076:1;38069:5;38065:13;38058:20;;37913:171;;;:::o;38090:320::-;38134:6;38171:1;38165:4;38161:12;38151:22;;38218:1;38212:4;38208:12;38239:18;38229:81;;38295:4;38287:6;38283:17;38273:27;;38229:81;38357:2;38349:6;38346:14;38326:18;38323:38;38320:84;;;38376:18;;:::i;:::-;38320:84;38141:269;38090:320;;;:::o;38416:281::-;38499:27;38521:4;38499:27;:::i;:::-;38491:6;38487:40;38629:6;38617:10;38614:22;38593:18;38581:10;38578:34;38575:62;38572:88;;;38640:18;;:::i;:::-;38572:88;38680:10;38676:2;38669:22;38459:238;38416:281;;:::o;38703:233::-;38742:3;38765:24;38783:5;38765:24;:::i;:::-;38756:33;;38811:66;38804:5;38801:77;38798:103;;;38881:18;;:::i;:::-;38798:103;38928:1;38921:5;38917:13;38910:20;;38703:233;;;:::o;38942:176::-;38974:1;38991:20;39009:1;38991:20;:::i;:::-;38986:25;;39025:20;39043:1;39025:20;:::i;:::-;39020:25;;39064:1;39054:35;;39069:18;;:::i;:::-;39054:35;39110:1;39107;39103:9;39098:14;;38942:176;;;;:::o;39124:180::-;39172:77;39169:1;39162:88;39269:4;39266:1;39259:15;39293:4;39290:1;39283:15;39310:180;39358:77;39355:1;39348:88;39455:4;39452:1;39445:15;39479:4;39476:1;39469:15;39496:180;39544:77;39541:1;39534:88;39641:4;39638:1;39631:15;39665:4;39662:1;39655:15;39682:180;39730:77;39727:1;39720:88;39827:4;39824:1;39817:15;39851:4;39848:1;39841:15;39868:180;39916:77;39913:1;39906:88;40013:4;40010:1;40003:15;40037:4;40034:1;40027:15;40054:117;40163:1;40160;40153:12;40177:117;40286:1;40283;40276:12;40300:117;40409:1;40406;40399:12;40423:117;40532:1;40529;40522:12;40546:117;40655:1;40652;40645:12;40669:117;40778:1;40775;40768:12;40792:102;40833:6;40884:2;40880:7;40875:2;40868:5;40864:14;40860:28;40850:38;;40792:102;;;:::o;40900:221::-;41040:34;41036:1;41028:6;41024:14;41017:58;41109:4;41104:2;41096:6;41092:15;41085:29;40900:221;:::o;41127:179::-;41267:31;41263:1;41255:6;41251:14;41244:55;41127:179;:::o;41312:225::-;41452:34;41448:1;41440:6;41436:14;41429:58;41521:8;41516:2;41508:6;41504:15;41497:33;41312:225;:::o;41543:229::-;41683:34;41679:1;41671:6;41667:14;41660:58;41752:12;41747:2;41739:6;41735:15;41728:37;41543:229;:::o;41778:176::-;41918:28;41914:1;41906:6;41902:14;41895:52;41778:176;:::o;41960:222::-;42100:34;42096:1;42088:6;42084:14;42077:58;42169:5;42164:2;42156:6;42152:15;42145:30;41960:222;:::o;42188:224::-;42328:34;42324:1;42316:6;42312:14;42305:58;42397:7;42392:2;42384:6;42380:15;42373:32;42188:224;:::o;42418:180::-;42558:32;42554:1;42546:6;42542:14;42535:56;42418:180;:::o;42604:234::-;42744:34;42740:1;42732:6;42728:14;42721:58;42813:17;42808:2;42800:6;42796:15;42789:42;42604:234;:::o;42844:244::-;42984:34;42980:1;42972:6;42968:14;42961:58;43053:27;43048:2;43040:6;43036:15;43029:52;42844:244;:::o;43094:230::-;43234:34;43230:1;43222:6;43218:14;43211:58;43303:13;43298:2;43290:6;43286:15;43279:38;43094:230;:::o;43330:234::-;43470:34;43466:1;43458:6;43454:14;43447:58;43539:17;43534:2;43526:6;43522:15;43515:42;43330:234;:::o;43570:225::-;43710:34;43706:1;43698:6;43694:14;43687:58;43779:8;43774:2;43766:6;43762:15;43755:33;43570:225;:::o;43801:155::-;43941:7;43937:1;43929:6;43925:14;43918:31;43801:155;:::o;43962:182::-;44102:34;44098:1;44090:6;44086:14;44079:58;43962:182;:::o;44150:176::-;44290:28;44286:1;44278:6;44274:14;44267:52;44150:176;:::o;44332:237::-;44472:34;44468:1;44460:6;44456:14;44449:58;44541:20;44536:2;44528:6;44524:15;44517:45;44332:237;:::o;44575:221::-;44715:34;44711:1;44703:6;44699:14;44692:58;44784:4;44779:2;44771:6;44767:15;44760:29;44575:221;:::o;44802:238::-;44942:34;44938:1;44930:6;44926:14;44919:58;45011:21;45006:2;44998:6;44994:15;44987:46;44802:238;:::o;45046:179::-;45186:31;45182:1;45174:6;45170:14;45163:55;45046:179;:::o;45231:220::-;45371:34;45367:1;45359:6;45355:14;45348:58;45440:3;45435:2;45427:6;45423:15;45416:28;45231:220;:::o;45457:230::-;45597:34;45593:1;45585:6;45581:14;45574:58;45666:13;45661:2;45653:6;45649:15;45642:38;45457:230;:::o;45693:233::-;45833:34;45829:1;45821:6;45817:14;45810:58;45902:16;45897:2;45889:6;45885:15;45878:41;45693:233;:::o;45932:181::-;46072:33;46068:1;46060:6;46056:14;46049:57;45932:181;:::o;46119:234::-;46259:34;46255:1;46247:6;46243:14;46236:58;46328:17;46323:2;46315:6;46311:15;46304:42;46119:234;:::o;46359:232::-;46499:34;46495:1;46487:6;46483:14;46476:58;46568:15;46563:2;46555:6;46551:15;46544:40;46359:232;:::o;46597:221::-;46737:34;46733:1;46725:6;46721:14;46714:58;46806:4;46801:2;46793:6;46789:15;46782:29;46597:221;:::o;46824:122::-;46897:24;46915:5;46897:24;:::i;:::-;46890:5;46887:35;46877:63;;46936:1;46933;46926:12;46877:63;46824:122;:::o;46952:116::-;47022:21;47037:5;47022:21;:::i;:::-;47015:5;47012:32;47002:60;;47058:1;47055;47048:12;47002:60;46952:116;:::o;47074:120::-;47146:23;47163:5;47146:23;:::i;:::-;47139:5;47136:34;47126:62;;47184:1;47181;47174:12;47126:62;47074:120;:::o;47200:::-;47272:23;47289:5;47272:23;:::i;:::-;47265:5;47262:34;47252:62;;47310:1;47307;47300:12;47252:62;47200:120;:::o;47326:122::-;47399:24;47417:5;47399:24;:::i;:::-;47392:5;47389:35;47379:63;;47438:1;47435;47428:12;47379:63;47326:122;:::o;47454:118::-;47525:22;47541:5;47525:22;:::i;:::-;47518:5;47515:33;47505:61;;47562:1;47559;47552:12;47505:61;47454:118;:::o

Swarm Source

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