ETH Price: $3,300.16 (-3.49%)
Gas: 12 Gwei

Token

Chick'n Kimono (CNK)
 

Overview

Max Total Supply

3,000 CNK

Holders

442

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 CNK
0x5Ff658b5aaEAB209dF2824dc771b0798de4770e6
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:
ChicknKimono

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-03
*/

// 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);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

// 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);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
            }
        }
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// 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);
    }
}

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @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(), ".json"))
        : "";
  }

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

  /**
   * @dev See {IERC721-isApprovedForAll}.
   */
  function isApprovedForAll(address owner, address operator)
    public
    view
    virtual
    override
    returns (bool)
  {
    return _operatorApprovals[owner][operator];
  }

  /**
   * @dev See {IERC721-transferFrom}.
   */
  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

    // Clear approvals from the previous owner
    _approve(address(0), tokenId, prevOwnership.addr);

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

  /**
   * @dev Approve `to` to operate on `tokenId`
   *
   * Emits a {Approval} event.
   */
  function _approve(
    address to,
    uint256 tokenId,
    address owner
  ) private {
    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a contract.
   *
   * @param from address representing the previous owner of the given token ID
   * @param to target address that will receive the tokens
   * @param tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return bool whether the call correctly returned the expected magic value
   */
  function _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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(), "You are 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);
    }
}

pragma solidity ^0.8.7;

contract ChicknKimono is ERC721A, Ownable {
    uint256 public Chick_PRICE = 0.01 ether;
    uint256 public MAX_Chicks = 3000;
    uint256 public OwnerMint = 10;
    uint256 public MAX_MINTS = 8;
    string public baseURI = "";
    string public baseExtension = ".json";
     bool public paused = true;   
    
    constructor() ERC721A("Chick'n Kimono", "CNK", MAX_MINTS, MAX_Chicks) { 
        
    }
    

    function mint(uint256 numTokens) public payable {
        require(!paused, "Paused");
        require(numTokens > 0 && numTokens <= MAX_MINTS);
        require(totalSupply() + numTokens <= MAX_Chicks);
        require(msg.value >= numTokens * Chick_PRICE, "Invalid funds provided");
        _safeMint(msg.sender, numTokens);
    }
    function Ownermint(uint256 numTokens) public onlyOwner{
        require(totalSupply() + numTokens <= OwnerMint);
        _safeMint(msg.sender, numTokens);
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }
    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "That token doesn't exist");
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(_tokenId),
                        baseExtension
                    )
                )
                : "";
    }


    function setPrice(uint256 newPrice) public onlyOwner {
        Chick_PRICE = newPrice;
    }

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

    function withdraw() public onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Chick_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_Chicks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OwnerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"Ownermint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60008080556007819055662386f26fc10000600955610bb8600a908155600b556008600c5560e0604081905260c08290526200003f91600d91906200023d565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200006e91600e916200023d565b50600f805460ff191660011790553480156200008957600080fd5b506040518060400160405280600e81526020016d436869636b276e204b696d6f6e6f60901b81525060405180604001604052806003815260200162434e4b60e81b815250600c54600a5460008111620001405760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001a25760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000137565b8351620001b79060019060208701906200023d565b508251620001cd9060029060208601906200023d565b5060a09190915260805250620001e5905033620001eb565b62000320565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200024b90620002e3565b90600052602060002090601f0160209004810192826200026f5760008555620002ba565b82601f106200028a57805160ff1916838001178555620002ba565b82800160010185558215620002ba579182015b82811115620002ba5782518255916020019190600101906200029d565b50620002c8929150620002cc565b5090565b5b80821115620002c85760008155600101620002cd565b600181811c90821680620002f857607f821691505b602082108114156200031a57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161227e62000351600039600081816114e801528181611512015261194501526000505061227e6000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063b88d4fde116100a0578063cce132d11161006f578063cce132d114610543578063d668331b14610559578063d7224ba01461056f578063e985e9c514610585578063f2fde38b146105ce57600080fd5b8063b88d4fde146104ce578063c6119f30146104ee578063c66828621461050e578063c87b56dd1461052357600080fd5b806391b7f5ed116100dc57806391b7f5ed1461046657806395d89b4114610486578063a0712d681461049b578063a22cb465146104ae57600080fd5b80636c0360eb146103fe57806370a0823114610413578063715018a6146104335780638da5cb5b1461044857600080fd5b80633ccfd60b1161018557806355f225161161015457806355f225161461038e57806355f804b3146103a45780635c975abb146103c45780636352211e146103de57600080fd5b80633ccfd60b146103235780633cfbab7e1461033857806342842e0e1461034e5780634f6ccce71461036e57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806318160ddd146102c457806323b872dd146102e35780632f745c591461030357600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611e11565b6105ee565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611df6565b61065b565b005b34801561025657600080fd5b5061025f6106a1565b60405161021f9190611fe3565b34801561027857600080fd5b5061028c610287366004611e94565b610733565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611dcc565b6107be565b3480156102d057600080fd5b506000545b60405190815260200161021f565b3480156102ef57600080fd5b506102486102fe366004611cea565b6108d6565b34801561030f57600080fd5b506102d561031e366004611dcc565b6108e1565b34801561032f57600080fd5b50610248610a4f565b34801561034457600080fd5b506102d5600b5481565b34801561035a57600080fd5b50610248610369366004611cea565b610a9f565b34801561037a57600080fd5b506102d5610389366004611e94565b610aba565b34801561039a57600080fd5b506102d560095481565b3480156103b057600080fd5b506102486103bf366004611e4b565b610b1c565b3480156103d057600080fd5b50600f546102139060ff1681565b3480156103ea57600080fd5b5061028c6103f9366004611e94565b610b5d565b34801561040a57600080fd5b5061025f610b6f565b34801561041f57600080fd5b506102d561042e366004611c95565b610bfd565b34801561043f57600080fd5b50610248610c8e565b34801561045457600080fd5b506008546001600160a01b031661028c565b34801561047257600080fd5b50610248610481366004611e94565b610cc2565b34801561049257600080fd5b5061025f610cf1565b6102486104a9366004611e94565b610d00565b3480156104ba57600080fd5b506102486104c9366004611da2565b610ddb565b3480156104da57600080fd5b506102486104e9366004611d26565b610ea0565b3480156104fa57600080fd5b50610248610509366004611e94565b610ed9565b34801561051a57600080fd5b5061025f610f25565b34801561052f57600080fd5b5061025f61053e366004611e94565b610f32565b34801561054f57600080fd5b506102d5600c5481565b34801561056557600080fd5b506102d5600a5481565b34801561057b57600080fd5b506102d560075481565b34801561059157600080fd5b506102136105a0366004611cb7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105da57600080fd5b506102486105e9366004611c95565b610fea565b60006001600160e01b031982166380ac58cd60e01b148061061f57506001600160e01b03198216635b5e139f60e01b145b8061063a57506001600160e01b0319821663780e9d6360e01b145b8061065557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461068e5760405162461bcd60e51b815260040161068590611ff6565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600180546106b090612170565b80601f01602080910402602001604051908101604052809291908181526020018280546106dc90612170565b80156107295780601f106106fe57610100808354040283529160200191610729565b820191906000526020600020905b81548152906001019060200180831161070c57829003601f168201915b5050505050905090565b6000610740826000541190565b6107a25760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610685565b506000908152600560205260409020546001600160a01b031690565b60006107c982610b5d565b9050806001600160a01b0316836001600160a01b031614156108385760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610685565b336001600160a01b0382161480610854575061085481336105a0565b6108c65760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610685565b6108d1838383611082565b505050565b6108d18383836110de565b60006108ec83610bfd565b82106109455760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610685565b600080549080805b838110156109ef576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109a057805192505b876001600160a01b0316836001600160a01b031614156109dc57868414156109ce5750935061065592505050565b836109d8816121ab565b9450505b50806109e7816121ab565b91505061094d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610685565b6008546001600160a01b03163314610a795760405162461bcd60e51b815260040161068590611ff6565b60405133904780156108fc02916000818181858888f19350505050610a9d57600080fd5b565b6108d183838360405180602001604052806000815250610ea0565b600080548210610b185760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610685565b5090565b6008546001600160a01b03163314610b465760405162461bcd60e51b815260040161068590611ff6565b8051610b5990600d906020840190611b63565b5050565b6000610b6882611466565b5192915050565b600d8054610b7c90612170565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba890612170565b8015610bf55780601f10610bca57610100808354040283529160200191610bf5565b820191906000526020600020905b815481529060010190602001808311610bd857829003601f168201915b505050505081565b60006001600160a01b038216610c695760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610685565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610cb85760405162461bcd60e51b815260040161068590611ff6565b610a9d6000611610565b6008546001600160a01b03163314610cec5760405162461bcd60e51b815260040161068590611ff6565b600955565b6060600280546106b090612170565b600f5460ff1615610d3c5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610685565b600081118015610d4e5750600c548111155b610d5757600080fd5b600a5481610d6460005490565b610d6e91906120a3565b1115610d7957600080fd5b600954610d8690826120cf565b341015610dce5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610685565b610dd83382611662565b50565b6001600160a01b038216331415610e345760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610685565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eab8484846110de565b610eb78484848461167c565b610ed35760405162461bcd60e51b815260040161068590612025565b50505050565b6008546001600160a01b03163314610f035760405162461bcd60e51b815260040161068590611ff6565b600b5481610f1060005490565b610f1a91906120a3565b1115610dce57600080fd5b600e8054610b7c90612170565b6060610f3f826000541190565b610f8b5760405162461bcd60e51b815260206004820152601860248201527f5468617420746f6b656e20646f65736e277420657869737400000000000000006044820152606401610685565b6000600d8054610f9a90612170565b905011610fb65760405180602001604052806000815250610655565b600d610fc18361178a565b600e604051602001610fd593929190611f73565b60405160208183030381529060405292915050565b6008546001600160a01b031633146110145760405162461bcd60e51b815260040161068590611ff6565b6001600160a01b0381166110795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610685565b610dd881611610565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110e982611466565b80519091506000906001600160a01b0316336001600160a01b0316148061112057503361111584610733565b6001600160a01b0316145b806111325750815161113290336105a0565b90508061119c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610685565b846001600160a01b031682600001516001600160a01b0316146112105760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610685565b6001600160a01b0384166112745760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610685565b6112846000848460000151611082565b6001600160a01b03851660009081526004602052604081208054600192906112b69084906001600160801b03166120ee565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261130291859116612078565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561138a8460016120a3565b6000818152600360205260409020549091506001600160a01b031661141c576113b4816000541190565b1561141c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611485826000541190565b6114e45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610685565b60007f00000000000000000000000000000000000000000000000000000000000000008310611545576115377f000000000000000000000000000000000000000000000000000000000000000084612116565b6115429060016120a3565b90505b825b8181106115af576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561159c57949350505050565b50806115a781612159565b915050611547565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610685565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b59828260405180602001604052806000815250611888565b60006001600160a01b0384163b1561177e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116c0903390899088908890600401611fa6565b602060405180830381600087803b1580156116da57600080fd5b505af192505050801561170a575060408051601f3d908101601f1916820190925261170791810190611e2e565b60015b611764573d808015611738576040519150601f19603f3d011682016040523d82523d6000602084013e61173d565b606091505b50805161175c5760405162461bcd60e51b815260040161068590612025565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611782565b5060015b949350505050565b6060816117ae5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117d857806117c2816121ab565b91506117d19050600a836120bb565b91506117b2565b60008167ffffffffffffffff8111156117f3576117f361221c565b6040519080825280601f01601f19166020018201604052801561181d576020820181803683370190505b5090505b841561178257611832600183612116565b915061183f600a866121c6565b61184a9060306120a3565b60f81b81838151811061185f5761185f612206565b60200101906001600160f81b031916908160001a905350611881600a866120bb565b9450611821565b6000546001600160a01b0384166118eb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610685565b6118f6816000541190565b156119435760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610685565b7f00000000000000000000000000000000000000000000000000000000000000008311156119be5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610685565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611a1a908790612078565b6001600160801b03168152602001858360200151611a389190612078565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611b585760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b1c600088848861167c565b611b385760405162461bcd60e51b815260040161068590612025565b81611b42816121ab565b9250508080611b50906121ab565b915050611acf565b50600081905561145e565b828054611b6f90612170565b90600052602060002090601f016020900481019282611b915760008555611bd7565b82601f10611baa57805160ff1916838001178555611bd7565b82800160010185558215611bd7579182015b82811115611bd7578251825591602001919060010190611bbc565b50610b189291505b80821115610b185760008155600101611bdf565b600067ffffffffffffffff80841115611c0e57611c0e61221c565b604051601f8501601f19908116603f01168101908282118183101715611c3657611c3661221c565b81604052809350858152868686011115611c4f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c8057600080fd5b919050565b80358015158114611c8057600080fd5b600060208284031215611ca757600080fd5b611cb082611c69565b9392505050565b60008060408385031215611cca57600080fd5b611cd383611c69565b9150611ce160208401611c69565b90509250929050565b600080600060608486031215611cff57600080fd5b611d0884611c69565b9250611d1660208501611c69565b9150604084013590509250925092565b60008060008060808587031215611d3c57600080fd5b611d4585611c69565b9350611d5360208601611c69565b925060408501359150606085013567ffffffffffffffff811115611d7657600080fd5b8501601f81018713611d8757600080fd5b611d9687823560208401611bf3565b91505092959194509250565b60008060408385031215611db557600080fd5b611dbe83611c69565b9150611ce160208401611c85565b60008060408385031215611ddf57600080fd5b611de883611c69565b946020939093013593505050565b600060208284031215611e0857600080fd5b611cb082611c85565b600060208284031215611e2357600080fd5b8135611cb081612232565b600060208284031215611e4057600080fd5b8151611cb081612232565b600060208284031215611e5d57600080fd5b813567ffffffffffffffff811115611e7457600080fd5b8201601f81018413611e8557600080fd5b61178284823560208401611bf3565b600060208284031215611ea657600080fd5b5035919050565b60008151808452611ec581602086016020860161212d565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611ef357607f831692505b6020808410821415611f1557634e487b7160e01b600052602260045260246000fd5b818015611f295760018114611f3a57611f67565b60ff19861689528489019650611f67565b60008881526020902060005b86811015611f5f5781548b820152908501908301611f46565b505084890196505b50505050505092915050565b6000611f7f8286611ed9565b8451611f8f81836020890161212d565b611f9b81830186611ed9565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fd990830184611ead565b9695505050505050565b602081526000611cb06020830184611ead565b6020808252601590820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561209a5761209a6121da565b01949350505050565b600082198211156120b6576120b66121da565b500190565b6000826120ca576120ca6121f0565b500490565b60008160001904831182151516156120e9576120e96121da565b500290565b60006001600160801b038381169083168181101561210e5761210e6121da565b039392505050565b600082821015612128576121286121da565b500390565b60005b83811015612148578181015183820152602001612130565b83811115610ed35750506000910152565b600081612168576121686121da565b506000190190565b600181811c9082168061218457607f821691505b602082108114156121a557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121bf576121bf6121da565b5060010190565b6000826121d5576121d56121f0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dd857600080fdfea26469706673582212208c9774d0fedc67fa576d4020dab378c1d537625af19916c099c71ce1d42b1fca64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063b88d4fde116100a0578063cce132d11161006f578063cce132d114610543578063d668331b14610559578063d7224ba01461056f578063e985e9c514610585578063f2fde38b146105ce57600080fd5b8063b88d4fde146104ce578063c6119f30146104ee578063c66828621461050e578063c87b56dd1461052357600080fd5b806391b7f5ed116100dc57806391b7f5ed1461046657806395d89b4114610486578063a0712d681461049b578063a22cb465146104ae57600080fd5b80636c0360eb146103fe57806370a0823114610413578063715018a6146104335780638da5cb5b1461044857600080fd5b80633ccfd60b1161018557806355f225161161015457806355f225161461038e57806355f804b3146103a45780635c975abb146103c45780636352211e146103de57600080fd5b80633ccfd60b146103235780633cfbab7e1461033857806342842e0e1461034e5780634f6ccce71461036e57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806318160ddd146102c457806323b872dd146102e35780632f745c591461030357600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611e11565b6105ee565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611df6565b61065b565b005b34801561025657600080fd5b5061025f6106a1565b60405161021f9190611fe3565b34801561027857600080fd5b5061028c610287366004611e94565b610733565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611dcc565b6107be565b3480156102d057600080fd5b506000545b60405190815260200161021f565b3480156102ef57600080fd5b506102486102fe366004611cea565b6108d6565b34801561030f57600080fd5b506102d561031e366004611dcc565b6108e1565b34801561032f57600080fd5b50610248610a4f565b34801561034457600080fd5b506102d5600b5481565b34801561035a57600080fd5b50610248610369366004611cea565b610a9f565b34801561037a57600080fd5b506102d5610389366004611e94565b610aba565b34801561039a57600080fd5b506102d560095481565b3480156103b057600080fd5b506102486103bf366004611e4b565b610b1c565b3480156103d057600080fd5b50600f546102139060ff1681565b3480156103ea57600080fd5b5061028c6103f9366004611e94565b610b5d565b34801561040a57600080fd5b5061025f610b6f565b34801561041f57600080fd5b506102d561042e366004611c95565b610bfd565b34801561043f57600080fd5b50610248610c8e565b34801561045457600080fd5b506008546001600160a01b031661028c565b34801561047257600080fd5b50610248610481366004611e94565b610cc2565b34801561049257600080fd5b5061025f610cf1565b6102486104a9366004611e94565b610d00565b3480156104ba57600080fd5b506102486104c9366004611da2565b610ddb565b3480156104da57600080fd5b506102486104e9366004611d26565b610ea0565b3480156104fa57600080fd5b50610248610509366004611e94565b610ed9565b34801561051a57600080fd5b5061025f610f25565b34801561052f57600080fd5b5061025f61053e366004611e94565b610f32565b34801561054f57600080fd5b506102d5600c5481565b34801561056557600080fd5b506102d5600a5481565b34801561057b57600080fd5b506102d560075481565b34801561059157600080fd5b506102136105a0366004611cb7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105da57600080fd5b506102486105e9366004611c95565b610fea565b60006001600160e01b031982166380ac58cd60e01b148061061f57506001600160e01b03198216635b5e139f60e01b145b8061063a57506001600160e01b0319821663780e9d6360e01b145b8061065557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461068e5760405162461bcd60e51b815260040161068590611ff6565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600180546106b090612170565b80601f01602080910402602001604051908101604052809291908181526020018280546106dc90612170565b80156107295780601f106106fe57610100808354040283529160200191610729565b820191906000526020600020905b81548152906001019060200180831161070c57829003601f168201915b5050505050905090565b6000610740826000541190565b6107a25760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610685565b506000908152600560205260409020546001600160a01b031690565b60006107c982610b5d565b9050806001600160a01b0316836001600160a01b031614156108385760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610685565b336001600160a01b0382161480610854575061085481336105a0565b6108c65760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610685565b6108d1838383611082565b505050565b6108d18383836110de565b60006108ec83610bfd565b82106109455760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610685565b600080549080805b838110156109ef576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109a057805192505b876001600160a01b0316836001600160a01b031614156109dc57868414156109ce5750935061065592505050565b836109d8816121ab565b9450505b50806109e7816121ab565b91505061094d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610685565b6008546001600160a01b03163314610a795760405162461bcd60e51b815260040161068590611ff6565b60405133904780156108fc02916000818181858888f19350505050610a9d57600080fd5b565b6108d183838360405180602001604052806000815250610ea0565b600080548210610b185760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610685565b5090565b6008546001600160a01b03163314610b465760405162461bcd60e51b815260040161068590611ff6565b8051610b5990600d906020840190611b63565b5050565b6000610b6882611466565b5192915050565b600d8054610b7c90612170565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba890612170565b8015610bf55780601f10610bca57610100808354040283529160200191610bf5565b820191906000526020600020905b815481529060010190602001808311610bd857829003601f168201915b505050505081565b60006001600160a01b038216610c695760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610685565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610cb85760405162461bcd60e51b815260040161068590611ff6565b610a9d6000611610565b6008546001600160a01b03163314610cec5760405162461bcd60e51b815260040161068590611ff6565b600955565b6060600280546106b090612170565b600f5460ff1615610d3c5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610685565b600081118015610d4e5750600c548111155b610d5757600080fd5b600a5481610d6460005490565b610d6e91906120a3565b1115610d7957600080fd5b600954610d8690826120cf565b341015610dce5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b6044820152606401610685565b610dd83382611662565b50565b6001600160a01b038216331415610e345760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610685565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eab8484846110de565b610eb78484848461167c565b610ed35760405162461bcd60e51b815260040161068590612025565b50505050565b6008546001600160a01b03163314610f035760405162461bcd60e51b815260040161068590611ff6565b600b5481610f1060005490565b610f1a91906120a3565b1115610dce57600080fd5b600e8054610b7c90612170565b6060610f3f826000541190565b610f8b5760405162461bcd60e51b815260206004820152601860248201527f5468617420746f6b656e20646f65736e277420657869737400000000000000006044820152606401610685565b6000600d8054610f9a90612170565b905011610fb65760405180602001604052806000815250610655565b600d610fc18361178a565b600e604051602001610fd593929190611f73565b60405160208183030381529060405292915050565b6008546001600160a01b031633146110145760405162461bcd60e51b815260040161068590611ff6565b6001600160a01b0381166110795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610685565b610dd881611610565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110e982611466565b80519091506000906001600160a01b0316336001600160a01b0316148061112057503361111584610733565b6001600160a01b0316145b806111325750815161113290336105a0565b90508061119c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610685565b846001600160a01b031682600001516001600160a01b0316146112105760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610685565b6001600160a01b0384166112745760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610685565b6112846000848460000151611082565b6001600160a01b03851660009081526004602052604081208054600192906112b69084906001600160801b03166120ee565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261130291859116612078565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561138a8460016120a3565b6000818152600360205260409020549091506001600160a01b031661141c576113b4816000541190565b1561141c5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611485826000541190565b6114e45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610685565b60007f00000000000000000000000000000000000000000000000000000000000000088310611545576115377f000000000000000000000000000000000000000000000000000000000000000884612116565b6115429060016120a3565b90505b825b8181106115af576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561159c57949350505050565b50806115a781612159565b915050611547565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610685565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b59828260405180602001604052806000815250611888565b60006001600160a01b0384163b1561177e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116c0903390899088908890600401611fa6565b602060405180830381600087803b1580156116da57600080fd5b505af192505050801561170a575060408051601f3d908101601f1916820190925261170791810190611e2e565b60015b611764573d808015611738576040519150601f19603f3d011682016040523d82523d6000602084013e61173d565b606091505b50805161175c5760405162461bcd60e51b815260040161068590612025565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611782565b5060015b949350505050565b6060816117ae5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117d857806117c2816121ab565b91506117d19050600a836120bb565b91506117b2565b60008167ffffffffffffffff8111156117f3576117f361221c565b6040519080825280601f01601f19166020018201604052801561181d576020820181803683370190505b5090505b841561178257611832600183612116565b915061183f600a866121c6565b61184a9060306120a3565b60f81b81838151811061185f5761185f612206565b60200101906001600160f81b031916908160001a905350611881600a866120bb565b9450611821565b6000546001600160a01b0384166118eb5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610685565b6118f6816000541190565b156119435760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610685565b7f00000000000000000000000000000000000000000000000000000000000000088311156119be5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610685565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611a1a908790612078565b6001600160801b03168152602001858360200151611a389190612078565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611b585760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b1c600088848861167c565b611b385760405162461bcd60e51b815260040161068590612025565b81611b42816121ab565b9250508080611b50906121ab565b915050611acf565b50600081905561145e565b828054611b6f90612170565b90600052602060002090601f016020900481019282611b915760008555611bd7565b82601f10611baa57805160ff1916838001178555611bd7565b82800160010185558215611bd7579182015b82811115611bd7578251825591602001919060010190611bbc565b50610b189291505b80821115610b185760008155600101611bdf565b600067ffffffffffffffff80841115611c0e57611c0e61221c565b604051601f8501601f19908116603f01168101908282118183101715611c3657611c3661221c565b81604052809350858152868686011115611c4f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c8057600080fd5b919050565b80358015158114611c8057600080fd5b600060208284031215611ca757600080fd5b611cb082611c69565b9392505050565b60008060408385031215611cca57600080fd5b611cd383611c69565b9150611ce160208401611c69565b90509250929050565b600080600060608486031215611cff57600080fd5b611d0884611c69565b9250611d1660208501611c69565b9150604084013590509250925092565b60008060008060808587031215611d3c57600080fd5b611d4585611c69565b9350611d5360208601611c69565b925060408501359150606085013567ffffffffffffffff811115611d7657600080fd5b8501601f81018713611d8757600080fd5b611d9687823560208401611bf3565b91505092959194509250565b60008060408385031215611db557600080fd5b611dbe83611c69565b9150611ce160208401611c85565b60008060408385031215611ddf57600080fd5b611de883611c69565b946020939093013593505050565b600060208284031215611e0857600080fd5b611cb082611c85565b600060208284031215611e2357600080fd5b8135611cb081612232565b600060208284031215611e4057600080fd5b8151611cb081612232565b600060208284031215611e5d57600080fd5b813567ffffffffffffffff811115611e7457600080fd5b8201601f81018413611e8557600080fd5b61178284823560208401611bf3565b600060208284031215611ea657600080fd5b5035919050565b60008151808452611ec581602086016020860161212d565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611ef357607f831692505b6020808410821415611f1557634e487b7160e01b600052602260045260246000fd5b818015611f295760018114611f3a57611f67565b60ff19861689528489019650611f67565b60008881526020902060005b86811015611f5f5781548b820152908501908301611f46565b505084890196505b50505050505092915050565b6000611f7f8286611ed9565b8451611f8f81836020890161212d565b611f9b81830186611ed9565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fd990830184611ead565b9695505050505050565b602081526000611cb06020830184611ead565b6020808252601590820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561209a5761209a6121da565b01949350505050565b600082198211156120b6576120b66121da565b500190565b6000826120ca576120ca6121f0565b500490565b60008160001904831182151516156120e9576120e96121da565b500290565b60006001600160801b038381169083168181101561210e5761210e6121da565b039392505050565b600082821015612128576121286121da565b500390565b60005b83811015612148578181015183820152602001612130565b83811115610ed35750506000910152565b600081612168576121686121da565b506000190190565b600181811c9082168061218457607f821691505b602082108114156121a557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121bf576121bf6121da565b5060010190565b6000826121d5576121d56121f0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dd857600080fdfea26469706673582212208c9774d0fedc67fa576d4020dab378c1d537625af19916c099c71ce1d42b1fca64736f6c63430008070033

Deployed Bytecode Sourcemap

40326:1983:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25464:370;;;;;;;;;;-1:-1:-1;25464:370:0;;;;;:::i;:::-;;:::i;:::-;;;6867:14:1;;6860:22;6842:41;;6830:2;6815:18;25464:370:0;;;;;;;;41266:79;;;;;;;;;;-1:-1:-1;41266:79:0;;;;;:::i;:::-;;:::i;:::-;;27190:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28724:204::-;;;;;;;;;;-1:-1:-1;28724:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6165:32:1;;;6147:51;;6135:2;6120:18;28724:204:0;6001:203:1;28287:379:0;;;;;;;;;;-1:-1:-1;28287:379:0;;;;;:::i;:::-;;:::i;24025:94::-;;;;;;;;;;-1:-1:-1;24078:7:0;24101:12;24025:94;;;15933:25:1;;;15921:2;15906:18;24025:94:0;15787:177:1;29574:142:0;;;;;;;;;;-1:-1:-1;29574:142:0;;;;;:::i;:::-;;:::i;24656:744::-;;;;;;;;;;-1:-1:-1;24656:744:0;;;;;:::i;:::-;;:::i;42194:112::-;;;;;;;;;;;;;:::i;40460:29::-;;;;;;;;;;;;;;;;29779:157;;;;;;;;;;-1:-1:-1;29779:157:0;;;;;:::i;:::-;;:::i;24188:177::-;;;;;;;;;;-1:-1:-1;24188:177:0;;;;;:::i;:::-;;:::i;40375:39::-;;;;;;;;;;;;;;;;41351:102;;;;;;;;;;-1:-1:-1;41351:102:0;;;;;:::i;:::-;;:::i;40609:25::-;;;;;;;;;;-1:-1:-1;40609:25:0;;;;;;;;27013:118;;;;;;;;;;-1:-1:-1;27013:118:0;;;;;:::i;:::-;;:::i;40531:26::-;;;;;;;;;;;;;:::i;25890:211::-;;;;;;;;;;-1:-1:-1;25890:211:0;;;;;:::i;:::-;;:::i;39445:103::-;;;;;;;;;;;;;:::i;38805:87::-;;;;;;;;;;-1:-1:-1;38878:6:0;;-1:-1:-1;;;;;38878:6:0;38805:87;;41976:94;;;;;;;;;;-1:-1:-1;41976:94:0;;;;;:::i;:::-;;:::i;27345:98::-;;;;;;;;;;;;;:::i;40753:336::-;;;;;;:::i;:::-;;:::i;28992:274::-;;;;;;;;;;-1:-1:-1;28992:274:0;;;;;:::i;:::-;;:::i;29999:311::-;;;;;;;;;;-1:-1:-1;29999:311:0;;;;;:::i;:::-;;:::i;41095:163::-;;;;;;;;;;-1:-1:-1;41095:163:0;;;;;:::i;:::-;;:::i;40564:37::-;;;;;;;;;;;;;:::i;41459:507::-;;;;;;;;;;-1:-1:-1;41459:507:0;;;;;:::i;:::-;;:::i;40496:28::-;;;;;;;;;;;;;;;;40421:32;;;;;;;;;;;;;;;;34414:43;;;;;;;;;;;;;;;;29329:186;;;;;;;;;;-1:-1:-1;29329:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;29474:25:0;;;29451:4;29474:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29329:186;39703:238;;;;;;;;;;-1:-1:-1;39703:238:0;;;;;:::i;:::-;;:::i;25464:370::-;25591:4;-1:-1:-1;;;;;;25621:40:0;;-1:-1:-1;;;25621:40:0;;:99;;-1:-1:-1;;;;;;;25672:48:0;;-1:-1:-1;;;25672:48:0;25621:99;:160;;;-1:-1:-1;;;;;;;25731:50:0;;-1:-1:-1;;;25731:50:0;25621:160;:207;;;-1:-1:-1;;;;;;;;;;9195:40:0;;;25792:36;25607:221;25464:370;-1:-1:-1;;25464:370:0:o;41266:79::-;38878:6;;-1:-1:-1;;;;;38878:6:0;18515:10;39025:23;39017:57;;;;-1:-1:-1;;;39017:57:0;;;;;;;:::i;:::-;;;;;;;;;41322:6:::1;:15:::0;;-1:-1:-1;;41322:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41266:79::o;27190:94::-;27244:13;27273:5;27266:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27190:94;:::o;28724:204::-;28792:7;28816:16;28824:7;30606:4;30636:12;-1:-1:-1;30626:22:0;30549:105;28816:16;28808:74;;;;-1:-1:-1;;;28808:74:0;;15172:2:1;28808:74:0;;;15154:21:1;15211:2;15191:18;;;15184:30;15250:34;15230:18;;;15223:62;-1:-1:-1;;;15301:18:1;;;15294:43;15354:19;;28808:74:0;14970:409:1;28808:74:0;-1:-1:-1;28898:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28898:24:0;;28724:204::o;28287:379::-;28356:13;28372:24;28388:7;28372:15;:24::i;:::-;28356:40;;28417:5;-1:-1:-1;;;;;28411:11:0;:2;-1:-1:-1;;;;;28411:11:0;;;28403:58;;;;-1:-1:-1;;;28403:58:0;;12758:2:1;28403:58:0;;;12740:21:1;12797:2;12777:18;;;12770:30;12836:34;12816:18;;;12809:62;-1:-1:-1;;;12887:18:1;;;12880:32;12929:19;;28403:58:0;12556:398:1;28403:58:0;18515:10;-1:-1:-1;;;;;28486:21:0;;;;:62;;-1:-1:-1;28511:37:0;28528:5;18515:10;29329:186;:::i;28511:37::-;28470:153;;;;-1:-1:-1;;;28470:153:0;;10035:2:1;28470:153:0;;;10017:21:1;10074:2;10054:18;;;10047:30;10113:34;10093:18;;;10086:62;10184:27;10164:18;;;10157:55;10229:19;;28470:153:0;9833:421:1;28470:153:0;28632:28;28641:2;28645:7;28654:5;28632:8;:28::i;:::-;28349:317;28287:379;;:::o;29574:142::-;29682:28;29692:4;29698:2;29702:7;29682:9;:28::i;24656:744::-;24765:7;24800:16;24810:5;24800:9;:16::i;:::-;24792:5;:24;24784:71;;;;-1:-1:-1;;;24784:71:0;;7320:2:1;24784:71:0;;;7302:21:1;7359:2;7339:18;;;7332:30;7398:34;7378:18;;;7371:62;-1:-1:-1;;;7449:18:1;;;7442:32;7491:19;;24784:71:0;7118:398:1;24784:71:0;24862:22;24101:12;;;24862:22;;24982:350;25006:14;25002:1;:18;24982:350;;;25036:31;25070:14;;;:11;:14;;;;;;;;;25036:48;;;;;;;;;-1:-1:-1;;;;;25036:48:0;;;;;-1:-1:-1;;;25036:48:0;;;;;;;;;;;;25097:28;25093:89;;25158:14;;;-1:-1:-1;25093:89:0;25215:5;-1:-1:-1;;;;;25194:26:0;:17;-1:-1:-1;;;;;25194:26:0;;25190:135;;;25252:5;25237:11;:20;25233:59;;;-1:-1:-1;25279:1:0;-1:-1:-1;25272:8:0;;-1:-1:-1;;;25272:8:0;25233:59;25302:13;;;;:::i;:::-;;;;25190:135;-1:-1:-1;25022:3:0;;;;:::i;:::-;;;;24982:350;;;-1:-1:-1;25338:56:0;;-1:-1:-1;;;25338:56:0;;14341:2:1;25338:56:0;;;14323:21:1;14380:2;14360:18;;;14353:30;14419:34;14399:18;;;14392:62;-1:-1:-1;;;14470:18:1;;;14463:44;14524:19;;25338:56:0;14139:410:1;42194:112:0;38878:6;;-1:-1:-1;;;;;38878:6:0;18515:10;39025:23;39017:57;;;;-1:-1:-1;;;39017:57:0;;;;;;;:::i;:::-;42250:47:::1;::::0;42258:10:::1;::::0;42275:21:::1;42250:47:::0;::::1;;;::::0;::::1;::::0;;;42275:21;42258:10;42250:47;::::1;;;;;;42242:56;;;::::0;::::1;;42194:112::o:0;29779:157::-;29891:39;29908:4;29914:2;29918:7;29891:39;;;;;;;;;;;;:16;:39::i;24188:177::-;24255:7;24101:12;;24279:5;:21;24271:69;;;;-1:-1:-1;;;24271:69:0;;8875:2:1;24271:69:0;;;8857:21:1;8914:2;8894:18;;;8887:30;8953:34;8933:18;;;8926:62;-1:-1:-1;;;9004:18:1;;;8997:33;9047:19;;24271:69:0;8673:399:1;24271:69:0;-1:-1:-1;24354:5:0;24188:177::o;41351:102::-;38878:6;;-1:-1:-1;;;;;38878:6:0;18515:10;39025:23;39017:57;;;;-1:-1:-1;;;39017:57:0;;;;;;;:::i;:::-;41425:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41351:102:::0;:::o;27013:118::-;27077:7;27100:20;27112:7;27100:11;:20::i;:::-;:25;;27013:118;-1:-1:-1;;27013:118:0:o;40531:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25890:211::-;25954:7;-1:-1:-1;;;;;25978:19:0;;25970:75;;;;-1:-1:-1;;;25970:75:0;;10461:2:1;25970:75:0;;;10443:21:1;10500:2;10480:18;;;10473:30;10539:34;10519:18;;;10512:62;-1:-1:-1;;;10590:18:1;;;10583:41;10641:19;;25970:75:0;10259:407:1;25970:75:0;-1:-1:-1;;;;;;26067:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26067:27:0;;25890:211::o;39445:103::-;38878:6;;-1:-1:-1;;;;;38878:6:0;18515:10;39025:23;39017:57;;;;-1:-1:-1;;;39017:57:0;;;;;;;:::i;:::-;39510:30:::1;39537:1;39510:18;:30::i;41976:94::-:0;38878:6;;-1:-1:-1;;;;;38878:6:0;18515:10;39025:23;39017:57;;;;-1:-1:-1;;;39017:57:0;;;;;;;:::i;:::-;42040:11:::1;:22:::0;41976:94::o;27345:98::-;27401:13;27430:7;27423:14;;;;;:::i;40753:336::-;40821:6;;;;40820:7;40812:26;;;;-1:-1:-1;;;40812:26:0;;7723:2:1;40812:26:0;;;7705:21:1;7762:1;7742:18;;;7735:29;-1:-1:-1;;;7780:18:1;;;7773:36;7826:18;;40812:26:0;7521:329:1;40812:26:0;40869:1;40857:9;:13;:39;;;;;40887:9;;40874;:22;;40857:39;40849:48;;;;;;40945:10;;40932:9;40916:13;24078:7;24101:12;;24025:94;40916:13;:25;;;;:::i;:::-;:39;;40908:48;;;;;;41000:11;;40988:23;;:9;:23;:::i;:::-;40975:9;:36;;40967:71;;;;-1:-1:-1;;;40967:71:0;;12407:2:1;40967:71:0;;;12389:21:1;12446:2;12426:18;;;12419:30;-1:-1:-1;;;12465:18:1;;;12458:52;12527:18;;40967:71:0;12205:346:1;40967:71:0;41049:32;41059:10;41071:9;41049;:32::i;:::-;40753:336;:::o;28992:274::-;-1:-1:-1;;;;;29083:24:0;;18515:10;29083:24;;29075:63;;;;-1:-1:-1;;;29075:63:0;;11633:2:1;29075:63:0;;;11615:21:1;11672:2;11652:18;;;11645:30;11711:28;11691:18;;;11684:56;11757:18;;29075:63:0;11431:350:1;29075:63:0;18515:10;29147:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29147:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29147:53:0;;;;;;;;;;29212:48;;6842:41:1;;;29147:42:0;;18515:10;29212:48;;6815:18:1;29212:48:0;;;;;;;28992:274;;:::o;29999:311::-;30136:28;30146:4;30152:2;30156:7;30136:9;:28::i;:::-;30187:48;30210:4;30216:2;30220:7;30229:5;30187:22;:48::i;:::-;30171:133;;;;-1:-1:-1;;;30171:133:0;;;;;;;:::i;:::-;29999:311;;;;:::o;41095:163::-;38878:6;;-1:-1:-1;;;;;38878:6:0;18515:10;39025:23;39017:57;;;;-1:-1:-1;;;39017:57:0;;;;;;;:::i;:::-;41197:9:::1;;41184;41168:13;24078:7:::0;24101:12;;24025:94;41168:13:::1;:25;;;;:::i;:::-;:38;;41160:47;;;::::0;::::1;40564:37:::0;;;;;;;:::i;41459:507::-;41561:13;41600:17;41608:8;30606:4;30636:12;-1:-1:-1;30626:22:0;30549:105;41600:17;41592:54;;;;-1:-1:-1;;;41592:54:0;;10873:2:1;41592:54:0;;;10855:21:1;10912:2;10892:18;;;10885:30;10951:26;10931:18;;;10924:54;10995:18;;41592:54:0;10671:348:1;41592:54:0;41701:1;41683:7;41677:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;41794:7;41828:26;41845:8;41828:16;:26::i;:::-;41881:13;41751:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41657:301;41459:507;-1:-1:-1;;41459:507:0:o;39703:238::-;38878:6;;-1:-1:-1;;;;;38878:6:0;18515:10;39025:23;39017:57;;;;-1:-1:-1;;;39017:57:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39806:22:0;::::1;39784:110;;;::::0;-1:-1:-1;;;39784:110:0;;8057:2:1;39784:110:0::1;::::0;::::1;8039:21:1::0;8096:2;8076:18;;;8069:30;8135:34;8115:18;;;8108:62;-1:-1:-1;;;8186:18:1;;;8179:36;8232:19;;39784:110:0::1;7855:402:1::0;39784:110:0::1;39905:28;39924:8;39905:18;:28::i;34236:172::-:0;34333:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;34333:29:0;-1:-1:-1;;;;;34333:29:0;;;;;;;;;34374:28;;34333:24;;34374:28;;;;;;;34236:172;;;:::o;32601:1529::-;32698:35;32736:20;32748:7;32736:11;:20::i;:::-;32807:18;;32698:58;;-1:-1:-1;32765:22:0;;-1:-1:-1;;;;;32791:34:0;18515:10;-1:-1:-1;;;;;32791:34:0;;:81;;;-1:-1:-1;18515:10:0;32836:20;32848:7;32836:11;:20::i;:::-;-1:-1:-1;;;;;32836:36:0;;32791:81;:142;;;-1:-1:-1;32900:18:0;;32883:50;;18515:10;29329:186;:::i;32883:50::-;32765:169;;32959:17;32943:101;;;;-1:-1:-1;;;32943:101:0;;11988:2:1;32943:101:0;;;11970:21:1;12027:2;12007:18;;;12000:30;12066:34;12046:18;;;12039:62;-1:-1:-1;;;12117:18:1;;;12110:48;12175:19;;32943:101:0;11786:414:1;32943:101:0;33091:4;-1:-1:-1;;;;;33069:26:0;:13;:18;;;-1:-1:-1;;;;;33069:26:0;;33053:98;;;;-1:-1:-1;;;33053:98:0;;11226:2:1;33053:98:0;;;11208:21:1;11265:2;11245:18;;;11238:30;11304:34;11284:18;;;11277:62;-1:-1:-1;;;11355:18:1;;;11348:36;11401:19;;33053:98:0;11024:402:1;33053:98:0;-1:-1:-1;;;;;33166:16:0;;33158:66;;;;-1:-1:-1;;;33158:66:0;;9279:2:1;33158:66:0;;;9261:21:1;9318:2;9298:18;;;9291:30;9357:34;9337:18;;;9330:62;-1:-1:-1;;;9408:18:1;;;9401:35;9453:19;;33158:66:0;9077:401:1;33158:66:0;33333:49;33350:1;33354:7;33363:13;:18;;;33333:8;:49::i;:::-;-1:-1:-1;;;;;33391:18:0;;;;;;:12;:18;;;;;:31;;33421:1;;33391:18;:31;;33421:1;;-1:-1:-1;;;;;33391:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;33391:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33429:16:0;;-1:-1:-1;33429:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;33429:16:0;;:29;;-1:-1:-1;;33429:29:0;;:::i;:::-;;;-1:-1:-1;;;;;33429:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33488:43:0;;;;;;;;-1:-1:-1;;;;;33488:43:0;;;;;;33514:15;33488:43;;;;;;;;;-1:-1:-1;33465:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;33465:66:0;-1:-1:-1;;;;;;33465:66:0;;;;;;;;;;;33781:11;33477:7;-1:-1:-1;33781:11:0;:::i;:::-;33844:1;33803:24;;;:11;:24;;;;;:29;33759:33;;-1:-1:-1;;;;;;33803:29:0;33799:236;;33861:20;33869:11;30606:4;30636:12;-1:-1:-1;30626:22:0;30549:105;33861:20;33857:171;;;33921:97;;;;;;;;33948:18;;-1:-1:-1;;;;;33921:97:0;;;;;;33979:28;;;;33921:97;;;;;;;;;;-1:-1:-1;33894:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;33894:124:0;-1:-1:-1;;;;;;33894:124:0;;;;;;;;;;;;33857:171;34067:7;34063:2;-1:-1:-1;;;;;34048:27:0;34057:4;-1:-1:-1;;;;;34048:27:0;;;;;;;;;;;34082:42;32691:1439;;;32601:1529;;;:::o;26353:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;26470:16:0;26478:7;30606:4;30636:12;-1:-1:-1;30626:22:0;30549:105;26470:16;26462:71;;;;-1:-1:-1;;;26462:71:0;;8464:2:1;26462:71:0;;;8446:21:1;8503:2;8483:18;;;8476:30;8542:34;8522:18;;;8515:62;-1:-1:-1;;;8593:18:1;;;8586:40;8643:19;;26462:71:0;8262:406:1;26462:71:0;26542:26;26590:12;26579:7;:23;26575:93;;26634:22;26644:12;26634:7;:22;:::i;:::-;:26;;26659:1;26634:26;:::i;:::-;26613:47;;26575:93;26696:7;26676:212;26713:18;26705:4;:26;26676:212;;26750:31;26784:17;;;:11;:17;;;;;;;;;26750:51;;;;;;;;;-1:-1:-1;;;;;26750:51:0;;;;;-1:-1:-1;;;26750:51:0;;;;;;;;;;;;26814:28;26810:71;;26862:9;26353:606;-1:-1:-1;;;;26353:606:0:o;26810:71::-;-1:-1:-1;26733:6:0;;;;:::i;:::-;;;;26676:212;;;-1:-1:-1;26896:57:0;;-1:-1:-1;;;26896:57:0;;14756:2:1;26896:57:0;;;14738:21:1;14795:2;14775:18;;;14768:30;14834:34;14814:18;;;14807:62;-1:-1:-1;;;14885:18:1;;;14878:45;14940:19;;26896:57:0;14554:411:1;40101:191:0;40194:6;;;-1:-1:-1;;;;;40211:17:0;;;-1:-1:-1;;;;;;40211:17:0;;;;;;;40244:40;;40194:6;;;40211:17;40194:6;;40244:40;;40175:16;;40244:40;40164:128;40101:191;:::o;30660:98::-;30725:27;30735:2;30739:8;30725:27;;;;;;;;;;;;:9;:27::i;35951:690::-;36088:4;-1:-1:-1;;;;;36105:13:0;;10337:20;10385:8;36101:535;;36144:72;;-1:-1:-1;;;36144:72:0;;-1:-1:-1;;;;;36144:36:0;;;;;:72;;18515:10;;36195:4;;36201:7;;36210:5;;36144:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36144:72:0;;;;;;;;-1:-1:-1;;36144:72:0;;;;;;;;;;;;:::i;:::-;;;36131:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36375:13:0;;36371:215;;36408:61;;-1:-1:-1;;;36408:61:0;;;;;;;:::i;36371:215::-;36554:6;36548:13;36539:6;36535:2;36531:15;36524:38;36131:464;-1:-1:-1;;;;;;36266:55:0;-1:-1:-1;;;36266:55:0;;-1:-1:-1;36259:62:0;;36101:535;-1:-1:-1;36624:4:0;36101:535;35951:690;;;;;;:::o;18958:723::-;19014:13;19235:10;19231:53;;-1:-1:-1;;19262:10:0;;;;;;;;;;;;-1:-1:-1;;;19262:10:0;;;;;18958:723::o;19231:53::-;19309:5;19294:12;19350:78;19357:9;;19350:78;;19383:8;;;;:::i;:::-;;-1:-1:-1;19406:10:0;;-1:-1:-1;19414:2:0;19406:10;;:::i;:::-;;;19350:78;;;19438:19;19470:6;19460:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19460:17:0;;19438:39;;19488:154;19495:10;;19488:154;;19522:11;19532:1;19522:11;;:::i;:::-;;-1:-1:-1;19591:10:0;19599:2;19591:5;:10;:::i;:::-;19578:24;;:2;:24;:::i;:::-;19565:39;;19548:6;19555;19548:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19548:56:0;;;;;;;;-1:-1:-1;19619:11:0;19628:2;19619:11;;:::i;:::-;;;19488:154;;31097:1272;31202:20;31225:12;-1:-1:-1;;;;;31252:16:0;;31244:62;;;;-1:-1:-1;;;31244:62:0;;13939:2:1;31244:62:0;;;13921:21:1;13978:2;13958:18;;;13951:30;14017:34;13997:18;;;13990:62;-1:-1:-1;;;14068:18:1;;;14061:31;14109:19;;31244:62:0;13737:397:1;31244:62:0;31443:21;31451:12;30606:4;30636:12;-1:-1:-1;30626:22:0;30549:105;31443:21;31442:22;31434:64;;;;-1:-1:-1;;;31434:64:0;;13581:2:1;31434:64:0;;;13563:21:1;13620:2;13600:18;;;13593:30;13659:31;13639:18;;;13632:59;13708:18;;31434:64:0;13379:353:1;31434:64:0;31525:12;31513:8;:24;;31505:71;;;;-1:-1:-1;;;31505:71:0;;15586:2:1;31505:71:0;;;15568:21:1;15625:2;15605:18;;;15598:30;15664:34;15644:18;;;15637:62;-1:-1:-1;;;15715:18:1;;;15708:32;15757:19;;31505:71:0;15384:398:1;31505:71:0;-1:-1:-1;;;;;31688:16:0;;31655:30;31688:16;;;:12;:16;;;;;;;;;31655:49;;;;;;;;;-1:-1:-1;;;;;31655:49:0;;;;;-1:-1:-1;;;31655:49:0;;;;;;;;;;;31730:119;;;;;;;;31750:19;;31655:49;;31730:119;;;31750:39;;31780:8;;31750:39;:::i;:::-;-1:-1:-1;;;;;31730:119:0;;;;;31833:8;31798:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;31730:119:0;;;;;;-1:-1:-1;;;;;31711:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;31711:138:0;;;;;;;;;;;;31884:43;;;;;;;;;;;31910:15;31884:43;;;;;;;;31856:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;31856:71:0;-1:-1:-1;;;;;;31856:71:0;;;;;;;;;;;;;;;;;;31868:12;;31980:281;32004:8;32000:1;:12;31980:281;;;32033:38;;32058:12;;-1:-1:-1;;;;;32033:38:0;;;32050:1;;32033:38;;32050:1;;32033:38;32098:59;32129:1;32133:2;32137:12;32151:5;32098:22;:59::i;:::-;32080:150;;;;-1:-1:-1;;;32080:150:0;;;;;;;:::i;:::-;32239:14;;;;:::i;:::-;;;;32014:3;;;;;:::i;:::-;;;;31980:281;;;-1:-1:-1;32269:12:0;:27;;;32303:60;29999:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;:::-;1134:39;993:186;-1:-1:-1;;;993:186:1:o;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:973::-;4647:12;;4612:3;;4702:1;4722:18;;;;4775;;;;4802:61;;4856:4;4848:6;4844:17;4834:27;;4802:61;4882:2;4930;4922:6;4919:14;4899:18;4896:38;4893:161;;;4976:10;4971:3;4967:20;4964:1;4957:31;5011:4;5008:1;5001:15;5039:4;5036:1;5029:15;4893:161;5070:18;5097:104;;;;5215:1;5210:319;;;;5063:466;;5097:104;-1:-1:-1;;5130:24:1;;5118:37;;5175:16;;;;-1:-1:-1;5097:104:1;;5210:319;16042:1;16035:14;;;16079:4;16066:18;;5304:1;5318:165;5332:6;5329:1;5326:13;5318:165;;;5410:14;;5397:11;;;5390:35;5453:16;;;;5347:10;;5318:165;;;5322:3;;5512:6;5507:3;5503:16;5496:23;;5063:466;;;;;;;4562:973;;;;:::o;5540:456::-;5761:3;5789:38;5823:3;5815:6;5789:38;:::i;:::-;5856:6;5850:13;5872:52;5917:6;5913:2;5906:4;5898:6;5894:17;5872:52;:::i;:::-;5940:50;5982:6;5978:2;5974:15;5966:6;5940:50;:::i;:::-;5933:57;5540:456;-1:-1:-1;;;;;;;5540:456:1:o;6209:488::-;-1:-1:-1;;;;;6478:15:1;;;6460:34;;6530:15;;6525:2;6510:18;;6503:43;6577:2;6562:18;;6555:34;;;6625:3;6620:2;6605:18;;6598:31;;;6403:4;;6646:45;;6671:19;;6663:6;6646:45;:::i;:::-;6638:53;6209:488;-1:-1:-1;;;;;;6209:488:1:o;6894:219::-;7043:2;7032:9;7025:21;7006:4;7063:44;7103:2;7092:9;7088:18;7080:6;7063:44;:::i;9483:345::-;9685:2;9667:21;;;9724:2;9704:18;;;9697:30;-1:-1:-1;;;9758:2:1;9743:18;;9736:51;9819:2;9804:18;;9483:345::o;12959:415::-;13161:2;13143:21;;;13200:2;13180:18;;;13173:30;13239:34;13234:2;13219:18;;13212:62;-1:-1:-1;;;13305:2:1;13290:18;;13283:49;13364:3;13349:19;;12959:415::o;16095:253::-;16135:3;-1:-1:-1;;;;;16224:2:1;16221:1;16217:10;16254:2;16251:1;16247:10;16285:3;16281:2;16277:12;16272:3;16269:21;16266:47;;;16293:18;;:::i;:::-;16329:13;;16095:253;-1:-1:-1;;;;16095:253:1:o;16353:128::-;16393:3;16424:1;16420:6;16417:1;16414:13;16411:39;;;16430:18;;:::i;:::-;-1:-1:-1;16466:9:1;;16353:128::o;16486:120::-;16526:1;16552;16542:35;;16557:18;;:::i;:::-;-1:-1:-1;16591:9:1;;16486:120::o;16611:168::-;16651:7;16717:1;16713;16709:6;16705:14;16702:1;16699:21;16694:1;16687:9;16680:17;16676:45;16673:71;;;16724:18;;:::i;:::-;-1:-1:-1;16764:9:1;;16611:168::o;16784:246::-;16824:4;-1:-1:-1;;;;;16937:10:1;;;;16907;;16959:12;;;16956:38;;;16974:18;;:::i;:::-;17011:13;;16784:246;-1:-1:-1;;;16784:246:1:o;17035:125::-;17075:4;17103:1;17100;17097:8;17094:34;;;17108:18;;:::i;:::-;-1:-1:-1;17145:9:1;;17035:125::o;17165:258::-;17237:1;17247:113;17261:6;17258:1;17255:13;17247:113;;;17337:11;;;17331:18;17318:11;;;17311:39;17283:2;17276:10;17247:113;;;17378:6;17375:1;17372:13;17369:48;;;-1:-1:-1;;17413:1:1;17395:16;;17388:27;17165:258::o;17428:136::-;17467:3;17495:5;17485:39;;17504:18;;:::i;:::-;-1:-1:-1;;;17540:18:1;;17428:136::o;17569:380::-;17648:1;17644:12;;;;17691;;;17712:61;;17766:4;17758:6;17754:17;17744:27;;17712:61;17819:2;17811:6;17808:14;17788:18;17785:38;17782:161;;;17865:10;17860:3;17856:20;17853:1;17846:31;17900:4;17897:1;17890:15;17928:4;17925:1;17918:15;17782:161;;17569:380;;;:::o;17954:135::-;17993:3;-1:-1:-1;;18014:17:1;;18011:43;;;18034:18;;:::i;:::-;-1:-1:-1;18081:1:1;18070:13;;17954:135::o;18094:112::-;18126:1;18152;18142:35;;18157:18;;:::i;:::-;-1:-1:-1;18191:9:1;;18094:112::o;18211:127::-;18272:10;18267:3;18263:20;18260:1;18253:31;18303:4;18300:1;18293:15;18327:4;18324:1;18317:15;18343:127;18404:10;18399:3;18395:20;18392:1;18385:31;18435:4;18432:1;18425:15;18459:4;18456:1;18449:15;18475:127;18536:10;18531:3;18527:20;18524:1;18517:31;18567:4;18564:1;18557:15;18591:4;18588:1;18581:15;18607:127;18668:10;18663:3;18659:20;18656:1;18649:31;18699:4;18696:1;18689:15;18723:4;18720:1;18713:15;18739:131;-1:-1:-1;;;;;;18813:32:1;;18803:43;;18793:71;;18860:1;18857;18850:12

Swarm Source

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