ETH Price: $2,983.02 (+4.25%)
Gas: 2 Gwei

Token

Fud Frens (FF)
 

Overview

Max Total Supply

3,333 FF

Holders

998

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 FF
0xf2a9ba14fa71618d7779fb6ed136152fa6463541
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:
FudFrens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 12: FudFrens.sol
/*

  _____    _   _   ____         _____    ____    U _____ u _   _    ____     
 |" ___|U |"|u| | |  _"\       |" ___|U |  _"\ u \| ___"|/| \ |"|  / __"| u  
U| |_  u \| |\| |/| | | |     U| |_  u \| |_) |/  |  _|" <|  \| |><\___ \/   
\|  _|/   | |_| |U| |_| |\    \|  _|/   |  _ <    | |___ U| |\  |u u___) |   
 |_|     <<\___/  |____/ u     |_|      |_| \_\   |_____| |_| \_|  |____/>>  
 )(\\,- (__) )(    |||_        )(\\,-   //   \\_  <<   >> ||   \\,-.)(  (__) 
(__)(_/     (__)  (__)_)      (__)(_/  (__)  (__)(__) (__)(_")  (_/(__)     

*/
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ERC721A.sol";

contract FudFrens is Ownable, ERC721A {

  uint256 public immutable maxPerAddress;
  
  uint256 public maxFree = 3;

  uint256 public maxPerTransaction = 20; 

  uint256 public mintPrice = 0.01 ether;

  bool public mintActive = false;
  
  bool public claimingActive = false;

  string private _baseTokenURI;

  uint256 public maxFreeSupply = 3000;

  uint256 public maxGenesis = 3333;

  uint256 public startTime;

  mapping(address => uint256) public outstandingFud;

  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("Fud Frens", "FF", maxBatchSize_, collectionSize_) {
    maxPerAddress = maxBatchSize_;
    startTime = block.timestamp;
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  function freeMint(uint256 quantity) external callerIsUser {
    require(mintActive, "mint is not active");
    require(totalSupply() + quantity <= maxFreeSupply, "max supply has been reached");
    require(quantity + numberMinted(msg.sender) <= maxFree, "max 3 free per wallet");
    _safeMint(msg.sender, quantity);
  }

  function mint(uint256 quantity) external payable callerIsUser {
    require(mintActive, "mint is not active");
    require(totalSupply() + quantity <= maxGenesis, "max supply has been reached");
    require( quantity <= maxPerTransaction, "max 20 per address");
    require(msg.value >= mintPrice * quantity, "not enough eth sent");
    _safeMint(msg.sender, quantity);
  }

  function devMint(uint256 quantity) external onlyOwner {
    require(quantity % maxBatchSize == 0,"can only mint a multiple of the maxBatchSize");
    require(totalSupply() + quantity <= maxGenesis, "max supply has been reached");
    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }
  }

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

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

  function withdrawMoney() external onlyOwner {
    require(address(this).balance > 0);
    payable(msg.sender).transfer(address(this).balance);
  }

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

  function setPrice(uint256 _price) external onlyOwner {
    mintPrice = _price;
  }

  function toggleMintActive() external onlyOwner {
    mintActive = !mintActive;
  }

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

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }
}

File 1 of 12: 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 2 of 12: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 3 of 12: 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 4 of 12: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./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 virtual override {
    _transfer(from, to, tokenId);
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId
  ) external override {
    safeTransferFrom(from, to, tokenId, "");
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public virtual 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 6 of 12: 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);
}

File 7 of 12: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

File 8 of 12: 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 9 of 12: 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 10 of 12: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 11 of 12: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./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 12 of 12: 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"claimingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"outstandingFud","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"toggleMintActive","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526000600155600060085560036009556014600a55662386f26fc10000600b556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff021916908315150217905550610bb8600e55610d05600f553480156200007257600080fd5b5060405162005682380380620056828339818101604052810190620000989190620003a2565b6040518060400160405280600981526020017f467564204672656e7300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f46460000000000000000000000000000000000000000000000000000000000008152508383620001266200011a6200020f60201b60201c565b6200021760201b60201c565b600081116200016c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001639062000459565b60405180910390fd5b60008211620001b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001a99062000437565b60405180910390fd5b8360029080519060200190620001ca929190620002db565b508260039080519060200190620001e3929190620002db565b508160a081815250508060808181525050505050508160c08181525050426010819055505050620005b8565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002e99062000496565b90600052602060002090601f0160209004810192826200030d576000855562000359565b82601f106200032857805160ff191683800117855562000359565b8280016001018555821562000359579182015b82811115620003585782518255916020019190600101906200033b565b5b5090506200036891906200036c565b5090565b5b80821115620003875760008160009055506001016200036d565b5090565b6000815190506200039c816200059e565b92915050565b60008060408385031215620003bc57620003bb620004fb565b5b6000620003cc858286016200038b565b9250506020620003df858286016200038b565b9150509250929050565b6000620003f86027836200047b565b9150620004058262000500565b604082019050919050565b60006200041f602e836200047b565b91506200042c826200054f565b604082019050919050565b600060208201905081810360008301526200045281620003e9565b9050919050565b60006020820190508181036000830152620004748162000410565b9050919050565b600082825260208201905092915050565b6000819050919050565b60006002820490506001821680620004af57607f821691505b60208210811415620004c657620004c5620004cc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b620005a9816200048c565b8114620005b557600080fd5b50565b60805160a05160c05161507062000612600039600061127d01526000818161100a015281816110cf0152818161110c0152818161285c0152818161288501526130100152600081816125c601526125fa01526150706000f3fe60806040526004361061023b5760003560e01c80636ccd5e501161012e578063a22cb465116100ab578063d7224ba01161006f578063d7224ba014610852578063dc33e6811461087d578063dc37c6d8146108ba578063e985e9c5146108f7578063f2fde38b146109345761023b565b8063a22cb46514610795578063ac446002146107be578063b88d4fde146107d5578063c87b56dd146107fe578063d02c2bf21461083b5761023b565b80638da5cb5b116100f25780638da5cb5b146106bd57806391b7f5ed146106e85780639231ab2a1461071157806395d89b411461074e578063a0712d68146107795761023b565b80636ccd5e50146105ea57806370a0823114610615578063715018a61461065257806378e97925146106695780637c928fe9146106945761023b565b806342842e0e116101bc57806355f804b31161018057806355f804b3146105035780635fabe4461461052c5780636352211e14610557578063639814e0146105945780636817c76c146105bf5761023b565b806342842e0e1461041c5780634751333414610445578063485a68a3146104705780634b980d671461049b5780634f6ccce7146104c65761023b565b806323b872dd1161020357806323b872dd1461033957806325fd90f3146103625780632d20fb601461038d5780632f745c59146103b6578063375a069a146103f35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613820565b61095d565b6040516102749190613eb6565b60405180910390f35b34801561028957600080fd5b50610292610aa7565b60405161029f9190613ed1565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906138c7565b610b39565b6040516102dc9190613e4f565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906137e0565b610bbe565b005b34801561031a57600080fd5b50610323610cd7565b60405161033091906142ce565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906136ca565b610ce1565b005b34801561036e57600080fd5b50610377610cf1565b6040516103849190613eb6565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af91906138c7565b610d04565b005b3480156103c257600080fd5b506103dd60048036038101906103d891906137e0565b610d8c565b6040516103ea91906142ce565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906138c7565b610f8a565b005b34801561042857600080fd5b50610443600480360381019061043e91906136ca565b611148565b005b34801561045157600080fd5b5061045a611168565b60405161046791906142ce565b60405180910390f35b34801561047c57600080fd5b5061048561116e565b60405161049291906142ce565b60405180910390f35b3480156104a757600080fd5b506104b0611174565b6040516104bd91906142ce565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906138c7565b61117a565b6040516104fa91906142ce565b60405180910390f35b34801561050f57600080fd5b5061052a6004803603810190610525919061387a565b6111cd565b005b34801561053857600080fd5b5061054161125f565b60405161054e91906142ce565b60405180910390f35b34801561056357600080fd5b5061057e600480360381019061057991906138c7565b611265565b60405161058b9190613e4f565b60405180910390f35b3480156105a057600080fd5b506105a961127b565b6040516105b691906142ce565b60405180910390f35b3480156105cb57600080fd5b506105d461129f565b6040516105e191906142ce565b60405180910390f35b3480156105f657600080fd5b506105ff6112a5565b60405161060c9190613eb6565b60405180910390f35b34801561062157600080fd5b5061063c6004803603810190610637919061365d565b6112b8565b60405161064991906142ce565b60405180910390f35b34801561065e57600080fd5b506106676113a1565b005b34801561067557600080fd5b5061067e611429565b60405161068b91906142ce565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b691906138c7565b61142f565b005b3480156106c957600080fd5b506106d26115a8565b6040516106df9190613e4f565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906138c7565b6115d1565b005b34801561071d57600080fd5b50610738600480360381019061073391906138c7565b611657565b60405161074591906142b3565b60405180910390f35b34801561075a57600080fd5b5061076361166f565b6040516107709190613ed1565b60405180910390f35b610793600480360381019061078e91906138c7565b611701565b005b3480156107a157600080fd5b506107bc60048036038101906107b791906137a0565b6118b7565b005b3480156107ca57600080fd5b506107d3611a38565b005b3480156107e157600080fd5b506107fc60048036038101906107f7919061371d565b611b0a565b005b34801561080a57600080fd5b50610825600480360381019061082091906138c7565b611b66565b6040516108329190613ed1565b60405180910390f35b34801561084757600080fd5b50610850611c0d565b005b34801561085e57600080fd5b50610867611cb5565b60405161087491906142ce565b60405180910390f35b34801561088957600080fd5b506108a4600480360381019061089f919061365d565b611cbb565b6040516108b191906142ce565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc919061365d565b611ccd565b6040516108ee91906142ce565b60405180910390f35b34801561090357600080fd5b5061091e6004803603810190610919919061368a565b611ce5565b60405161092b9190613eb6565b60405180910390f35b34801561094057600080fd5b5061095b6004803603810190610956919061365d565b611d79565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa05750610a9f82611e71565b5b9050919050565b606060028054610ab690614621565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae290614621565b8015610b2f5780601f10610b0457610100808354040283529160200191610b2f565b820191906000526020600020905b815481529060010190602001808311610b1257829003601f168201915b5050505050905090565b6000610b4482611edb565b610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90614273565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc982611265565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190614173565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c59611ee9565b73ffffffffffffffffffffffffffffffffffffffff161480610c885750610c8781610c82611ee9565b611ce5565b5b610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90614013565b60405180910390fd5b610cd2838383611ef1565b505050565b6000600154905090565b610cec838383611fa3565b505050565b600c60009054906101000a900460ff1681565b610d0c611ee9565b73ffffffffffffffffffffffffffffffffffffffff16610d2a6115a8565b73ffffffffffffffffffffffffffffffffffffffff1614610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d77906140d3565b60405180910390fd5b610d898161255c565b50565b6000610d97836112b8565b8210610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90613ef3565b60405180910390fd5b6000610de2610cd7565b905060008060005b83811015610f48576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610edc57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f345786841415610f25578195505050505050610f84565b8380610f3090614684565b9450505b508080610f4090614684565b915050610dea565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b906141f3565b60405180910390fd5b92915050565b610f92611ee9565b73ffffffffffffffffffffffffffffffffffffffff16610fb06115a8565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd906140d3565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008261103491906146cd565b14611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90613f73565b60405180910390fd5b600f5481611080610cd7565b61108a91906143c8565b11156110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290614053565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000826110f9919061441e565b905060005b8181101561114357611130337f00000000000000000000000000000000000000000000000000000000000000006127ea565b808061113b90614684565b9150506110fe565b505050565b61116383838360405180602001604052806000815250611b0a565b505050565b600e5481565b60095481565b600a5481565b6000611184610cd7565b82106111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90613f93565b60405180910390fd5b819050919050565b6111d5611ee9565b73ffffffffffffffffffffffffffffffffffffffff166111f36115a8565b73ffffffffffffffffffffffffffffffffffffffff1614611249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611240906140d3565b60405180910390fd5b8181600d919061125a929190613451565b505050565b600f5481565b600061127082612808565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b600c60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090614093565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113a9611ee9565b73ffffffffffffffffffffffffffffffffffffffff166113c76115a8565b73ffffffffffffffffffffffffffffffffffffffff161461141d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611414906140d3565b60405180910390fd5b6114276000612a0b565b565b60105481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461149d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149490613ff3565b60405180910390fd5b600c60009054906101000a900460ff166114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390614153565b60405180910390fd5b600e54816114f8610cd7565b61150291906143c8565b1115611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90614053565b60405180910390fd5b60095461154f33611cbb565b8261155a91906143c8565b111561159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290613f13565b60405180910390fd5b6115a533826127ea565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115d9611ee9565b73ffffffffffffffffffffffffffffffffffffffff166115f76115a8565b73ffffffffffffffffffffffffffffffffffffffff161461164d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611644906140d3565b60405180910390fd5b80600b8190555050565b61165f6134d7565b61166882612808565b9050919050565b60606003805461167e90614621565b80601f01602080910402602001604051908101604052809291908181526020018280546116aa90614621565b80156116f75780601f106116cc576101008083540402835291602001916116f7565b820191906000526020600020905b8154815290600101906020018083116116da57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690613ff3565b60405180910390fd5b600c60009054906101000a900460ff166117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590614153565b60405180910390fd5b600f54816117ca610cd7565b6117d491906143c8565b1115611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90614053565b60405180910390fd5b600a5481111561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190614073565b60405180910390fd5b80600b54611868919061444f565b3410156118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a190614233565b60405180910390fd5b6118b433826127ea565b50565b6118bf611ee9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490614113565b60405180910390fd5b806007600061193a611ee9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119e7611ee9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a2c9190613eb6565b60405180910390a35050565b611a40611ee9565b73ffffffffffffffffffffffffffffffffffffffff16611a5e6115a8565b73ffffffffffffffffffffffffffffffffffffffff1614611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab906140d3565b60405180910390fd5b60004711611ac157600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611b07573d6000803e3d6000fd5b50565b611b15848484611fa3565b611b2184848484612acf565b611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5790614193565b60405180910390fd5b50505050565b6060611b7182611edb565b611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba7906140f3565b60405180910390fd5b6000611bba612c66565b90506000815111611bda5760405180602001604052806000815250611c05565b80611be484612cf8565b604051602001611bf5929190613e2b565b6040516020818303038152906040525b915050919050565b611c15611ee9565b73ffffffffffffffffffffffffffffffffffffffff16611c336115a8565b73ffffffffffffffffffffffffffffffffffffffff1614611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c80906140d3565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b60085481565b6000611cc682612e59565b9050919050565b60116020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d81611ee9565b73ffffffffffffffffffffffffffffffffffffffff16611d9f6115a8565b73ffffffffffffffffffffffffffffffffffffffff1614611df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dec906140d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c90613f33565b60405180910390fd5b611e6e81612a0b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fae82612808565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fd5611ee9565b73ffffffffffffffffffffffffffffffffffffffff1614806120315750611ffa611ee9565b73ffffffffffffffffffffffffffffffffffffffff1661201984610b39565b73ffffffffffffffffffffffffffffffffffffffff16145b8061204d575061204c8260000151612047611ee9565b611ce5565b5b90508061208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614133565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f8906140b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216890613fb3565b60405180910390fd5b61217e8585856001612f42565b61218e6000848460000151611ef1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121fc91906144a9565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122a09190614382565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123a691906143c8565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124ec5761241c81611edb565b156124eb576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125548686866001612f48565b505050505050565b60006008549050600082116125a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259d90614033565b60405180910390fd5b6000600183836125b691906143c8565b6125c091906144dd565b905060017f00000000000000000000000000000000000000000000000000000000000000006125ef91906144dd565b8111156126265760017f000000000000000000000000000000000000000000000000000000000000000061262391906144dd565b90505b61262f81611edb565b61266e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266590614213565b60405180910390fd5b60008290505b8181116127d157600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127be5760006126f182612808565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806127c990614684565b915050612674565b506001816127df91906143c8565b600881905550505050565b612804828260405180602001604052806000815250612f4e565b5050565b6128106134d7565b61281982611edb565b612858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284f90613f53565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106128bc5760017f0000000000000000000000000000000000000000000000000000000000000000846128af91906144dd565b6128b991906143c8565b90505b60008390505b8181106129ca576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129b657809350505050612a06565b5080806129c2906145f7565b9150506128c2565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fd90614253565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612af08473ffffffffffffffffffffffffffffffffffffffff1661342e565b15612c59578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b19611ee9565b8786866040518563ffffffff1660e01b8152600401612b3b9493929190613e6a565b602060405180830381600087803b158015612b5557600080fd5b505af1925050508015612b8657506040513d601f19601f82011682018060405250810190612b83919061384d565b60015b612c09573d8060008114612bb6576040519150601f19603f3d011682016040523d82523d6000602084013e612bbb565b606091505b50600081511415612c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf890614193565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c5e565b600190505b949350505050565b6060600d8054612c7590614621565b80601f0160208091040260200160405190810160405280929190818152602001828054612ca190614621565b8015612cee5780601f10612cc357610100808354040283529160200191612cee565b820191906000526020600020905b815481529060010190602001808311612cd157829003601f168201915b5050505050905090565b60606000821415612d40576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e54565b600082905060005b60008214612d72578080612d5b90614684565b915050600a82612d6b919061441e565b9150612d48565b60008167ffffffffffffffff811115612d8e57612d8d6147ba565b5b6040519080825280601f01601f191660200182016040528015612dc05781602001600182028036833780820191505090505b5090505b60008514612e4d57600182612dd991906144dd565b9150600a85612de891906146cd565b6030612df491906143c8565b60f81b818381518110612e0a57612e0961478b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e46919061441e565b9450612dc4565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec190613fd3565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbc906141d3565b60405180910390fd5b612fce81611edb565b1561300e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613005906141b3565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306890614293565b60405180910390fd5b61307e6000858386612f42565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161317b9190614382565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131a29190614382565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561341157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133b16000888488612acf565b6133f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e790614193565b60405180910390fd5b81806133fb90614684565b925050808061340990614684565b915050613340565b50806001819055506134266000878588612f48565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461345d90614621565b90600052602060002090601f01602090048101928261347f57600085556134c6565b82601f1061349857803560ff19168380011785556134c6565b828001600101855582156134c6579182015b828111156134c55782358255916020019190600101906134aa565b5b5090506134d39190613511565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561352a576000816000905550600101613512565b5090565b600061354161353c8461430e565b6142e9565b90508281526020810184848401111561355d5761355c6147f8565b5b6135688482856145b5565b509392505050565b60008135905061357f81614fde565b92915050565b60008135905061359481614ff5565b92915050565b6000813590506135a98161500c565b92915050565b6000815190506135be8161500c565b92915050565b600082601f8301126135d9576135d86147ee565b5b81356135e984826020860161352e565b91505092915050565b60008083601f840112613608576136076147ee565b5b8235905067ffffffffffffffff811115613625576136246147e9565b5b602083019150836001820283011115613641576136406147f3565b5b9250929050565b60008135905061365781615023565b92915050565b60006020828403121561367357613672614802565b5b600061368184828501613570565b91505092915050565b600080604083850312156136a1576136a0614802565b5b60006136af85828601613570565b92505060206136c085828601613570565b9150509250929050565b6000806000606084860312156136e3576136e2614802565b5b60006136f186828701613570565b935050602061370286828701613570565b925050604061371386828701613648565b9150509250925092565b6000806000806080858703121561373757613736614802565b5b600061374587828801613570565b945050602061375687828801613570565b935050604061376787828801613648565b925050606085013567ffffffffffffffff811115613788576137876147fd565b5b613794878288016135c4565b91505092959194509250565b600080604083850312156137b7576137b6614802565b5b60006137c585828601613570565b92505060206137d685828601613585565b9150509250929050565b600080604083850312156137f7576137f6614802565b5b600061380585828601613570565b925050602061381685828601613648565b9150509250929050565b60006020828403121561383657613835614802565b5b60006138448482850161359a565b91505092915050565b60006020828403121561386357613862614802565b5b6000613871848285016135af565b91505092915050565b6000806020838503121561389157613890614802565b5b600083013567ffffffffffffffff8111156138af576138ae6147fd565b5b6138bb858286016135f2565b92509250509250929050565b6000602082840312156138dd576138dc614802565b5b60006138eb84828501613648565b91505092915050565b6138fd81614511565b82525050565b61390c81614511565b82525050565b61391b81614523565b82525050565b600061392c8261433f565b6139368185614355565b93506139468185602086016145c4565b61394f81614807565b840191505092915050565b60006139658261434a565b61396f8185614366565b935061397f8185602086016145c4565b61398881614807565b840191505092915050565b600061399e8261434a565b6139a88185614377565b93506139b88185602086016145c4565b80840191505092915050565b60006139d1602283614366565b91506139dc82614818565b604082019050919050565b60006139f4601583614366565b91506139ff82614867565b602082019050919050565b6000613a17602683614366565b9150613a2282614890565b604082019050919050565b6000613a3a602a83614366565b9150613a45826148df565b604082019050919050565b6000613a5d602c83614366565b9150613a688261492e565b604082019050919050565b6000613a80602383614366565b9150613a8b8261497d565b604082019050919050565b6000613aa3602583614366565b9150613aae826149cc565b604082019050919050565b6000613ac6603183614366565b9150613ad182614a1b565b604082019050919050565b6000613ae9601e83614366565b9150613af482614a6a565b602082019050919050565b6000613b0c603983614366565b9150613b1782614a93565b604082019050919050565b6000613b2f601883614366565b9150613b3a82614ae2565b602082019050919050565b6000613b52601b83614366565b9150613b5d82614b0b565b602082019050919050565b6000613b75601283614366565b9150613b8082614b34565b602082019050919050565b6000613b98602b83614366565b9150613ba382614b5d565b604082019050919050565b6000613bbb602683614366565b9150613bc682614bac565b604082019050919050565b6000613bde602083614366565b9150613be982614bfb565b602082019050919050565b6000613c01602f83614366565b9150613c0c82614c24565b604082019050919050565b6000613c24601a83614366565b9150613c2f82614c73565b602082019050919050565b6000613c47603283614366565b9150613c5282614c9c565b604082019050919050565b6000613c6a601283614366565b9150613c7582614ceb565b602082019050919050565b6000613c8d602283614366565b9150613c9882614d14565b604082019050919050565b6000613cb0603383614366565b9150613cbb82614d63565b604082019050919050565b6000613cd3601d83614366565b9150613cde82614db2565b602082019050919050565b6000613cf6602183614366565b9150613d0182614ddb565b604082019050919050565b6000613d19602e83614366565b9150613d2482614e2a565b604082019050919050565b6000613d3c602683614366565b9150613d4782614e79565b604082019050919050565b6000613d5f601383614366565b9150613d6a82614ec8565b602082019050919050565b6000613d82602f83614366565b9150613d8d82614ef1565b604082019050919050565b6000613da5602d83614366565b9150613db082614f40565b604082019050919050565b6000613dc8602283614366565b9150613dd382614f8f565b604082019050919050565b604082016000820151613df460008501826138f4565b506020820151613e076020850182613e1c565b50505050565b613e1681614597565b82525050565b613e25816145a1565b82525050565b6000613e378285613993565b9150613e438284613993565b91508190509392505050565b6000602082019050613e646000830184613903565b92915050565b6000608082019050613e7f6000830187613903565b613e8c6020830186613903565b613e996040830185613e0d565b8181036060830152613eab8184613921565b905095945050505050565b6000602082019050613ecb6000830184613912565b92915050565b60006020820190508181036000830152613eeb818461395a565b905092915050565b60006020820190508181036000830152613f0c816139c4565b9050919050565b60006020820190508181036000830152613f2c816139e7565b9050919050565b60006020820190508181036000830152613f4c81613a0a565b9050919050565b60006020820190508181036000830152613f6c81613a2d565b9050919050565b60006020820190508181036000830152613f8c81613a50565b9050919050565b60006020820190508181036000830152613fac81613a73565b9050919050565b60006020820190508181036000830152613fcc81613a96565b9050919050565b60006020820190508181036000830152613fec81613ab9565b9050919050565b6000602082019050818103600083015261400c81613adc565b9050919050565b6000602082019050818103600083015261402c81613aff565b9050919050565b6000602082019050818103600083015261404c81613b22565b9050919050565b6000602082019050818103600083015261406c81613b45565b9050919050565b6000602082019050818103600083015261408c81613b68565b9050919050565b600060208201905081810360008301526140ac81613b8b565b9050919050565b600060208201905081810360008301526140cc81613bae565b9050919050565b600060208201905081810360008301526140ec81613bd1565b9050919050565b6000602082019050818103600083015261410c81613bf4565b9050919050565b6000602082019050818103600083015261412c81613c17565b9050919050565b6000602082019050818103600083015261414c81613c3a565b9050919050565b6000602082019050818103600083015261416c81613c5d565b9050919050565b6000602082019050818103600083015261418c81613c80565b9050919050565b600060208201905081810360008301526141ac81613ca3565b9050919050565b600060208201905081810360008301526141cc81613cc6565b9050919050565b600060208201905081810360008301526141ec81613ce9565b9050919050565b6000602082019050818103600083015261420c81613d0c565b9050919050565b6000602082019050818103600083015261422c81613d2f565b9050919050565b6000602082019050818103600083015261424c81613d52565b9050919050565b6000602082019050818103600083015261426c81613d75565b9050919050565b6000602082019050818103600083015261428c81613d98565b9050919050565b600060208201905081810360008301526142ac81613dbb565b9050919050565b60006040820190506142c86000830184613dde565b92915050565b60006020820190506142e36000830184613e0d565b92915050565b60006142f3614304565b90506142ff8282614653565b919050565b6000604051905090565b600067ffffffffffffffff821115614329576143286147ba565b5b61433282614807565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061438d8261455b565b91506143988361455b565b9250826fffffffffffffffffffffffffffffffff038211156143bd576143bc6146fe565b5b828201905092915050565b60006143d382614597565b91506143de83614597565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614413576144126146fe565b5b828201905092915050565b600061442982614597565b915061443483614597565b9250826144445761444361472d565b5b828204905092915050565b600061445a82614597565b915061446583614597565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561449e5761449d6146fe565b5b828202905092915050565b60006144b48261455b565b91506144bf8361455b565b9250828210156144d2576144d16146fe565b5b828203905092915050565b60006144e882614597565b91506144f383614597565b925082821015614506576145056146fe565b5b828203905092915050565b600061451c82614577565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156145e25780820151818401526020810190506145c7565b838111156145f1576000848401525b50505050565b600061460282614597565b91506000821415614616576146156146fe565b5b600182039050919050565b6000600282049050600182168061463957607f821691505b6020821081141561464d5761464c61475c565b5b50919050565b61465c82614807565b810181811067ffffffffffffffff8211171561467b5761467a6147ba565b5b80604052505050565b600061468f82614597565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146c2576146c16146fe565b5b600182019050919050565b60006146d882614597565b91506146e383614597565b9250826146f3576146f261472d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d617820332066726565207065722077616c6c65740000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f6d617820737570706c7920686173206265656e20726561636865640000000000600082015250565b7f6d61782032302070657220616464726573730000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f6d696e74206973206e6f74206163746976650000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206574682073656e7400000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614fe781614511565b8114614ff257600080fd5b50565b614ffe81614523565b811461500957600080fd5b50565b6150158161452f565b811461502057600080fd5b50565b61502c81614597565b811461503757600080fd5b5056fea2646970667358221220cb92498b54f88044eda02716087ba91d5ca3864d2ee2516dbe755c306da9612d64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000d05

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636ccd5e501161012e578063a22cb465116100ab578063d7224ba01161006f578063d7224ba014610852578063dc33e6811461087d578063dc37c6d8146108ba578063e985e9c5146108f7578063f2fde38b146109345761023b565b8063a22cb46514610795578063ac446002146107be578063b88d4fde146107d5578063c87b56dd146107fe578063d02c2bf21461083b5761023b565b80638da5cb5b116100f25780638da5cb5b146106bd57806391b7f5ed146106e85780639231ab2a1461071157806395d89b411461074e578063a0712d68146107795761023b565b80636ccd5e50146105ea57806370a0823114610615578063715018a61461065257806378e97925146106695780637c928fe9146106945761023b565b806342842e0e116101bc57806355f804b31161018057806355f804b3146105035780635fabe4461461052c5780636352211e14610557578063639814e0146105945780636817c76c146105bf5761023b565b806342842e0e1461041c5780634751333414610445578063485a68a3146104705780634b980d671461049b5780634f6ccce7146104c65761023b565b806323b872dd1161020357806323b872dd1461033957806325fd90f3146103625780632d20fb601461038d5780632f745c59146103b6578063375a069a146103f35761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613820565b61095d565b6040516102749190613eb6565b60405180910390f35b34801561028957600080fd5b50610292610aa7565b60405161029f9190613ed1565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906138c7565b610b39565b6040516102dc9190613e4f565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906137e0565b610bbe565b005b34801561031a57600080fd5b50610323610cd7565b60405161033091906142ce565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906136ca565b610ce1565b005b34801561036e57600080fd5b50610377610cf1565b6040516103849190613eb6565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af91906138c7565b610d04565b005b3480156103c257600080fd5b506103dd60048036038101906103d891906137e0565b610d8c565b6040516103ea91906142ce565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906138c7565b610f8a565b005b34801561042857600080fd5b50610443600480360381019061043e91906136ca565b611148565b005b34801561045157600080fd5b5061045a611168565b60405161046791906142ce565b60405180910390f35b34801561047c57600080fd5b5061048561116e565b60405161049291906142ce565b60405180910390f35b3480156104a757600080fd5b506104b0611174565b6040516104bd91906142ce565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e891906138c7565b61117a565b6040516104fa91906142ce565b60405180910390f35b34801561050f57600080fd5b5061052a6004803603810190610525919061387a565b6111cd565b005b34801561053857600080fd5b5061054161125f565b60405161054e91906142ce565b60405180910390f35b34801561056357600080fd5b5061057e600480360381019061057991906138c7565b611265565b60405161058b9190613e4f565b60405180910390f35b3480156105a057600080fd5b506105a961127b565b6040516105b691906142ce565b60405180910390f35b3480156105cb57600080fd5b506105d461129f565b6040516105e191906142ce565b60405180910390f35b3480156105f657600080fd5b506105ff6112a5565b60405161060c9190613eb6565b60405180910390f35b34801561062157600080fd5b5061063c6004803603810190610637919061365d565b6112b8565b60405161064991906142ce565b60405180910390f35b34801561065e57600080fd5b506106676113a1565b005b34801561067557600080fd5b5061067e611429565b60405161068b91906142ce565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b691906138c7565b61142f565b005b3480156106c957600080fd5b506106d26115a8565b6040516106df9190613e4f565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a91906138c7565b6115d1565b005b34801561071d57600080fd5b50610738600480360381019061073391906138c7565b611657565b60405161074591906142b3565b60405180910390f35b34801561075a57600080fd5b5061076361166f565b6040516107709190613ed1565b60405180910390f35b610793600480360381019061078e91906138c7565b611701565b005b3480156107a157600080fd5b506107bc60048036038101906107b791906137a0565b6118b7565b005b3480156107ca57600080fd5b506107d3611a38565b005b3480156107e157600080fd5b506107fc60048036038101906107f7919061371d565b611b0a565b005b34801561080a57600080fd5b50610825600480360381019061082091906138c7565b611b66565b6040516108329190613ed1565b60405180910390f35b34801561084757600080fd5b50610850611c0d565b005b34801561085e57600080fd5b50610867611cb5565b60405161087491906142ce565b60405180910390f35b34801561088957600080fd5b506108a4600480360381019061089f919061365d565b611cbb565b6040516108b191906142ce565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc919061365d565b611ccd565b6040516108ee91906142ce565b60405180910390f35b34801561090357600080fd5b5061091e6004803603810190610919919061368a565b611ce5565b60405161092b9190613eb6565b60405180910390f35b34801561094057600080fd5b5061095b6004803603810190610956919061365d565b611d79565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a9057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa05750610a9f82611e71565b5b9050919050565b606060028054610ab690614621565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae290614621565b8015610b2f5780601f10610b0457610100808354040283529160200191610b2f565b820191906000526020600020905b815481529060010190602001808311610b1257829003601f168201915b5050505050905090565b6000610b4482611edb565b610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90614273565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc982611265565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190614173565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c59611ee9565b73ffffffffffffffffffffffffffffffffffffffff161480610c885750610c8781610c82611ee9565b611ce5565b5b610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90614013565b60405180910390fd5b610cd2838383611ef1565b505050565b6000600154905090565b610cec838383611fa3565b505050565b600c60009054906101000a900460ff1681565b610d0c611ee9565b73ffffffffffffffffffffffffffffffffffffffff16610d2a6115a8565b73ffffffffffffffffffffffffffffffffffffffff1614610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d77906140d3565b60405180910390fd5b610d898161255c565b50565b6000610d97836112b8565b8210610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90613ef3565b60405180910390fd5b6000610de2610cd7565b905060008060005b83811015610f48576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610edc57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f345786841415610f25578195505050505050610f84565b8380610f3090614684565b9450505b508080610f4090614684565b915050610dea565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b906141f3565b60405180910390fd5b92915050565b610f92611ee9565b73ffffffffffffffffffffffffffffffffffffffff16610fb06115a8565b73ffffffffffffffffffffffffffffffffffffffff1614611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd906140d3565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000148261103491906146cd565b14611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90613f73565b60405180910390fd5b600f5481611080610cd7565b61108a91906143c8565b11156110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290614053565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000014826110f9919061441e565b905060005b8181101561114357611130337f00000000000000000000000000000000000000000000000000000000000000146127ea565b808061113b90614684565b9150506110fe565b505050565b61116383838360405180602001604052806000815250611b0a565b505050565b600e5481565b60095481565b600a5481565b6000611184610cd7565b82106111c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bc90613f93565b60405180910390fd5b819050919050565b6111d5611ee9565b73ffffffffffffffffffffffffffffffffffffffff166111f36115a8565b73ffffffffffffffffffffffffffffffffffffffff1614611249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611240906140d3565b60405180910390fd5b8181600d919061125a929190613451565b505050565b600f5481565b600061127082612808565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000001481565b600b5481565b600c60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090614093565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113a9611ee9565b73ffffffffffffffffffffffffffffffffffffffff166113c76115a8565b73ffffffffffffffffffffffffffffffffffffffff161461141d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611414906140d3565b60405180910390fd5b6114276000612a0b565b565b60105481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461149d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149490613ff3565b60405180910390fd5b600c60009054906101000a900460ff166114ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e390614153565b60405180910390fd5b600e54816114f8610cd7565b61150291906143c8565b1115611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90614053565b60405180910390fd5b60095461154f33611cbb565b8261155a91906143c8565b111561159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290613f13565b60405180910390fd5b6115a533826127ea565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115d9611ee9565b73ffffffffffffffffffffffffffffffffffffffff166115f76115a8565b73ffffffffffffffffffffffffffffffffffffffff161461164d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611644906140d3565b60405180910390fd5b80600b8190555050565b61165f6134d7565b61166882612808565b9050919050565b60606003805461167e90614621565b80601f01602080910402602001604051908101604052809291908181526020018280546116aa90614621565b80156116f75780601f106116cc576101008083540402835291602001916116f7565b820191906000526020600020905b8154815290600101906020018083116116da57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461176f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176690613ff3565b60405180910390fd5b600c60009054906101000a900460ff166117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590614153565b60405180910390fd5b600f54816117ca610cd7565b6117d491906143c8565b1115611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90614053565b60405180910390fd5b600a5481111561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190614073565b60405180910390fd5b80600b54611868919061444f565b3410156118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a190614233565b60405180910390fd5b6118b433826127ea565b50565b6118bf611ee9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490614113565b60405180910390fd5b806007600061193a611ee9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119e7611ee9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a2c9190613eb6565b60405180910390a35050565b611a40611ee9565b73ffffffffffffffffffffffffffffffffffffffff16611a5e6115a8565b73ffffffffffffffffffffffffffffffffffffffff1614611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab906140d3565b60405180910390fd5b60004711611ac157600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611b07573d6000803e3d6000fd5b50565b611b15848484611fa3565b611b2184848484612acf565b611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5790614193565b60405180910390fd5b50505050565b6060611b7182611edb565b611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba7906140f3565b60405180910390fd5b6000611bba612c66565b90506000815111611bda5760405180602001604052806000815250611c05565b80611be484612cf8565b604051602001611bf5929190613e2b565b6040516020818303038152906040525b915050919050565b611c15611ee9565b73ffffffffffffffffffffffffffffffffffffffff16611c336115a8565b73ffffffffffffffffffffffffffffffffffffffff1614611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c80906140d3565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b60085481565b6000611cc682612e59565b9050919050565b60116020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d81611ee9565b73ffffffffffffffffffffffffffffffffffffffff16611d9f6115a8565b73ffffffffffffffffffffffffffffffffffffffff1614611df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dec906140d3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c90613f33565b60405180910390fd5b611e6e81612a0b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611fae82612808565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fd5611ee9565b73ffffffffffffffffffffffffffffffffffffffff1614806120315750611ffa611ee9565b73ffffffffffffffffffffffffffffffffffffffff1661201984610b39565b73ffffffffffffffffffffffffffffffffffffffff16145b8061204d575061204c8260000151612047611ee9565b611ce5565b5b90508061208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614133565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f8906140b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216890613fb3565b60405180910390fd5b61217e8585856001612f42565b61218e6000848460000151611ef1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121fc91906144a9565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122a09190614382565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123a691906143c8565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124ec5761241c81611edb565b156124eb576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125548686866001612f48565b505050505050565b60006008549050600082116125a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259d90614033565b60405180910390fd5b6000600183836125b691906143c8565b6125c091906144dd565b905060017f0000000000000000000000000000000000000000000000000000000000000d056125ef91906144dd565b8111156126265760017f0000000000000000000000000000000000000000000000000000000000000d0561262391906144dd565b90505b61262f81611edb565b61266e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266590614213565b60405180910390fd5b60008290505b8181116127d157600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127be5760006126f182612808565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806127c990614684565b915050612674565b506001816127df91906143c8565b600881905550505050565b612804828260405180602001604052806000815250612f4e565b5050565b6128106134d7565b61281982611edb565b612858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284f90613f53565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001483106128bc5760017f0000000000000000000000000000000000000000000000000000000000000014846128af91906144dd565b6128b991906143c8565b90505b60008390505b8181106129ca576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129b657809350505050612a06565b5080806129c2906145f7565b9150506128c2565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fd90614253565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612af08473ffffffffffffffffffffffffffffffffffffffff1661342e565b15612c59578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b19611ee9565b8786866040518563ffffffff1660e01b8152600401612b3b9493929190613e6a565b602060405180830381600087803b158015612b5557600080fd5b505af1925050508015612b8657506040513d601f19601f82011682018060405250810190612b83919061384d565b60015b612c09573d8060008114612bb6576040519150601f19603f3d011682016040523d82523d6000602084013e612bbb565b606091505b50600081511415612c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf890614193565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c5e565b600190505b949350505050565b6060600d8054612c7590614621565b80601f0160208091040260200160405190810160405280929190818152602001828054612ca190614621565b8015612cee5780601f10612cc357610100808354040283529160200191612cee565b820191906000526020600020905b815481529060010190602001808311612cd157829003601f168201915b5050505050905090565b60606000821415612d40576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e54565b600082905060005b60008214612d72578080612d5b90614684565b915050600a82612d6b919061441e565b9150612d48565b60008167ffffffffffffffff811115612d8e57612d8d6147ba565b5b6040519080825280601f01601f191660200182016040528015612dc05781602001600182028036833780820191505090505b5090505b60008514612e4d57600182612dd991906144dd565b9150600a85612de891906146cd565b6030612df491906143c8565b60f81b818381518110612e0a57612e0961478b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e46919061441e565b9450612dc4565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec190613fd3565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbc906141d3565b60405180910390fd5b612fce81611edb565b1561300e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613005906141b3565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115613071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306890614293565b60405180910390fd5b61307e6000858386612f42565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161317b9190614382565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131a29190614382565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561341157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133b16000888488612acf565b6133f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e790614193565b60405180910390fd5b81806133fb90614684565b925050808061340990614684565b915050613340565b50806001819055506134266000878588612f48565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461345d90614621565b90600052602060002090601f01602090048101928261347f57600085556134c6565b82601f1061349857803560ff19168380011785556134c6565b828001600101855582156134c6579182015b828111156134c55782358255916020019190600101906134aa565b5b5090506134d39190613511565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561352a576000816000905550600101613512565b5090565b600061354161353c8461430e565b6142e9565b90508281526020810184848401111561355d5761355c6147f8565b5b6135688482856145b5565b509392505050565b60008135905061357f81614fde565b92915050565b60008135905061359481614ff5565b92915050565b6000813590506135a98161500c565b92915050565b6000815190506135be8161500c565b92915050565b600082601f8301126135d9576135d86147ee565b5b81356135e984826020860161352e565b91505092915050565b60008083601f840112613608576136076147ee565b5b8235905067ffffffffffffffff811115613625576136246147e9565b5b602083019150836001820283011115613641576136406147f3565b5b9250929050565b60008135905061365781615023565b92915050565b60006020828403121561367357613672614802565b5b600061368184828501613570565b91505092915050565b600080604083850312156136a1576136a0614802565b5b60006136af85828601613570565b92505060206136c085828601613570565b9150509250929050565b6000806000606084860312156136e3576136e2614802565b5b60006136f186828701613570565b935050602061370286828701613570565b925050604061371386828701613648565b9150509250925092565b6000806000806080858703121561373757613736614802565b5b600061374587828801613570565b945050602061375687828801613570565b935050604061376787828801613648565b925050606085013567ffffffffffffffff811115613788576137876147fd565b5b613794878288016135c4565b91505092959194509250565b600080604083850312156137b7576137b6614802565b5b60006137c585828601613570565b92505060206137d685828601613585565b9150509250929050565b600080604083850312156137f7576137f6614802565b5b600061380585828601613570565b925050602061381685828601613648565b9150509250929050565b60006020828403121561383657613835614802565b5b60006138448482850161359a565b91505092915050565b60006020828403121561386357613862614802565b5b6000613871848285016135af565b91505092915050565b6000806020838503121561389157613890614802565b5b600083013567ffffffffffffffff8111156138af576138ae6147fd565b5b6138bb858286016135f2565b92509250509250929050565b6000602082840312156138dd576138dc614802565b5b60006138eb84828501613648565b91505092915050565b6138fd81614511565b82525050565b61390c81614511565b82525050565b61391b81614523565b82525050565b600061392c8261433f565b6139368185614355565b93506139468185602086016145c4565b61394f81614807565b840191505092915050565b60006139658261434a565b61396f8185614366565b935061397f8185602086016145c4565b61398881614807565b840191505092915050565b600061399e8261434a565b6139a88185614377565b93506139b88185602086016145c4565b80840191505092915050565b60006139d1602283614366565b91506139dc82614818565b604082019050919050565b60006139f4601583614366565b91506139ff82614867565b602082019050919050565b6000613a17602683614366565b9150613a2282614890565b604082019050919050565b6000613a3a602a83614366565b9150613a45826148df565b604082019050919050565b6000613a5d602c83614366565b9150613a688261492e565b604082019050919050565b6000613a80602383614366565b9150613a8b8261497d565b604082019050919050565b6000613aa3602583614366565b9150613aae826149cc565b604082019050919050565b6000613ac6603183614366565b9150613ad182614a1b565b604082019050919050565b6000613ae9601e83614366565b9150613af482614a6a565b602082019050919050565b6000613b0c603983614366565b9150613b1782614a93565b604082019050919050565b6000613b2f601883614366565b9150613b3a82614ae2565b602082019050919050565b6000613b52601b83614366565b9150613b5d82614b0b565b602082019050919050565b6000613b75601283614366565b9150613b8082614b34565b602082019050919050565b6000613b98602b83614366565b9150613ba382614b5d565b604082019050919050565b6000613bbb602683614366565b9150613bc682614bac565b604082019050919050565b6000613bde602083614366565b9150613be982614bfb565b602082019050919050565b6000613c01602f83614366565b9150613c0c82614c24565b604082019050919050565b6000613c24601a83614366565b9150613c2f82614c73565b602082019050919050565b6000613c47603283614366565b9150613c5282614c9c565b604082019050919050565b6000613c6a601283614366565b9150613c7582614ceb565b602082019050919050565b6000613c8d602283614366565b9150613c9882614d14565b604082019050919050565b6000613cb0603383614366565b9150613cbb82614d63565b604082019050919050565b6000613cd3601d83614366565b9150613cde82614db2565b602082019050919050565b6000613cf6602183614366565b9150613d0182614ddb565b604082019050919050565b6000613d19602e83614366565b9150613d2482614e2a565b604082019050919050565b6000613d3c602683614366565b9150613d4782614e79565b604082019050919050565b6000613d5f601383614366565b9150613d6a82614ec8565b602082019050919050565b6000613d82602f83614366565b9150613d8d82614ef1565b604082019050919050565b6000613da5602d83614366565b9150613db082614f40565b604082019050919050565b6000613dc8602283614366565b9150613dd382614f8f565b604082019050919050565b604082016000820151613df460008501826138f4565b506020820151613e076020850182613e1c565b50505050565b613e1681614597565b82525050565b613e25816145a1565b82525050565b6000613e378285613993565b9150613e438284613993565b91508190509392505050565b6000602082019050613e646000830184613903565b92915050565b6000608082019050613e7f6000830187613903565b613e8c6020830186613903565b613e996040830185613e0d565b8181036060830152613eab8184613921565b905095945050505050565b6000602082019050613ecb6000830184613912565b92915050565b60006020820190508181036000830152613eeb818461395a565b905092915050565b60006020820190508181036000830152613f0c816139c4565b9050919050565b60006020820190508181036000830152613f2c816139e7565b9050919050565b60006020820190508181036000830152613f4c81613a0a565b9050919050565b60006020820190508181036000830152613f6c81613a2d565b9050919050565b60006020820190508181036000830152613f8c81613a50565b9050919050565b60006020820190508181036000830152613fac81613a73565b9050919050565b60006020820190508181036000830152613fcc81613a96565b9050919050565b60006020820190508181036000830152613fec81613ab9565b9050919050565b6000602082019050818103600083015261400c81613adc565b9050919050565b6000602082019050818103600083015261402c81613aff565b9050919050565b6000602082019050818103600083015261404c81613b22565b9050919050565b6000602082019050818103600083015261406c81613b45565b9050919050565b6000602082019050818103600083015261408c81613b68565b9050919050565b600060208201905081810360008301526140ac81613b8b565b9050919050565b600060208201905081810360008301526140cc81613bae565b9050919050565b600060208201905081810360008301526140ec81613bd1565b9050919050565b6000602082019050818103600083015261410c81613bf4565b9050919050565b6000602082019050818103600083015261412c81613c17565b9050919050565b6000602082019050818103600083015261414c81613c3a565b9050919050565b6000602082019050818103600083015261416c81613c5d565b9050919050565b6000602082019050818103600083015261418c81613c80565b9050919050565b600060208201905081810360008301526141ac81613ca3565b9050919050565b600060208201905081810360008301526141cc81613cc6565b9050919050565b600060208201905081810360008301526141ec81613ce9565b9050919050565b6000602082019050818103600083015261420c81613d0c565b9050919050565b6000602082019050818103600083015261422c81613d2f565b9050919050565b6000602082019050818103600083015261424c81613d52565b9050919050565b6000602082019050818103600083015261426c81613d75565b9050919050565b6000602082019050818103600083015261428c81613d98565b9050919050565b600060208201905081810360008301526142ac81613dbb565b9050919050565b60006040820190506142c86000830184613dde565b92915050565b60006020820190506142e36000830184613e0d565b92915050565b60006142f3614304565b90506142ff8282614653565b919050565b6000604051905090565b600067ffffffffffffffff821115614329576143286147ba565b5b61433282614807565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061438d8261455b565b91506143988361455b565b9250826fffffffffffffffffffffffffffffffff038211156143bd576143bc6146fe565b5b828201905092915050565b60006143d382614597565b91506143de83614597565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614413576144126146fe565b5b828201905092915050565b600061442982614597565b915061443483614597565b9250826144445761444361472d565b5b828204905092915050565b600061445a82614597565b915061446583614597565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561449e5761449d6146fe565b5b828202905092915050565b60006144b48261455b565b91506144bf8361455b565b9250828210156144d2576144d16146fe565b5b828203905092915050565b60006144e882614597565b91506144f383614597565b925082821015614506576145056146fe565b5b828203905092915050565b600061451c82614577565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156145e25780820151818401526020810190506145c7565b838111156145f1576000848401525b50505050565b600061460282614597565b91506000821415614616576146156146fe565b5b600182039050919050565b6000600282049050600182168061463957607f821691505b6020821081141561464d5761464c61475c565b5b50919050565b61465c82614807565b810181811067ffffffffffffffff8211171561467b5761467a6147ba565b5b80604052505050565b600061468f82614597565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146c2576146c16146fe565b5b600182019050919050565b60006146d882614597565b91506146e383614597565b9250826146f3576146f261472d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f6d617820332066726565207065722077616c6c65740000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f6d617820737570706c7920686173206265656e20726561636865640000000000600082015250565b7f6d61782032302070657220616464726573730000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f6d696e74206973206e6f74206163746976650000000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206574682073656e7400000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614fe781614511565b8114614ff257600080fd5b50565b614ffe81614523565b811461500957600080fd5b50565b6150158161452f565b811461502057600080fd5b50565b61502c81614597565b811461503757600080fd5b5056fea2646970667358221220cb92498b54f88044eda02716087ba91d5ca3864d2ee2516dbe755c306da9612d64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000d05

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 20
Arg [1] : collectionSize_ (uint256): 3333

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000d05


Deployed Bytecode Sourcemap

678:2865:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3963:370:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5689:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7214:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6777:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2524:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8064:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;892:30:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2989:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3155:744:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2224:384:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8277:159:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1007:35:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;770:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;803:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2687:177:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2728:100:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1049:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5512:118:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;723:38:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;848:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;931:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4389:211:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:10;;;;;;;;;;;;;:::i;:::-;;1088:24:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1508:325;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1063:87:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3100:84:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3393:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5844:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1839:379:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7482:274:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2834:149:4;;;;;;;;;;;;;:::i;:::-;;8499:319:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6005:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3190:84:4;;;;;;;;;;;;;:::i;:::-;;12922:43:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3280:107:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1119:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7819:186:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1972:201:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3963:370:3;4090:4;4135:25;4120:40;;;:11;:40;;;;:99;;;;4186:33;4171:48;;;:11;:48;;;;4120:99;:160;;;;4245:35;4230:50;;;:11;:50;;;;4120:160;:207;;;;4291:36;4315:11;4291:23;:36::i;:::-;4120:207;4106:221;;3963:370;;;:::o;5689:94::-;5743:13;5772:5;5765:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5689:94;:::o;7214:204::-;7282:7;7306:16;7314:7;7306;:16::i;:::-;7298:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7388:15;:24;7404:7;7388:24;;;;;;;;;;;;;;;;;;;;;7381:31;;7214:204;;;:::o;6777:379::-;6846:13;6862:24;6878:7;6862:15;:24::i;:::-;6846:40;;6907:5;6901:11;;:2;:11;;;;6893:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;6992:5;6976:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7001:37;7018:5;7025:12;:10;:12::i;:::-;7001:16;:37::i;:::-;6976:62;6960:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;7122:28;7131:2;7135:7;7144:5;7122:8;:28::i;:::-;6839:317;6777:379;;:::o;2524:94::-;2577:7;2600:12;;2593:19;;2524:94;:::o;8064:150::-;8180:28;8190:4;8196:2;8200:7;8180:9;:28::i;:::-;8064:150;;;:::o;892:30:4:-;;;;;;;;;;;;;:::o;2989:105::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3060:28:4::1;3079:8;3060:18;:28::i;:::-;2989:105:::0;:::o;3155:744:3:-;3264:7;3299:16;3309:5;3299:9;:16::i;:::-;3291:5;:24;3283:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3361:22;3386:13;:11;:13::i;:::-;3361:38;;3406:19;3436:25;3486:9;3481:350;3505:14;3501:1;:18;3481:350;;;3535:31;3569:11;:14;3581:1;3569:14;;;;;;;;;;;3535:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3622:1;3596:28;;:9;:14;;;:28;;;3592:89;;3657:9;:14;;;3637:34;;3592:89;3714:5;3693:26;;:17;:26;;;3689:135;;;3751:5;3736:11;:20;3732:59;;;3778:1;3771:8;;;;;;;;;3732:59;3801:13;;;;;:::i;:::-;;;;3689:135;3526:305;3521:3;;;;;:::i;:::-;;;;3481:350;;;;3837:56;;;;;;;;;;:::i;:::-;;;;;;;;3155:744;;;;;:::o;2224:384:4:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2320:1:4::1;2304:12;2293:8;:23;;;;:::i;:::-;:28;2285:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;2412:10;;2400:8;2384:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;2376:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2461:17;2492:12;2481:8;:23;;;;:::i;:::-;2461:43;;2516:9;2511:92;2535:9;2531:1;:13;2511:92;;;2560:35;2570:10;2582:12;2560:9;:35::i;:::-;2546:3;;;;;:::i;:::-;;;;2511:92;;;;2278:330;2224:384:::0;:::o;8277:159:3:-;8391:39;8408:4;8414:2;8418:7;8391:39;;;;;;;;;;;;:16;:39::i;:::-;8277:159;;;:::o;1007:35:4:-;;;;:::o;770:26::-;;;;:::o;803:37::-;;;;:::o;2687:177:3:-;2754:7;2786:13;:11;:13::i;:::-;2778:5;:21;2770:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;2853:5;2846:12;;2687:177;;;:::o;2728:100:4:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2815:7:4::1;;2799:13;:23;;;;;;;:::i;:::-;;2728:100:::0;;:::o;1049:32::-;;;;:::o;5512:118:3:-;5576:7;5599:20;5611:7;5599:11;:20::i;:::-;:25;;;5592:32;;5512:118;;;:::o;723:38:4:-;;;:::o;848:37::-;;;;:::o;931:34::-;;;;;;;;;;;;;:::o;4389:211:3:-;4453:7;4494:1;4477:19;;:5;:19;;;;4469:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;4566:12;:19;4579:5;4566:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4558:36;;4551:43;;4389:211;;;:::o;1714:103:10:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;1088:24:4:-;;;;:::o;1508:325::-;1443:10;1430:23;;:9;:23;;;1422:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1581:10:::1;;;;;;;;;;;1573:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1657:13;;1645:8;1629:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;1621:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;1756:7;;1728:24;1741:10;1728:12;:24::i;:::-;1717:8;:35;;;;:::i;:::-;:46;;1709:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;1796:31;1806:10;1818:8;1796:9;:31::i;:::-;1508:325:::0;:::o;1063:87:10:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;3100:84:4:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3172:6:4::1;3160:9;:18;;;;3100:84:::0;:::o;3393:147::-;3474:21;;:::i;:::-;3514:20;3526:7;3514:11;:20::i;:::-;3507:27;;3393:147;;;:::o;5844:98:3:-;5900:13;5929:7;5922:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5844:98;:::o;1839:379:4:-;1443:10;1430:23;;:9;:23;;;1422:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1916:10:::1;;;;;;;;;;;1908:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:10;;1980:8;1964:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;1956:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2062:17;;2050:8;:29;;2041:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;2142:8;2130:9;;:20;;;;:::i;:::-;2117:9;:33;;2109:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;2181:31;2191:10;2203:8;2181:9;:31::i;:::-;1839:379:::0;:::o;7482:274:3:-;7585:12;:10;:12::i;:::-;7573:24;;:8;:24;;;;7565:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7682:8;7637:18;:32;7656:12;:10;:12::i;:::-;7637:32;;;;;;;;;;;;;;;:42;7670:8;7637:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;7731:8;7702:48;;7717:12;:10;:12::i;:::-;7702:48;;;7741:8;7702:48;;;;;;:::i;:::-;;;;;;;;7482:274;;:::o;2834:149:4:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2917:1:4::1;2893:21;:25;2885:34;;;::::0;::::1;;2934:10;2926:28;;:51;2955:21;2926:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2834:149::o:0;8499:319:3:-;8644:28;8654:4;8660:2;8664:7;8644:9;:28::i;:::-;8695:48;8718:4;8724:2;8728:7;8737:5;8695:22;:48::i;:::-;8679:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;8499:319;;;;:::o;6005:394::-;6103:13;6144:16;6152:7;6144;:16::i;:::-;6128:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;6234:21;6258:10;:8;:10::i;:::-;6234:34;;6313:1;6295:7;6289:21;:25;:104;;;;;;;;;;;;;;;;;6350:7;6359:18;:7;:16;:18::i;:::-;6333:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6289:104;6275:118;;;6005:394;;;:::o;3190:84:4:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3258:10:4::1;;;;;;;;;;;3257:11;3244:10;;:24;;;;;;;;;;;;;;;;;;3190:84::o:0;12922:43:3:-;;;;:::o;3280:107:4:-;3338:7;3361:20;3375:5;3361:13;:20::i;:::-;3354:27;;3280:107;;;:::o;1119:49::-;;;;;;;;;;;;;;;;;:::o;7819:186:3:-;7941:4;7964:18;:25;7983:5;7964:25;;;;;;;;;;;;;;;:35;7990:8;7964:35;;;;;;;;;;;;;;;;;;;;;;;;;7957:42;;7819:186;;;;:::o;1972:201:10:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;9057:105:3:-;9114:4;9144:12;;9134:7;:22;9127:29;;9057:105;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;12744:172:3:-;12868:2;12841:15;:24;12857:7;12841:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;12902:7;12898:2;12882:28;;12891:5;12882:28;;;;;;;;;;;;12744:172;;;:::o;11109:1529::-;11206:35;11244:20;11256:7;11244:11;:20::i;:::-;11206:58;;11273:22;11315:13;:18;;;11299:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;11368:12;:10;:12::i;:::-;11344:36;;:20;11356:7;11344:11;:20::i;:::-;:36;;;11299:81;:142;;;;11391:50;11408:13;:18;;;11428:12;:10;:12::i;:::-;11391:16;:50::i;:::-;11299:142;11273:169;;11467:17;11451:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;11599:4;11577:26;;:13;:18;;;:26;;;11561:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;11688:1;11674:16;;:2;:16;;;;11666:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;11741:43;11763:4;11769:2;11773:7;11782:1;11741:21;:43::i;:::-;11841:49;11858:1;11862:7;11871:13;:18;;;11841:8;:49::i;:::-;11929:1;11899:12;:18;11912:4;11899:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11965:1;11937:12;:16;11950:2;11937:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;11996:43;;;;;;;;12011:2;11996:43;;;;;;12022:15;11996:43;;;;;11973:11;:20;11985:7;11973:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12267:19;12299:1;12289:7;:11;;;;:::i;:::-;12267:33;;12352:1;12311:43;;:11;:24;12323:11;12311:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;12307:236;;;12369:20;12377:11;12369:7;:20::i;:::-;12365:171;;;12429:97;;;;;;;;12456:13;:18;;;12429:97;;;;;;12487:13;:28;;;12429:97;;;;;12402:11;:24;12414:11;12402:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12365:171;12307:236;12575:7;12571:2;12556:27;;12565:4;12556:27;;;;;;;;;;;;12590:42;12611:4;12617:2;12621:7;12630:1;12590:20;:42::i;:::-;11199:1439;;;11109:1529;;;:::o;13070:846::-;13132:25;13160:24;;13132:52;;13210:1;13199:8;:12;13191:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;13247:16;13297:1;13286:8;13266:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;13247:51;;13337:1;13320:14;:18;;;;:::i;:::-;13309:8;:29;13305:81;;;13377:1;13360:14;:18;;;;:::i;:::-;13349:29;;13305:81;13501:17;13509:8;13501:7;:17::i;:::-;13493:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13573:9;13585:17;13573:29;;13568:297;13609:8;13604:1;:13;13568:297;;13668:1;13637:33;;:11;:14;13649:1;13637:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;13633:225;;;13683:31;13717:14;13729:1;13717:11;:14::i;:::-;13683:48;;13759:89;;;;;;;;13786:9;:14;;;13759:89;;;;;;13813:9;:24;;;13759:89;;;;;13742:11;:14;13754:1;13742:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13672:186;13633:225;13619:3;;;;;:::i;:::-;;;;13568:297;;;;13909:1;13898:8;:12;;;;:::i;:::-;13871:24;:39;;;;13125:791;;13070:846;:::o;9168:98::-;9233:27;9243:2;9247:8;9233:27;;;;;;;;;;;;:9;:27::i;:::-;9168:98;;:::o;4852:606::-;4928:21;;:::i;:::-;4969:16;4977:7;4969;:16::i;:::-;4961:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5041:26;5089:12;5078:7;:23;5074:93;;5158:1;5143:12;5133:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;5112:47;;5074:93;5180:12;5195:7;5180:22;;5175:212;5212:18;5204:4;:26;5175:212;;5249:31;5283:11;:17;5295:4;5283:17;;;;;;;;;;;5249:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5339:1;5313:28;;:9;:14;;;:28;;;5309:71;;5361:9;5354:16;;;;;;;5309:71;5240:147;5232:6;;;;;:::i;:::-;;;;5175:212;;;;5395:57;;;;;;;;;;:::i;:::-;;;;;;;;4852:606;;;;:::o;2333:191:10:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;14459:690:3:-;14596:4;14613:15;:2;:13;;;:15::i;:::-;14609:535;;;14668:2;14652:36;;;14689:12;:10;:12::i;:::-;14703:4;14709:7;14718:5;14652:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14639:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14900:1;14883:6;:13;:18;14879:215;;;14916:61;;;;;;;;;;:::i;:::-;;;;;;;;14879:215;15062:6;15056:13;15047:6;15043:2;15039:15;15032:38;14639:464;14784:45;;;14774:55;;;:6;:55;;;;14767:62;;;;;14609:535;15132:4;15125:11;;14459:690;;;;;;;:::o;2614:108:4:-;2674:13;2703;2696:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2614:108;:::o;342:723:11:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;4606:240:3:-;4667:7;4716:1;4699:19;;:5;:19;;;;4683:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;4807:12;:19;4820:5;4807:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;4799:41;;4792:48;;4606:240;;;:::o;15611:141::-;;;;;:::o;16138:140::-;;;;;:::o;9605:1272::-;9710:20;9733:12;;9710:35;;9774:1;9760:16;;:2;:16;;;;9752:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;9951:21;9959:12;9951:7;:21::i;:::-;9950:22;9942:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;10033:12;10021:8;:24;;10013:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10093:61;10123:1;10127:2;10131:12;10145:8;10093:21;:61::i;:::-;10163:30;10196:12;:16;10209:2;10196:16;;;;;;;;;;;;;;;10163:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10238:119;;;;;;;;10288:8;10258:11;:19;;;:39;;;;:::i;:::-;10238:119;;;;;;10341:8;10306:11;:24;;;:44;;;;:::i;:::-;10238:119;;;;;10219:12;:16;10232:2;10219:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10392:43;;;;;;;;10407:2;10392:43;;;;;;10418:15;10392:43;;;;;10364:11;:25;10376:12;10364:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10444:20;10467:12;10444:35;;10493:9;10488:281;10512:8;10508:1;:12;10488:281;;;10566:12;10562:2;10541:38;;10558:1;10541:38;;;;;;;;;;;;10606:59;10637:1;10641:2;10645:12;10659:5;10606:22;:59::i;:::-;10588:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;10747:14;;;;;:::i;:::-;;;;10522:3;;;;;:::i;:::-;;;;10488:281;;;;10792:12;10777;:27;;;;10811:60;10840:1;10844:2;10848:12;10862:8;10811:20;:60::i;:::-;9703:1174;;;9605:1272;;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:12:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:::-;11935:3;11956:67;12020:2;12015:3;11956:67;:::i;:::-;11949:74;;12032:93;12121:3;12032:93;:::i;:::-;12150:2;12145:3;12141:12;12134:19;;11793:366;;;:::o;12165:::-;12307:3;12328:67;12392:2;12387:3;12328:67;:::i;:::-;12321:74;;12404:93;12493:3;12404:93;:::i;:::-;12522:2;12517:3;12513:12;12506:19;;12165:366;;;:::o;12537:::-;12679:3;12700:67;12764:2;12759:3;12700:67;:::i;:::-;12693:74;;12776:93;12865:3;12776:93;:::i;:::-;12894:2;12889:3;12885:12;12878:19;;12537:366;;;:::o;12909:::-;13051:3;13072:67;13136:2;13131:3;13072:67;:::i;:::-;13065:74;;13148:93;13237:3;13148:93;:::i;:::-;13266:2;13261:3;13257:12;13250:19;;12909:366;;;:::o;13281:::-;13423:3;13444:67;13508:2;13503:3;13444:67;:::i;:::-;13437:74;;13520:93;13609:3;13520:93;:::i;:::-;13638:2;13633:3;13629:12;13622:19;;13281:366;;;:::o;13653:::-;13795:3;13816:67;13880:2;13875:3;13816:67;:::i;:::-;13809:74;;13892:93;13981:3;13892:93;:::i;:::-;14010:2;14005:3;14001:12;13994:19;;13653:366;;;:::o;14025:::-;14167:3;14188:67;14252:2;14247:3;14188:67;:::i;:::-;14181:74;;14264:93;14353:3;14264:93;:::i;:::-;14382:2;14377:3;14373:12;14366:19;;14025:366;;;:::o;14397:::-;14539:3;14560:67;14624:2;14619:3;14560:67;:::i;:::-;14553:74;;14636:93;14725:3;14636:93;:::i;:::-;14754:2;14749:3;14745:12;14738:19;;14397:366;;;:::o;14769:::-;14911:3;14932:67;14996:2;14991:3;14932:67;:::i;:::-;14925:74;;15008:93;15097:3;15008:93;:::i;:::-;15126:2;15121:3;15117:12;15110:19;;14769:366;;;:::o;15141:::-;15283:3;15304:67;15368:2;15363:3;15304:67;:::i;:::-;15297:74;;15380:93;15469:3;15380:93;:::i;:::-;15498:2;15493:3;15489:12;15482:19;;15141:366;;;:::o;15513:::-;15655:3;15676:67;15740:2;15735:3;15676:67;:::i;:::-;15669:74;;15752:93;15841:3;15752:93;:::i;:::-;15870:2;15865:3;15861:12;15854:19;;15513:366;;;:::o;15885:::-;16027:3;16048:67;16112:2;16107:3;16048:67;:::i;:::-;16041:74;;16124:93;16213:3;16124:93;:::i;:::-;16242:2;16237:3;16233:12;16226:19;;15885:366;;;:::o;16257:::-;16399:3;16420:67;16484:2;16479:3;16420:67;:::i;:::-;16413:74;;16496:93;16585:3;16496:93;:::i;:::-;16614:2;16609:3;16605:12;16598:19;;16257:366;;;:::o;16629:::-;16771:3;16792:67;16856:2;16851:3;16792:67;:::i;:::-;16785:74;;16868:93;16957:3;16868:93;:::i;:::-;16986:2;16981:3;16977:12;16970:19;;16629:366;;;:::o;17001:::-;17143:3;17164:67;17228:2;17223:3;17164:67;:::i;:::-;17157:74;;17240:93;17329:3;17240:93;:::i;:::-;17358:2;17353:3;17349:12;17342:19;;17001:366;;;:::o;17373:::-;17515:3;17536:67;17600:2;17595:3;17536:67;:::i;:::-;17529:74;;17612:93;17701:3;17612:93;:::i;:::-;17730:2;17725:3;17721:12;17714:19;;17373:366;;;:::o;17745:::-;17887:3;17908:67;17972:2;17967:3;17908:67;:::i;:::-;17901:74;;17984:93;18073:3;17984:93;:::i;:::-;18102:2;18097:3;18093:12;18086:19;;17745:366;;;:::o;18117:::-;18259:3;18280:67;18344:2;18339:3;18280:67;:::i;:::-;18273:74;;18356:93;18445:3;18356:93;:::i;:::-;18474:2;18469:3;18465:12;18458:19;;18117:366;;;:::o;18489:::-;18631:3;18652:67;18716:2;18711:3;18652:67;:::i;:::-;18645:74;;18728:93;18817:3;18728:93;:::i;:::-;18846:2;18841:3;18837:12;18830:19;;18489:366;;;:::o;18861:::-;19003:3;19024:67;19088:2;19083:3;19024:67;:::i;:::-;19017:74;;19100:93;19189:3;19100:93;:::i;:::-;19218:2;19213:3;19209:12;19202:19;;18861:366;;;:::o;19233:::-;19375:3;19396:67;19460:2;19455:3;19396:67;:::i;:::-;19389:74;;19472:93;19561:3;19472:93;:::i;:::-;19590:2;19585:3;19581:12;19574:19;;19233:366;;;:::o;19675:527::-;19834:4;19829:3;19825:14;19921:4;19914:5;19910:16;19904:23;19940:63;19997:4;19992:3;19988:14;19974:12;19940:63;:::i;:::-;19849:164;20105:4;20098:5;20094:16;20088:23;20124:61;20179:4;20174:3;20170:14;20156:12;20124:61;:::i;:::-;20023:172;19803:399;19675:527;;:::o;20208:118::-;20295:24;20313:5;20295:24;:::i;:::-;20290:3;20283:37;20208:118;;:::o;20332:105::-;20407:23;20424:5;20407:23;:::i;:::-;20402:3;20395:36;20332:105;;:::o;20443:435::-;20623:3;20645:95;20736:3;20727:6;20645:95;:::i;:::-;20638:102;;20757:95;20848:3;20839:6;20757:95;:::i;:::-;20750:102;;20869:3;20862:10;;20443:435;;;;;:::o;20884:222::-;20977:4;21015:2;21004:9;21000:18;20992:26;;21028:71;21096:1;21085:9;21081:17;21072:6;21028:71;:::i;:::-;20884:222;;;;:::o;21112:640::-;21307:4;21345:3;21334:9;21330:19;21322:27;;21359:71;21427:1;21416:9;21412:17;21403:6;21359:71;:::i;:::-;21440:72;21508:2;21497:9;21493:18;21484:6;21440:72;:::i;:::-;21522;21590:2;21579:9;21575:18;21566:6;21522:72;:::i;:::-;21641:9;21635:4;21631:20;21626:2;21615:9;21611:18;21604:48;21669:76;21740:4;21731:6;21669:76;:::i;:::-;21661:84;;21112:640;;;;;;;:::o;21758:210::-;21845:4;21883:2;21872:9;21868:18;21860:26;;21896:65;21958:1;21947:9;21943:17;21934:6;21896:65;:::i;:::-;21758:210;;;;:::o;21974:313::-;22087:4;22125:2;22114:9;22110:18;22102:26;;22174:9;22168:4;22164:20;22160:1;22149:9;22145:17;22138:47;22202:78;22275:4;22266:6;22202:78;:::i;:::-;22194:86;;21974:313;;;;:::o;22293:419::-;22459:4;22497:2;22486:9;22482:18;22474:26;;22546:9;22540:4;22536:20;22532:1;22521:9;22517:17;22510:47;22574:131;22700:4;22574:131;:::i;:::-;22566:139;;22293:419;;;:::o;22718:::-;22884:4;22922:2;22911:9;22907:18;22899:26;;22971:9;22965:4;22961:20;22957:1;22946:9;22942:17;22935:47;22999:131;23125:4;22999:131;:::i;:::-;22991:139;;22718:419;;;:::o;23143:::-;23309:4;23347:2;23336:9;23332:18;23324:26;;23396:9;23390:4;23386:20;23382:1;23371:9;23367:17;23360:47;23424:131;23550:4;23424:131;:::i;:::-;23416:139;;23143:419;;;:::o;23568:::-;23734:4;23772:2;23761:9;23757:18;23749:26;;23821:9;23815:4;23811:20;23807:1;23796:9;23792:17;23785:47;23849:131;23975:4;23849:131;:::i;:::-;23841:139;;23568:419;;;:::o;23993:::-;24159:4;24197:2;24186:9;24182:18;24174:26;;24246:9;24240:4;24236:20;24232:1;24221:9;24217:17;24210:47;24274:131;24400:4;24274:131;:::i;:::-;24266:139;;23993:419;;;:::o;24418:::-;24584:4;24622:2;24611:9;24607:18;24599:26;;24671:9;24665:4;24661:20;24657:1;24646:9;24642:17;24635:47;24699:131;24825:4;24699:131;:::i;:::-;24691:139;;24418:419;;;:::o;24843:::-;25009:4;25047:2;25036:9;25032:18;25024:26;;25096:9;25090:4;25086:20;25082:1;25071:9;25067:17;25060:47;25124:131;25250:4;25124:131;:::i;:::-;25116:139;;24843:419;;;:::o;25268:::-;25434:4;25472:2;25461:9;25457:18;25449:26;;25521:9;25515:4;25511:20;25507:1;25496:9;25492:17;25485:47;25549:131;25675:4;25549:131;:::i;:::-;25541:139;;25268:419;;;:::o;25693:::-;25859:4;25897:2;25886:9;25882:18;25874:26;;25946:9;25940:4;25936:20;25932:1;25921:9;25917:17;25910:47;25974:131;26100:4;25974:131;:::i;:::-;25966:139;;25693:419;;;:::o;26118:::-;26284:4;26322:2;26311:9;26307:18;26299:26;;26371:9;26365:4;26361:20;26357:1;26346:9;26342:17;26335:47;26399:131;26525:4;26399:131;:::i;:::-;26391:139;;26118:419;;;:::o;26543:::-;26709:4;26747:2;26736:9;26732:18;26724:26;;26796:9;26790:4;26786:20;26782:1;26771:9;26767:17;26760:47;26824:131;26950:4;26824:131;:::i;:::-;26816:139;;26543:419;;;:::o;26968:::-;27134:4;27172:2;27161:9;27157:18;27149:26;;27221:9;27215:4;27211:20;27207:1;27196:9;27192:17;27185:47;27249:131;27375:4;27249:131;:::i;:::-;27241:139;;26968:419;;;:::o;27393:::-;27559:4;27597:2;27586:9;27582:18;27574:26;;27646:9;27640:4;27636:20;27632:1;27621:9;27617:17;27610:47;27674:131;27800:4;27674:131;:::i;:::-;27666:139;;27393:419;;;:::o;27818:::-;27984:4;28022:2;28011:9;28007:18;27999:26;;28071:9;28065:4;28061:20;28057:1;28046:9;28042:17;28035:47;28099:131;28225:4;28099:131;:::i;:::-;28091:139;;27818:419;;;:::o;28243:::-;28409:4;28447:2;28436:9;28432:18;28424:26;;28496:9;28490:4;28486:20;28482:1;28471:9;28467:17;28460:47;28524:131;28650:4;28524:131;:::i;:::-;28516:139;;28243:419;;;:::o;28668:::-;28834:4;28872:2;28861:9;28857:18;28849:26;;28921:9;28915:4;28911:20;28907:1;28896:9;28892:17;28885:47;28949:131;29075:4;28949:131;:::i;:::-;28941:139;;28668:419;;;:::o;29093:::-;29259:4;29297:2;29286:9;29282:18;29274:26;;29346:9;29340:4;29336:20;29332:1;29321:9;29317:17;29310:47;29374:131;29500:4;29374:131;:::i;:::-;29366:139;;29093:419;;;:::o;29518:::-;29684:4;29722:2;29711:9;29707:18;29699:26;;29771:9;29765:4;29761:20;29757:1;29746:9;29742:17;29735:47;29799:131;29925:4;29799:131;:::i;:::-;29791:139;;29518:419;;;:::o;29943:::-;30109:4;30147:2;30136:9;30132:18;30124:26;;30196:9;30190:4;30186:20;30182:1;30171:9;30167:17;30160:47;30224:131;30350:4;30224:131;:::i;:::-;30216:139;;29943:419;;;:::o;30368:::-;30534:4;30572:2;30561:9;30557:18;30549:26;;30621:9;30615:4;30611:20;30607:1;30596:9;30592:17;30585:47;30649:131;30775:4;30649:131;:::i;:::-;30641:139;;30368:419;;;:::o;30793:::-;30959:4;30997:2;30986:9;30982:18;30974:26;;31046:9;31040:4;31036:20;31032:1;31021:9;31017:17;31010:47;31074:131;31200:4;31074:131;:::i;:::-;31066:139;;30793:419;;;:::o;31218:::-;31384:4;31422:2;31411:9;31407:18;31399:26;;31471:9;31465:4;31461:20;31457:1;31446:9;31442:17;31435:47;31499:131;31625:4;31499:131;:::i;:::-;31491:139;;31218:419;;;:::o;31643:::-;31809:4;31847:2;31836:9;31832:18;31824:26;;31896:9;31890:4;31886:20;31882:1;31871:9;31867:17;31860:47;31924:131;32050:4;31924:131;:::i;:::-;31916:139;;31643:419;;;:::o;32068:::-;32234:4;32272:2;32261:9;32257:18;32249:26;;32321:9;32315:4;32311:20;32307:1;32296:9;32292:17;32285:47;32349:131;32475:4;32349:131;:::i;:::-;32341:139;;32068:419;;;:::o;32493:::-;32659:4;32697:2;32686:9;32682:18;32674:26;;32746:9;32740:4;32736:20;32732:1;32721:9;32717:17;32710:47;32774:131;32900:4;32774:131;:::i;:::-;32766:139;;32493:419;;;:::o;32918:::-;33084:4;33122:2;33111:9;33107:18;33099:26;;33171:9;33165:4;33161:20;33157:1;33146:9;33142:17;33135:47;33199:131;33325:4;33199:131;:::i;:::-;33191:139;;32918:419;;;:::o;33343:::-;33509:4;33547:2;33536:9;33532:18;33524:26;;33596:9;33590:4;33586:20;33582:1;33571:9;33567:17;33560:47;33624:131;33750:4;33624:131;:::i;:::-;33616:139;;33343:419;;;:::o;33768:::-;33934:4;33972:2;33961:9;33957:18;33949:26;;34021:9;34015:4;34011:20;34007:1;33996:9;33992:17;33985:47;34049:131;34175:4;34049:131;:::i;:::-;34041:139;;33768:419;;;:::o;34193:::-;34359:4;34397:2;34386:9;34382:18;34374:26;;34446:9;34440:4;34436:20;34432:1;34421:9;34417:17;34410:47;34474:131;34600:4;34474:131;:::i;:::-;34466:139;;34193:419;;;:::o;34618:::-;34784:4;34822:2;34811:9;34807:18;34799:26;;34871:9;34865:4;34861:20;34857:1;34846:9;34842:17;34835:47;34899:131;35025:4;34899:131;:::i;:::-;34891:139;;34618:419;;;:::o;35043:346::-;35198:4;35236:2;35225:9;35221:18;35213:26;;35249:133;35379:1;35368:9;35364:17;35355:6;35249:133;:::i;:::-;35043:346;;;;:::o;35395:222::-;35488:4;35526:2;35515:9;35511:18;35503:26;;35539:71;35607:1;35596:9;35592:17;35583:6;35539:71;:::i;:::-;35395:222;;;;:::o;35623:129::-;35657:6;35684:20;;:::i;:::-;35674:30;;35713:33;35741:4;35733:6;35713:33;:::i;:::-;35623:129;;;:::o;35758:75::-;35791:6;35824:2;35818:9;35808:19;;35758:75;:::o;35839:307::-;35900:4;35990:18;35982:6;35979:30;35976:56;;;36012:18;;:::i;:::-;35976:56;36050:29;36072:6;36050:29;:::i;:::-;36042:37;;36134:4;36128;36124:15;36116:23;;35839:307;;;:::o;36152:98::-;36203:6;36237:5;36231:12;36221:22;;36152:98;;;:::o;36256:99::-;36308:6;36342:5;36336:12;36326:22;;36256:99;;;:::o;36361:168::-;36444:11;36478:6;36473:3;36466:19;36518:4;36513:3;36509:14;36494:29;;36361:168;;;;:::o;36535:169::-;36619:11;36653:6;36648:3;36641:19;36693:4;36688:3;36684:14;36669:29;;36535:169;;;;:::o;36710:148::-;36812:11;36849:3;36834:18;;36710:148;;;;:::o;36864:273::-;36904:3;36923:20;36941:1;36923:20;:::i;:::-;36918:25;;36957:20;36975:1;36957:20;:::i;:::-;36952:25;;37079:1;37043:34;37039:42;37036:1;37033:49;37030:75;;;37085:18;;:::i;:::-;37030:75;37129:1;37126;37122:9;37115:16;;36864:273;;;;:::o;37143:305::-;37183:3;37202:20;37220:1;37202:20;:::i;:::-;37197:25;;37236:20;37254:1;37236:20;:::i;:::-;37231:25;;37390:1;37322:66;37318:74;37315:1;37312:81;37309:107;;;37396:18;;:::i;:::-;37309:107;37440:1;37437;37433:9;37426:16;;37143:305;;;;:::o;37454:185::-;37494:1;37511:20;37529:1;37511:20;:::i;:::-;37506:25;;37545:20;37563:1;37545:20;:::i;:::-;37540:25;;37584:1;37574:35;;37589:18;;:::i;:::-;37574:35;37631:1;37628;37624:9;37619:14;;37454:185;;;;:::o;37645:348::-;37685:7;37708:20;37726:1;37708:20;:::i;:::-;37703:25;;37742:20;37760:1;37742:20;:::i;:::-;37737:25;;37930:1;37862:66;37858:74;37855:1;37852:81;37847:1;37840:9;37833:17;37829:105;37826:131;;;37937:18;;:::i;:::-;37826:131;37985:1;37982;37978:9;37967:20;;37645:348;;;;:::o;37999:191::-;38039:4;38059:20;38077:1;38059:20;:::i;:::-;38054:25;;38093:20;38111:1;38093:20;:::i;:::-;38088:25;;38132:1;38129;38126:8;38123:34;;;38137:18;;:::i;:::-;38123:34;38182:1;38179;38175:9;38167:17;;37999:191;;;;:::o;38196:::-;38236:4;38256:20;38274:1;38256:20;:::i;:::-;38251:25;;38290:20;38308:1;38290:20;:::i;:::-;38285:25;;38329:1;38326;38323:8;38320:34;;;38334:18;;:::i;:::-;38320:34;38379:1;38376;38372:9;38364:17;;38196:191;;;;:::o;38393:96::-;38430:7;38459:24;38477:5;38459:24;:::i;:::-;38448:35;;38393:96;;;:::o;38495:90::-;38529:7;38572:5;38565:13;38558:21;38547:32;;38495:90;;;:::o;38591:149::-;38627:7;38667:66;38660:5;38656:78;38645:89;;38591:149;;;:::o;38746:118::-;38783:7;38823:34;38816:5;38812:46;38801:57;;38746:118;;;:::o;38870:126::-;38907:7;38947:42;38940:5;38936:54;38925:65;;38870:126;;;:::o;39002:77::-;39039:7;39068:5;39057:16;;39002:77;;;:::o;39085:101::-;39121:7;39161:18;39154:5;39150:30;39139:41;;39085:101;;;:::o;39192:154::-;39276:6;39271:3;39266;39253:30;39338:1;39329:6;39324:3;39320:16;39313:27;39192:154;;;:::o;39352:307::-;39420:1;39430:113;39444:6;39441:1;39438:13;39430:113;;;39529:1;39524:3;39520:11;39514:18;39510:1;39505:3;39501:11;39494:39;39466:2;39463:1;39459:10;39454:15;;39430:113;;;39561:6;39558:1;39555:13;39552:101;;;39641:1;39632:6;39627:3;39623:16;39616:27;39552:101;39401:258;39352:307;;;:::o;39665:171::-;39704:3;39727:24;39745:5;39727:24;:::i;:::-;39718:33;;39773:4;39766:5;39763:15;39760:41;;;39781:18;;:::i;:::-;39760:41;39828:1;39821:5;39817:13;39810:20;;39665:171;;;:::o;39842:320::-;39886:6;39923:1;39917:4;39913:12;39903:22;;39970:1;39964:4;39960:12;39991:18;39981:81;;40047:4;40039:6;40035:17;40025:27;;39981:81;40109:2;40101:6;40098:14;40078:18;40075:38;40072:84;;;40128:18;;:::i;:::-;40072:84;39893:269;39842:320;;;:::o;40168:281::-;40251:27;40273:4;40251:27;:::i;:::-;40243:6;40239:40;40381:6;40369:10;40366:22;40345:18;40333:10;40330:34;40327:62;40324:88;;;40392:18;;:::i;:::-;40324:88;40432:10;40428:2;40421:22;40211:238;40168:281;;:::o;40455:233::-;40494:3;40517:24;40535:5;40517:24;:::i;:::-;40508:33;;40563:66;40556:5;40553:77;40550:103;;;40633:18;;:::i;:::-;40550:103;40680:1;40673:5;40669:13;40662:20;;40455:233;;;:::o;40694:176::-;40726:1;40743:20;40761:1;40743:20;:::i;:::-;40738:25;;40777:20;40795:1;40777:20;:::i;:::-;40772:25;;40816:1;40806:35;;40821:18;;:::i;:::-;40806:35;40862:1;40859;40855:9;40850:14;;40694:176;;;;:::o;40876:180::-;40924:77;40921:1;40914:88;41021:4;41018:1;41011:15;41045:4;41042:1;41035:15;41062:180;41110:77;41107:1;41100:88;41207:4;41204:1;41197:15;41231:4;41228:1;41221:15;41248:180;41296:77;41293:1;41286:88;41393:4;41390:1;41383:15;41417:4;41414:1;41407:15;41434:180;41482:77;41479:1;41472:88;41579:4;41576:1;41569:15;41603:4;41600:1;41593:15;41620:180;41668:77;41665:1;41658:88;41765:4;41762:1;41755:15;41789:4;41786:1;41779:15;41806:117;41915:1;41912;41905:12;41929:117;42038:1;42035;42028:12;42052:117;42161:1;42158;42151:12;42175:117;42284:1;42281;42274:12;42298:117;42407:1;42404;42397:12;42421:117;42530:1;42527;42520:12;42544:102;42585:6;42636:2;42632:7;42627:2;42620:5;42616:14;42612:28;42602:38;;42544:102;;;:::o;42652:221::-;42792:34;42788:1;42780:6;42776:14;42769:58;42861:4;42856:2;42848:6;42844:15;42837:29;42652:221;:::o;42879:171::-;43019:23;43015:1;43007:6;43003:14;42996:47;42879:171;:::o;43056:225::-;43196:34;43192:1;43184:6;43180:14;43173:58;43265:8;43260:2;43252:6;43248:15;43241:33;43056:225;:::o;43287:229::-;43427:34;43423:1;43415:6;43411:14;43404:58;43496:12;43491:2;43483:6;43479:15;43472:37;43287:229;:::o;43522:231::-;43662:34;43658:1;43650:6;43646:14;43639:58;43731:14;43726:2;43718:6;43714:15;43707:39;43522:231;:::o;43759:222::-;43899:34;43895:1;43887:6;43883:14;43876:58;43968:5;43963:2;43955:6;43951:15;43944:30;43759:222;:::o;43987:224::-;44127:34;44123:1;44115:6;44111:14;44104:58;44196:7;44191:2;44183:6;44179:15;44172:32;43987:224;:::o;44217:236::-;44357:34;44353:1;44345:6;44341:14;44334:58;44426:19;44421:2;44413:6;44409:15;44402:44;44217:236;:::o;44459:180::-;44599:32;44595:1;44587:6;44583:14;44576:56;44459:180;:::o;44645:244::-;44785:34;44781:1;44773:6;44769:14;44762:58;44854:27;44849:2;44841:6;44837:15;44830:52;44645:244;:::o;44895:174::-;45035:26;45031:1;45023:6;45019:14;45012:50;44895:174;:::o;45075:177::-;45215:29;45211:1;45203:6;45199:14;45192:53;45075:177;:::o;45258:168::-;45398:20;45394:1;45386:6;45382:14;45375:44;45258:168;:::o;45432:230::-;45572:34;45568:1;45560:6;45556:14;45549:58;45641:13;45636:2;45628:6;45624:15;45617:38;45432:230;:::o;45668:225::-;45808:34;45804:1;45796:6;45792:14;45785:58;45877:8;45872:2;45864:6;45860:15;45853:33;45668:225;:::o;45899:182::-;46039:34;46035:1;46027:6;46023:14;46016:58;45899:182;:::o;46087:234::-;46227:34;46223:1;46215:6;46211:14;46204:58;46296:17;46291:2;46283:6;46279:15;46272:42;46087:234;:::o;46327:176::-;46467:28;46463:1;46455:6;46451:14;46444:52;46327:176;:::o;46509:237::-;46649:34;46645:1;46637:6;46633:14;46626:58;46718:20;46713:2;46705:6;46701:15;46694:45;46509:237;:::o;46752:168::-;46892:20;46888:1;46880:6;46876:14;46869:44;46752:168;:::o;46926:221::-;47066:34;47062:1;47054:6;47050:14;47043:58;47135:4;47130:2;47122:6;47118:15;47111:29;46926:221;:::o;47153:238::-;47293:34;47289:1;47281:6;47277:14;47270:58;47362:21;47357:2;47349:6;47345:15;47338:46;47153:238;:::o;47397:179::-;47537:31;47533:1;47525:6;47521:14;47514:55;47397:179;:::o;47582:220::-;47722:34;47718:1;47710:6;47706:14;47699:58;47791:3;47786:2;47778:6;47774:15;47767:28;47582:220;:::o;47808:233::-;47948:34;47944:1;47936:6;47932:14;47925:58;48017:16;48012:2;48004:6;48000:15;47993:41;47808:233;:::o;48047:225::-;48187:34;48183:1;48175:6;48171:14;48164:58;48256:8;48251:2;48243:6;48239:15;48232:33;48047:225;:::o;48278:169::-;48418:21;48414:1;48406:6;48402:14;48395:45;48278:169;:::o;48453:234::-;48593:34;48589:1;48581:6;48577:14;48570:58;48662:17;48657:2;48649:6;48645:15;48638:42;48453:234;:::o;48693:232::-;48833:34;48829:1;48821:6;48817:14;48810:58;48902:15;48897:2;48889:6;48885:15;48878:40;48693:232;:::o;48931:221::-;49071:34;49067:1;49059:6;49055:14;49048:58;49140:4;49135:2;49127:6;49123:15;49116:29;48931:221;:::o;49158:122::-;49231:24;49249:5;49231:24;:::i;:::-;49224:5;49221:35;49211:63;;49270:1;49267;49260:12;49211:63;49158:122;:::o;49286:116::-;49356:21;49371:5;49356:21;:::i;:::-;49349:5;49346:32;49336:60;;49392:1;49389;49382:12;49336:60;49286:116;:::o;49408:120::-;49480:23;49497:5;49480:23;:::i;:::-;49473:5;49470:34;49460:62;;49518:1;49515;49508:12;49460:62;49408:120;:::o;49534:122::-;49607:24;49625:5;49607:24;:::i;:::-;49600:5;49597:35;49587:63;;49646:1;49643;49636:12;49587:63;49534:122;:::o

Swarm Source

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