ETH Price: $3,427.91 (-1.56%)
Gas: 6 Gwei

Token

CannyWolvesPack (CWP)
 

Overview

Max Total Supply

300 CWP

Holders

190

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
3l0nmusk.eth
Balance
1 CWP
0x9a4dba60aa3f36b48cdb25266140a4844df4a8a3
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:
CannyWolvesPack

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-04-23
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// 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(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (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);

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

// File: contracts/ERC721A.sol


// Creators: locationtba.eth, 2pmflow.eth

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..).
 *
 * 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 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.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

  /**
   * @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(totalSupply). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC721).interfaceId ||
      interfaceId == type(IERC721Metadata).interfaceId ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @dev See {IERC721Metadata-name}.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev See {IERC721Metadata-symbol}.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
  }

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `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 > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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


pragma solidity 0.8.7;




contract CannyWolvesPack is ERC721A, Ownable, ReentrancyGuard {
    using Address for address;

    // ===== Variables =====
    string public baseTokenURI;
    uint256 public mintPrice = 0.019 ether;
    uint256 public collectionSize = 3300;
    uint256 public freeMintMaxSupply = 200;
    uint256 public reservedSize = 25;
    uint256 public maxItemsPerWallet = 1;
    uint256 public maxItemsPerTx = 10;

    bool public freeMintPaused = true;
    bool public publicMintPaused = true;

    mapping(address => uint256) public freeMintedAmount;


    constructor() ERC721A("CannyWolvesPack", "CWP", 25) {}

    // ===== Modifier =====
    function _onlySender() private view {
        require(msg.sender == tx.origin);
    }

    modifier onlySender() {
        _onlySender();
        _;
    }

    // ===== Dev mint =====
    function devMint(uint256 amount) external onlySender onlyOwner {
        require(amount <= reservedSize, "Minting amount exceeds reserved size");
        require((totalSupply() + amount) <= collectionSize, "Sold out!");
        require(
            amount % maxBatchSize == 0,
            "Can only mint a multiple of the maxBatchSize"
        );
        uint256 numChunks = amount / maxBatchSize;

        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(msg.sender, maxBatchSize);
        }
    }

    // ===== free mint ===== usunąć payable
    function freeMint() external onlySender nonReentrant {
        require(!freeMintPaused, "Free mint is paused");

        require(
            freeMintedAmount[msg.sender] + 1 <= maxItemsPerWallet,
            "Minting amount exceeds allowance per wallet"
        );

        require(freeMintMaxSupply >= 1, "Free mint is sold out");

        freeMintMaxSupply = freeMintMaxSupply - 1;

        freeMintedAmount[msg.sender] += 1;

        _safeMint(msg.sender, 1);
    }

    // ===== Public mint =====
    function publicMint() external payable onlySender nonReentrant {
        require(!publicMintPaused, "Public mint is paused");

        uint256 amount = _getMintAmount(msg.value);

        require(
            amount <= maxItemsPerTx,
            "Minting amount exceeds allowance per tx"
        );

        _mintWithoutValidation(msg.sender, amount);
    }

    // ===== Helper =====
    function _getMintAmount(uint256 value) internal view returns (uint256) {
        uint256 remainder = value % mintPrice;
        require(remainder == 0, "Send a divisible amount of eth");

        uint256 amount = value / mintPrice;
        require(amount > 0, "Amount to mint is 0");
        require(
            (totalSupply() + amount) <= collectionSize - reservedSize,
            "Sold out!"
        );
        return amount;
    }

    function _mintWithoutValidation(address to, uint256 amount) internal {
        require((totalSupply() + amount) <= collectionSize, "Sold out!");
        _safeMint(to, amount);
    }

    // ===== Setter (owner only) =====
    function setCollectionSize(uint256 _collectionSize) external onlyOwner {
        collectionSize = _collectionSize;
    }

    function setReservedSize(uint256 _reservedSize) external onlyOwner {
        reservedSize = _reservedSize;
    }

    function setPublicMintPaused(bool _publicMintPaused) external onlyOwner {
        publicMintPaused = _publicMintPaused;
    }

    function setfreeMintPaused(bool _freeMintPaused)
        external
        onlyOwner
    {
        freeMintPaused = _freeMintPaused;
    }

    function setfreeMintMaxSupply(uint256 _freeMintMaxSupply)
        external
        onlyOwner
    {
        freeMintMaxSupply = _freeMintMaxSupply;
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }

    function setMaxItemsPerTx(uint256 _maxItemsPerTx) external onlyOwner {
        maxItemsPerTx = _maxItemsPerTx;
    }

    function setMaxItemsPerWallet(uint256 _maxItemsPerWallet)
        external
        onlyOwner
    {
        maxItemsPerWallet = _maxItemsPerWallet;
    }

    function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    // ===== Withdraw to owner =====
    function withdrawAll() external onlyOwner onlySender nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Failed to send ether");
    }

    // ===== View =====
    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721A)
        returns (string memory)
    {
        return
            string(abi.encodePacked(baseTokenURI, Strings.toString(tokenId)));
    }

    function walletOfOwner(address address_)
        public
        view
        virtual
        returns (uint256[] memory)
    {
        uint256 _balance = balanceOf(address_);
        uint256[] memory _tokens = new uint256[](_balance);
        uint256 _index;
        uint256 _loopThrough = totalSupply();
        for (uint256 i = 0; i < _loopThrough; i++) {
            bool _exists = _exists(i);
            if (_exists) {
                if (ownerOf(i) == address_) {
                    _tokens[_index] = i;
                    _index++;
                }
            } else if (!_exists && _tokens[_balance - 1] == 0) {
                _loopThrough++;
            }
        }
        return _tokens;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItemsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItemsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedSize","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":"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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_collectionSize","type":"uint256"}],"name":"setCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxItemsPerTx","type":"uint256"}],"name":"setMaxItemsPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxItemsPerWallet","type":"uint256"}],"name":"setMaxItemsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicMintPaused","type":"bool"}],"name":"setPublicMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reservedSize","type":"uint256"}],"name":"setReservedSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintMaxSupply","type":"uint256"}],"name":"setfreeMintMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_freeMintPaused","type":"bool"}],"name":"setfreeMintPaused","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":[{"internalType":"address","name":"address_","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000808055600755664380663abb8000600b55610ce4600c5560c8600d556019600e556001600f55600a6010556011805461ffff19166101011790553480156200004d57600080fd5b506040518060400160405280600f81526020016e43616e6e79576f6c7665735061636b60881b8152506040518060400160405280600381526020016204357560ec1b815250601960008111620000f95760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200010e90600190602086019062000193565b5081516200012490600290602085019062000193565b50608052506200013690503362000141565b600160095562000276565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a19062000239565b90600052602060002090601f016020900481019282620001c5576000855562000210565b82601f10620001e057805160ff191683800117855562000210565b8280016001018555821562000210579182015b8281111562000210578251825591602001919060010190620001f3565b506200021e92915062000222565b5090565b5b808211156200021e576000815560010162000223565b600181811c908216806200024e57607f821691505b602082108114156200027057634e487b7160e01b600052602260045260246000fd5b50919050565b608051612bad620002b560003960008181610e6001528181610eee01528181610f2601528181611dbd01528181611de701526122000152612bad6000f3fe6080604052600436106102675760003560e01c80636817c76c11610144578063aca8ffe7116100b6578063d547cfb71161007a578063d547cfb7146106f7578063d7224ba01461070c578063db7aa4f914610722578063e985e9c514610738578063f2fde38b14610781578063f4a0a528146107a157600080fd5b8063aca8ffe714610657578063b88d4fde14610677578063c289e55514610697578063c87b56dd146106b7578063d2404e0d146106d757600080fd5b80637ac3ad7d116101085780637ac3ad7d146105ac578063853828b6146105c25780638da5cb5b146105d757806395d89b41146105f557806396b102011461060a578063a22cb4651461063757600080fd5b80636817c76c1461052b57806370a0823114610541578063715018a61461056157806379e1587a146105765780637a4e57151461058c57600080fd5b806330666a4d116101dd57806342842e0e116101a157806342842e0e14610473578063438b63001461049357806345c0f533146104c05780634f6ccce7146104d65780635b70ea9f146104f65780636352211e1461050b57600080fd5b806330666a4d146103de57806333949348146103f457806333d9d5fd14610414578063375a069a146104335780633c7324641461045357600080fd5b8063180fec041161022f578063180fec041461033757806318160ddd1461035757806323b872dd1461037657806326092b83146103965780632f745c591461039e57806330176e13146103be57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630b24f4351461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046126c5565b6107c1565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661082e565b60405161029891906128d1565b3480156102cf57600080fd5b506102e36102de366004612748565b6108c0565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612680565b610950565b005b34801561032957600080fd5b5060115461028c9060ff1681565b34801561034357600080fd5b5061031b610352366004612748565b610a68565b34801561036357600080fd5b506000545b604051908152602001610298565b34801561038257600080fd5b5061031b61039136600461259e565b610a97565b61031b610aa2565b3480156103aa57600080fd5b506103686103b9366004612680565b610ba3565b3480156103ca57600080fd5b5061031b6103d93660046126ff565b610d11565b3480156103ea57600080fd5b5061036860105481565b34801561040057600080fd5b5061031b61040f3660046126aa565b610d52565b34801561042057600080fd5b5060115461028c90610100900460ff1681565b34801561043f57600080fd5b5061031b61044e366004612748565b610d96565b34801561045f57600080fd5b5061031b61046e366004612748565b610f5c565b34801561047f57600080fd5b5061031b61048e36600461259e565b610f8b565b34801561049f57600080fd5b506104b36104ae366004612550565b610fa6565b604051610298919061288d565b3480156104cc57600080fd5b50610368600c5481565b3480156104e257600080fd5b506103686104f1366004612748565b6110df565b34801561050257600080fd5b5061031b611141565b34801561051757600080fd5b506102e3610526366004612748565b6112cf565b34801561053757600080fd5b50610368600b5481565b34801561054d57600080fd5b5061036861055c366004612550565b6112e1565b34801561056d57600080fd5b5061031b611372565b34801561058257600080fd5b50610368600e5481565b34801561059857600080fd5b5061031b6105a7366004612748565b6113a8565b3480156105b857600080fd5b50610368600d5481565b3480156105ce57600080fd5b5061031b6113d7565b3480156105e357600080fd5b506008546001600160a01b03166102e3565b34801561060157600080fd5b506102b66114c0565b34801561061657600080fd5b50610368610625366004612550565b60126020526000908152604090205481565b34801561064357600080fd5b5061031b610652366004612656565b6114cf565b34801561066357600080fd5b5061031b610672366004612748565b611594565b34801561068357600080fd5b5061031b6106923660046125da565b6115c3565b3480156106a357600080fd5b5061031b6106b2366004612748565b6115fc565b3480156106c357600080fd5b506102b66106d2366004612748565b61162b565b3480156106e357600080fd5b5061031b6106f23660046126aa565b61165f565b34801561070357600080fd5b506102b661169c565b34801561071857600080fd5b5061036860075481565b34801561072e57600080fd5b50610368600f5481565b34801561074457600080fd5b5061028c61075336600461256b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078d57600080fd5b5061031b61079c366004612550565b61172a565b3480156107ad57600080fd5b5061031b6107bc366004612748565b6117c5565b60006001600160e01b031982166380ac58cd60e01b14806107f257506001600160e01b03198216635b5e139f60e01b145b8061080d57506001600160e01b0319821663780e9d6360e01b145b8061082857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461083d90612a9f565b80601f016020809104026020016040519081016040528092919081815260200182805461086990612a9f565b80156108b65780601f1061088b576101008083540402835291602001916108b6565b820191906000526020600020905b81548152906001019060200180831161089957829003601f168201915b5050505050905090565b60006108cd826000541190565b6109345760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061095b826112cf565b9050806001600160a01b0316836001600160a01b031614156109ca5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161092b565b336001600160a01b03821614806109e657506109e68133610753565b610a585760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161092b565b610a638383836117f4565b505050565b6008546001600160a01b03163314610a925760405162461bcd60e51b815260040161092b906128e4565b600f55565b610a63838383611850565b610aaa611bd8565b60026009541415610acd5760405162461bcd60e51b815260040161092b9061296c565b6002600955601154610100900460ff1615610b225760405162461bcd60e51b8152602060048201526015602482015274141d589b1a58c81b5a5b9d081a5cc81c185d5cd959605a1b604482015260640161092b565b6000610b2d34611be4565b9050601054811115610b915760405162461bcd60e51b815260206004820152602760248201527f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e6365604482015266040e0cae440e8f60cb1b606482015260840161092b565b610b9b3382611ce6565b506001600955565b6000610bae836112e1565b8210610c075760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161092b565b600080549080805b83811015610cb1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c6257805192505b876001600160a01b0316836001600160a01b03161415610c9e5786841415610c905750935061082892505050565b83610c9a81612ada565b9450505b5080610ca981612ada565b915050610c0f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161092b565b6008546001600160a01b03163314610d3b5760405162461bcd60e51b815260040161092b906128e4565b8051610d4e90600a90602084019061241e565b5050565b6008546001600160a01b03163314610d7c5760405162461bcd60e51b815260040161092b906128e4565b601180549115156101000261ff0019909216919091179055565b610d9e611bd8565b6008546001600160a01b03163314610dc85760405162461bcd60e51b815260040161092b906128e4565b600e54811115610e265760405162461bcd60e51b8152602060048201526024808201527f4d696e74696e6720616d6f756e7420657863656564732072657365727665642060448201526373697a6560e01b606482015260840161092b565b600c5481610e3360005490565b610e3d91906129f1565b1115610e5b5760405162461bcd60e51b815260040161092b906129a3565b610e857f000000000000000000000000000000000000000000000000000000000000000082612af5565b15610ee75760405162461bcd60e51b815260206004820152602c60248201527f43616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b606482015260840161092b565b6000610f137f000000000000000000000000000000000000000000000000000000000000000083612a09565b905060005b81811015610a6357610f4a337f0000000000000000000000000000000000000000000000000000000000000000611d21565b80610f5481612ada565b915050610f18565b6008546001600160a01b03163314610f865760405162461bcd60e51b815260040161092b906128e4565b600e55565b610a63838383604051806020016040528060008152506115c3565b60606000610fb3836112e1565b905060008167ffffffffffffffff811115610fd057610fd0612b4b565b604051908082528060200260200182016040528015610ff9578160200160208202803683370190505b50905060008061100860005490565b905060005b818110156110d4576000611022826000541190565b9050801561107d57876001600160a01b031661103d836112cf565b6001600160a01b03161415611078578185858151811061105f5761105f612b35565b60209081029190910101528361107481612ada565b9450505b6110c1565b801580156110ae575084611092600188612a45565b815181106110a2576110a2612b35565b60200260200101516000145b156110c157826110bd81612ada565b9350505b50806110cc81612ada565b91505061100d565b509195945050505050565b60008054821061113d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161092b565b5090565b611149611bd8565b6002600954141561116c5760405162461bcd60e51b815260040161092b9061296c565b600260095560115460ff16156111ba5760405162461bcd60e51b8152602060048201526013602482015272119c9959481b5a5b9d081a5cc81c185d5cd959606a1b604482015260640161092b565b600f54336000908152601260205260409020546111d89060016129f1565b111561123a5760405162461bcd60e51b815260206004820152602b60248201527f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e636560448201526a081c195c881dd85b1b195d60aa1b606482015260840161092b565b6001600d5410156112855760405162461bcd60e51b8152602060048201526015602482015274119c9959481b5a5b9d081a5cc81cdbdb19081bdd5d605a1b604482015260640161092b565b6001600d546112949190612a45565b600d553360009081526012602052604081208054600192906112b79084906129f1565b909155506112c89050336001611d21565b6001600955565b60006112da82611d3b565b5192915050565b60006001600160a01b03821661134d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161092b565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b0316331461139c5760405162461bcd60e51b815260040161092b906128e4565b6113a66000611ee5565b565b6008546001600160a01b031633146113d25760405162461bcd60e51b815260040161092b906128e4565b601055565b6008546001600160a01b031633146114015760405162461bcd60e51b815260040161092b906128e4565b611409611bd8565b6002600954141561142c5760405162461bcd60e51b815260040161092b9061296c565b6002600955604051600090339047908381818185875af1925050503d8060008114611473576040519150601f19603f3d011682016040523d82523d6000602084013e611478565b606091505b5050905080610b9b5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321032ba3432b960611b604482015260640161092b565b60606002805461083d90612a9f565b6001600160a01b0382163314156115285760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161092b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146115be5760405162461bcd60e51b815260040161092b906128e4565b600c55565b6115ce848484611850565b6115da84848484611f37565b6115f65760405162461bcd60e51b815260040161092b90612919565b50505050565b6008546001600160a01b031633146116265760405162461bcd60e51b815260040161092b906128e4565b600d55565b6060600a61163883612045565b6040516020016116499291906127a9565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146116895760405162461bcd60e51b815260040161092b906128e4565b6011805460ff1916911515919091179055565b600a80546116a990612a9f565b80601f01602080910402602001604051908101604052809291908181526020018280546116d590612a9f565b80156117225780601f106116f757610100808354040283529160200191611722565b820191906000526020600020905b81548152906001019060200180831161170557829003601f168201915b505050505081565b6008546001600160a01b031633146117545760405162461bcd60e51b815260040161092b906128e4565b6001600160a01b0381166117b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092b565b6117c281611ee5565b50565b6008546001600160a01b031633146117ef5760405162461bcd60e51b815260040161092b906128e4565b600b55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061185b82611d3b565b80519091506000906001600160a01b0316336001600160a01b03161480611892575033611887846108c0565b6001600160a01b0316145b806118a4575081516118a49033610753565b90508061190e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161092b565b846001600160a01b031682600001516001600160a01b0316146119825760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161092b565b6001600160a01b0384166119e65760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161092b565b6119f660008484600001516117f4565b6001600160a01b0385166000908152600460205260408120805460019290611a289084906001600160801b0316612a1d565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611a74918591166129c6565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611afc8460016129f1565b6000818152600360205260409020549091506001600160a01b0316611b8e57611b26816000541190565b15611b8e5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b3332146113a657600080fd5b600080600b5483611bf59190612af5565b90508015611c455760405162461bcd60e51b815260206004820152601e60248201527f53656e64206120646976697369626c6520616d6f756e74206f66206574680000604482015260640161092b565b6000600b5484611c559190612a09565b905060008111611c9d5760405162461bcd60e51b81526020600482015260136024820152720416d6f756e7420746f206d696e74206973203606c1b604482015260640161092b565b600e54600c54611cad9190612a45565b81611cb760005490565b611cc191906129f1565b1115611cdf5760405162461bcd60e51b815260040161092b906129a3565b9392505050565b600c5481611cf360005490565b611cfd91906129f1565b1115611d1b5760405162461bcd60e51b815260040161092b906129a3565b610d4e82825b610d4e828260405180602001604052806000815250612143565b6040805180820190915260008082526020820152611d5a826000541190565b611db95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161092b565b60007f00000000000000000000000000000000000000000000000000000000000000008310611e1a57611e0c7f000000000000000000000000000000000000000000000000000000000000000084612a45565b611e179060016129f1565b90505b825b818110611e84576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e7157949350505050565b5080611e7c81612a88565b915050611e1c565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161092b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561203957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f7b903390899088908890600401612850565b602060405180830381600087803b158015611f9557600080fd5b505af1925050508015611fc5575060408051601f3d908101601f19168201909252611fc2918101906126e2565b60015b61201f573d808015611ff3576040519150601f19603f3d011682016040523d82523d6000602084013e611ff8565b606091505b5080516120175760405162461bcd60e51b815260040161092b90612919565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061203d565b5060015b949350505050565b6060816120695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612093578061207d81612ada565b915061208c9050600a83612a09565b915061206d565b60008167ffffffffffffffff8111156120ae576120ae612b4b565b6040519080825280601f01601f1916602001820160405280156120d8576020820181803683370190505b5090505b841561203d576120ed600183612a45565b91506120fa600a86612af5565b6121059060306129f1565b60f81b81838151811061211a5761211a612b35565b60200101906001600160f81b031916908160001a90535061213c600a86612a09565b94506120dc565b6000546001600160a01b0384166121a65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161092b565b6121b1816000541190565b156121fe5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161092b565b7f00000000000000000000000000000000000000000000000000000000000000008311156122795760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161092b565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906122d59087906129c6565b6001600160801b031681526020018583602001516122f391906129c6565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124135760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123d76000888488611f37565b6123f35760405162461bcd60e51b815260040161092b90612919565b816123fd81612ada565b925050808061240b90612ada565b91505061238a565b506000819055611bd0565b82805461242a90612a9f565b90600052602060002090601f01602090048101928261244c5760008555612492565b82601f1061246557805160ff1916838001178555612492565b82800160010185558215612492579182015b82811115612492578251825591602001919060010190612477565b5061113d9291505b8082111561113d576000815560010161249a565b600067ffffffffffffffff808411156124c9576124c9612b4b565b604051601f8501601f19908116603f011681019082821181831017156124f1576124f1612b4b565b8160405280935085815286868601111561250a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461253b57600080fd5b919050565b8035801515811461253b57600080fd5b60006020828403121561256257600080fd5b611cdf82612524565b6000806040838503121561257e57600080fd5b61258783612524565b915061259560208401612524565b90509250929050565b6000806000606084860312156125b357600080fd5b6125bc84612524565b92506125ca60208501612524565b9150604084013590509250925092565b600080600080608085870312156125f057600080fd5b6125f985612524565b935061260760208601612524565b925060408501359150606085013567ffffffffffffffff81111561262a57600080fd5b8501601f8101871361263b57600080fd5b61264a878235602084016124ae565b91505092959194509250565b6000806040838503121561266957600080fd5b61267283612524565b915061259560208401612540565b6000806040838503121561269357600080fd5b61269c83612524565b946020939093013593505050565b6000602082840312156126bc57600080fd5b611cdf82612540565b6000602082840312156126d757600080fd5b8135611cdf81612b61565b6000602082840312156126f457600080fd5b8151611cdf81612b61565b60006020828403121561271157600080fd5b813567ffffffffffffffff81111561272857600080fd5b8201601f8101841361273957600080fd5b61203d848235602084016124ae565b60006020828403121561275a57600080fd5b5035919050565b60008151808452612779816020860160208601612a5c565b601f01601f19169290920160200192915050565b6000815161279f818560208601612a5c565b9290920192915050565b600080845481600182811c9150808316806127c557607f831692505b60208084108214156127e557634e487b7160e01b86526022600452602486fd5b8180156127f9576001811461280a57612837565b60ff19861689528489019650612837565b60008b81526020902060005b8681101561282f5781548b820152908501908301612816565b505084890196505b505050505050612847818561278d565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061288390830184612761565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128c5578351835292840192918401916001016128a9565b50909695505050505050565b602081526000611cdf6020830184612761565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b602080825260099082015268536f6c64206f75742160b81b604082015260600190565b60006001600160801b038083168185168083038211156129e8576129e8612b09565b01949350505050565b60008219821115612a0457612a04612b09565b500190565b600082612a1857612a18612b1f565b500490565b60006001600160801b0383811690831681811015612a3d57612a3d612b09565b039392505050565b600082821015612a5757612a57612b09565b500390565b60005b83811015612a77578181015183820152602001612a5f565b838111156115f65750506000910152565b600081612a9757612a97612b09565b506000190190565b600181811c90821680612ab357607f821691505b60208210811415612ad457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612aee57612aee612b09565b5060010190565b600082612b0457612b04612b1f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117c257600080fdfea2646970667358221220564c6cc2b556d2632536e2c8ed28cd820bf4a211bb4a58278d4f7707282c82bd64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636817c76c11610144578063aca8ffe7116100b6578063d547cfb71161007a578063d547cfb7146106f7578063d7224ba01461070c578063db7aa4f914610722578063e985e9c514610738578063f2fde38b14610781578063f4a0a528146107a157600080fd5b8063aca8ffe714610657578063b88d4fde14610677578063c289e55514610697578063c87b56dd146106b7578063d2404e0d146106d757600080fd5b80637ac3ad7d116101085780637ac3ad7d146105ac578063853828b6146105c25780638da5cb5b146105d757806395d89b41146105f557806396b102011461060a578063a22cb4651461063757600080fd5b80636817c76c1461052b57806370a0823114610541578063715018a61461056157806379e1587a146105765780637a4e57151461058c57600080fd5b806330666a4d116101dd57806342842e0e116101a157806342842e0e14610473578063438b63001461049357806345c0f533146104c05780634f6ccce7146104d65780635b70ea9f146104f65780636352211e1461050b57600080fd5b806330666a4d146103de57806333949348146103f457806333d9d5fd14610414578063375a069a146104335780633c7324641461045357600080fd5b8063180fec041161022f578063180fec041461033757806318160ddd1461035757806323b872dd1461037657806326092b83146103965780632f745c591461039e57806330176e13146103be57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630b24f4351461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046126c5565b6107c1565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661082e565b60405161029891906128d1565b3480156102cf57600080fd5b506102e36102de366004612748565b6108c0565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612680565b610950565b005b34801561032957600080fd5b5060115461028c9060ff1681565b34801561034357600080fd5b5061031b610352366004612748565b610a68565b34801561036357600080fd5b506000545b604051908152602001610298565b34801561038257600080fd5b5061031b61039136600461259e565b610a97565b61031b610aa2565b3480156103aa57600080fd5b506103686103b9366004612680565b610ba3565b3480156103ca57600080fd5b5061031b6103d93660046126ff565b610d11565b3480156103ea57600080fd5b5061036860105481565b34801561040057600080fd5b5061031b61040f3660046126aa565b610d52565b34801561042057600080fd5b5060115461028c90610100900460ff1681565b34801561043f57600080fd5b5061031b61044e366004612748565b610d96565b34801561045f57600080fd5b5061031b61046e366004612748565b610f5c565b34801561047f57600080fd5b5061031b61048e36600461259e565b610f8b565b34801561049f57600080fd5b506104b36104ae366004612550565b610fa6565b604051610298919061288d565b3480156104cc57600080fd5b50610368600c5481565b3480156104e257600080fd5b506103686104f1366004612748565b6110df565b34801561050257600080fd5b5061031b611141565b34801561051757600080fd5b506102e3610526366004612748565b6112cf565b34801561053757600080fd5b50610368600b5481565b34801561054d57600080fd5b5061036861055c366004612550565b6112e1565b34801561056d57600080fd5b5061031b611372565b34801561058257600080fd5b50610368600e5481565b34801561059857600080fd5b5061031b6105a7366004612748565b6113a8565b3480156105b857600080fd5b50610368600d5481565b3480156105ce57600080fd5b5061031b6113d7565b3480156105e357600080fd5b506008546001600160a01b03166102e3565b34801561060157600080fd5b506102b66114c0565b34801561061657600080fd5b50610368610625366004612550565b60126020526000908152604090205481565b34801561064357600080fd5b5061031b610652366004612656565b6114cf565b34801561066357600080fd5b5061031b610672366004612748565b611594565b34801561068357600080fd5b5061031b6106923660046125da565b6115c3565b3480156106a357600080fd5b5061031b6106b2366004612748565b6115fc565b3480156106c357600080fd5b506102b66106d2366004612748565b61162b565b3480156106e357600080fd5b5061031b6106f23660046126aa565b61165f565b34801561070357600080fd5b506102b661169c565b34801561071857600080fd5b5061036860075481565b34801561072e57600080fd5b50610368600f5481565b34801561074457600080fd5b5061028c61075336600461256b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078d57600080fd5b5061031b61079c366004612550565b61172a565b3480156107ad57600080fd5b5061031b6107bc366004612748565b6117c5565b60006001600160e01b031982166380ac58cd60e01b14806107f257506001600160e01b03198216635b5e139f60e01b145b8061080d57506001600160e01b0319821663780e9d6360e01b145b8061082857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461083d90612a9f565b80601f016020809104026020016040519081016040528092919081815260200182805461086990612a9f565b80156108b65780601f1061088b576101008083540402835291602001916108b6565b820191906000526020600020905b81548152906001019060200180831161089957829003601f168201915b5050505050905090565b60006108cd826000541190565b6109345760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061095b826112cf565b9050806001600160a01b0316836001600160a01b031614156109ca5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161092b565b336001600160a01b03821614806109e657506109e68133610753565b610a585760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161092b565b610a638383836117f4565b505050565b6008546001600160a01b03163314610a925760405162461bcd60e51b815260040161092b906128e4565b600f55565b610a63838383611850565b610aaa611bd8565b60026009541415610acd5760405162461bcd60e51b815260040161092b9061296c565b6002600955601154610100900460ff1615610b225760405162461bcd60e51b8152602060048201526015602482015274141d589b1a58c81b5a5b9d081a5cc81c185d5cd959605a1b604482015260640161092b565b6000610b2d34611be4565b9050601054811115610b915760405162461bcd60e51b815260206004820152602760248201527f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e6365604482015266040e0cae440e8f60cb1b606482015260840161092b565b610b9b3382611ce6565b506001600955565b6000610bae836112e1565b8210610c075760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161092b565b600080549080805b83811015610cb1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c6257805192505b876001600160a01b0316836001600160a01b03161415610c9e5786841415610c905750935061082892505050565b83610c9a81612ada565b9450505b5080610ca981612ada565b915050610c0f565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161092b565b6008546001600160a01b03163314610d3b5760405162461bcd60e51b815260040161092b906128e4565b8051610d4e90600a90602084019061241e565b5050565b6008546001600160a01b03163314610d7c5760405162461bcd60e51b815260040161092b906128e4565b601180549115156101000261ff0019909216919091179055565b610d9e611bd8565b6008546001600160a01b03163314610dc85760405162461bcd60e51b815260040161092b906128e4565b600e54811115610e265760405162461bcd60e51b8152602060048201526024808201527f4d696e74696e6720616d6f756e7420657863656564732072657365727665642060448201526373697a6560e01b606482015260840161092b565b600c5481610e3360005490565b610e3d91906129f1565b1115610e5b5760405162461bcd60e51b815260040161092b906129a3565b610e857f000000000000000000000000000000000000000000000000000000000000001982612af5565b15610ee75760405162461bcd60e51b815260206004820152602c60248201527f43616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b606482015260840161092b565b6000610f137f000000000000000000000000000000000000000000000000000000000000001983612a09565b905060005b81811015610a6357610f4a337f0000000000000000000000000000000000000000000000000000000000000019611d21565b80610f5481612ada565b915050610f18565b6008546001600160a01b03163314610f865760405162461bcd60e51b815260040161092b906128e4565b600e55565b610a63838383604051806020016040528060008152506115c3565b60606000610fb3836112e1565b905060008167ffffffffffffffff811115610fd057610fd0612b4b565b604051908082528060200260200182016040528015610ff9578160200160208202803683370190505b50905060008061100860005490565b905060005b818110156110d4576000611022826000541190565b9050801561107d57876001600160a01b031661103d836112cf565b6001600160a01b03161415611078578185858151811061105f5761105f612b35565b60209081029190910101528361107481612ada565b9450505b6110c1565b801580156110ae575084611092600188612a45565b815181106110a2576110a2612b35565b60200260200101516000145b156110c157826110bd81612ada565b9350505b50806110cc81612ada565b91505061100d565b509195945050505050565b60008054821061113d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161092b565b5090565b611149611bd8565b6002600954141561116c5760405162461bcd60e51b815260040161092b9061296c565b600260095560115460ff16156111ba5760405162461bcd60e51b8152602060048201526013602482015272119c9959481b5a5b9d081a5cc81c185d5cd959606a1b604482015260640161092b565b600f54336000908152601260205260409020546111d89060016129f1565b111561123a5760405162461bcd60e51b815260206004820152602b60248201527f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e636560448201526a081c195c881dd85b1b195d60aa1b606482015260840161092b565b6001600d5410156112855760405162461bcd60e51b8152602060048201526015602482015274119c9959481b5a5b9d081a5cc81cdbdb19081bdd5d605a1b604482015260640161092b565b6001600d546112949190612a45565b600d553360009081526012602052604081208054600192906112b79084906129f1565b909155506112c89050336001611d21565b6001600955565b60006112da82611d3b565b5192915050565b60006001600160a01b03821661134d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161092b565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b0316331461139c5760405162461bcd60e51b815260040161092b906128e4565b6113a66000611ee5565b565b6008546001600160a01b031633146113d25760405162461bcd60e51b815260040161092b906128e4565b601055565b6008546001600160a01b031633146114015760405162461bcd60e51b815260040161092b906128e4565b611409611bd8565b6002600954141561142c5760405162461bcd60e51b815260040161092b9061296c565b6002600955604051600090339047908381818185875af1925050503d8060008114611473576040519150601f19603f3d011682016040523d82523d6000602084013e611478565b606091505b5050905080610b9b5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321032ba3432b960611b604482015260640161092b565b60606002805461083d90612a9f565b6001600160a01b0382163314156115285760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161092b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146115be5760405162461bcd60e51b815260040161092b906128e4565b600c55565b6115ce848484611850565b6115da84848484611f37565b6115f65760405162461bcd60e51b815260040161092b90612919565b50505050565b6008546001600160a01b031633146116265760405162461bcd60e51b815260040161092b906128e4565b600d55565b6060600a61163883612045565b6040516020016116499291906127a9565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146116895760405162461bcd60e51b815260040161092b906128e4565b6011805460ff1916911515919091179055565b600a80546116a990612a9f565b80601f01602080910402602001604051908101604052809291908181526020018280546116d590612a9f565b80156117225780601f106116f757610100808354040283529160200191611722565b820191906000526020600020905b81548152906001019060200180831161170557829003601f168201915b505050505081565b6008546001600160a01b031633146117545760405162461bcd60e51b815260040161092b906128e4565b6001600160a01b0381166117b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092b565b6117c281611ee5565b50565b6008546001600160a01b031633146117ef5760405162461bcd60e51b815260040161092b906128e4565b600b55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061185b82611d3b565b80519091506000906001600160a01b0316336001600160a01b03161480611892575033611887846108c0565b6001600160a01b0316145b806118a4575081516118a49033610753565b90508061190e5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161092b565b846001600160a01b031682600001516001600160a01b0316146119825760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161092b565b6001600160a01b0384166119e65760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161092b565b6119f660008484600001516117f4565b6001600160a01b0385166000908152600460205260408120805460019290611a289084906001600160801b0316612a1d565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611a74918591166129c6565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611afc8460016129f1565b6000818152600360205260409020549091506001600160a01b0316611b8e57611b26816000541190565b15611b8e5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b3332146113a657600080fd5b600080600b5483611bf59190612af5565b90508015611c455760405162461bcd60e51b815260206004820152601e60248201527f53656e64206120646976697369626c6520616d6f756e74206f66206574680000604482015260640161092b565b6000600b5484611c559190612a09565b905060008111611c9d5760405162461bcd60e51b81526020600482015260136024820152720416d6f756e7420746f206d696e74206973203606c1b604482015260640161092b565b600e54600c54611cad9190612a45565b81611cb760005490565b611cc191906129f1565b1115611cdf5760405162461bcd60e51b815260040161092b906129a3565b9392505050565b600c5481611cf360005490565b611cfd91906129f1565b1115611d1b5760405162461bcd60e51b815260040161092b906129a3565b610d4e82825b610d4e828260405180602001604052806000815250612143565b6040805180820190915260008082526020820152611d5a826000541190565b611db95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161092b565b60007f00000000000000000000000000000000000000000000000000000000000000198310611e1a57611e0c7f000000000000000000000000000000000000000000000000000000000000001984612a45565b611e179060016129f1565b90505b825b818110611e84576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e7157949350505050565b5080611e7c81612a88565b915050611e1c565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161092b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561203957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f7b903390899088908890600401612850565b602060405180830381600087803b158015611f9557600080fd5b505af1925050508015611fc5575060408051601f3d908101601f19168201909252611fc2918101906126e2565b60015b61201f573d808015611ff3576040519150601f19603f3d011682016040523d82523d6000602084013e611ff8565b606091505b5080516120175760405162461bcd60e51b815260040161092b90612919565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061203d565b5060015b949350505050565b6060816120695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612093578061207d81612ada565b915061208c9050600a83612a09565b915061206d565b60008167ffffffffffffffff8111156120ae576120ae612b4b565b6040519080825280601f01601f1916602001820160405280156120d8576020820181803683370190505b5090505b841561203d576120ed600183612a45565b91506120fa600a86612af5565b6121059060306129f1565b60f81b81838151811061211a5761211a612b35565b60200101906001600160f81b031916908160001a90535061213c600a86612a09565b94506120dc565b6000546001600160a01b0384166121a65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161092b565b6121b1816000541190565b156121fe5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161092b565b7f00000000000000000000000000000000000000000000000000000000000000198311156122795760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161092b565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906122d59087906129c6565b6001600160801b031681526020018583602001516122f391906129c6565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124135760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123d76000888488611f37565b6123f35760405162461bcd60e51b815260040161092b90612919565b816123fd81612ada565b925050808061240b90612ada565b91505061238a565b506000819055611bd0565b82805461242a90612a9f565b90600052602060002090601f01602090048101928261244c5760008555612492565b82601f1061246557805160ff1916838001178555612492565b82800160010185558215612492579182015b82811115612492578251825591602001919060010190612477565b5061113d9291505b8082111561113d576000815560010161249a565b600067ffffffffffffffff808411156124c9576124c9612b4b565b604051601f8501601f19908116603f011681019082821181831017156124f1576124f1612b4b565b8160405280935085815286868601111561250a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461253b57600080fd5b919050565b8035801515811461253b57600080fd5b60006020828403121561256257600080fd5b611cdf82612524565b6000806040838503121561257e57600080fd5b61258783612524565b915061259560208401612524565b90509250929050565b6000806000606084860312156125b357600080fd5b6125bc84612524565b92506125ca60208501612524565b9150604084013590509250925092565b600080600080608085870312156125f057600080fd5b6125f985612524565b935061260760208601612524565b925060408501359150606085013567ffffffffffffffff81111561262a57600080fd5b8501601f8101871361263b57600080fd5b61264a878235602084016124ae565b91505092959194509250565b6000806040838503121561266957600080fd5b61267283612524565b915061259560208401612540565b6000806040838503121561269357600080fd5b61269c83612524565b946020939093013593505050565b6000602082840312156126bc57600080fd5b611cdf82612540565b6000602082840312156126d757600080fd5b8135611cdf81612b61565b6000602082840312156126f457600080fd5b8151611cdf81612b61565b60006020828403121561271157600080fd5b813567ffffffffffffffff81111561272857600080fd5b8201601f8101841361273957600080fd5b61203d848235602084016124ae565b60006020828403121561275a57600080fd5b5035919050565b60008151808452612779816020860160208601612a5c565b601f01601f19169290920160200192915050565b6000815161279f818560208601612a5c565b9290920192915050565b600080845481600182811c9150808316806127c557607f831692505b60208084108214156127e557634e487b7160e01b86526022600452602486fd5b8180156127f9576001811461280a57612837565b60ff19861689528489019650612837565b60008b81526020902060005b8681101561282f5781548b820152908501908301612816565b505084890196505b505050505050612847818561278d565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061288390830184612761565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128c5578351835292840192918401916001016128a9565b50909695505050505050565b602081526000611cdf6020830184612761565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b602080825260099082015268536f6c64206f75742160b81b604082015260600190565b60006001600160801b038083168185168083038211156129e8576129e8612b09565b01949350505050565b60008219821115612a0457612a04612b09565b500190565b600082612a1857612a18612b1f565b500490565b60006001600160801b0383811690831681811015612a3d57612a3d612b09565b039392505050565b600082821015612a5757612a57612b09565b500390565b60005b83811015612a77578181015183820152602001612a5f565b838111156115f65750506000910152565b600081612a9757612a97612b09565b506000190190565b600181811c90821680612ab357607f821691505b60208210811415612ad457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612aee57612aee612b09565b5060010190565b600082612b0457612b04612b1f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117c257600080fdfea2646970667358221220564c6cc2b556d2632536e2c8ed28cd820bf4a211bb4a58278d4f7707282c82bd64736f6c63430008070033

Deployed Bytecode Sourcemap

42223:5532:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29945:370;;;;;;;;;;-1:-1:-1;29945:370:0;;;;;:::i;:::-;;:::i;:::-;;;7644:14:1;;7637:22;7619:41;;7607:2;7592:18;29945:370:0;;;;;;;;31671:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33196:204::-;;;;;;;;;;-1:-1:-1;33196:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6305:32:1;;;6287:51;;6275:2;6260:18;33196:204:0;6141:203:1;32759:379:0;;;;;;;;;;-1:-1:-1;32759:379:0;;;;;:::i;:::-;;:::i;:::-;;42646:33;;;;;;;;;;-1:-1:-1;42646:33:0;;;;;;;;46212:157;;;;;;;;;;-1:-1:-1;46212:157:0;;;;;:::i;:::-;;:::i;28509:94::-;;;;;;;;;;-1:-1:-1;28562:7:0;28585:12;28509:94;;;20122:25:1;;;20110:2;20095:18;28509:94:0;19976:177:1;34046:142:0;;;;;;;;;;-1:-1:-1;34046:142:0;;;;;:::i;:::-;;:::i;44185:368::-;;;:::i;29137:744::-;;;;;;;;;;-1:-1:-1;29137:744:0;;;;;:::i;:::-;;:::i;46377:120::-;;;;;;;;;;-1:-1:-1;46377:120:0;;;;;:::i;:::-;;:::i;42604:33::-;;;;;;;;;;;;;;;;45526:127;;;;;;;;;;-1:-1:-1;45526:127:0;;;;;:::i;:::-;;:::i;42686:35::-;;;;;;;;;;-1:-1:-1;42686:35:0;;;;;;;;;;;43081:525;;;;;;;;;;-1:-1:-1;43081:525:0;;;;;:::i;:::-;;:::i;45404:114::-;;;;;;;;;;-1:-1:-1;45404:114:0;;;;;:::i;:::-;;:::i;34251:157::-;;;;;;;;;;-1:-1:-1;34251:157:0;;;;;:::i;:::-;;:::i;47022:730::-;;;;;;;;;;-1:-1:-1;47022:730:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;42434:36::-;;;;;;;;;;;;;;;;28672:177;;;;;;;;;;-1:-1:-1;28672:177:0;;;;;:::i;:::-;;:::i;43661:484::-;;;;;;;;;;;;;:::i;31494:118::-;;;;;;;;;;-1:-1:-1;31494:118:0;;;;;:::i;:::-;;:::i;42389:38::-;;;;;;;;;;;;;;;;30371:211;;;;;;;;;;-1:-1:-1;30371:211:0;;;;;:::i;:::-;;:::i;7489:103::-;;;;;;;;;;;;;:::i;42522:32::-;;;;;;;;;;;;;;;;46086:118;;;;;;;;;;-1:-1:-1;46086:118:0;;;;;:::i;:::-;;:::i;42477:38::-;;;;;;;;;;;;;;;;46543:204;;;;;;;;;;;;;:::i;6838:87::-;;;;;;;;;;-1:-1:-1;6911:6:0;;-1:-1:-1;;;;;6911:6:0;6838:87;;31826:98;;;;;;;;;;;;;:::i;42730:51::-;;;;;;;;;;-1:-1:-1;42730:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;33464:274;;;;;;;;;;-1:-1:-1;33464:274:0;;;;;:::i;:::-;;:::i;45274:122::-;;;;;;;;;;-1:-1:-1;45274:122:0;;;;;:::i;:::-;;:::i;34471:311::-;;;;;;;;;;-1:-1:-1;34471:311:0;;;;;:::i;:::-;;:::i;45811:157::-;;;;;;;;;;-1:-1:-1;45811:157:0;;;;;:::i;:::-;;:::i;46780:234::-;;;;;;;;;;-1:-1:-1;46780:234:0;;;;;:::i;:::-;;:::i;45661:142::-;;;;;;;;;;-1:-1:-1;45661:142:0;;;;;:::i;:::-;;:::i;42356:26::-;;;;;;;;;;;;;:::i;38802:43::-;;;;;;;;;;;;;;;;42561:36;;;;;;;;;;;;;;;;33801:186;;;;;;;;;;-1:-1:-1;33801:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;33946:25:0;;;33923:4;33946:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33801:186;7747:201;;;;;;;;;;-1:-1:-1;7747:201:0;;;;;:::i;:::-;;:::i;45976:102::-;;;;;;;;;;-1:-1:-1;45976:102:0;;;;;:::i;:::-;;:::i;29945:370::-;30072:4;-1:-1:-1;;;;;;30102:40:0;;-1:-1:-1;;;30102:40:0;;:99;;-1:-1:-1;;;;;;;30153:48:0;;-1:-1:-1;;;30153:48:0;30102:99;:160;;;-1:-1:-1;;;;;;;30212:50:0;;-1:-1:-1;;;30212:50:0;30102:160;:207;;;-1:-1:-1;;;;;;;;;;19731:40:0;;;30273:36;30088:221;29945:370;-1:-1:-1;;29945:370:0:o;31671:94::-;31725:13;31754:5;31747:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31671:94;:::o;33196:204::-;33264:7;33288:16;33296:7;35078:4;35108:12;-1:-1:-1;35098:22:0;35021:105;33288:16;33280:74;;;;-1:-1:-1;;;33280:74:0;;18326:2:1;33280:74:0;;;18308:21:1;18365:2;18345:18;;;18338:30;18404:34;18384:18;;;18377:62;-1:-1:-1;;;18455:18:1;;;18448:43;18508:19;;33280:74:0;;;;;;;;;-1:-1:-1;33370:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33370:24:0;;33196:204::o;32759:379::-;32828:13;32844:24;32860:7;32844:15;:24::i;:::-;32828:40;;32889:5;-1:-1:-1;;;;;32883:11:0;:2;-1:-1:-1;;;;;32883:11:0;;;32875:58;;;;-1:-1:-1;;;32875:58:0;;15139:2:1;32875:58:0;;;15121:21:1;15178:2;15158:18;;;15151:30;15217:34;15197:18;;;15190:62;-1:-1:-1;;;15268:18:1;;;15261:32;15310:19;;32875:58:0;14937:398:1;32875:58:0;5642:10;-1:-1:-1;;;;;32958:21:0;;;;:62;;-1:-1:-1;32983:37:0;33000:5;5642:10;33801:186;:::i;32983:37::-;32942:153;;;;-1:-1:-1;;;32942:153:0;;12060:2:1;32942:153:0;;;12042:21:1;12099:2;12079:18;;;12072:30;12138:34;12118:18;;;12111:62;12209:27;12189:18;;;12182:55;12254:19;;32942:153:0;11858:421:1;32942:153:0;33104:28;33113:2;33117:7;33126:5;33104:8;:28::i;:::-;32821:317;32759:379;;:::o;46212:157::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;46323:17:::1;:38:::0;46212:157::o;34046:142::-;34154:28;34164:4;34170:2;34174:7;34154:9;:28::i;44185:368::-;43011:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;-1:-1:-1::0;;;2402:63:0::1;;;;;;;:::i;:::-;1812:1;2543:7;:18:::0;44268:16:::2;::::0;::::2;::::0;::::2;;;44267:17;44259:51;;;::::0;-1:-1:-1;;;44259:51:0;;14789:2:1;44259:51:0::2;::::0;::::2;14771:21:1::0;14828:2;14808:18;;;14801:30;-1:-1:-1;;;14847:18:1;;;14840:51;14908:18;;44259:51:0::2;14587:345:1::0;44259:51:0::2;44323:14;44340:25;44355:9;44340:14;:25::i;:::-;44323:42;;44410:13;;44400:6;:23;;44378:112;;;::::0;-1:-1:-1;;;44378:112:0;;10071:2:1;44378:112:0::2;::::0;::::2;10053:21:1::0;10110:2;10090:18;;;10083:30;10149:34;10129:18;;;10122:62;-1:-1:-1;;;10200:18:1;;;10193:37;10247:19;;44378:112:0::2;9869:403:1::0;44378:112:0::2;44503:42;44526:10;44538:6;44503:22;:42::i;:::-;-1:-1:-1::0;1768:1:0::1;2722:7;:22:::0;44185:368::o;29137:744::-;29246:7;29281:16;29291:5;29281:9;:16::i;:::-;29273:5;:24;29265:71;;;;-1:-1:-1;;;29265:71:0;;8097:2:1;29265:71:0;;;8079:21:1;8136:2;8116:18;;;8109:30;8175:34;8155:18;;;8148:62;-1:-1:-1;;;8226:18:1;;;8219:32;8268:19;;29265:71:0;7895:398:1;29265:71:0;29343:22;28585:12;;;29343:22;;29463:350;29487:14;29483:1;:18;29463:350;;;29517:31;29551:14;;;:11;:14;;;;;;;;;29517:48;;;;;;;;;-1:-1:-1;;;;;29517:48:0;;;;;-1:-1:-1;;;29517:48:0;;;;;;;;;;;;29578:28;29574:89;;29639:14;;;-1:-1:-1;29574:89:0;29696:5;-1:-1:-1;;;;;29675:26:0;:17;-1:-1:-1;;;;;29675:26:0;;29671:135;;;29733:5;29718:11;:20;29714:59;;;-1:-1:-1;29760:1:0;-1:-1:-1;29753:8:0;;-1:-1:-1;;;29753:8:0;29714:59;29783:13;;;;:::i;:::-;;;;29671:135;-1:-1:-1;29503:3:0;;;;:::i;:::-;;;;29463:350;;;-1:-1:-1;29819:56:0;;-1:-1:-1;;;29819:56:0;;17135:2:1;29819:56:0;;;17117:21:1;17174:2;17154:18;;;17147:30;17213:34;17193:18;;;17186:62;-1:-1:-1;;;17264:18:1;;;17257:44;17318:19;;29819:56:0;16933:410:1;46377:120:0;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;46461:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46377:120:::0;:::o;45526:127::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;45609:16:::1;:36:::0;;;::::1;;;;-1:-1:-1::0;;45609:36:0;;::::1;::::0;;;::::1;::::0;;45526:127::o;43081:525::-;43011:13;:11;:13::i;:::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23:::1;7050:68;;;;-1:-1:-1::0;;;7050:68:0::1;;;;;;;:::i;:::-;43173:12:::2;;43163:6;:22;;43155:71;;;::::0;-1:-1:-1;;;43155:71:0;;9666:2:1;43155:71:0::2;::::0;::::2;9648:21:1::0;9705:2;9685:18;;;9678:30;9744:34;9724:18;;;9717:62;-1:-1:-1;;;9795:18:1;;;9788:34;9839:19;;43155:71:0::2;9464:400:1::0;43155:71:0::2;43273:14;;43262:6;43246:13;28562:7:::0;28585:12;;28509:94;43246:13:::2;:22;;;;:::i;:::-;43245:42;;43237:64;;;;-1:-1:-1::0;;;43237:64:0::2;;;;;;;:::i;:::-;43334:21;43343:12;43334:6:::0;:21:::2;:::i;:::-;:26:::0;43312:120:::2;;;::::0;-1:-1:-1;;;43312:120:0;;16722:2:1;43312:120:0::2;::::0;::::2;16704:21:1::0;16761:2;16741:18;;;16734:30;16800:34;16780:18;;;16773:62;-1:-1:-1;;;16851:18:1;;;16844:42;16903:19;;43312:120:0::2;16520:408:1::0;43312:120:0::2;43443:17;43463:21;43472:12;43463:6:::0;:21:::2;:::i;:::-;43443:41;;43502:9;43497:102;43521:9;43517:1;:13;43497:102;;;43552:35;43562:10;43574:12;43552:9;:35::i;:::-;43532:3:::0;::::2;::::0;::::2;:::i;:::-;;;;43497:102;;45404:114:::0;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;45482:12:::1;:28:::0;45404:114::o;34251:157::-;34363:39;34380:4;34386:2;34390:7;34363:39;;;;;;;;;;;;:16;:39::i;47022:730::-;47128:16;47162;47181:19;47191:8;47181:9;:19::i;:::-;47162:38;;47211:24;47252:8;47238:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47238:23:0;;47211:50;;47272:14;47297:20;47320:13;28562:7;28585:12;;28509:94;47320:13;47297:36;;47349:9;47344:376;47368:12;47364:1;:16;47344:376;;;47402:12;47417:10;47425:1;35078:4;35108:12;-1:-1:-1;35098:22:0;35021:105;47417:10;47402:25;;47446:7;47442:267;;;47492:8;-1:-1:-1;;;;;47478:22:0;:10;47486:1;47478:7;:10::i;:::-;-1:-1:-1;;;;;47478:22:0;;47474:121;;;47543:1;47525:7;47533:6;47525:15;;;;;;;;:::i;:::-;;;;;;;;;;:19;47567:8;;;;:::i;:::-;;;;47474:121;47442:267;;;47621:7;47620:8;:38;;;;-1:-1:-1;47632:7:0;47640:12;47651:1;47640:8;:12;:::i;:::-;47632:21;;;;;;;;:::i;:::-;;;;;;;47657:1;47632:26;47620:38;47616:93;;;47679:14;;;;:::i;:::-;;;;47616:93;-1:-1:-1;47382:3:0;;;;:::i;:::-;;;;47344:376;;;-1:-1:-1;47737:7:0;;47022:730;-1:-1:-1;;;;;47022:730:0:o;28672:177::-;28739:7;28585:12;;28763:5;:21;28755:69;;;;-1:-1:-1;;;28755:69:0;;10479:2:1;28755:69:0;;;10461:21:1;10518:2;10498:18;;;10491:30;10557:34;10537:18;;;10530:62;-1:-1:-1;;;10608:18:1;;;10601:33;10651:19;;28755:69:0;10277:399:1;28755:69:0;-1:-1:-1;28838:5:0;28672:177::o;43661:484::-;43011:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;-1:-1:-1::0;;;2402:63:0::1;;;;;;;:::i;:::-;1812:1;2543:7;:18:::0;43734:14:::2;::::0;::::2;;43733:15;43725:47;;;::::0;-1:-1:-1;;;43725:47:0;;19830:2:1;43725:47:0::2;::::0;::::2;19812:21:1::0;19869:2;19849:18;;;19842:30;-1:-1:-1;;;19888:18:1;;;19881:49;19947:18;;43725:47:0::2;19628:343:1::0;43725:47:0::2;43843:17;::::0;43824:10:::2;43807:28;::::0;;;:16:::2;:28;::::0;;;;;:32:::2;::::0;43838:1:::2;43807:32;:::i;:::-;:53;;43785:146;;;::::0;-1:-1:-1;;;43785:146:0;;11648:2:1;43785:146:0::2;::::0;::::2;11630:21:1::0;11687:2;11667:18;;;11660:30;11726:34;11706:18;;;11699:62;-1:-1:-1;;;11777:18:1;;;11770:41;11828:19;;43785:146:0::2;11446:407:1::0;43785:146:0::2;43973:1;43952:17;;:22;;43944:56;;;::::0;-1:-1:-1;;;43944:56:0;;18740:2:1;43944:56:0::2;::::0;::::2;18722:21:1::0;18779:2;18759:18;;;18752:30;-1:-1:-1;;;18798:18:1;;;18791:51;18859:18;;43944:56:0::2;18538:345:1::0;43944:56:0::2;44053:1;44033:17;;:21;;;;:::i;:::-;44013:17;:41:::0;44084:10:::2;44067:28;::::0;;;:16:::2;:28;::::0;;;;:33;;44099:1:::2;::::0;44067:28;:33:::2;::::0;44099:1;;44067:33:::2;:::i;:::-;::::0;;;-1:-1:-1;44113:24:0::2;::::0;-1:-1:-1;44123:10:0::2;44135:1;44113:9;:24::i;:::-;1768:1:::1;2722:7;:22:::0;43661:484::o;31494:118::-;31558:7;31581:20;31593:7;31581:11;:20::i;:::-;:25;;31494:118;-1:-1:-1;;31494:118:0:o;30371:211::-;30435:7;-1:-1:-1;;;;;30459:19:0;;30451:75;;;;-1:-1:-1;;;30451:75:0;;12486:2:1;30451:75:0;;;12468:21:1;12525:2;12505:18;;;12498:30;12564:34;12544:18;;;12537:62;-1:-1:-1;;;12615:18:1;;;12608:41;12666:19;;30451:75:0;12284:407:1;30451:75:0;-1:-1:-1;;;;;;30548:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30548:27:0;;30371:211::o;7489:103::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;46086:118::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;46166:13:::1;:30:::0;46086:118::o;46543:204::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;43011:13:::1;:11;:13::i;:::-;1812:1:::2;2410:7;;:19;;2402:63;;;;-1:-1:-1::0;;;2402:63:0::2;;;;;;;:::i;:::-;1812:1;2543:7;:18:::0;46639:49:::3;::::0;46621:12:::3;::::0;46639:10:::3;::::0;46662:21:::3;::::0;46621:12;46639:49;46621:12;46639:49;46662:21;46639:10;:49:::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46620:68;;;46707:7;46699:40;;;::::0;-1:-1:-1;;;46699:40:0;;13666:2:1;46699:40:0::3;::::0;::::3;13648:21:1::0;13705:2;13685:18;;;13678:30;-1:-1:-1;;;13724:18:1;;;13717:50;13784:18;;46699:40:0::3;13464:344:1::0;31826:98:0;31882:13;31911:7;31904:14;;;;;:::i;33464:274::-;-1:-1:-1;;;;;33555:24:0;;5642:10;33555:24;;33547:63;;;;-1:-1:-1;;;33547:63:0;;14015:2:1;33547:63:0;;;13997:21:1;14054:2;14034:18;;;14027:30;14093:28;14073:18;;;14066:56;14139:18;;33547:63:0;13813:350:1;33547:63:0;5642:10;33619:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33619:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33619:53:0;;;;;;;;;;33684:48;;7619:41:1;;;33619:42:0;;5642:10;33684:48;;7592:18:1;33684:48:0;;;;;;;33464:274;;:::o;45274:122::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;45356:14:::1;:32:::0;45274:122::o;34471:311::-;34608:28;34618:4;34624:2;34628:7;34608:9;:28::i;:::-;34659:48;34682:4;34688:2;34692:7;34701:5;34659:22;:48::i;:::-;34643:133;;;;-1:-1:-1;;;34643:133:0;;;;;;;:::i;:::-;34471:311;;;;:::o;45811:157::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;45922:17:::1;:38:::0;45811:157::o;46780:234::-;46890:13;46965:12;46979:25;46996:7;46979:16;:25::i;:::-;46948:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46921:85;;46780:234;;;:::o;45661:142::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;45763:14:::1;:32:::0;;-1:-1:-1;;45763:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45661:142::o;42356:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7747:201::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7836:22:0;::::1;7828:73;;;::::0;-1:-1:-1;;;7828:73:0;;8500:2:1;7828:73:0::1;::::0;::::1;8482:21:1::0;8539:2;8519:18;;;8512:30;8578:34;8558:18;;;8551:62;-1:-1:-1;;;8629:18:1;;;8622:36;8675:19;;7828:73:0::1;8298:402:1::0;7828:73:0::1;7912:28;7931:8;7912:18;:28::i;:::-;7747:201:::0;:::o;45976:102::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;46048:9:::1;:22:::0;45976:102::o;38624:172::-;38721:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38721:29:0;-1:-1:-1;;;;;38721:29:0;;;;;;;;;38762:28;;38721:24;;38762:28;;;;;;;38624:172;;;:::o;36989:1529::-;37086:35;37124:20;37136:7;37124:11;:20::i;:::-;37195:18;;37086:58;;-1:-1:-1;37153:22:0;;-1:-1:-1;;;;;37179:34:0;5642:10;-1:-1:-1;;;;;37179:34:0;;:81;;;-1:-1:-1;5642:10:0;37224:20;37236:7;37224:11;:20::i;:::-;-1:-1:-1;;;;;37224:36:0;;37179:81;:142;;;-1:-1:-1;37288:18:0;;37271:50;;5642:10;33801:186;:::i;37271:50::-;37153:169;;37347:17;37331:101;;;;-1:-1:-1;;;37331:101:0;;14370:2:1;37331:101:0;;;14352:21:1;14409:2;14389:18;;;14382:30;14448:34;14428:18;;;14421:62;-1:-1:-1;;;14499:18:1;;;14492:48;14557:19;;37331:101:0;14168:414:1;37331:101:0;37479:4;-1:-1:-1;;;;;37457:26:0;:13;:18;;;-1:-1:-1;;;;;37457:26:0;;37441:98;;;;-1:-1:-1;;;37441:98:0;;12898:2:1;37441:98:0;;;12880:21:1;12937:2;12917:18;;;12910:30;12976:34;12956:18;;;12949:62;-1:-1:-1;;;13027:18:1;;;13020:36;13073:19;;37441:98:0;12696:402:1;37441:98:0;-1:-1:-1;;;;;37554:16:0;;37546:66;;;;-1:-1:-1;;;37546:66:0;;10883:2:1;37546:66:0;;;10865:21:1;10922:2;10902:18;;;10895:30;10961:34;10941:18;;;10934:62;-1:-1:-1;;;11012:18:1;;;11005:35;11057:19;;37546:66:0;10681:401:1;37546:66:0;37721:49;37738:1;37742:7;37751:13;:18;;;37721:8;:49::i;:::-;-1:-1:-1;;;;;37779:18:0;;;;;;:12;:18;;;;;:31;;37809:1;;37779:18;:31;;37809:1;;-1:-1:-1;;;;;37779:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;37779:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;37817:16:0;;-1:-1:-1;37817:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;37817:16:0;;:29;;-1:-1:-1;;37817:29:0;;:::i;:::-;;;-1:-1:-1;;;;;37817:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37876:43:0;;;;;;;;-1:-1:-1;;;;;37876:43:0;;;;;;37902:15;37876:43;;;;;;;;;-1:-1:-1;37853:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;37853:66:0;-1:-1:-1;;;;;;37853:66:0;;;;;;;;;;;38169:11;37865:7;-1:-1:-1;38169:11:0;:::i;:::-;38232:1;38191:24;;;:11;:24;;;;;:29;38147:33;;-1:-1:-1;;;;;;38191:29:0;38187:236;;38249:20;38257:11;35078:4;35108:12;-1:-1:-1;35098:22:0;35021:105;38249:20;38245:171;;;38309:97;;;;;;;;38336:18;;-1:-1:-1;;;;;38309:97:0;;;;;;38367:28;;;;38309:97;;;;;;;;;;-1:-1:-1;38282:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;38282:124:0;-1:-1:-1;;;;;;38282:124:0;;;;;;;;;;;;38245:171;38455:7;38451:2;-1:-1:-1;;;;;38436:27:0;38445:4;-1:-1:-1;;;;;38436:27:0;;;;;;;;;;;38470:42;37079:1439;;;36989:1529;;;:::o;42883:87::-;42938:10;42952:9;42938:23;42930:32;;;;;44588:446;44650:7;44670:17;44698:9;;44690:5;:17;;;;:::i;:::-;44670:37;-1:-1:-1;44726:14:0;;44718:57;;;;-1:-1:-1;;;44718:57:0;;11289:2:1;44718:57:0;;;11271:21:1;11328:2;11308:18;;;11301:30;11367:32;11347:18;;;11340:60;11417:18;;44718:57:0;11087:354:1;44718:57:0;44788:14;44813:9;;44805:5;:17;;;;:::i;:::-;44788:34;;44850:1;44841:6;:10;44833:42;;;;-1:-1:-1;;;44833:42:0;;9318:2:1;44833:42:0;;;9300:21:1;9357:2;9337:18;;;9330:30;-1:-1:-1;;;9376:18:1;;;9369:49;9435:18;;44833:42:0;9116:343:1;44833:42:0;44953:12;;44936:14;;:29;;;;:::i;:::-;44925:6;44909:13;28562:7;28585:12;;28509:94;44909:13;:22;;;;:::i;:::-;44908:57;;44886:116;;;;-1:-1:-1;;;44886:116:0;;;;;;;:::i;:::-;45020:6;44588:446;-1:-1:-1;;;44588:446:0:o;45042:184::-;45158:14;;45147:6;45131:13;28562:7;28585:12;;28509:94;45131:13;:22;;;;:::i;:::-;45130:42;;45122:64;;;;-1:-1:-1;;;45122:64:0;;;;;;;:::i;:::-;45197:21;45207:2;45211:6;35132:98;35197:27;35207:2;35211:8;35197:27;;;;;;;;;;;;:9;:27::i;30834:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;30951:16:0;30959:7;35078:4;35108:12;-1:-1:-1;35098:22:0;35021:105;30951:16;30943:71;;;;-1:-1:-1;;;30943:71:0;;8907:2:1;30943:71:0;;;8889:21:1;8946:2;8926:18;;;8919:30;8985:34;8965:18;;;8958:62;-1:-1:-1;;;9036:18:1;;;9029:40;9086:19;;30943:71:0;8705:406:1;30943:71:0;31023:26;31071:12;31060:7;:23;31056:93;;31115:22;31125:12;31115:7;:22;:::i;:::-;:26;;31140:1;31115:26;:::i;:::-;31094:47;;31056:93;31177:7;31157:212;31194:18;31186:4;:26;31157:212;;31231:31;31265:17;;;:11;:17;;;;;;;;;31231:51;;;;;;;;;-1:-1:-1;;;;;31231:51:0;;;;;-1:-1:-1;;;31231:51:0;;;;;;;;;;;;31295:28;31291:71;;31343:9;30834:606;-1:-1:-1;;;;30834:606:0:o;31291:71::-;-1:-1:-1;31214:6:0;;;;:::i;:::-;;;;31157:212;;;-1:-1:-1;31377:57:0;;-1:-1:-1;;;31377:57:0;;17910:2:1;31377:57:0;;;17892:21:1;17949:2;17929:18;;;17922:30;17988:34;17968:18;;;17961:62;-1:-1:-1;;;18039:18:1;;;18032:45;18094:19;;31377:57:0;17708:411:1;8108:191:0;8201:6;;;-1:-1:-1;;;;;8218:17:0;;;-1:-1:-1;;;;;;8218:17:0;;;;;;;8251:40;;8201:6;;;8218:17;8201:6;;8251:40;;8182:16;;8251:40;8171:128;8108:191;:::o;40335:690::-;40472:4;-1:-1:-1;;;;;40489:13:0;;9834:19;:23;40485:535;;40528:72;;-1:-1:-1;;;40528:72:0;;-1:-1:-1;;;;;40528:36:0;;;;;:72;;5642:10;;40579:4;;40585:7;;40594:5;;40528:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40528:72:0;;;;;;;;-1:-1:-1;;40528:72:0;;;;;;;;;;;;:::i;:::-;;;40515:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40759:13:0;;40755:215;;40792:61;;-1:-1:-1;;;40792:61:0;;;;;;;:::i;40755:215::-;40938:6;40932:13;40923:6;40919:2;40915:15;40908:38;40515:464;-1:-1:-1;;;;;;40650:55:0;-1:-1:-1;;;40650:55:0;;-1:-1:-1;40643:62:0;;40485:535;-1:-1:-1;41008:4:0;40485:535;40335:690;;;;;;:::o;3124:723::-;3180:13;3401:10;3397:53;;-1:-1:-1;;3428:10:0;;;;;;;;;;;;-1:-1:-1;;;3428:10:0;;;;;3124:723::o;3397:53::-;3475:5;3460:12;3516:78;3523:9;;3516:78;;3549:8;;;;:::i;:::-;;-1:-1:-1;3572:10:0;;-1:-1:-1;3580:2:0;3572:10;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3626:17:0;;3604:39;;3654:154;3661:10;;3654:154;;3688:11;3698:1;3688:11;;:::i;:::-;;-1:-1:-1;3757:10:0;3765:2;3757:5;:10;:::i;:::-;3744:24;;:2;:24;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3714:56:0;;;;;;;;-1:-1:-1;3785:11:0;3794:2;3785:11;;:::i;:::-;;;3654:154;;35485:1272;35590:20;35613:12;-1:-1:-1;;;;;35640:16:0;;35632:62;;;;-1:-1:-1;;;35632:62:0;;16320:2:1;35632:62:0;;;16302:21:1;16359:2;16339:18;;;16332:30;16398:34;16378:18;;;16371:62;-1:-1:-1;;;16449:18:1;;;16442:31;16490:19;;35632:62:0;16118:397:1;35632:62:0;35831:21;35839:12;35078:4;35108:12;-1:-1:-1;35098:22:0;35021:105;35831:21;35830:22;35822:64;;;;-1:-1:-1;;;35822:64:0;;15962:2:1;35822:64:0;;;15944:21:1;16001:2;15981:18;;;15974:30;16040:31;16020:18;;;16013:59;16089:18;;35822:64:0;15760:353:1;35822:64:0;35913:12;35901:8;:24;;35893:71;;;;-1:-1:-1;;;35893:71:0;;19090:2:1;35893:71:0;;;19072:21:1;19129:2;19109:18;;;19102:30;19168:34;19148:18;;;19141:62;-1:-1:-1;;;19219:18:1;;;19212:32;19261:19;;35893:71:0;18888:398:1;35893:71:0;-1:-1:-1;;;;;36076:16:0;;36043:30;36076:16;;;:12;:16;;;;;;;;;36043:49;;;;;;;;;-1:-1:-1;;;;;36043:49:0;;;;;-1:-1:-1;;;36043:49:0;;;;;;;;;;;36118:119;;;;;;;;36138:19;;36043:49;;36118:119;;;36138:39;;36168:8;;36138:39;:::i;:::-;-1:-1:-1;;;;;36118:119:0;;;;;36221:8;36186:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;36118:119:0;;;;;;-1:-1:-1;;;;;36099:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;36099:138:0;;;;;;;;;;;;36272:43;;;;;;;;;;;36298:15;36272:43;;;;;;;;36244:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;36244:71:0;-1:-1:-1;;;;;;36244:71:0;;;;;;;;;;;;;;;;;;36256:12;;36368:281;36392:8;36388:1;:12;36368:281;;;36421:38;;36446:12;;-1:-1:-1;;;;;36421:38:0;;;36438:1;;36421:38;;36438:1;;36421:38;36486:59;36517:1;36521:2;36525:12;36539:5;36486:22;:59::i;:::-;36468:150;;;;-1:-1:-1;;;36468:150:0;;;;;;;:::i;:::-;36627:14;;;;:::i;:::-;;;;36402:3;;;;;:::i;:::-;;;;36368:281;;;-1:-1:-1;36657:12:0;:27;;;36691:60;34471: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;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:185::-;4604:3;4642:5;4636:12;4657:52;4702:6;4697:3;4690:4;4683:5;4679:16;4657:52;:::i;:::-;4725:16;;;;;4562:185;-1:-1:-1;;4562:185:1:o;4752:1174::-;4928:3;4957:1;4990:6;4984:13;5020:3;5042:1;5070:9;5066:2;5062:18;5052:28;;5130:2;5119:9;5115:18;5152;5142:61;;5196:4;5188:6;5184:17;5174:27;;5142:61;5222:2;5270;5262:6;5259:14;5239:18;5236:38;5233:165;;;-1:-1:-1;;;5297:33:1;;5353:4;5350:1;5343:15;5383:4;5304:3;5371:17;5233:165;5414:18;5441:104;;;;5559:1;5554:320;;;;5407:467;;5441:104;-1:-1:-1;;5474:24:1;;5462:37;;5519:16;;;;-1:-1:-1;5441:104:1;;5554:320;20231:1;20224:14;;;20268:4;20255:18;;5649:1;5663:165;5677:6;5674:1;5671:13;5663:165;;;5755:14;;5742:11;;;5735:35;5798:16;;;;5692:10;;5663:165;;;5667:3;;5857:6;5852:3;5848:16;5841:23;;5407:467;;;;;;;5890:30;5916:3;5908:6;5890:30;:::i;:::-;5883:37;4752:1174;-1:-1:-1;;;;;4752:1174:1:o;6349:488::-;-1:-1:-1;;;;;6618:15:1;;;6600:34;;6670:15;;6665:2;6650:18;;6643:43;6717:2;6702:18;;6695:34;;;6765:3;6760:2;6745:18;;6738:31;;;6543:4;;6786:45;;6811:19;;6803:6;6786:45;:::i;:::-;6778:53;6349:488;-1:-1:-1;;;;;;6349:488:1:o;6842:632::-;7013:2;7065:21;;;7135:13;;7038:18;;;7157:22;;;6984:4;;7013:2;7236:15;;;;7210:2;7195:18;;;6984:4;7279:169;7293:6;7290:1;7287:13;7279:169;;;7354:13;;7342:26;;7423:15;;;;7388:12;;;;7315:1;7308:9;7279:169;;;-1:-1:-1;7465:3:1;;6842:632;-1:-1:-1;;;;;;6842:632:1:o;7671:219::-;7820:2;7809:9;7802:21;7783:4;7840:44;7880:2;7869:9;7865:18;7857:6;7840:44;:::i;13103:356::-;13305:2;13287:21;;;13324:18;;;13317:30;13383:34;13378:2;13363:18;;13356:62;13450:2;13435:18;;13103:356::o;15340:415::-;15542:2;15524:21;;;15581:2;15561:18;;;15554:30;15620:34;15615:2;15600:18;;15593:62;-1:-1:-1;;;15686:2:1;15671:18;;15664:49;15745:3;15730:19;;15340:415::o;17348:355::-;17550:2;17532:21;;;17589:2;17569:18;;;17562:30;17628:33;17623:2;17608:18;;17601:61;17694:2;17679:18;;17348:355::o;19291:332::-;19493:2;19475:21;;;19532:1;19512:18;;;19505:29;-1:-1:-1;;;19565:2:1;19550:18;;19543:39;19614:2;19599:18;;19291:332::o;20284:253::-;20324:3;-1:-1:-1;;;;;20413:2:1;20410:1;20406:10;20443:2;20440:1;20436:10;20474:3;20470:2;20466:12;20461:3;20458:21;20455:47;;;20482:18;;:::i;:::-;20518:13;;20284:253;-1:-1:-1;;;;20284:253:1:o;20542:128::-;20582:3;20613:1;20609:6;20606:1;20603:13;20600:39;;;20619:18;;:::i;:::-;-1:-1:-1;20655:9:1;;20542:128::o;20675:120::-;20715:1;20741;20731:35;;20746:18;;:::i;:::-;-1:-1:-1;20780:9:1;;20675:120::o;20800:246::-;20840:4;-1:-1:-1;;;;;20953:10:1;;;;20923;;20975:12;;;20972:38;;;20990:18;;:::i;:::-;21027:13;;20800:246;-1:-1:-1;;;20800:246:1:o;21051:125::-;21091:4;21119:1;21116;21113:8;21110:34;;;21124:18;;:::i;:::-;-1:-1:-1;21161:9:1;;21051:125::o;21181:258::-;21253:1;21263:113;21277:6;21274:1;21271:13;21263:113;;;21353:11;;;21347:18;21334:11;;;21327:39;21299:2;21292:10;21263:113;;;21394:6;21391:1;21388:13;21385:48;;;-1:-1:-1;;21429:1:1;21411:16;;21404:27;21181:258::o;21444:136::-;21483:3;21511:5;21501:39;;21520:18;;:::i;:::-;-1:-1:-1;;;21556:18:1;;21444:136::o;21585:380::-;21664:1;21660:12;;;;21707;;;21728:61;;21782:4;21774:6;21770:17;21760:27;;21728:61;21835:2;21827:6;21824:14;21804:18;21801:38;21798:161;;;21881:10;21876:3;21872:20;21869:1;21862:31;21916:4;21913:1;21906:15;21944:4;21941:1;21934:15;21798:161;;21585:380;;;:::o;21970:135::-;22009:3;-1:-1:-1;;22030:17:1;;22027:43;;;22050:18;;:::i;:::-;-1:-1:-1;22097:1:1;22086:13;;21970:135::o;22110:112::-;22142:1;22168;22158:35;;22173:18;;:::i;:::-;-1:-1:-1;22207:9:1;;22110:112::o;22227:127::-;22288:10;22283:3;22279:20;22276:1;22269:31;22319:4;22316:1;22309:15;22343:4;22340:1;22333:15;22359:127;22420:10;22415:3;22411:20;22408:1;22401:31;22451:4;22448:1;22441:15;22475:4;22472:1;22465:15;22491:127;22552:10;22547:3;22543:20;22540:1;22533:31;22583:4;22580:1;22573:15;22607:4;22604:1;22597:15;22623:127;22684:10;22679:3;22675:20;22672:1;22665:31;22715:4;22712:1;22705:15;22739:4;22736:1;22729:15;22755:131;-1:-1:-1;;;;;;22829:32:1;;22819:43;;22809:71;;22876:1;22873;22866:12

Swarm Source

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