ETH Price: $3,506.69 (+2.51%)
Gas: 2 Gwei

Token

forgottendog.wtf (FORGOTTENDOG)
 

Overview

Max Total Supply

10,000 FORGOTTENDOG

Holders

1,466

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fire4effect.eth
Balance
10 FORGOTTENDOG
0x85cdebb34b4c2edc66c0cf408afdb10213e414a9
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:
ForgottenDog

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : ForgottenDog.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 ForgottenDog is Ownable, ERC721A, ReentrancyGuard {

    uint16 public immutable MAX_SUPPLY = 10000;
    uint16 public immutable MAX_TEAM_SUPPLY = 1000;
    uint public immutable PRICE_AFTER_8 = 0.002 ether;
    uint16 public teamCounter = 0;
    uint8 public saleStage; // 0: PAUSED | 1: SALE | 2: SOLDOUT
    string public baseTokenURI;

    address public immutable DEVELOPER_ADDRESS = 0x8306865FAb8dEC66a1d9927d9ffC4298500cF7Ed;
    address public immutable FINANCIER_ADDRESS = 0x682e5d1B097E55228F5E2B5D0f6212Ffa645cC02; 
    address public immutable DESIGNER_ADDRESS = 0xF416f708a855d65567a6456e3908Bba4b9229922;
    address public immutable MARKETER_ADDRESS = 0x600450fa4B0a108c1fcEc19Cb6a4E09514AEC9b8; 
    address public immutable VAULT_ADDRESS = 0x4D864d0B967D97A779Cd1b14ECb780c08b8aA3Dd; 

    constructor() ERC721A('forgottendog.wtf', 'FORGOTTENDOG', 20, 10000) {
        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 payable nonReentrant {
        require(saleStage == 1, "Public sale is not active.");
        require(_quantity <= 5, "Cannot mint more than 5 at once.");
        require(balanceOf(msg.sender) + _quantity <= 20, "You have reached the max mint amount per holder.");
        if (balanceOf(msg.sender) < 8 && balanceOf(msg.sender) + _quantity > 8) {
            require(msg.value == PRICE_AFTER_8 * (balanceOf(msg.sender) + _quantity - 8), "Insuficient funds.");
        }
        if (balanceOf(msg.sender) >= 8) {
            require(msg.value == PRICE_AFTER_8 * _quantity, "Insuficient funds.");
        }
        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.");
        require(_quantity % maxBatchSize == 0, "can only mint a multiple of the maxBatchSize");
        uint256 numChunks = _quantity / maxBatchSize;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(_to, maxBatchSize);
        }
        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://gateway.pinata.cloud/ipfs/QmfENk7ZpU4Q8zrGHoMLbC1HGk3u1bZUxUhC6s8KMhQ9rc";
    }

    // WITHDRAW

    function withdraw() external onlyOwner {
        uint256 ethBalance = address(this).balance;
        payable(FINANCIER_ADDRESS).transfer(ethBalance*20/100);
        payable(DESIGNER_ADDRESS).transfer(ethBalance*40/100);
        payable(VAULT_ADDRESS).transfer(ethBalance*10/100);
        payable(DEVELOPER_ADDRESS).transfer(ethBalance*15/100);
        payable(MARKETER_ADDRESS).transfer(ethBalance*15/100);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 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.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DESIGNER_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEVELOPER_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FINANCIER_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MARKETER_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TEAM_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_AFTER_8","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VAULT_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"payable","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101c06040526000600155600060085561271061ffff1660c09061ffff1660f01b8152506103e861ffff1660e09061ffff1660f01b81525066071afd498d0000610100908152506000600a60006101000a81548161ffff021916908361ffff160217905550738306865fab8dec66a1d9927d9ffc4298500cf7ed73ffffffffffffffffffffffffffffffffffffffff166101209073ffffffffffffffffffffffffffffffffffffffff1660601b81525073682e5d1b097e55228f5e2b5d0f6212ffa645cc0273ffffffffffffffffffffffffffffffffffffffff166101409073ffffffffffffffffffffffffffffffffffffffff1660601b81525073f416f708a855d65567a6456e3908bba4b922992273ffffffffffffffffffffffffffffffffffffffff166101609073ffffffffffffffffffffffffffffffffffffffff1660601b81525073600450fa4b0a108c1fcec19cb6a4e09514aec9b873ffffffffffffffffffffffffffffffffffffffff166101809073ffffffffffffffffffffffffffffffffffffffff1660601b815250734d864d0b967d97a779cd1b14ecb780c08b8aa3dd73ffffffffffffffffffffffffffffffffffffffff166101a09073ffffffffffffffffffffffffffffffffffffffff1660601b815250348015620001e857600080fd5b506040518060400160405280601081526020017f666f72676f7474656e646f672e777466000000000000000000000000000000008152506040518060400160405280600c81526020017f464f52474f5454454e444f47000000000000000000000000000000000000000081525060146127106200027a6200026e6200037660201b60201c565b6200037e60201b60201c565b60008111620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b79062000562565b60405180910390fd5b6000821162000306576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fd9062000540565b60405180910390fd5b83600290805190602001906200031e92919062000442565b5082600390805190602001906200033792919062000442565b508160a0818152505080608081815250505050505060016009819055506000600a60026101000a81548160ff021916908360ff16021790555062000698565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004509062000595565b90600052602060002090601f016020900481019282620004745760008555620004c0565b82601f106200048f57805160ff1916838001178555620004c0565b82800160010185558215620004c0579182015b82811115620004bf578251825591602001919060010190620004a2565b5b509050620004cf9190620004d3565b5090565b5b80821115620004ee576000816000905550600101620004d4565b5090565b60006200050160278362000584565b91506200050e82620005fa565b604082019050919050565b600062000528602e8362000584565b9150620005358262000649565b604082019050919050565b600060208201905081810360008301526200055b81620004f2565b9050919050565b600060208201905081810360008301526200057d8162000519565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620005ae57607f821691505b60208210811415620005c557620005c4620005cb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05160c05160f01c60e05160f01c610100516101205160601c6101405160601c6101605160601c6101805160601c6101a05160601c6151246200079d6000396000818161139d01526117bf01526000818161149b0152611bf801526000818161131e015261190701526000818161129f01526115c701526000818161141c015261153d015260008181610d8b01528181610e090152611772015260008181610eac01528181610f7901528181611d480152611f8f015260008181610e7601528181610f4301526111e6015260008181611dd001528181611e4201528181611e830152818161289a015281816128c30152612f650152600050506151246000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063d547cfb71161006f578063d547cfb714610780578063d7224ba0146107ab578063def0c275146107d6578063e985e9c514610801578063f2fde38b1461083e5761020f565b8063b88d4fde146106c6578063c810cf3c146106ef578063c87b56dd1461071a578063ce658079146107575761020f565b806395652cfa116100e757806395652cfa146105f557806395d89b411461061e5780639c1948e714610649578063a22cb46514610674578063b44c57671461069d5761020f565b8063715018a61461055d57806376bff663146105745780638da5cb5b1461059f5780639092c31c146105ca5761020f565b806335eb2be21161019b5780634aaca86d1161016a5780634aaca86d146104505780634f6ccce71461047b578063524cbda3146104b85780636352211e146104e357806370a08231146105205761020f565b806335eb2be2146103ba5780633ccfd60b146103e557806342842e0e146103fc578063454e66c8146104255761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d5780632db11544146103365780632f745c591461035257806332cb6b0c1461038f5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906137df565b610867565b6040516102489190613e7e565b60405180910390f35b34801561025d57600080fd5b506102666109b1565b6040516102739190613e99565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613886565b610a43565b6040516102b09190613e17565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061379f565b610ac8565b005b3480156102ee57600080fd5b506102f7610be1565b6040516103049190614276565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190613649565b610beb565b005b610350600480360381019061034b9190613886565b610bfb565b005b34801561035e57600080fd5b506103796004803603810190610374919061379f565b610fe6565b6040516103869190614276565b60405180910390f35b34801561039b57600080fd5b506103a46111e4565b6040516103b1919061425b565b60405180910390f35b3480156103c657600080fd5b506103cf611208565b6040516103dc919061425b565b60405180910390f35b3480156103f157600080fd5b506103fa61121c565b005b34801561040857600080fd5b50610423600480360381019061041e9190613649565b61151b565b005b34801561043157600080fd5b5061043a61153b565b6040516104479190613e17565b60405180910390f35b34801561045c57600080fd5b5061046561155f565b6040516104729190614291565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190613886565b611572565b6040516104af9190614276565b60405180910390f35b3480156104c457600080fd5b506104cd6115c5565b6040516104da9190613e17565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190613886565b6115e9565b6040516105179190613e17565b60405180910390f35b34801561052c57600080fd5b50610547600480360381019061054291906135dc565b6115ff565b6040516105549190614276565b60405180910390f35b34801561056957600080fd5b506105726116e8565b005b34801561058057600080fd5b50610589611770565b6040516105969190614276565b60405180910390f35b3480156105ab57600080fd5b506105b4611794565b6040516105c19190613e17565b60405180910390f35b3480156105d657600080fd5b506105df6117bd565b6040516105ec9190613e17565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190613839565b6117e1565b005b34801561062a57600080fd5b50610633611873565b6040516106409190613e99565b60405180910390f35b34801561065557600080fd5b5061065e611905565b60405161066b9190613e17565b60405180910390f35b34801561068057600080fd5b5061069b6004803603810190610696919061371f565b611929565b005b3480156106a957600080fd5b506106c460048036038101906106bf91906138b3565b611aaa565b005b3480156106d257600080fd5b506106ed60048036038101906106e8919061369c565b611b9a565b005b3480156106fb57600080fd5b50610704611bf6565b6040516107119190613e17565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190613886565b611c1a565b60405161074e9190613e99565b60405180910390f35b34801561076357600080fd5b5061077e6004803603810190610779919061375f565b611cca565b005b34801561078c57600080fd5b50610795611ef9565b6040516107a29190613e99565b60405180910390f35b3480156107b757600080fd5b506107c0611f87565b6040516107cd9190614276565b60405180910390f35b3480156107e257600080fd5b506107eb611f8d565b6040516107f8919061425b565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190613609565b611fb1565b6040516108359190613e7e565b60405180910390f35b34801561084a57600080fd5b50610865600480360381019061086091906135dc565b612045565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109aa57506109a98261213d565b5b9050919050565b6060600280546109c090614657565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec90614657565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b5050505050905090565b6000610a4e826121a7565b610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a849061421b565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad3826115e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b9061413b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b636121b5565b73ffffffffffffffffffffffffffffffffffffffff161480610b925750610b9181610b8c6121b5565b611fb1565b5b610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc89061403b565b60405180910390fd5b610bdc8383836121bd565b505050565b6000600154905090565b610bf683838361226f565b505050565b60026009541415610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c38906141db565b60405180910390fd5b60026009819055506001600a60029054906101000a900460ff1660ff1614610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590613f9b565b60405180910390fd5b6005811115610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd99061411b565b60405180910390fd5b601481610cee336115ff565b610cf891906143c3565b1115610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090613f7b565b60405180910390fd5b6008610d44336115ff565b108015610d645750600881610d58336115ff565b610d6291906143c3565b115b15610df657600881610d75336115ff565b610d7f91906143c3565b610d89919061450c565b7f0000000000000000000000000000000000000000000000000000000000000000610db4919061444a565b3414610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90613efb565b60405180910390fd5b5b6008610e01336115ff565b10610e7457807f0000000000000000000000000000000000000000000000000000000000000000610e32919061444a565b3414610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90613efb565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000061ffff16600a60009054906101000a900461ffff167f0000000000000000000000000000000000000000000000000000000000000000610ed591906144d8565b61ffff1682610ee2610be1565b610eec91906143c3565b610ef691906143c3565b1115610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90613edb565b60405180910390fd5b610f413382612828565b7f000000000000000000000000000000000000000000000000000000000000000061ffff16600a60009054906101000a900461ffff167f0000000000000000000000000000000000000000000000000000000000000000610fa291906144d8565b61ffff16610fae610be1565b610fb891906143c3565b1415610fdb576002600a60026101000a81548160ff021916908360ff1602179055505b600160098190555050565b6000610ff1836115ff565b8210611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990613ebb565b60405180910390fd5b600061103c610be1565b905060008060005b838110156111a2576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461113657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561118e578684141561117f5781955050505050506111de565b838061118a906146ba565b9450505b50808061119a906146ba565b915050611044565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d5906141bb565b60405180910390fd5b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900461ffff1681565b6112246121b5565b73ffffffffffffffffffffffffffffffffffffffff16611242611794565b73ffffffffffffffffffffffffffffffffffffffff1614611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f906140bb565b60405180910390fd5b60004790507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc60646014846112e6919061444a565b6112f09190614419565b9081150290604051600060405180830381858888f1935050505015801561131b573d6000803e3d6000fd5b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc6064602884611365919061444a565b61136f9190614419565b9081150290604051600060405180830381858888f1935050505015801561139a573d6000803e3d6000fd5b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc6064600a846113e4919061444a565b6113ee9190614419565b9081150290604051600060405180830381858888f19350505050158015611419573d6000803e3d6000fd5b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc6064600f84611463919061444a565b61146d9190614419565b9081150290604051600060405180830381858888f19350505050158015611498573d6000803e3d6000fd5b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc6064600f846114e2919061444a565b6114ec9190614419565b9081150290604051600060405180830381858888f19350505050158015611517573d6000803e3d6000fd5b5050565b61153683838360405180602001604052806000815250611b9a565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60029054906101000a900460ff1681565b600061157c610be1565b82106115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490613fbb565b60405180910390fd5b819050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006115f482612846565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611670576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116679061405b565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116f06121b5565b73ffffffffffffffffffffffffffffffffffffffff1661170e611794565b73ffffffffffffffffffffffffffffffffffffffff1614611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b906140bb565b60405180910390fd5b61176e6000612a49565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6117e96121b5565b73ffffffffffffffffffffffffffffffffffffffff16611807611794565b73ffffffffffffffffffffffffffffffffffffffff161461185d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611854906140bb565b60405180910390fd5b8181600b919061186e9291906133a6565b505050565b60606003805461188290614657565b80601f01602080910402602001604051908101604052809291908181526020018280546118ae90614657565b80156118fb5780601f106118d0576101008083540402835291602001916118fb565b820191906000526020600020905b8154815290600101906020018083116118de57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6119316121b5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611996906140db565b60405180910390fd5b80600760006119ac6121b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a596121b5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a9e9190613e7e565b60405180910390a35050565b611ab26121b5565b73ffffffffffffffffffffffffffffffffffffffff16611ad0611794565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d906140bb565b60405180910390fd5b6002600a60029054906101000a900460ff1660ff161415611b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b739061407b565b60405180910390fd5b80600a60026101000a81548160ff021916908360ff16021790555050565b611ba584848461226f565b611bb184848484612b0d565b611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be79061415b565b60405180910390fd5b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060611c25826121a7565b611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b9061401b565b60405180910390fd5b6000611c6e612ca4565b90506000815111611c975760405180608001604052806050815260200161509f60509139611cc2565b80611ca184612d36565b604051602001611cb2929190613de8565b6040516020818303038152906040525b915050919050565b611cd26121b5565b73ffffffffffffffffffffffffffffffffffffffff16611cf0611794565b73ffffffffffffffffffffffffffffffffffffffff1614611d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3d906140bb565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000061ffff1681600a60009054906101000a900461ffff16611d87919061438b565b61ffff161115611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc390613ffb565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008261ffff16611dfe9190614703565b14611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3590613f5b565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008261ffff16611e709190614419565b905060005b81811015611eba57611ea7847f0000000000000000000000000000000000000000000000000000000000000000612828565b8080611eb2906146ba565b915050611e75565b5081600a60008282829054906101000a900461ffff16611eda919061438b565b92506101000a81548161ffff021916908361ffff160217905550505050565b600b8054611f0690614657565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3290614657565b8015611f7f5780601f10611f5457610100808354040283529160200191611f7f565b820191906000526020600020905b815481529060010190602001808311611f6257829003601f168201915b505050505081565b60085481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61204d6121b5565b73ffffffffffffffffffffffffffffffffffffffff1661206b611794565b73ffffffffffffffffffffffffffffffffffffffff16146120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b8906140bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212890613f1b565b60405180910390fd5b61213a81612a49565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061227a82612846565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122a16121b5565b73ffffffffffffffffffffffffffffffffffffffff1614806122fd57506122c66121b5565b73ffffffffffffffffffffffffffffffffffffffff166122e584610a43565b73ffffffffffffffffffffffffffffffffffffffff16145b80612319575061231882600001516123136121b5565b611fb1565b5b90508061235b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612352906140fb565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c49061409b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561243d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243490613fdb565b60405180910390fd5b61244a8585856001612e97565b61245a60008484600001516121bd565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124c891906144a4565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661256c9190614345565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461267291906143c3565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127b8576126e8816121a7565b156127b7576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128208686866001612e9d565b505050505050565b612842828260405180602001604052806000815250612ea3565b5050565b61284e61342c565b612857826121a7565b612896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288d90613f3b565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106128fa5760017f0000000000000000000000000000000000000000000000000000000000000000846128ed919061450c565b6128f791906143c3565b90505b60008390505b818110612a08576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129f457809350505050612a44565b508080612a009061462d565b915050612900565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3b906141fb565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612b2e8473ffffffffffffffffffffffffffffffffffffffff16613383565b15612c97578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b576121b5565b8786866040518563ffffffff1660e01b8152600401612b799493929190613e32565b602060405180830381600087803b158015612b9357600080fd5b505af1925050508015612bc457506040513d601f19601f82011682018060405250810190612bc1919061380c565b60015b612c47573d8060008114612bf4576040519150601f19603f3d011682016040523d82523d6000602084013e612bf9565b606091505b50600081511415612c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c369061415b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c9c565b600190505b949350505050565b6060600b8054612cb390614657565b80601f0160208091040260200160405190810160405280929190818152602001828054612cdf90614657565b8015612d2c5780601f10612d0157610100808354040283529160200191612d2c565b820191906000526020600020905b815481529060010190602001808311612d0f57829003601f168201915b5050505050905090565b60606000821415612d7e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e92565b600082905060005b60008214612db0578080612d99906146ba565b915050600a82612da99190614419565b9150612d86565b60008167ffffffffffffffff811115612dcc57612dcb6147f0565b5b6040519080825280601f01601f191660200182016040528015612dfe5781602001600182028036833780820191505090505b5090505b60008514612e8b57600182612e17919061450c565b9150600a85612e269190614703565b6030612e3291906143c3565b60f81b818381518110612e4857612e476147c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e849190614419565b9450612e02565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f119061419b565b60405180910390fd5b612f23816121a7565b15612f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5a9061417b565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbd9061423b565b60405180910390fd5b612fd36000858386612e97565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516130d09190614345565b6fffffffffffffffffffffffffffffffff1681526020018583602001516130f79190614345565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561336657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133066000888488612b0d565b613345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333c9061415b565b60405180910390fd5b8180613350906146ba565b925050808061335e906146ba565b915050613295565b508060018190555061337b6000878588612e9d565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546133b290614657565b90600052602060002090601f0160209004810192826133d4576000855561341b565b82601f106133ed57803560ff191683800117855561341b565b8280016001018555821561341b579182015b8281111561341a5782358255916020019190600101906133ff565b5b5090506134289190613466565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561347f576000816000905550600101613467565b5090565b6000613496613491846142d1565b6142ac565b9050828152602081018484840111156134b2576134b161482e565b5b6134bd8482856145eb565b509392505050565b6000813590506134d481615014565b92915050565b6000813590506134e98161502b565b92915050565b6000813590506134fe81615042565b92915050565b60008151905061351381615042565b92915050565b600082601f83011261352e5761352d614824565b5b813561353e848260208601613483565b91505092915050565b60008083601f84011261355d5761355c614824565b5b8235905067ffffffffffffffff81111561357a5761357961481f565b5b60208301915083600182028301111561359657613595614829565b5b9250929050565b6000813590506135ac81615059565b92915050565b6000813590506135c181615070565b92915050565b6000813590506135d681615087565b92915050565b6000602082840312156135f2576135f1614838565b5b6000613600848285016134c5565b91505092915050565b600080604083850312156136205761361f614838565b5b600061362e858286016134c5565b925050602061363f858286016134c5565b9150509250929050565b60008060006060848603121561366257613661614838565b5b6000613670868287016134c5565b9350506020613681868287016134c5565b9250506040613692868287016135b2565b9150509250925092565b600080600080608085870312156136b6576136b5614838565b5b60006136c4878288016134c5565b94505060206136d5878288016134c5565b93505060406136e6878288016135b2565b925050606085013567ffffffffffffffff81111561370757613706614833565b5b61371387828801613519565b91505092959194509250565b6000806040838503121561373657613735614838565b5b6000613744858286016134c5565b9250506020613755858286016134da565b9150509250929050565b6000806040838503121561377657613775614838565b5b6000613784858286016134c5565b92505060206137958582860161359d565b9150509250929050565b600080604083850312156137b6576137b5614838565b5b60006137c4858286016134c5565b92505060206137d5858286016135b2565b9150509250929050565b6000602082840312156137f5576137f4614838565b5b6000613803848285016134ef565b91505092915050565b60006020828403121561382257613821614838565b5b600061383084828501613504565b91505092915050565b600080602083850312156138505761384f614838565b5b600083013567ffffffffffffffff81111561386e5761386d614833565b5b61387a85828601613547565b92509250509250929050565b60006020828403121561389c5761389b614838565b5b60006138aa848285016135b2565b91505092915050565b6000602082840312156138c9576138c8614838565b5b60006138d7848285016135c7565b91505092915050565b6138e981614540565b82525050565b6138f881614552565b82525050565b600061390982614302565b6139138185614318565b93506139238185602086016145fa565b61392c8161483d565b840191505092915050565b60006139428261430d565b61394c8185614329565b935061395c8185602086016145fa565b6139658161483d565b840191505092915050565b600061397b8261430d565b613985818561433a565b93506139958185602086016145fa565b80840191505092915050565b60006139ae602283614329565b91506139b98261484e565b604082019050919050565b60006139d1601d83614329565b91506139dc8261489d565b602082019050919050565b60006139f4601283614329565b91506139ff826148c6565b602082019050919050565b6000613a17602683614329565b9150613a22826148ef565b604082019050919050565b6000613a3a602a83614329565b9150613a458261493e565b604082019050919050565b6000613a5d602c83614329565b9150613a688261498d565b604082019050919050565b6000613a80603083614329565b9150613a8b826149dc565b604082019050919050565b6000613aa3601a83614329565b9150613aae82614a2b565b602082019050919050565b6000613ac6602383614329565b9150613ad182614a54565b604082019050919050565b6000613ae9602583614329565b9150613af482614aa3565b604082019050919050565b6000613b0c601e83614329565b9150613b1782614af2565b602082019050919050565b6000613b2f602f83614329565b9150613b3a82614b1b565b604082019050919050565b6000613b52603983614329565b9150613b5d82614b6a565b604082019050919050565b6000613b75602b83614329565b9150613b8082614bb9565b604082019050919050565b6000613b98602f83614329565b9150613ba382614c08565b604082019050919050565b6000613bbb602683614329565b9150613bc682614c57565b604082019050919050565b6000613bde60058361433a565b9150613be982614ca6565b600582019050919050565b6000613c01602083614329565b9150613c0c82614ccf565b602082019050919050565b6000613c24601a83614329565b9150613c2f82614cf8565b602082019050919050565b6000613c47603283614329565b9150613c5282614d21565b604082019050919050565b6000613c6a602083614329565b9150613c7582614d70565b602082019050919050565b6000613c8d602283614329565b9150613c9882614d99565b604082019050919050565b6000613cb0603383614329565b9150613cbb82614de8565b604082019050919050565b6000613cd3601d83614329565b9150613cde82614e37565b602082019050919050565b6000613cf6602183614329565b9150613d0182614e60565b604082019050919050565b6000613d19602e83614329565b9150613d2482614eaf565b604082019050919050565b6000613d3c601f83614329565b9150613d4782614efe565b602082019050919050565b6000613d5f602f83614329565b9150613d6a82614f27565b604082019050919050565b6000613d82602d83614329565b9150613d8d82614f76565b604082019050919050565b6000613da5602283614329565b9150613db082614fc5565b604082019050919050565b613dc4816145a6565b82525050565b613dd3816145d4565b82525050565b613de2816145de565b82525050565b6000613df48285613970565b9150613e008284613970565b9150613e0b82613bd1565b91508190509392505050565b6000602082019050613e2c60008301846138e0565b92915050565b6000608082019050613e4760008301876138e0565b613e5460208301866138e0565b613e616040830185613dca565b8181036060830152613e7381846138fe565b905095945050505050565b6000602082019050613e9360008301846138ef565b92915050565b60006020820190508181036000830152613eb38184613937565b905092915050565b60006020820190508181036000830152613ed4816139a1565b9050919050565b60006020820190508181036000830152613ef4816139c4565b9050919050565b60006020820190508181036000830152613f14816139e7565b9050919050565b60006020820190508181036000830152613f3481613a0a565b9050919050565b60006020820190508181036000830152613f5481613a2d565b9050919050565b60006020820190508181036000830152613f7481613a50565b9050919050565b60006020820190508181036000830152613f9481613a73565b9050919050565b60006020820190508181036000830152613fb481613a96565b9050919050565b60006020820190508181036000830152613fd481613ab9565b9050919050565b60006020820190508181036000830152613ff481613adc565b9050919050565b6000602082019050818103600083015261401481613aff565b9050919050565b6000602082019050818103600083015261403481613b22565b9050919050565b6000602082019050818103600083015261405481613b45565b9050919050565b6000602082019050818103600083015261407481613b68565b9050919050565b6000602082019050818103600083015261409481613b8b565b9050919050565b600060208201905081810360008301526140b481613bae565b9050919050565b600060208201905081810360008301526140d481613bf4565b9050919050565b600060208201905081810360008301526140f481613c17565b9050919050565b6000602082019050818103600083015261411481613c3a565b9050919050565b6000602082019050818103600083015261413481613c5d565b9050919050565b6000602082019050818103600083015261415481613c80565b9050919050565b6000602082019050818103600083015261417481613ca3565b9050919050565b6000602082019050818103600083015261419481613cc6565b9050919050565b600060208201905081810360008301526141b481613ce9565b9050919050565b600060208201905081810360008301526141d481613d0c565b9050919050565b600060208201905081810360008301526141f481613d2f565b9050919050565b6000602082019050818103600083015261421481613d52565b9050919050565b6000602082019050818103600083015261423481613d75565b9050919050565b6000602082019050818103600083015261425481613d98565b9050919050565b60006020820190506142706000830184613dbb565b92915050565b600060208201905061428b6000830184613dca565b92915050565b60006020820190506142a66000830184613dd9565b92915050565b60006142b66142c7565b90506142c28282614689565b919050565b6000604051905090565b600067ffffffffffffffff8211156142ec576142eb6147f0565b5b6142f58261483d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006143508261458a565b915061435b8361458a565b9250826fffffffffffffffffffffffffffffffff038211156143805761437f614734565b5b828201905092915050565b6000614396826145a6565b91506143a1836145a6565b92508261ffff038211156143b8576143b7614734565b5b828201905092915050565b60006143ce826145d4565b91506143d9836145d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561440e5761440d614734565b5b828201905092915050565b6000614424826145d4565b915061442f836145d4565b92508261443f5761443e614763565b5b828204905092915050565b6000614455826145d4565b9150614460836145d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561449957614498614734565b5b828202905092915050565b60006144af8261458a565b91506144ba8361458a565b9250828210156144cd576144cc614734565b5b828203905092915050565b60006144e3826145a6565b91506144ee836145a6565b92508282101561450157614500614734565b5b828203905092915050565b6000614517826145d4565b9150614522836145d4565b92508282101561453557614534614734565b5b828203905092915050565b600061454b826145b4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156146185780820151818401526020810190506145fd565b83811115614627576000848401525b50505050565b6000614638826145d4565b9150600082141561464c5761464b614734565b5b600182039050919050565b6000600282049050600182168061466f57607f821691505b6020821081141561468357614682614792565b5b50919050565b6146928261483d565b810181811067ffffffffffffffff821117156146b1576146b06147f0565b5b80604052505050565b60006146c5826145d4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146f8576146f7614734565b5b600182019050919050565b600061470e826145d4565b9150614719836145d4565b92508261472957614728614763565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420776f756c6420657863656564206d617820737570706c792e000000600082015250565b7f496e737566696369656e742066756e64732e0000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f596f752068617665207265616368656420746865206d6178206d696e7420616d60008201527f6f756e742070657220686f6c6465722e00000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206163746976652e000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f576f756c646c20657863656564206d6178207465616d20737570706c792e0000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374696e6720746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f43616e6e6f742075706461746520696620616c7265616479207265616368656460008201527f20736f6c646f75742073746167652e0000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2035206174206f6e63652e600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61501d81614540565b811461502857600080fd5b50565b61503481614552565b811461503f57600080fd5b50565b61504b8161455e565b811461505657600080fd5b50565b615062816145a6565b811461506d57600080fd5b50565b615079816145d4565b811461508457600080fd5b50565b615090816145de565b811461509b57600080fd5b5056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d66454e6b375a70553451387a7247486f4d4c62433148476b337531625a55785568433673384b4d6851397263a26469706673582212209e1ca3de5acec5d731f26c74e25059024635a2356796083d6e8e5d0027d3e76264736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063d547cfb71161006f578063d547cfb714610780578063d7224ba0146107ab578063def0c275146107d6578063e985e9c514610801578063f2fde38b1461083e5761020f565b8063b88d4fde146106c6578063c810cf3c146106ef578063c87b56dd1461071a578063ce658079146107575761020f565b806395652cfa116100e757806395652cfa146105f557806395d89b411461061e5780639c1948e714610649578063a22cb46514610674578063b44c57671461069d5761020f565b8063715018a61461055d57806376bff663146105745780638da5cb5b1461059f5780639092c31c146105ca5761020f565b806335eb2be21161019b5780634aaca86d1161016a5780634aaca86d146104505780634f6ccce71461047b578063524cbda3146104b85780636352211e146104e357806370a08231146105205761020f565b806335eb2be2146103ba5780633ccfd60b146103e557806342842e0e146103fc578063454e66c8146104255761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d5780632db11544146103365780632f745c591461035257806332cb6b0c1461038f5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906137df565b610867565b6040516102489190613e7e565b60405180910390f35b34801561025d57600080fd5b506102666109b1565b6040516102739190613e99565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613886565b610a43565b6040516102b09190613e17565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061379f565b610ac8565b005b3480156102ee57600080fd5b506102f7610be1565b6040516103049190614276565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190613649565b610beb565b005b610350600480360381019061034b9190613886565b610bfb565b005b34801561035e57600080fd5b506103796004803603810190610374919061379f565b610fe6565b6040516103869190614276565b60405180910390f35b34801561039b57600080fd5b506103a46111e4565b6040516103b1919061425b565b60405180910390f35b3480156103c657600080fd5b506103cf611208565b6040516103dc919061425b565b60405180910390f35b3480156103f157600080fd5b506103fa61121c565b005b34801561040857600080fd5b50610423600480360381019061041e9190613649565b61151b565b005b34801561043157600080fd5b5061043a61153b565b6040516104479190613e17565b60405180910390f35b34801561045c57600080fd5b5061046561155f565b6040516104729190614291565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190613886565b611572565b6040516104af9190614276565b60405180910390f35b3480156104c457600080fd5b506104cd6115c5565b6040516104da9190613e17565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190613886565b6115e9565b6040516105179190613e17565b60405180910390f35b34801561052c57600080fd5b50610547600480360381019061054291906135dc565b6115ff565b6040516105549190614276565b60405180910390f35b34801561056957600080fd5b506105726116e8565b005b34801561058057600080fd5b50610589611770565b6040516105969190614276565b60405180910390f35b3480156105ab57600080fd5b506105b4611794565b6040516105c19190613e17565b60405180910390f35b3480156105d657600080fd5b506105df6117bd565b6040516105ec9190613e17565b60405180910390f35b34801561060157600080fd5b5061061c60048036038101906106179190613839565b6117e1565b005b34801561062a57600080fd5b50610633611873565b6040516106409190613e99565b60405180910390f35b34801561065557600080fd5b5061065e611905565b60405161066b9190613e17565b60405180910390f35b34801561068057600080fd5b5061069b6004803603810190610696919061371f565b611929565b005b3480156106a957600080fd5b506106c460048036038101906106bf91906138b3565b611aaa565b005b3480156106d257600080fd5b506106ed60048036038101906106e8919061369c565b611b9a565b005b3480156106fb57600080fd5b50610704611bf6565b6040516107119190613e17565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190613886565b611c1a565b60405161074e9190613e99565b60405180910390f35b34801561076357600080fd5b5061077e6004803603810190610779919061375f565b611cca565b005b34801561078c57600080fd5b50610795611ef9565b6040516107a29190613e99565b60405180910390f35b3480156107b757600080fd5b506107c0611f87565b6040516107cd9190614276565b60405180910390f35b3480156107e257600080fd5b506107eb611f8d565b6040516107f8919061425b565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190613609565b611fb1565b6040516108359190613e7e565b60405180910390f35b34801561084a57600080fd5b50610865600480360381019061086091906135dc565b612045565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109aa57506109a98261213d565b5b9050919050565b6060600280546109c090614657565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec90614657565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b5050505050905090565b6000610a4e826121a7565b610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a849061421b565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad3826115e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b9061413b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b636121b5565b73ffffffffffffffffffffffffffffffffffffffff161480610b925750610b9181610b8c6121b5565b611fb1565b5b610bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc89061403b565b60405180910390fd5b610bdc8383836121bd565b505050565b6000600154905090565b610bf683838361226f565b505050565b60026009541415610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c38906141db565b60405180910390fd5b60026009819055506001600a60029054906101000a900460ff1660ff1614610c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9590613f9b565b60405180910390fd5b6005811115610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd99061411b565b60405180910390fd5b601481610cee336115ff565b610cf891906143c3565b1115610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090613f7b565b60405180910390fd5b6008610d44336115ff565b108015610d645750600881610d58336115ff565b610d6291906143c3565b115b15610df657600881610d75336115ff565b610d7f91906143c3565b610d89919061450c565b7f00000000000000000000000000000000000000000000000000071afd498d0000610db4919061444a565b3414610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90613efb565b60405180910390fd5b5b6008610e01336115ff565b10610e7457807f00000000000000000000000000000000000000000000000000071afd498d0000610e32919061444a565b3414610e73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6a90613efb565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000271061ffff16600a60009054906101000a900461ffff167f00000000000000000000000000000000000000000000000000000000000003e8610ed591906144d8565b61ffff1682610ee2610be1565b610eec91906143c3565b610ef691906143c3565b1115610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e90613edb565b60405180910390fd5b610f413382612828565b7f000000000000000000000000000000000000000000000000000000000000271061ffff16600a60009054906101000a900461ffff167f00000000000000000000000000000000000000000000000000000000000003e8610fa291906144d8565b61ffff16610fae610be1565b610fb891906143c3565b1415610fdb576002600a60026101000a81548160ff021916908360ff1602179055505b600160098190555050565b6000610ff1836115ff565b8210611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990613ebb565b60405180910390fd5b600061103c610be1565b905060008060005b838110156111a2576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461113657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561118e578684141561117f5781955050505050506111de565b838061118a906146ba565b9450505b50808061119a906146ba565b915050611044565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d5906141bb565b60405180910390fd5b92915050565b7f000000000000000000000000000000000000000000000000000000000000271081565b600a60009054906101000a900461ffff1681565b6112246121b5565b73ffffffffffffffffffffffffffffffffffffffff16611242611794565b73ffffffffffffffffffffffffffffffffffffffff1614611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f906140bb565b60405180910390fd5b60004790507f000000000000000000000000682e5d1b097e55228f5e2b5d0f6212ffa645cc0273ffffffffffffffffffffffffffffffffffffffff166108fc60646014846112e6919061444a565b6112f09190614419565b9081150290604051600060405180830381858888f1935050505015801561131b573d6000803e3d6000fd5b507f000000000000000000000000f416f708a855d65567a6456e3908bba4b922992273ffffffffffffffffffffffffffffffffffffffff166108fc6064602884611365919061444a565b61136f9190614419565b9081150290604051600060405180830381858888f1935050505015801561139a573d6000803e3d6000fd5b507f0000000000000000000000004d864d0b967d97a779cd1b14ecb780c08b8aa3dd73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a846113e4919061444a565b6113ee9190614419565b9081150290604051600060405180830381858888f19350505050158015611419573d6000803e3d6000fd5b507f0000000000000000000000008306865fab8dec66a1d9927d9ffc4298500cf7ed73ffffffffffffffffffffffffffffffffffffffff166108fc6064600f84611463919061444a565b61146d9190614419565b9081150290604051600060405180830381858888f19350505050158015611498573d6000803e3d6000fd5b507f000000000000000000000000600450fa4b0a108c1fcec19cb6a4e09514aec9b873ffffffffffffffffffffffffffffffffffffffff166108fc6064600f846114e2919061444a565b6114ec9190614419565b9081150290604051600060405180830381858888f19350505050158015611517573d6000803e3d6000fd5b5050565b61153683838360405180602001604052806000815250611b9a565b505050565b7f0000000000000000000000008306865fab8dec66a1d9927d9ffc4298500cf7ed81565b600a60029054906101000a900460ff1681565b600061157c610be1565b82106115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490613fbb565b60405180910390fd5b819050919050565b7f000000000000000000000000682e5d1b097e55228f5e2b5d0f6212ffa645cc0281565b60006115f482612846565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611670576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116679061405b565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116f06121b5565b73ffffffffffffffffffffffffffffffffffffffff1661170e611794565b73ffffffffffffffffffffffffffffffffffffffff1614611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b906140bb565b60405180910390fd5b61176e6000612a49565b565b7f00000000000000000000000000000000000000000000000000071afd498d000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f0000000000000000000000004d864d0b967d97a779cd1b14ecb780c08b8aa3dd81565b6117e96121b5565b73ffffffffffffffffffffffffffffffffffffffff16611807611794565b73ffffffffffffffffffffffffffffffffffffffff161461185d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611854906140bb565b60405180910390fd5b8181600b919061186e9291906133a6565b505050565b60606003805461188290614657565b80601f01602080910402602001604051908101604052809291908181526020018280546118ae90614657565b80156118fb5780601f106118d0576101008083540402835291602001916118fb565b820191906000526020600020905b8154815290600101906020018083116118de57829003601f168201915b5050505050905090565b7f000000000000000000000000f416f708a855d65567a6456e3908bba4b922992281565b6119316121b5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611996906140db565b60405180910390fd5b80600760006119ac6121b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a596121b5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a9e9190613e7e565b60405180910390a35050565b611ab26121b5565b73ffffffffffffffffffffffffffffffffffffffff16611ad0611794565b73ffffffffffffffffffffffffffffffffffffffff1614611b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1d906140bb565b60405180910390fd5b6002600a60029054906101000a900460ff1660ff161415611b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b739061407b565b60405180910390fd5b80600a60026101000a81548160ff021916908360ff16021790555050565b611ba584848461226f565b611bb184848484612b0d565b611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be79061415b565b60405180910390fd5b50505050565b7f000000000000000000000000600450fa4b0a108c1fcec19cb6a4e09514aec9b881565b6060611c25826121a7565b611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b9061401b565b60405180910390fd5b6000611c6e612ca4565b90506000815111611c975760405180608001604052806050815260200161509f60509139611cc2565b80611ca184612d36565b604051602001611cb2929190613de8565b6040516020818303038152906040525b915050919050565b611cd26121b5565b73ffffffffffffffffffffffffffffffffffffffff16611cf0611794565b73ffffffffffffffffffffffffffffffffffffffff1614611d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3d906140bb565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003e861ffff1681600a60009054906101000a900461ffff16611d87919061438b565b61ffff161115611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc390613ffb565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000148261ffff16611dfe9190614703565b14611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3590613f5b565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000148261ffff16611e709190614419565b905060005b81811015611eba57611ea7847f0000000000000000000000000000000000000000000000000000000000000014612828565b8080611eb2906146ba565b915050611e75565b5081600a60008282829054906101000a900461ffff16611eda919061438b565b92506101000a81548161ffff021916908361ffff160217905550505050565b600b8054611f0690614657565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3290614657565b8015611f7f5780601f10611f5457610100808354040283529160200191611f7f565b820191906000526020600020905b815481529060010190602001808311611f6257829003601f168201915b505050505081565b60085481565b7f00000000000000000000000000000000000000000000000000000000000003e881565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61204d6121b5565b73ffffffffffffffffffffffffffffffffffffffff1661206b611794565b73ffffffffffffffffffffffffffffffffffffffff16146120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b8906140bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212890613f1b565b60405180910390fd5b61213a81612a49565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061227a82612846565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122a16121b5565b73ffffffffffffffffffffffffffffffffffffffff1614806122fd57506122c66121b5565b73ffffffffffffffffffffffffffffffffffffffff166122e584610a43565b73ffffffffffffffffffffffffffffffffffffffff16145b80612319575061231882600001516123136121b5565b611fb1565b5b90508061235b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612352906140fb565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c49061409b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561243d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243490613fdb565b60405180910390fd5b61244a8585856001612e97565b61245a60008484600001516121bd565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166124c891906144a4565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661256c9190614345565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461267291906143c3565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127b8576126e8816121a7565b156127b7576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128208686866001612e9d565b505050505050565b612842828260405180602001604052806000815250612ea3565b5050565b61284e61342c565b612857826121a7565b612896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288d90613f3b565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001483106128fa5760017f0000000000000000000000000000000000000000000000000000000000000014846128ed919061450c565b6128f791906143c3565b90505b60008390505b818110612a08576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129f457809350505050612a44565b508080612a009061462d565b915050612900565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3b906141fb565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612b2e8473ffffffffffffffffffffffffffffffffffffffff16613383565b15612c97578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b576121b5565b8786866040518563ffffffff1660e01b8152600401612b799493929190613e32565b602060405180830381600087803b158015612b9357600080fd5b505af1925050508015612bc457506040513d601f19601f82011682018060405250810190612bc1919061380c565b60015b612c47573d8060008114612bf4576040519150601f19603f3d011682016040523d82523d6000602084013e612bf9565b606091505b50600081511415612c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c369061415b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c9c565b600190505b949350505050565b6060600b8054612cb390614657565b80601f0160208091040260200160405190810160405280929190818152602001828054612cdf90614657565b8015612d2c5780601f10612d0157610100808354040283529160200191612d2c565b820191906000526020600020905b815481529060010190602001808311612d0f57829003601f168201915b5050505050905090565b60606000821415612d7e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e92565b600082905060005b60008214612db0578080612d99906146ba565b915050600a82612da99190614419565b9150612d86565b60008167ffffffffffffffff811115612dcc57612dcb6147f0565b5b6040519080825280601f01601f191660200182016040528015612dfe5781602001600182028036833780820191505090505b5090505b60008514612e8b57600182612e17919061450c565b9150600a85612e269190614703565b6030612e3291906143c3565b60f81b818381518110612e4857612e476147c1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e849190614419565b9450612e02565b8093505050505b919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f119061419b565b60405180910390fd5b612f23816121a7565b15612f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5a9061417b565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115612fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbd9061423b565b60405180910390fd5b612fd36000858386612e97565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516130d09190614345565b6fffffffffffffffffffffffffffffffff1681526020018583602001516130f79190614345565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561336657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133066000888488612b0d565b613345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333c9061415b565b60405180910390fd5b8180613350906146ba565b925050808061335e906146ba565b915050613295565b508060018190555061337b6000878588612e9d565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546133b290614657565b90600052602060002090601f0160209004810192826133d4576000855561341b565b82601f106133ed57803560ff191683800117855561341b565b8280016001018555821561341b579182015b8281111561341a5782358255916020019190600101906133ff565b5b5090506134289190613466565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561347f576000816000905550600101613467565b5090565b6000613496613491846142d1565b6142ac565b9050828152602081018484840111156134b2576134b161482e565b5b6134bd8482856145eb565b509392505050565b6000813590506134d481615014565b92915050565b6000813590506134e98161502b565b92915050565b6000813590506134fe81615042565b92915050565b60008151905061351381615042565b92915050565b600082601f83011261352e5761352d614824565b5b813561353e848260208601613483565b91505092915050565b60008083601f84011261355d5761355c614824565b5b8235905067ffffffffffffffff81111561357a5761357961481f565b5b60208301915083600182028301111561359657613595614829565b5b9250929050565b6000813590506135ac81615059565b92915050565b6000813590506135c181615070565b92915050565b6000813590506135d681615087565b92915050565b6000602082840312156135f2576135f1614838565b5b6000613600848285016134c5565b91505092915050565b600080604083850312156136205761361f614838565b5b600061362e858286016134c5565b925050602061363f858286016134c5565b9150509250929050565b60008060006060848603121561366257613661614838565b5b6000613670868287016134c5565b9350506020613681868287016134c5565b9250506040613692868287016135b2565b9150509250925092565b600080600080608085870312156136b6576136b5614838565b5b60006136c4878288016134c5565b94505060206136d5878288016134c5565b93505060406136e6878288016135b2565b925050606085013567ffffffffffffffff81111561370757613706614833565b5b61371387828801613519565b91505092959194509250565b6000806040838503121561373657613735614838565b5b6000613744858286016134c5565b9250506020613755858286016134da565b9150509250929050565b6000806040838503121561377657613775614838565b5b6000613784858286016134c5565b92505060206137958582860161359d565b9150509250929050565b600080604083850312156137b6576137b5614838565b5b60006137c4858286016134c5565b92505060206137d5858286016135b2565b9150509250929050565b6000602082840312156137f5576137f4614838565b5b6000613803848285016134ef565b91505092915050565b60006020828403121561382257613821614838565b5b600061383084828501613504565b91505092915050565b600080602083850312156138505761384f614838565b5b600083013567ffffffffffffffff81111561386e5761386d614833565b5b61387a85828601613547565b92509250509250929050565b60006020828403121561389c5761389b614838565b5b60006138aa848285016135b2565b91505092915050565b6000602082840312156138c9576138c8614838565b5b60006138d7848285016135c7565b91505092915050565b6138e981614540565b82525050565b6138f881614552565b82525050565b600061390982614302565b6139138185614318565b93506139238185602086016145fa565b61392c8161483d565b840191505092915050565b60006139428261430d565b61394c8185614329565b935061395c8185602086016145fa565b6139658161483d565b840191505092915050565b600061397b8261430d565b613985818561433a565b93506139958185602086016145fa565b80840191505092915050565b60006139ae602283614329565b91506139b98261484e565b604082019050919050565b60006139d1601d83614329565b91506139dc8261489d565b602082019050919050565b60006139f4601283614329565b91506139ff826148c6565b602082019050919050565b6000613a17602683614329565b9150613a22826148ef565b604082019050919050565b6000613a3a602a83614329565b9150613a458261493e565b604082019050919050565b6000613a5d602c83614329565b9150613a688261498d565b604082019050919050565b6000613a80603083614329565b9150613a8b826149dc565b604082019050919050565b6000613aa3601a83614329565b9150613aae82614a2b565b602082019050919050565b6000613ac6602383614329565b9150613ad182614a54565b604082019050919050565b6000613ae9602583614329565b9150613af482614aa3565b604082019050919050565b6000613b0c601e83614329565b9150613b1782614af2565b602082019050919050565b6000613b2f602f83614329565b9150613b3a82614b1b565b604082019050919050565b6000613b52603983614329565b9150613b5d82614b6a565b604082019050919050565b6000613b75602b83614329565b9150613b8082614bb9565b604082019050919050565b6000613b98602f83614329565b9150613ba382614c08565b604082019050919050565b6000613bbb602683614329565b9150613bc682614c57565b604082019050919050565b6000613bde60058361433a565b9150613be982614ca6565b600582019050919050565b6000613c01602083614329565b9150613c0c82614ccf565b602082019050919050565b6000613c24601a83614329565b9150613c2f82614cf8565b602082019050919050565b6000613c47603283614329565b9150613c5282614d21565b604082019050919050565b6000613c6a602083614329565b9150613c7582614d70565b602082019050919050565b6000613c8d602283614329565b9150613c9882614d99565b604082019050919050565b6000613cb0603383614329565b9150613cbb82614de8565b604082019050919050565b6000613cd3601d83614329565b9150613cde82614e37565b602082019050919050565b6000613cf6602183614329565b9150613d0182614e60565b604082019050919050565b6000613d19602e83614329565b9150613d2482614eaf565b604082019050919050565b6000613d3c601f83614329565b9150613d4782614efe565b602082019050919050565b6000613d5f602f83614329565b9150613d6a82614f27565b604082019050919050565b6000613d82602d83614329565b9150613d8d82614f76565b604082019050919050565b6000613da5602283614329565b9150613db082614fc5565b604082019050919050565b613dc4816145a6565b82525050565b613dd3816145d4565b82525050565b613de2816145de565b82525050565b6000613df48285613970565b9150613e008284613970565b9150613e0b82613bd1565b91508190509392505050565b6000602082019050613e2c60008301846138e0565b92915050565b6000608082019050613e4760008301876138e0565b613e5460208301866138e0565b613e616040830185613dca565b8181036060830152613e7381846138fe565b905095945050505050565b6000602082019050613e9360008301846138ef565b92915050565b60006020820190508181036000830152613eb38184613937565b905092915050565b60006020820190508181036000830152613ed4816139a1565b9050919050565b60006020820190508181036000830152613ef4816139c4565b9050919050565b60006020820190508181036000830152613f14816139e7565b9050919050565b60006020820190508181036000830152613f3481613a0a565b9050919050565b60006020820190508181036000830152613f5481613a2d565b9050919050565b60006020820190508181036000830152613f7481613a50565b9050919050565b60006020820190508181036000830152613f9481613a73565b9050919050565b60006020820190508181036000830152613fb481613a96565b9050919050565b60006020820190508181036000830152613fd481613ab9565b9050919050565b60006020820190508181036000830152613ff481613adc565b9050919050565b6000602082019050818103600083015261401481613aff565b9050919050565b6000602082019050818103600083015261403481613b22565b9050919050565b6000602082019050818103600083015261405481613b45565b9050919050565b6000602082019050818103600083015261407481613b68565b9050919050565b6000602082019050818103600083015261409481613b8b565b9050919050565b600060208201905081810360008301526140b481613bae565b9050919050565b600060208201905081810360008301526140d481613bf4565b9050919050565b600060208201905081810360008301526140f481613c17565b9050919050565b6000602082019050818103600083015261411481613c3a565b9050919050565b6000602082019050818103600083015261413481613c5d565b9050919050565b6000602082019050818103600083015261415481613c80565b9050919050565b6000602082019050818103600083015261417481613ca3565b9050919050565b6000602082019050818103600083015261419481613cc6565b9050919050565b600060208201905081810360008301526141b481613ce9565b9050919050565b600060208201905081810360008301526141d481613d0c565b9050919050565b600060208201905081810360008301526141f481613d2f565b9050919050565b6000602082019050818103600083015261421481613d52565b9050919050565b6000602082019050818103600083015261423481613d75565b9050919050565b6000602082019050818103600083015261425481613d98565b9050919050565b60006020820190506142706000830184613dbb565b92915050565b600060208201905061428b6000830184613dca565b92915050565b60006020820190506142a66000830184613dd9565b92915050565b60006142b66142c7565b90506142c28282614689565b919050565b6000604051905090565b600067ffffffffffffffff8211156142ec576142eb6147f0565b5b6142f58261483d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006143508261458a565b915061435b8361458a565b9250826fffffffffffffffffffffffffffffffff038211156143805761437f614734565b5b828201905092915050565b6000614396826145a6565b91506143a1836145a6565b92508261ffff038211156143b8576143b7614734565b5b828201905092915050565b60006143ce826145d4565b91506143d9836145d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561440e5761440d614734565b5b828201905092915050565b6000614424826145d4565b915061442f836145d4565b92508261443f5761443e614763565b5b828204905092915050565b6000614455826145d4565b9150614460836145d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561449957614498614734565b5b828202905092915050565b60006144af8261458a565b91506144ba8361458a565b9250828210156144cd576144cc614734565b5b828203905092915050565b60006144e3826145a6565b91506144ee836145a6565b92508282101561450157614500614734565b5b828203905092915050565b6000614517826145d4565b9150614522836145d4565b92508282101561453557614534614734565b5b828203905092915050565b600061454b826145b4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156146185780820151818401526020810190506145fd565b83811115614627576000848401525b50505050565b6000614638826145d4565b9150600082141561464c5761464b614734565b5b600182039050919050565b6000600282049050600182168061466f57607f821691505b6020821081141561468357614682614792565b5b50919050565b6146928261483d565b810181811067ffffffffffffffff821117156146b1576146b06147f0565b5b80604052505050565b60006146c5826145d4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146f8576146f7614734565b5b600182019050919050565b600061470e826145d4565b9150614719836145d4565b92508261472957614728614763565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420776f756c6420657863656564206d617820737570706c792e000000600082015250565b7f496e737566696369656e742066756e64732e0000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f596f752068617665207265616368656420746865206d6178206d696e7420616d60008201527f6f756e742070657220686f6c6465722e00000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206163746976652e000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f576f756c646c20657863656564206d6178207465616d20737570706c792e0000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374696e6720746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f43616e6e6f742075706461746520696620616c7265616479207265616368656460008201527f20736f6c646f75742073746167652e0000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2035206174206f6e63652e600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61501d81614540565b811461502857600080fd5b50565b61503481614552565b811461503f57600080fd5b50565b61504b8161455e565b811461505657600080fd5b50565b615062816145a6565b811461506d57600080fd5b50565b615079816145d4565b811461508457600080fd5b50565b615090816145de565b811461509b57600080fd5b5056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d66454e6b375a70553451387a7247486f4d4c62433148476b337531625a55785568433673384b4d6851397263a26469706673582212209e1ca3de5acec5d731f26c74e25059024635a2356796083d6e8e5d0027d3e76264736f6c63430008070033

Deployed Bytecode Sourcemap

260:3779:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4251:370:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5977:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7502:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7065:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2812:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8352:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1443:949:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3443:744:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;328:42:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;486:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3617:419;;;;;;;;;;;;;:::i;:::-;;8557:157:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;622:87:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;522:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2975:177:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;716:87:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5800:118:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4677:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;;;;;;;;;;;:::i;:::-;;430:49:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1036:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;998:83:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3040:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6132:98:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;811:86:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7770:274:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1227:185:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8777:311:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;904:86:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3170:420;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2420:464;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;587:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13192:43:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;377:46:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8107:186:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4251:370:11;4378:4;4423:25;4408:40;;;:11;:40;;;;:99;;;;4474:33;4459:48;;;:11;:48;;;;4408:99;:160;;;;4533:35;4518:50;;;:11;:50;;;;4408:160;:207;;;;4579:36;4603:11;4579:23;:36::i;:::-;4408:207;4394:221;;4251:370;;;:::o;5977:94::-;6031:13;6060:5;6053:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5977:94;:::o;7502:204::-;7570:7;7594:16;7602:7;7594;:16::i;:::-;7586:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7676:15;:24;7692:7;7676:24;;;;;;;;;;;;;;;;;;;;;7669:31;;7502:204;;;:::o;7065:379::-;7134:13;7150:24;7166:7;7150:15;:24::i;:::-;7134:40;;7195:5;7189:11;;:2;:11;;;;7181:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;7280:5;7264:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7289:37;7306:5;7313:12;:10;:12::i;:::-;7289:16;:37::i;:::-;7264:62;7248:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;7410:28;7419:2;7423:7;7432:5;7410:8;:28::i;:::-;7127:317;7065:379;;:::o;2812:94::-;2865:7;2888:12;;2881:19;;2812:94;:::o;8352:142::-;8460:28;8470:4;8476:2;8480:7;8460:9;:28::i;:::-;8352:142;;;:::o;1443:949:12:-;1744:1:1;2325:7;;:19;;2317:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1744:1;2455:7;:18;;;;1541:1:12::1;1528:9;;;;;;;;;;;:14;;;1520:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;1605:1;1592:9;:14;;1584:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;1699:2;1686:9;1662:21;1672:10;1662:9;:21::i;:::-;:33;;;;:::i;:::-;:39;;1654:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;1793:1;1769:21;1779:10;1769:9;:21::i;:::-;:25;:66;;;;;1834:1;1822:9;1798:21;1808:10;1798:9;:21::i;:::-;:33;;;;:::i;:::-;:37;1769:66;1765:198;;;1926:1;1914:9;1890:21;1900:10;1890:9;:21::i;:::-;:33;;;;:::i;:::-;:37;;;;:::i;:::-;1873:13;:55;;;;:::i;:::-;1860:9;:68;1852:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;1765:198;2002:1;1977:21;1987:10;1977:9;:21::i;:::-;:26;1973:128;;2057:9;2041:13;:25;;;;:::i;:::-;2028:9;:38;2020:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1973:128;2180:10;2119:71;;2164:11;;;;;;;;;;;2148:15;:27;;;;:::i;:::-;2119:57;;2135:9;2119:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:57;;;;:::i;:::-;:71;;2111:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:32;2247:10;2259:9;2237;:32::i;:::-;2333:10;2284:59;;2317:11;;;;;;;;;;;2301:15;:27;;;;:::i;:::-;2284:45;;:13;:11;:13::i;:::-;:45;;;;:::i;:::-;:59;2280:105;;;2372:1;2360:9;;:13;;;;;;;;;;;;;;;;;;2280:105;1701:1:1::0;2628:7;:22;;;;1443:949:12;:::o;3443:744:11:-;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;328:42:12:-;;;:::o;486:29::-;;;;;;;;;;;;;:::o;3617:419::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3667:18:12::1;3688:21;3667:42;;3728:17;3720:35;;:54;3770:3;3767:2;3756:10;:13;;;;:::i;:::-;:17;;;;:::i;:::-;3720:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3793:16;3785:34;;:53;3834:3;3831:2;3820:10;:13;;;;:::i;:::-;:17;;;;:::i;:::-;3785:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3857:13;3849:31;;:50;3895:3;3892:2;3881:10;:13;;;;:::i;:::-;:17;;;;:::i;:::-;3849:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3918:17;3910:35;;:54;3960:3;3957:2;3946:10;:13;;;;:::i;:::-;:17;;;;:::i;:::-;3910:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3983:16;3975:34;;:53;4024:3;4021:2;4010:10;:13;;;;:::i;:::-;:17;;;;:::i;:::-;3975:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3656:380;3617:419::o:0;8557:157:11:-;8669:39;8686:4;8692:2;8696:7;8669:39;;;;;;;;;;;;:16;:39::i;:::-;8557:157;;;:::o;622:87:12:-;;;:::o;522:22::-;;;;;;;;;;;;;:::o;2975:177:11:-;3042:7;3074:13;:11;:13::i;:::-;3066:5;:21;3058:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:5;3134:12;;2975:177;;;:::o;716:87:12:-;;;:::o;5800:118:11:-;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;1668:101:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;430:49:12:-;;;:::o;1036:85:0:-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;998:83:12:-;;;:::o;3040:122::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3141:13:12::1;;3126:12;:28;;;;;;;:::i;:::-;;3040:122:::0;;:::o;6132:98:11:-;6188:13;6217:7;6210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6132:98;:::o;811:86:12:-;;;:::o;7770:274:11:-;7873:12;:10;:12::i;:::-;7861:24;;:8;:24;;;;7853:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7970:8;7925:18;:32;7944:12;:10;:12::i;:::-;7925:32;;;;;;;;;;;;;;;:42;7958:8;7925:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;8019:8;7990:48;;8005:12;:10;:12::i;:::-;7990:48;;;8029:8;7990:48;;;;;;:::i;:::-;;;;;;;;7770:274;;:::o;1227:185:12:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1318:1:12::1;1305:9;;;;;;;;;;;:14;;;;1297:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1394:10;1382:9;;:22;;;;;;;;;;;;;;;;;;1227:185:::0;:::o;8777:311:11:-;8914:28;8924:4;8930:2;8934:7;8914:9;:28::i;:::-;8965:48;8988:4;8994:2;8998:7;9007:5;8965:22;:48::i;:::-;8949:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;8777:311;;;;:::o;904:86:12:-;;;:::o;3170:420::-;3244:13;3278:16;3286:7;3278;:16::i;:::-;3270:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;3357:18;3378:10;:8;:10::i;:::-;3357:31;;3427:1;3412:4;3406:18;:22;:176;;;;;;;;;;;;;;;;;;;;;;3455:4;3461:25;3478:7;3461:16;:25::i;:::-;3438:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3406:176;3399:183;;;3170:420;;;:::o;2420:464::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2534:15:12::1;2507:42;;2521:9;2507:11;;;;;;;;;;;:23;;;;:::i;:::-;:42;;;;2499:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;2631:1;2615:12;2603:9;:24;;;;;;:::i;:::-;:29;2595:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;2692:17;2724:12;2712:9;:24;;;;;;:::i;:::-;2692:44;;2752:9;2747:95;2771:9;2767:1;:13;2747:95;;;2802:28;2812:3;2817:12;2802:9;:28::i;:::-;2782:3;;;;;:::i;:::-;;;;2747:95;;;;2867:9;2852:11;;:24;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;2488:396;2420:464:::0;;:::o;587:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13192:43:11:-;;;;:::o;377:46:12:-;;;:::o;8107:186:11:-;8229:4;8252:18;:25;8271:5;8252:25;;;;;;;;;;;;;;;:35;8278:8;8252:35;;;;;;;;;;;;;;;;;;;;;;;;;8245:42;;8107:186;;;;:::o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9327:105:11:-;9384:4;9414:12;;9404:7;:22;9397:29;;9327:105;;;:::o;640:96:7:-;693:7;719:10;712:17;;640:96;:::o;13014:172:11:-;13138:2;13111:15;:24;13127:7;13111:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;13172:7;13168:2;13152:28;;13161:5;13152:28;;;;;;;;;;;;13014:172;;;:::o;11379:1529::-;11476:35;11514:20;11526:7;11514:11;:20::i;:::-;11476:58;;11543:22;11585:13;:18;;;11569:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;11638:12;:10;:12::i;:::-;11614:36;;:20;11626:7;11614:11;:20::i;:::-;:36;;;11569:81;:142;;;;11661:50;11678:13;:18;;;11698:12;:10;:12::i;:::-;11661:16;:50::i;:::-;11569:142;11543:169;;11737:17;11721:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;11869:4;11847:26;;:13;:18;;;:26;;;11831:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;11958:1;11944:16;;:2;:16;;;;11936:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;12011:43;12033:4;12039:2;12043:7;12052:1;12011:21;:43::i;:::-;12111:49;12128:1;12132:7;12141:13;:18;;;12111:8;:49::i;:::-;12199:1;12169:12;:18;12182:4;12169:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12235:1;12207:12;:16;12220:2;12207:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;12266:43;;;;;;;;12281:2;12266:43;;;;;;12292:15;12266:43;;;;;12243:11;:20;12255:7;12243:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12537:19;12569:1;12559:7;:11;;;;:::i;:::-;12537:33;;12622:1;12581:43;;:11;:24;12593:11;12581:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;12577:236;;;12639:20;12647:11;12639:7;:20::i;:::-;12635:171;;;12699:97;;;;;;;;12726:13;:18;;;12699:97;;;;;;12757:13;:28;;;12699:97;;;;;12672:11;:24;12684:11;12672:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12635:171;12577:236;12845:7;12841:2;12826:27;;12835:4;12826:27;;;;;;;;;;;;12860:42;12881:4;12887:2;12891:7;12900:1;12860:20;:42::i;:::-;11469:1439;;;11379:1529;;;:::o;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;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;14729:690:11:-;14866:4;14883:15;:2;:13;;;:15::i;:::-;14879:535;;;14938:2;14922:36;;;14959:12;:10;:12::i;:::-;14973:4;14979:7;14988:5;14922:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14909:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15170:1;15153:6;:13;:18;15149:215;;;15186:61;;;;;;;;;;:::i;:::-;;;;;;;;15149:215;15332:6;15326:13;15317:6;15313:2;15309:15;15302:38;14909:464;15054:45;;;15044:55;;;:6;:55;;;;15037:62;;;;;14879:535;15402:4;15395:11;;14729:690;;;;;;;:::o;2919:113:12:-;2979:13;3012:12;3005:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2919:113;:::o;328:703:8:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;15881:141:11:-;;;;;:::o;16408:140::-;;;;;:::o;9875:1272::-;9980:20;10003:12;;9980:35;;10044:1;10030:16;;:2;:16;;;;10022:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;10221:21;10229:12;10221:7;:21::i;:::-;10220:22;10212:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10303:12;10291:8;:24;;10283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10363:61;10393:1;10397:2;10401:12;10415:8;10363:21;:61::i;:::-;10433:30;10466:12;:16;10479:2;10466:16;;;;;;;;;;;;;;;10433:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10508:119;;;;;;;;10558:8;10528:11;:19;;;:39;;;;:::i;:::-;10508:119;;;;;;10611:8;10576:11;:24;;;:44;;;;:::i;:::-;10508:119;;;;;10489:12;:16;10502:2;10489:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10662:43;;;;;;;;10677:2;10662:43;;;;;;10688:15;10662:43;;;;;10634:11;:25;10646:12;10634:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10714:20;10737:12;10714:35;;10763:9;10758:281;10782:8;10778:1;:12;10758:281;;;10836:12;10832:2;10811:38;;10828:1;10811:38;;;;;;;;;;;;10876:59;10907:1;10911:2;10915:12;10929:5;10876:22;:59::i;:::-;10858:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;11017:14;;;;;:::i;:::-;;;;10792:3;;;;;:::i;:::-;;;;10758:281;;;;11062:12;11047;:27;;;;11081:60;11110:1;11114:2;11118:12;11132:8;11081:20;:60::i;:::-;9973:1174;;;9875:1272;;;:::o;1175:320:6:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927: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:::-;14402:3;14423:67;14487:2;14482:3;14423:67;:::i;:::-;14416:74;;14499:93;14588:3;14499:93;:::i;:::-;14617:2;14612:3;14608:12;14601:19;;14260:366;;;:::o;14632:::-;14774:3;14795:67;14859:2;14854:3;14795:67;:::i;:::-;14788:74;;14871:93;14960:3;14871:93;:::i;:::-;14989:2;14984:3;14980:12;14973:19;;14632:366;;;:::o;15004:::-;15146:3;15167:67;15231:2;15226:3;15167:67;:::i;:::-;15160:74;;15243:93;15332:3;15243:93;:::i;:::-;15361:2;15356:3;15352:12;15345:19;;15004:366;;;:::o;15376:400::-;15536:3;15557:84;15639:1;15634:3;15557:84;:::i;:::-;15550:91;;15650:93;15739:3;15650:93;:::i;:::-;15768:1;15763:3;15759:11;15752:18;;15376:400;;;:::o;15782:366::-;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:::-;19644:3;19665:67;19729:2;19724:3;19665:67;:::i;:::-;19658:74;;19741:93;19830:3;19741:93;:::i;:::-;19859:2;19854:3;19850:12;19843:19;;19502:366;;;:::o;19874:::-;20016:3;20037:67;20101:2;20096:3;20037:67;:::i;:::-;20030:74;;20113:93;20202:3;20113:93;:::i;:::-;20231:2;20226:3;20222:12;20215:19;;19874:366;;;:::o;20246:::-;20388:3;20409:67;20473:2;20468:3;20409:67;:::i;:::-;20402:74;;20485:93;20574:3;20485:93;:::i;:::-;20603:2;20598:3;20594:12;20587:19;;20246:366;;;:::o;20618:115::-;20703:23;20720:5;20703:23;:::i;:::-;20698:3;20691:36;20618:115;;:::o;20739:118::-;20826:24;20844:5;20826:24;:::i;:::-;20821:3;20814:37;20739:118;;:::o;20863:112::-;20946:22;20962:5;20946:22;:::i;:::-;20941:3;20934:35;20863:112;;:::o;20981:701::-;21262:3;21284:95;21375:3;21366:6;21284:95;:::i;:::-;21277:102;;21396:95;21487:3;21478:6;21396:95;:::i;:::-;21389:102;;21508:148;21652:3;21508:148;:::i;:::-;21501:155;;21673:3;21666:10;;20981:701;;;;;:::o;21688:222::-;21781:4;21819:2;21808:9;21804:18;21796:26;;21832:71;21900:1;21889:9;21885:17;21876:6;21832:71;:::i;:::-;21688:222;;;;:::o;21916:640::-;22111:4;22149:3;22138:9;22134:19;22126:27;;22163:71;22231:1;22220:9;22216:17;22207:6;22163:71;:::i;:::-;22244:72;22312:2;22301:9;22297:18;22288:6;22244:72;:::i;:::-;22326;22394:2;22383:9;22379:18;22370:6;22326:72;:::i;:::-;22445:9;22439:4;22435:20;22430:2;22419:9;22415:18;22408:48;22473:76;22544:4;22535:6;22473:76;:::i;:::-;22465:84;;21916:640;;;;;;;:::o;22562:210::-;22649:4;22687:2;22676:9;22672:18;22664:26;;22700:65;22762:1;22751:9;22747:17;22738:6;22700:65;:::i;:::-;22562:210;;;;:::o;22778:313::-;22891:4;22929:2;22918:9;22914:18;22906:26;;22978:9;22972:4;22968:20;22964:1;22953:9;22949:17;22942:47;23006:78;23079:4;23070:6;23006:78;:::i;:::-;22998:86;;22778:313;;;;:::o;23097:419::-;23263:4;23301:2;23290:9;23286:18;23278:26;;23350:9;23344:4;23340:20;23336:1;23325:9;23321:17;23314:47;23378:131;23504:4;23378:131;:::i;:::-;23370:139;;23097:419;;;:::o;23522:::-;23688:4;23726:2;23715:9;23711:18;23703:26;;23775:9;23769:4;23765:20;23761:1;23750:9;23746:17;23739:47;23803:131;23929:4;23803:131;:::i;:::-;23795:139;;23522:419;;;:::o;23947:::-;24113:4;24151:2;24140:9;24136:18;24128:26;;24200:9;24194:4;24190:20;24186:1;24175:9;24171:17;24164:47;24228:131;24354:4;24228:131;:::i;:::-;24220:139;;23947:419;;;:::o;24372:::-;24538:4;24576:2;24565:9;24561:18;24553:26;;24625:9;24619:4;24615:20;24611:1;24600:9;24596:17;24589:47;24653:131;24779:4;24653:131;:::i;:::-;24645:139;;24372:419;;;:::o;24797:::-;24963:4;25001:2;24990:9;24986:18;24978:26;;25050:9;25044:4;25040:20;25036:1;25025:9;25021:17;25014:47;25078:131;25204:4;25078:131;:::i;:::-;25070:139;;24797:419;;;:::o;25222:::-;25388:4;25426:2;25415:9;25411:18;25403:26;;25475:9;25469:4;25465:20;25461:1;25450:9;25446:17;25439:47;25503:131;25629:4;25503:131;:::i;:::-;25495:139;;25222:419;;;:::o;25647:::-;25813:4;25851:2;25840:9;25836:18;25828:26;;25900:9;25894:4;25890:20;25886:1;25875:9;25871:17;25864:47;25928:131;26054:4;25928:131;:::i;:::-;25920:139;;25647:419;;;:::o;26072:::-;26238:4;26276:2;26265:9;26261:18;26253:26;;26325:9;26319:4;26315:20;26311:1;26300:9;26296:17;26289:47;26353:131;26479:4;26353:131;:::i;:::-;26345:139;;26072:419;;;:::o;26497:::-;26663:4;26701:2;26690:9;26686:18;26678:26;;26750:9;26744:4;26740:20;26736:1;26725:9;26721:17;26714:47;26778:131;26904:4;26778:131;:::i;:::-;26770:139;;26497:419;;;:::o;26922:::-;27088:4;27126:2;27115:9;27111:18;27103:26;;27175:9;27169:4;27165:20;27161:1;27150:9;27146:17;27139:47;27203:131;27329:4;27203:131;:::i;:::-;27195:139;;26922:419;;;:::o;27347:::-;27513:4;27551:2;27540:9;27536:18;27528:26;;27600:9;27594:4;27590:20;27586:1;27575:9;27571:17;27564:47;27628:131;27754:4;27628:131;:::i;:::-;27620:139;;27347:419;;;:::o;27772:::-;27938:4;27976:2;27965:9;27961:18;27953:26;;28025:9;28019:4;28015:20;28011:1;28000:9;27996:17;27989:47;28053:131;28179:4;28053:131;:::i;:::-;28045:139;;27772:419;;;:::o;28197:::-;28363:4;28401:2;28390:9;28386:18;28378:26;;28450:9;28444:4;28440:20;28436:1;28425:9;28421:17;28414:47;28478:131;28604:4;28478:131;:::i;:::-;28470:139;;28197:419;;;:::o;28622:::-;28788:4;28826:2;28815:9;28811:18;28803:26;;28875:9;28869:4;28865:20;28861:1;28850:9;28846:17;28839:47;28903:131;29029:4;28903:131;:::i;:::-;28895:139;;28622:419;;;:::o;29047:::-;29213:4;29251:2;29240:9;29236:18;29228:26;;29300:9;29294:4;29290:20;29286:1;29275:9;29271:17;29264:47;29328:131;29454:4;29328:131;:::i;:::-;29320:139;;29047:419;;;:::o;29472:::-;29638:4;29676:2;29665:9;29661:18;29653:26;;29725:9;29719:4;29715:20;29711:1;29700:9;29696:17;29689:47;29753:131;29879:4;29753:131;:::i;:::-;29745:139;;29472:419;;;:::o;29897:::-;30063:4;30101:2;30090:9;30086:18;30078:26;;30150:9;30144:4;30140:20;30136:1;30125:9;30121:17;30114:47;30178:131;30304:4;30178:131;:::i;:::-;30170:139;;29897:419;;;:::o;30322:::-;30488:4;30526:2;30515:9;30511:18;30503:26;;30575:9;30569:4;30565:20;30561:1;30550:9;30546:17;30539:47;30603:131;30729:4;30603:131;:::i;:::-;30595:139;;30322:419;;;:::o;30747:::-;30913:4;30951:2;30940:9;30936:18;30928:26;;31000:9;30994:4;30990:20;30986:1;30975:9;30971:17;30964:47;31028:131;31154:4;31028:131;:::i;:::-;31020:139;;30747:419;;;:::o;31172:::-;31338:4;31376:2;31365:9;31361:18;31353:26;;31425:9;31419:4;31415:20;31411:1;31400:9;31396:17;31389:47;31453:131;31579:4;31453:131;:::i;:::-;31445:139;;31172:419;;;:::o;31597:::-;31763:4;31801:2;31790:9;31786:18;31778:26;;31850:9;31844:4;31840:20;31836:1;31825:9;31821:17;31814:47;31878:131;32004:4;31878:131;:::i;:::-;31870:139;;31597:419;;;:::o;32022:::-;32188:4;32226:2;32215:9;32211:18;32203:26;;32275:9;32269:4;32265:20;32261:1;32250:9;32246:17;32239:47;32303:131;32429:4;32303:131;:::i;:::-;32295:139;;32022:419;;;:::o;32447:::-;32613:4;32651:2;32640:9;32636:18;32628:26;;32700:9;32694:4;32690:20;32686:1;32675:9;32671:17;32664:47;32728:131;32854:4;32728:131;:::i;:::-;32720:139;;32447:419;;;:::o;32872:::-;33038:4;33076:2;33065:9;33061:18;33053:26;;33125:9;33119:4;33115:20;33111:1;33100:9;33096:17;33089:47;33153:131;33279:4;33153:131;:::i;:::-;33145:139;;32872:419;;;:::o;33297:::-;33463:4;33501:2;33490:9;33486:18;33478:26;;33550:9;33544:4;33540:20;33536:1;33525:9;33521:17;33514:47;33578:131;33704:4;33578:131;:::i;:::-;33570:139;;33297:419;;;:::o;33722:::-;33888:4;33926:2;33915:9;33911:18;33903:26;;33975:9;33969:4;33965:20;33961:1;33950:9;33946:17;33939:47;34003:131;34129:4;34003:131;:::i;:::-;33995:139;;33722:419;;;:::o;34147:::-;34313:4;34351:2;34340:9;34336:18;34328:26;;34400:9;34394:4;34390:20;34386:1;34375:9;34371:17;34364:47;34428:131;34554:4;34428:131;:::i;:::-;34420:139;;34147:419;;;:::o;34572:::-;34738:4;34776:2;34765:9;34761:18;34753:26;;34825:9;34819:4;34815:20;34811:1;34800:9;34796:17;34789:47;34853:131;34979:4;34853:131;:::i;:::-;34845:139;;34572:419;;;:::o;34997:::-;35163:4;35201:2;35190:9;35186:18;35178:26;;35250:9;35244:4;35240:20;35236:1;35225:9;35221:17;35214:47;35278:131;35404:4;35278:131;:::i;:::-;35270:139;;34997:419;;;:::o;35422:218::-;35513:4;35551:2;35540:9;35536:18;35528:26;;35564:69;35630:1;35619:9;35615:17;35606:6;35564:69;:::i;:::-;35422:218;;;;:::o;35646:222::-;35739:4;35777:2;35766:9;35762:18;35754:26;;35790:71;35858:1;35847:9;35843:17;35834:6;35790:71;:::i;:::-;35646:222;;;;:::o;35874:214::-;35963:4;36001:2;35990:9;35986:18;35978:26;;36014:67;36078:1;36067:9;36063:17;36054:6;36014:67;:::i;:::-;35874:214;;;;:::o;36094:129::-;36128:6;36155:20;;:::i;:::-;36145:30;;36184:33;36212:4;36204:6;36184:33;:::i;:::-;36094:129;;;:::o;36229:75::-;36262:6;36295:2;36289:9;36279:19;;36229:75;:::o;36310:307::-;36371:4;36461:18;36453:6;36450:30;36447:56;;;36483:18;;:::i;:::-;36447:56;36521:29;36543:6;36521:29;:::i;:::-;36513:37;;36605:4;36599;36595:15;36587:23;;36310:307;;;:::o;36623:98::-;36674:6;36708:5;36702:12;36692:22;;36623:98;;;:::o;36727:99::-;36779:6;36813:5;36807:12;36797:22;;36727:99;;;:::o;36832:168::-;36915:11;36949:6;36944:3;36937:19;36989:4;36984:3;36980:14;36965:29;;36832:168;;;;:::o;37006:169::-;37090:11;37124:6;37119:3;37112:19;37164:4;37159:3;37155:14;37140:29;;37006:169;;;;:::o;37181:148::-;37283:11;37320:3;37305:18;;37181:148;;;;:::o;37335:273::-;37375:3;37394:20;37412:1;37394:20;:::i;:::-;37389:25;;37428:20;37446:1;37428:20;:::i;:::-;37423:25;;37550:1;37514:34;37510:42;37507:1;37504:49;37501:75;;;37556:18;;:::i;:::-;37501:75;37600:1;37597;37593:9;37586:16;;37335:273;;;;:::o;37614:242::-;37653:3;37672:19;37689:1;37672:19;:::i;:::-;37667:24;;37705:19;37722:1;37705:19;:::i;:::-;37700:24;;37798:1;37790:6;37786:14;37783:1;37780:21;37777:47;;;37804:18;;:::i;:::-;37777:47;37848:1;37845;37841:9;37834:16;;37614:242;;;;:::o;37862:305::-;37902:3;37921:20;37939:1;37921:20;:::i;:::-;37916:25;;37955:20;37973:1;37955:20;:::i;:::-;37950:25;;38109:1;38041:66;38037:74;38034:1;38031:81;38028:107;;;38115:18;;:::i;:::-;38028:107;38159:1;38156;38152:9;38145:16;;37862:305;;;;:::o;38173:185::-;38213:1;38230:20;38248:1;38230:20;:::i;:::-;38225:25;;38264:20;38282:1;38264:20;:::i;:::-;38259:25;;38303:1;38293:35;;38308:18;;:::i;:::-;38293:35;38350:1;38347;38343:9;38338:14;;38173:185;;;;:::o;38364:348::-;38404:7;38427:20;38445:1;38427:20;:::i;:::-;38422:25;;38461:20;38479:1;38461:20;:::i;:::-;38456:25;;38649:1;38581:66;38577:74;38574:1;38571:81;38566:1;38559:9;38552:17;38548:105;38545:131;;;38656:18;;:::i;:::-;38545:131;38704:1;38701;38697:9;38686:20;;38364:348;;;;:::o;38718:191::-;38758:4;38778:20;38796:1;38778:20;:::i;:::-;38773:25;;38812:20;38830:1;38812:20;:::i;:::-;38807:25;;38851:1;38848;38845:8;38842:34;;;38856:18;;:::i;:::-;38842:34;38901:1;38898;38894:9;38886:17;;38718:191;;;;:::o;38915:188::-;38954:4;38974:19;38991:1;38974:19;:::i;:::-;38969:24;;39007:19;39024:1;39007:19;:::i;:::-;39002:24;;39045:1;39042;39039:8;39036:34;;;39050:18;;:::i;:::-;39036:34;39095:1;39092;39088:9;39080:17;;38915:188;;;;:::o;39109:191::-;39149:4;39169:20;39187:1;39169:20;:::i;:::-;39164:25;;39203:20;39221:1;39203:20;:::i;:::-;39198:25;;39242:1;39239;39236:8;39233:34;;;39247:18;;:::i;:::-;39233:34;39292:1;39289;39285:9;39277:17;;39109:191;;;;:::o;39306:96::-;39343:7;39372:24;39390:5;39372:24;:::i;:::-;39361:35;;39306:96;;;:::o;39408:90::-;39442:7;39485:5;39478:13;39471:21;39460:32;;39408:90;;;:::o;39504:149::-;39540:7;39580:66;39573:5;39569:78;39558:89;;39504:149;;;:::o;39659:118::-;39696:7;39736:34;39729:5;39725:46;39714:57;;39659:118;;;:::o;39783:89::-;39819:7;39859:6;39852:5;39848:18;39837:29;;39783:89;;;:::o;39878:126::-;39915:7;39955:42;39948:5;39944:54;39933:65;;39878:126;;;:::o;40010:77::-;40047:7;40076:5;40065:16;;40010:77;;;:::o;40093:86::-;40128:7;40168:4;40161:5;40157:16;40146:27;;40093:86;;;:::o;40185:154::-;40269:6;40264:3;40259;40246:30;40331:1;40322:6;40317:3;40313:16;40306:27;40185:154;;;:::o;40345:307::-;40413:1;40423:113;40437:6;40434:1;40431:13;40423:113;;;40522:1;40517:3;40513:11;40507:18;40503:1;40498:3;40494:11;40487:39;40459:2;40456:1;40452:10;40447:15;;40423:113;;;40554:6;40551:1;40548:13;40545:101;;;40634:1;40625:6;40620:3;40616:16;40609:27;40545:101;40394:258;40345:307;;;:::o;40658:171::-;40697:3;40720:24;40738:5;40720:24;:::i;:::-;40711:33;;40766:4;40759:5;40756:15;40753:41;;;40774:18;;:::i;:::-;40753:41;40821:1;40814:5;40810:13;40803:20;;40658:171;;;:::o;40835:320::-;40879:6;40916:1;40910:4;40906:12;40896:22;;40963:1;40957:4;40953:12;40984:18;40974:81;;41040:4;41032:6;41028:17;41018:27;;40974:81;41102:2;41094:6;41091:14;41071:18;41068:38;41065:84;;;41121:18;;:::i;:::-;41065:84;40886:269;40835:320;;;:::o;41161:281::-;41244:27;41266:4;41244:27;:::i;:::-;41236:6;41232:40;41374:6;41362:10;41359:22;41338:18;41326:10;41323:34;41320:62;41317:88;;;41385:18;;:::i;:::-;41317:88;41425:10;41421:2;41414:22;41204:238;41161:281;;:::o;41448:233::-;41487:3;41510:24;41528:5;41510:24;:::i;:::-;41501:33;;41556:66;41549:5;41546:77;41543:103;;;41626:18;;:::i;:::-;41543:103;41673:1;41666:5;41662:13;41655:20;;41448:233;;;:::o;41687:176::-;41719:1;41736:20;41754:1;41736:20;:::i;:::-;41731:25;;41770:20;41788:1;41770:20;:::i;:::-;41765:25;;41809:1;41799:35;;41814:18;;:::i;:::-;41799:35;41855:1;41852;41848:9;41843:14;;41687:176;;;;:::o;41869:180::-;41917:77;41914:1;41907:88;42014:4;42011:1;42004:15;42038:4;42035:1;42028:15;42055:180;42103:77;42100:1;42093:88;42200:4;42197:1;42190:15;42224:4;42221:1;42214:15;42241:180;42289:77;42286:1;42279:88;42386:4;42383:1;42376:15;42410:4;42407:1;42400:15;42427:180;42475:77;42472:1;42465:88;42572:4;42569:1;42562:15;42596:4;42593:1;42586:15;42613:180;42661:77;42658:1;42651:88;42758:4;42755:1;42748:15;42782:4;42779:1;42772:15;42799:117;42908:1;42905;42898:12;42922:117;43031:1;43028;43021:12;43045:117;43154:1;43151;43144:12;43168:117;43277:1;43274;43267:12;43291:117;43400:1;43397;43390:12;43414:117;43523:1;43520;43513:12;43537:102;43578:6;43629:2;43625:7;43620:2;43613:5;43609:14;43605:28;43595:38;;43537:102;;;:::o;43645:221::-;43785:34;43781:1;43773:6;43769:14;43762:58;43854:4;43849:2;43841:6;43837:15;43830:29;43645:221;:::o;43872:179::-;44012:31;44008:1;44000:6;43996:14;43989:55;43872:179;:::o;44057:168::-;44197:20;44193:1;44185:6;44181:14;44174:44;44057:168;:::o;44231:225::-;44371:34;44367:1;44359:6;44355:14;44348:58;44440:8;44435:2;44427:6;44423:15;44416:33;44231:225;:::o;44462:229::-;44602:34;44598:1;44590:6;44586:14;44579:58;44671:12;44666:2;44658:6;44654:15;44647:37;44462:229;:::o;44697:231::-;44837:34;44833:1;44825:6;44821:14;44814:58;44906:14;44901:2;44893:6;44889:15;44882:39;44697:231;:::o;44934:235::-;45074:34;45070:1;45062:6;45058:14;45051:58;45143:18;45138:2;45130:6;45126:15;45119:43;44934:235;:::o;45175:176::-;45315:28;45311:1;45303:6;45299:14;45292:52;45175:176;:::o;45357:222::-;45497:34;45493:1;45485:6;45481:14;45474:58;45566:5;45561:2;45553:6;45549:15;45542:30;45357:222;:::o;45585:224::-;45725:34;45721:1;45713:6;45709:14;45702:58;45794:7;45789:2;45781:6;45777:15;45770:32;45585:224;:::o;45815:180::-;45955:32;45951:1;45943:6;45939:14;45932:56;45815:180;:::o;46001:234::-;46141:34;46137:1;46129:6;46125:14;46118:58;46210:17;46205:2;46197:6;46193:15;46186:42;46001:234;:::o;46241:244::-;46381:34;46377:1;46369:6;46365:14;46358:58;46450:27;46445:2;46437:6;46433:15;46426:52;46241:244;:::o;46491:230::-;46631:34;46627:1;46619:6;46615:14;46608:58;46700:13;46695:2;46687:6;46683:15;46676:38;46491:230;:::o;46727:234::-;46867:34;46863:1;46855:6;46851:14;46844:58;46936:17;46931:2;46923:6;46919:15;46912:42;46727:234;:::o;46967:225::-;47107:34;47103:1;47095:6;47091:14;47084:58;47176:8;47171:2;47163:6;47159:15;47152:33;46967:225;:::o;47198:155::-;47338:7;47334:1;47326:6;47322:14;47315:31;47198:155;:::o;47359:182::-;47499:34;47495:1;47487:6;47483:14;47476:58;47359:182;:::o;47547:176::-;47687:28;47683:1;47675:6;47671:14;47664:52;47547:176;:::o;47729:237::-;47869:34;47865:1;47857:6;47853:14;47846:58;47938:20;47933:2;47925:6;47921:15;47914:45;47729:237;:::o;47972:182::-;48112:34;48108:1;48100:6;48096:14;48089:58;47972:182;:::o;48160:221::-;48300:34;48296:1;48288:6;48284:14;48277:58;48369:4;48364:2;48356:6;48352:15;48345:29;48160:221;:::o;48387:238::-;48527:34;48523:1;48515:6;48511:14;48504:58;48596:21;48591:2;48583:6;48579:15;48572:46;48387:238;:::o;48631:179::-;48771:31;48767:1;48759:6;48755:14;48748:55;48631:179;:::o;48816:220::-;48956:34;48952:1;48944:6;48940:14;48933:58;49025:3;49020:2;49012:6;49008:15;49001:28;48816:220;:::o;49042:233::-;49182:34;49178:1;49170:6;49166:14;49159:58;49251:16;49246:2;49238:6;49234:15;49227:41;49042:233;:::o;49281:181::-;49421:33;49417:1;49409:6;49405:14;49398:57;49281:181;:::o;49468:234::-;49608:34;49604:1;49596:6;49592:14;49585:58;49677:17;49672:2;49664:6;49660:15;49653:42;49468:234;:::o;49708:232::-;49848:34;49844:1;49836:6;49832:14;49825:58;49917:15;49912:2;49904:6;49900:15;49893:40;49708:232;:::o;49946:221::-;50086:34;50082:1;50074:6;50070:14;50063:58;50155:4;50150:2;50142:6;50138:15;50131:29;49946:221;:::o;50173:122::-;50246:24;50264:5;50246:24;:::i;:::-;50239:5;50236:35;50226:63;;50285:1;50282;50275:12;50226:63;50173:122;:::o;50301:116::-;50371:21;50386:5;50371:21;:::i;:::-;50364:5;50361:32;50351:60;;50407:1;50404;50397:12;50351:60;50301:116;:::o;50423:120::-;50495:23;50512:5;50495:23;:::i;:::-;50488:5;50485:34;50475:62;;50533:1;50530;50523:12;50475:62;50423:120;:::o;50549:::-;50621:23;50638:5;50621:23;:::i;:::-;50614:5;50611:34;50601:62;;50659:1;50656;50649:12;50601:62;50549:120;:::o;50675:122::-;50748:24;50766:5;50748:24;:::i;:::-;50741:5;50738:35;50728:63;;50787:1;50784;50777:12;50728:63;50675:122;:::o;50803:118::-;50874:22;50890:5;50874:22;:::i;:::-;50867:5;50864:33;50854:61;;50911:1;50908;50901:12;50854:61;50803:118;:::o

Swarm Source

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