ETH Price: $3,088.74 (-0.46%)
Gas: 2 Gwei

Token

AlienApeYachtClub (AAYC)
 

Overview

Max Total Supply

10,000 AAYC

Holders

2,943

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AAYC
0x3e9d3eb8badca25ffef93848276f291e1e209389
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:
AlienApeYachtClub

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-31
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// 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/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: @openzeppelin/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/Bear.sol



pragma solidity ^0.8.0;

contract AlienApeYachtClub is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.08 ether;
  uint256 public freeSupply = 100;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 10;

  bool public paused = true;
  bool public revealed = true;

  constructor() ERC721("AlienApeYachtClub", "AAYC") {
    setHiddenMetadataUri("");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    if (supply.current() > freeSupply) {
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function airdrop(address[] memory recipients, uint256 amount) external onlyOwner {
    for (uint256 i=0; i < recipients.length; i++){
        _mintLoop(recipients[i], amount);
    }
    }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setFreeSupply(uint256 _freeSupply) public onlyOwner {
    freeSupply = _freeSupply;
  }

  function withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

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":"recipients","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600891620001fa565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600991620001fa565b5067011c37937e080000600b556064600c55612710600d55600a600e55600f805461ffff19166101011790553480156200008357600080fd5b50604080518082018252601181527020b634b2b720b832acb0b1b43a21b63ab160791b6020808301918252835180850190945260048452634141594360e01b908401528151919291620000d991600091620001fa565b508051620000ef906001906020840190620001fa565b5050506200010c620001066200012c60201b60201c565b62000130565b604080516020810190915260008152620001269062000182565b620002dd565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001f690600a906020840190620001fa565b5050565b8280546200020890620002a0565b90600052602060002090601f0160209004810192826200022c576000855562000277565b82601f106200024757805160ff191683800117855562000277565b8280016001018555821562000277579182015b82811115620002775782518255916020019190600101906200025a565b506200028592915062000289565b5090565b5b808211156200028557600081556001016200028a565b600181811c90821680620002b557607f821691505b60208210811415620002d757634e487b7160e01b600052602260045260246000fd5b50919050565b61249880620002ed6000396000f3fe6080604052600436106102305760003560e01c80636352211e1161012e578063b071401b116100ab578063e0a808531161006f578063e0a8085314610636578063e985e9c514610656578063efbd73f41461069f578063f2fde38b146106bf578063f676308a146106df57600080fd5b8063b071401b146105a0578063b88d4fde146105c0578063c204642c146105e0578063c87b56dd14610600578063d5abeb011461062057600080fd5b806394354fd0116100f257806394354fd01461052d57806395d89b4114610543578063a0712d6814610558578063a22cb4651461056b578063a45ba8e71461058b57600080fd5b80636352211e1461049a57806370a08231146104ba578063715018a6146104da5780637ec4a659146104ef5780638da5cb5b1461050f57600080fd5b806324a6ab0c116101bc5780634fdd43cb116101805780634fdd43cb1461041757806351830227146104375780635503a0e8146104565780635c975abb1461046b57806362b99ad41461048557600080fd5b806324a6ab0c1461037f5780633ccfd60b1461039557806342842e0e146103aa578063438b6300146103ca57806344a0d68a146103f757600080fd5b806313faede61161020357806313faede6146102e657806316ba10e01461030a57806316c38b3c1461032a57806318160ddd1461034a57806323b872dd1461035f57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611d1a565b6106ff565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610751565b6040516102619190611d8f565b34801561029857600080fd5b506102ac6102a7366004611da2565b6107e3565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004611dd7565b61087d565b005b3480156102f257600080fd5b506102fc600b5481565b604051908152602001610261565b34801561031657600080fd5b506102e4610325366004611ea0565b610993565b34801561033657600080fd5b506102e4610345366004611ef9565b6109d4565b34801561035657600080fd5b506102fc610a11565b34801561036b57600080fd5b506102e461037a366004611f14565b610a21565b34801561038b57600080fd5b506102fc600c5481565b3480156103a157600080fd5b506102e4610a52565b3480156103b657600080fd5b506102e46103c5366004611f14565b610af0565b3480156103d657600080fd5b506103ea6103e5366004611f50565b610b0b565b6040516102619190611f6b565b34801561040357600080fd5b506102e4610412366004611da2565b610bec565b34801561042357600080fd5b506102e4610432366004611ea0565b610c1b565b34801561044357600080fd5b50600f5461025590610100900460ff1681565b34801561046257600080fd5b5061027f610c58565b34801561047757600080fd5b50600f546102559060ff1681565b34801561049157600080fd5b5061027f610ce6565b3480156104a657600080fd5b506102ac6104b5366004611da2565b610cf3565b3480156104c657600080fd5b506102fc6104d5366004611f50565b610d6a565b3480156104e657600080fd5b506102e4610df1565b3480156104fb57600080fd5b506102e461050a366004611ea0565b610e27565b34801561051b57600080fd5b506006546001600160a01b03166102ac565b34801561053957600080fd5b506102fc600e5481565b34801561054f57600080fd5b5061027f610e64565b6102e4610566366004611da2565b610e73565b34801561057757600080fd5b506102e4610586366004611faf565b610fe1565b34801561059757600080fd5b5061027f610fec565b3480156105ac57600080fd5b506102e46105bb366004611da2565b610ff9565b3480156105cc57600080fd5b506102e46105db366004611fe2565b611028565b3480156105ec57600080fd5b506102e46105fb36600461205e565b611060565b34801561060c57600080fd5b5061027f61061b366004611da2565b6110cb565b34801561062c57600080fd5b506102fc600d5481565b34801561064257600080fd5b506102e4610651366004611ef9565b61124a565b34801561066257600080fd5b50610255610671366004612111565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106ab57600080fd5b506102e46106ba36600461213b565b61128e565b3480156106cb57600080fd5b506102e46106da366004611f50565b611374565b3480156106eb57600080fd5b506102e46106fa366004611da2565b61140c565b60006001600160e01b031982166380ac58cd60e01b148061073057506001600160e01b03198216635b5e139f60e01b145b8061074b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107609061215e565b80601f016020809104026020016040519081016040528092919081815260200182805461078c9061215e565b80156107d95780601f106107ae576101008083540402835291602001916107d9565b820191906000526020600020905b8154815290600101906020018083116107bc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061088882610cf3565b9050806001600160a01b0316836001600160a01b031614156108f65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610858565b336001600160a01b038216148061091257506109128133610671565b6109845760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610858565b61098e838361143b565b505050565b6006546001600160a01b031633146109bd5760405162461bcd60e51b815260040161085890612199565b80516109d0906009906020840190611c6b565b5050565b6006546001600160a01b031633146109fe5760405162461bcd60e51b815260040161085890612199565b600f805460ff1916911515919091179055565b6000610a1c60075490565b905090565b610a2b33826114a9565b610a475760405162461bcd60e51b8152600401610858906121ce565b61098e8383836115a0565b6006546001600160a01b03163314610a7c5760405162461bcd60e51b815260040161085890612199565b6000610a906006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ada576040519150601f19603f3d011682016040523d82523d6000602084013e610adf565b606091505b5050905080610aed57600080fd5b50565b61098e83838360405180602001604052806000815250611028565b60606000610b1883610d6a565b905060008167ffffffffffffffff811115610b3557610b35611e01565b604051908082528060200260200182016040528015610b5e578160200160208202803683370190505b509050600160005b8381108015610b775750600d548211155b15610be2576000610b8783610cf3565b9050866001600160a01b0316816001600160a01b03161415610bcf5782848381518110610bb657610bb661221f565b602090810291909101015281610bcb8161224b565b9250505b82610bd98161224b565b93505050610b66565b5090949350505050565b6006546001600160a01b03163314610c165760405162461bcd60e51b815260040161085890612199565b600b55565b6006546001600160a01b03163314610c455760405162461bcd60e51b815260040161085890612199565b80516109d090600a906020840190611c6b565b60098054610c659061215e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c919061215e565b8015610cde5780601f10610cb357610100808354040283529160200191610cde565b820191906000526020600020905b815481529060010190602001808311610cc157829003601f168201915b505050505081565b60088054610c659061215e565b6000818152600260205260408120546001600160a01b03168061074b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610858565b60006001600160a01b038216610dd55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610858565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e1b5760405162461bcd60e51b815260040161085890612199565b610e256000611740565b565b6006546001600160a01b03163314610e515760405162461bcd60e51b815260040161085890612199565b80516109d0906008906020840190611c6b565b6060600180546107609061215e565b80600081118015610e865750600e548111155b610ec95760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610858565b600d5481610ed660075490565b610ee09190612266565b1115610f255760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610858565b600f5460ff1615610f785760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610858565b600c546007541115610fd75781600b54610f92919061227e565b341015610fd75760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610858565b6109d03383611792565b6109d03383836117cf565b600a8054610c659061215e565b6006546001600160a01b031633146110235760405162461bcd60e51b815260040161085890612199565b600e55565b61103233836114a9565b61104e5760405162461bcd60e51b8152600401610858906121ce565b61105a8484848461189e565b50505050565b6006546001600160a01b0316331461108a5760405162461bcd60e51b815260040161085890612199565b60005b825181101561098e576110b98382815181106110ab576110ab61221f565b602002602001015183611792565b806110c38161224b565b91505061108d565b6000818152600260205260409020546060906001600160a01b031661114a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610858565b600f54610100900460ff166111eb57600a80546111669061215e565b80601f01602080910402602001604051908101604052809291908181526020018280546111929061215e565b80156111df5780601f106111b4576101008083540402835291602001916111df565b820191906000526020600020905b8154815290600101906020018083116111c257829003601f168201915b50505050509050919050565b60006111f56118d1565b905060008151116112155760405180602001604052806000815250611243565b8061121f846118e0565b60096040516020016112339392919061229d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146112745760405162461bcd60e51b815260040161085890612199565b600f80549115156101000261ff0019909216919091179055565b816000811180156112a15750600e548111155b6112e45760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610858565b600d54816112f160075490565b6112fb9190612266565b11156113405760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610858565b6006546001600160a01b0316331461136a5760405162461bcd60e51b815260040161085890612199565b61098e8284611792565b6006546001600160a01b0316331461139e5760405162461bcd60e51b815260040161085890612199565b6001600160a01b0381166114035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610858565b610aed81611740565b6006546001600160a01b031633146114365760405162461bcd60e51b815260040161085890612199565b600c55565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147082610cf3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115225760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610858565b600061152d83610cf3565b9050806001600160a01b0316846001600160a01b031614806115685750836001600160a01b031661155d846107e3565b6001600160a01b0316145b8061159857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115b382610cf3565b6001600160a01b03161461161b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610858565b6001600160a01b03821661167d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610858565b61168860008261143b565b6001600160a01b03831660009081526003602052604081208054600192906116b1908490612361565b90915550506001600160a01b03821660009081526003602052604081208054600192906116df908490612266565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8181101561098e576117ab600780546001019055565b6117bd836117b860075490565b6119de565b806117c78161224b565b915050611795565b816001600160a01b0316836001600160a01b031614156118315760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610858565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118a98484846115a0565b6118b5848484846119f8565b61105a5760405162461bcd60e51b815260040161085890612378565b6060600880546107609061215e565b6060816119045750506040805180820190915260018152600360fc1b602082015290565b8160005b811561192e57806119188161224b565b91506119279050600a836123e0565b9150611908565b60008167ffffffffffffffff81111561194957611949611e01565b6040519080825280601f01601f191660200182016040528015611973576020820181803683370190505b5090505b841561159857611988600183612361565b9150611995600a866123f4565b6119a0906030612266565b60f81b8183815181106119b5576119b561221f565b60200101906001600160f81b031916908160001a9053506119d7600a866123e0565b9450611977565b6109d0828260405180602001604052806000815250611af6565b60006001600160a01b0384163b15611aeb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a3c903390899088908890600401612408565b6020604051808303816000875af1925050508015611a77575060408051601f3d908101601f19168201909252611a7491810190612445565b60015b611ad1573d808015611aa5576040519150601f19603f3d011682016040523d82523d6000602084013e611aaa565b606091505b508051611ac95760405162461bcd60e51b815260040161085890612378565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611598565b506001949350505050565b611b008383611b29565b611b0d60008484846119f8565b61098e5760405162461bcd60e51b815260040161085890612378565b6001600160a01b038216611b7f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610858565b6000818152600260205260409020546001600160a01b031615611be45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610858565b6001600160a01b0382166000908152600360205260408120805460019290611c0d908490612266565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c779061215e565b90600052602060002090601f016020900481019282611c995760008555611cdf565b82601f10611cb257805160ff1916838001178555611cdf565b82800160010185558215611cdf579182015b82811115611cdf578251825591602001919060010190611cc4565b50611ceb929150611cef565b5090565b5b80821115611ceb5760008155600101611cf0565b6001600160e01b031981168114610aed57600080fd5b600060208284031215611d2c57600080fd5b813561124381611d04565b60005b83811015611d52578181015183820152602001611d3a565b8381111561105a5750506000910152565b60008151808452611d7b816020860160208601611d37565b601f01601f19169290920160200192915050565b6020815260006112436020830184611d63565b600060208284031215611db457600080fd5b5035919050565b80356001600160a01b0381168114611dd257600080fd5b919050565b60008060408385031215611dea57600080fd5b611df383611dbb565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611e4057611e40611e01565b604052919050565b600067ffffffffffffffff831115611e6257611e62611e01565b611e75601f8401601f1916602001611e17565b9050828152838383011115611e8957600080fd5b828260208301376000602084830101529392505050565b600060208284031215611eb257600080fd5b813567ffffffffffffffff811115611ec957600080fd5b8201601f81018413611eda57600080fd5b61159884823560208401611e48565b80358015158114611dd257600080fd5b600060208284031215611f0b57600080fd5b61124382611ee9565b600080600060608486031215611f2957600080fd5b611f3284611dbb565b9250611f4060208501611dbb565b9150604084013590509250925092565b600060208284031215611f6257600080fd5b61124382611dbb565b6020808252825182820181905260009190848201906040850190845b81811015611fa357835183529284019291840191600101611f87565b50909695505050505050565b60008060408385031215611fc257600080fd5b611fcb83611dbb565b9150611fd960208401611ee9565b90509250929050565b60008060008060808587031215611ff857600080fd5b61200185611dbb565b935061200f60208601611dbb565b925060408501359150606085013567ffffffffffffffff81111561203257600080fd5b8501601f8101871361204357600080fd5b61205287823560208401611e48565b91505092959194509250565b6000806040838503121561207157600080fd5b823567ffffffffffffffff8082111561208957600080fd5b818501915085601f83011261209d57600080fd5b81356020828211156120b1576120b1611e01565b8160051b92506120c2818401611e17565b82815292840181019281810190898511156120dc57600080fd5b948201945b84861015612101576120f286611dbb565b825294820194908201906120e1565b9997909101359750505050505050565b6000806040838503121561212457600080fd5b61212d83611dbb565b9150611fd960208401611dbb565b6000806040838503121561214e57600080fd5b82359150611fd960208401611dbb565b600181811c9082168061217257607f821691505b6020821081141561219357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561225f5761225f612235565b5060010190565b6000821982111561227957612279612235565b500190565b600081600019048311821515161561229857612298612235565b500290565b6000845160206122b08285838a01611d37565b8551918401916122c38184848a01611d37565b8554920191600090600181811c90808316806122e057607f831692505b8583108114156122fe57634e487b7160e01b85526022600452602485fd5b808015612312576001811461232357612350565b60ff19851688528388019550612350565b60008b81526020902060005b858110156123485781548a82015290840190880161232f565b505083880195505b50939b9a5050505050505050505050565b60008282101561237357612373612235565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826123ef576123ef6123ca565b500490565b600082612403576124036123ca565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061243b90830184611d63565b9695505050505050565b60006020828403121561245757600080fd5b815161124381611d0456fea26469706673582212204b6814b28aed1b2e79662e1d43e2c796204b415503dbca46e3986908504d0f9364736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636352211e1161012e578063b071401b116100ab578063e0a808531161006f578063e0a8085314610636578063e985e9c514610656578063efbd73f41461069f578063f2fde38b146106bf578063f676308a146106df57600080fd5b8063b071401b146105a0578063b88d4fde146105c0578063c204642c146105e0578063c87b56dd14610600578063d5abeb011461062057600080fd5b806394354fd0116100f257806394354fd01461052d57806395d89b4114610543578063a0712d6814610558578063a22cb4651461056b578063a45ba8e71461058b57600080fd5b80636352211e1461049a57806370a08231146104ba578063715018a6146104da5780637ec4a659146104ef5780638da5cb5b1461050f57600080fd5b806324a6ab0c116101bc5780634fdd43cb116101805780634fdd43cb1461041757806351830227146104375780635503a0e8146104565780635c975abb1461046b57806362b99ad41461048557600080fd5b806324a6ab0c1461037f5780633ccfd60b1461039557806342842e0e146103aa578063438b6300146103ca57806344a0d68a146103f757600080fd5b806313faede61161020357806313faede6146102e657806316ba10e01461030a57806316c38b3c1461032a57806318160ddd1461034a57806323b872dd1461035f57600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611d1a565b6106ff565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610751565b6040516102619190611d8f565b34801561029857600080fd5b506102ac6102a7366004611da2565b6107e3565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004611dd7565b61087d565b005b3480156102f257600080fd5b506102fc600b5481565b604051908152602001610261565b34801561031657600080fd5b506102e4610325366004611ea0565b610993565b34801561033657600080fd5b506102e4610345366004611ef9565b6109d4565b34801561035657600080fd5b506102fc610a11565b34801561036b57600080fd5b506102e461037a366004611f14565b610a21565b34801561038b57600080fd5b506102fc600c5481565b3480156103a157600080fd5b506102e4610a52565b3480156103b657600080fd5b506102e46103c5366004611f14565b610af0565b3480156103d657600080fd5b506103ea6103e5366004611f50565b610b0b565b6040516102619190611f6b565b34801561040357600080fd5b506102e4610412366004611da2565b610bec565b34801561042357600080fd5b506102e4610432366004611ea0565b610c1b565b34801561044357600080fd5b50600f5461025590610100900460ff1681565b34801561046257600080fd5b5061027f610c58565b34801561047757600080fd5b50600f546102559060ff1681565b34801561049157600080fd5b5061027f610ce6565b3480156104a657600080fd5b506102ac6104b5366004611da2565b610cf3565b3480156104c657600080fd5b506102fc6104d5366004611f50565b610d6a565b3480156104e657600080fd5b506102e4610df1565b3480156104fb57600080fd5b506102e461050a366004611ea0565b610e27565b34801561051b57600080fd5b506006546001600160a01b03166102ac565b34801561053957600080fd5b506102fc600e5481565b34801561054f57600080fd5b5061027f610e64565b6102e4610566366004611da2565b610e73565b34801561057757600080fd5b506102e4610586366004611faf565b610fe1565b34801561059757600080fd5b5061027f610fec565b3480156105ac57600080fd5b506102e46105bb366004611da2565b610ff9565b3480156105cc57600080fd5b506102e46105db366004611fe2565b611028565b3480156105ec57600080fd5b506102e46105fb36600461205e565b611060565b34801561060c57600080fd5b5061027f61061b366004611da2565b6110cb565b34801561062c57600080fd5b506102fc600d5481565b34801561064257600080fd5b506102e4610651366004611ef9565b61124a565b34801561066257600080fd5b50610255610671366004612111565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106ab57600080fd5b506102e46106ba36600461213b565b61128e565b3480156106cb57600080fd5b506102e46106da366004611f50565b611374565b3480156106eb57600080fd5b506102e46106fa366004611da2565b61140c565b60006001600160e01b031982166380ac58cd60e01b148061073057506001600160e01b03198216635b5e139f60e01b145b8061074b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107609061215e565b80601f016020809104026020016040519081016040528092919081815260200182805461078c9061215e565b80156107d95780601f106107ae576101008083540402835291602001916107d9565b820191906000526020600020905b8154815290600101906020018083116107bc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061088882610cf3565b9050806001600160a01b0316836001600160a01b031614156108f65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610858565b336001600160a01b038216148061091257506109128133610671565b6109845760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610858565b61098e838361143b565b505050565b6006546001600160a01b031633146109bd5760405162461bcd60e51b815260040161085890612199565b80516109d0906009906020840190611c6b565b5050565b6006546001600160a01b031633146109fe5760405162461bcd60e51b815260040161085890612199565b600f805460ff1916911515919091179055565b6000610a1c60075490565b905090565b610a2b33826114a9565b610a475760405162461bcd60e51b8152600401610858906121ce565b61098e8383836115a0565b6006546001600160a01b03163314610a7c5760405162461bcd60e51b815260040161085890612199565b6000610a906006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ada576040519150601f19603f3d011682016040523d82523d6000602084013e610adf565b606091505b5050905080610aed57600080fd5b50565b61098e83838360405180602001604052806000815250611028565b60606000610b1883610d6a565b905060008167ffffffffffffffff811115610b3557610b35611e01565b604051908082528060200260200182016040528015610b5e578160200160208202803683370190505b509050600160005b8381108015610b775750600d548211155b15610be2576000610b8783610cf3565b9050866001600160a01b0316816001600160a01b03161415610bcf5782848381518110610bb657610bb661221f565b602090810291909101015281610bcb8161224b565b9250505b82610bd98161224b565b93505050610b66565b5090949350505050565b6006546001600160a01b03163314610c165760405162461bcd60e51b815260040161085890612199565b600b55565b6006546001600160a01b03163314610c455760405162461bcd60e51b815260040161085890612199565b80516109d090600a906020840190611c6b565b60098054610c659061215e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c919061215e565b8015610cde5780601f10610cb357610100808354040283529160200191610cde565b820191906000526020600020905b815481529060010190602001808311610cc157829003601f168201915b505050505081565b60088054610c659061215e565b6000818152600260205260408120546001600160a01b03168061074b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610858565b60006001600160a01b038216610dd55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610858565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e1b5760405162461bcd60e51b815260040161085890612199565b610e256000611740565b565b6006546001600160a01b03163314610e515760405162461bcd60e51b815260040161085890612199565b80516109d0906008906020840190611c6b565b6060600180546107609061215e565b80600081118015610e865750600e548111155b610ec95760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610858565b600d5481610ed660075490565b610ee09190612266565b1115610f255760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610858565b600f5460ff1615610f785760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610858565b600c546007541115610fd75781600b54610f92919061227e565b341015610fd75760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610858565b6109d03383611792565b6109d03383836117cf565b600a8054610c659061215e565b6006546001600160a01b031633146110235760405162461bcd60e51b815260040161085890612199565b600e55565b61103233836114a9565b61104e5760405162461bcd60e51b8152600401610858906121ce565b61105a8484848461189e565b50505050565b6006546001600160a01b0316331461108a5760405162461bcd60e51b815260040161085890612199565b60005b825181101561098e576110b98382815181106110ab576110ab61221f565b602002602001015183611792565b806110c38161224b565b91505061108d565b6000818152600260205260409020546060906001600160a01b031661114a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610858565b600f54610100900460ff166111eb57600a80546111669061215e565b80601f01602080910402602001604051908101604052809291908181526020018280546111929061215e565b80156111df5780601f106111b4576101008083540402835291602001916111df565b820191906000526020600020905b8154815290600101906020018083116111c257829003601f168201915b50505050509050919050565b60006111f56118d1565b905060008151116112155760405180602001604052806000815250611243565b8061121f846118e0565b60096040516020016112339392919061229d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146112745760405162461bcd60e51b815260040161085890612199565b600f80549115156101000261ff0019909216919091179055565b816000811180156112a15750600e548111155b6112e45760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610858565b600d54816112f160075490565b6112fb9190612266565b11156113405760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610858565b6006546001600160a01b0316331461136a5760405162461bcd60e51b815260040161085890612199565b61098e8284611792565b6006546001600160a01b0316331461139e5760405162461bcd60e51b815260040161085890612199565b6001600160a01b0381166114035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610858565b610aed81611740565b6006546001600160a01b031633146114365760405162461bcd60e51b815260040161085890612199565b600c55565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147082610cf3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115225760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610858565b600061152d83610cf3565b9050806001600160a01b0316846001600160a01b031614806115685750836001600160a01b031661155d846107e3565b6001600160a01b0316145b8061159857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166115b382610cf3565b6001600160a01b03161461161b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610858565b6001600160a01b03821661167d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610858565b61168860008261143b565b6001600160a01b03831660009081526003602052604081208054600192906116b1908490612361565b90915550506001600160a01b03821660009081526003602052604081208054600192906116df908490612266565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b8181101561098e576117ab600780546001019055565b6117bd836117b860075490565b6119de565b806117c78161224b565b915050611795565b816001600160a01b0316836001600160a01b031614156118315760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610858565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118a98484846115a0565b6118b5848484846119f8565b61105a5760405162461bcd60e51b815260040161085890612378565b6060600880546107609061215e565b6060816119045750506040805180820190915260018152600360fc1b602082015290565b8160005b811561192e57806119188161224b565b91506119279050600a836123e0565b9150611908565b60008167ffffffffffffffff81111561194957611949611e01565b6040519080825280601f01601f191660200182016040528015611973576020820181803683370190505b5090505b841561159857611988600183612361565b9150611995600a866123f4565b6119a0906030612266565b60f81b8183815181106119b5576119b561221f565b60200101906001600160f81b031916908160001a9053506119d7600a866123e0565b9450611977565b6109d0828260405180602001604052806000815250611af6565b60006001600160a01b0384163b15611aeb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a3c903390899088908890600401612408565b6020604051808303816000875af1925050508015611a77575060408051601f3d908101601f19168201909252611a7491810190612445565b60015b611ad1573d808015611aa5576040519150601f19603f3d011682016040523d82523d6000602084013e611aaa565b606091505b508051611ac95760405162461bcd60e51b815260040161085890612378565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611598565b506001949350505050565b611b008383611b29565b611b0d60008484846119f8565b61098e5760405162461bcd60e51b815260040161085890612378565b6001600160a01b038216611b7f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610858565b6000818152600260205260409020546001600160a01b031615611be45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610858565b6001600160a01b0382166000908152600360205260408120805460019290611c0d908490612266565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611c779061215e565b90600052602060002090601f016020900481019282611c995760008555611cdf565b82601f10611cb257805160ff1916838001178555611cdf565b82800160010185558215611cdf579182015b82811115611cdf578251825591602001919060010190611cc4565b50611ceb929150611cef565b5090565b5b80821115611ceb5760008155600101611cf0565b6001600160e01b031981168114610aed57600080fd5b600060208284031215611d2c57600080fd5b813561124381611d04565b60005b83811015611d52578181015183820152602001611d3a565b8381111561105a5750506000910152565b60008151808452611d7b816020860160208601611d37565b601f01601f19169290920160200192915050565b6020815260006112436020830184611d63565b600060208284031215611db457600080fd5b5035919050565b80356001600160a01b0381168114611dd257600080fd5b919050565b60008060408385031215611dea57600080fd5b611df383611dbb565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611e4057611e40611e01565b604052919050565b600067ffffffffffffffff831115611e6257611e62611e01565b611e75601f8401601f1916602001611e17565b9050828152838383011115611e8957600080fd5b828260208301376000602084830101529392505050565b600060208284031215611eb257600080fd5b813567ffffffffffffffff811115611ec957600080fd5b8201601f81018413611eda57600080fd5b61159884823560208401611e48565b80358015158114611dd257600080fd5b600060208284031215611f0b57600080fd5b61124382611ee9565b600080600060608486031215611f2957600080fd5b611f3284611dbb565b9250611f4060208501611dbb565b9150604084013590509250925092565b600060208284031215611f6257600080fd5b61124382611dbb565b6020808252825182820181905260009190848201906040850190845b81811015611fa357835183529284019291840191600101611f87565b50909695505050505050565b60008060408385031215611fc257600080fd5b611fcb83611dbb565b9150611fd960208401611ee9565b90509250929050565b60008060008060808587031215611ff857600080fd5b61200185611dbb565b935061200f60208601611dbb565b925060408501359150606085013567ffffffffffffffff81111561203257600080fd5b8501601f8101871361204357600080fd5b61205287823560208401611e48565b91505092959194509250565b6000806040838503121561207157600080fd5b823567ffffffffffffffff8082111561208957600080fd5b818501915085601f83011261209d57600080fd5b81356020828211156120b1576120b1611e01565b8160051b92506120c2818401611e17565b82815292840181019281810190898511156120dc57600080fd5b948201945b84861015612101576120f286611dbb565b825294820194908201906120e1565b9997909101359750505050505050565b6000806040838503121561212457600080fd5b61212d83611dbb565b9150611fd960208401611dbb565b6000806040838503121561214e57600080fd5b82359150611fd960208401611dbb565b600181811c9082168061217257607f821691505b6020821081141561219357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561225f5761225f612235565b5060010190565b6000821982111561227957612279612235565b500190565b600081600019048311821515161561229857612298612235565b500290565b6000845160206122b08285838a01611d37565b8551918401916122c38184848a01611d37565b8554920191600090600181811c90808316806122e057607f831692505b8583108114156122fe57634e487b7160e01b85526022600452602485fd5b808015612312576001811461232357612350565b60ff19851688528388019550612350565b60008b81526020902060005b858110156123485781548a82015290840190880161232f565b505083880195505b50939b9a5050505050505050505050565b60008282101561237357612373612235565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826123ef576123ef6123ca565b500490565b600082612403576124036123ca565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061243b90830184611d63565b9695505050505050565b60006020828403121561245757600080fd5b815161124381611d0456fea26469706673582212204b6814b28aed1b2e79662e1d43e2c796204b415503dbca46e3986908504d0f9364736f6c634300080b0033

Deployed Bytecode Sourcemap

37744:4026:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25242:305;;;;;;;;;;-1:-1:-1;25242:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25242:305:0;;;;;;;;26187:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27746:221::-;;;;;;;;;;-1:-1:-1;27746:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;27746:221:0;1528:203:1;27269:411:0;;;;;;;;;;-1:-1:-1;27269:411:0;;;;;:::i;:::-;;:::i;:::-;;38016:32;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;38016:32:0;2173:177:1;41017:100:0;;;;;;;;;;-1:-1:-1;41017:100:0;;;;;:::i;:::-;;:::i;41123:77::-;;;;;;;;;;-1:-1:-1;41123:77:0;;;;;:::i;:::-;;:::i;38568:89::-;;;;;;;;;;;;;:::i;28496:339::-;;;;;;;;;;-1:-1:-1;28496:339:0;;;;;:::i;:::-;;:::i;38053:31::-;;;;;;;;;;;;;;;;41310:137;;;;;;;;;;;;;:::i;28906:185::-;;;;;;;;;;-1:-1:-1;28906:185:0;;;;;:::i;:::-;;:::i;39329:635::-;;;;;;;;;;-1:-1:-1;39329:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40557:74::-;;;;;;;;;;-1:-1:-1;40557:74:0;;;;;:::i;:::-;;:::i;40773:132::-;;;;;;;;;;-1:-1:-1;40773:132:0;;;;;:::i;:::-;;:::i;38201:27::-;;;;;;;;;;-1:-1:-1;38201:27:0;;;;;;;;;;;37938:33;;;;;;;;;;;;;:::i;38171:25::-;;;;;;;;;;-1:-1:-1;38171:25:0;;;;;;;;37905:28;;;;;;;;;;;;;:::i;25881:239::-;;;;;;;;;;-1:-1:-1;25881:239:0;;;;;:::i;:::-;;:::i;25611:208::-;;;;;;;;;;-1:-1:-1;25611:208:0;;;;;:::i;:::-;;:::i;6230:103::-;;;;;;;;;;;;;:::i;40911:100::-;;;;;;;;;;-1:-1:-1;40911:100:0;;;;;:::i;:::-;;:::i;5579:87::-;;;;;;;;;;-1:-1:-1;5652:6:0;;-1:-1:-1;;;;;5652:6:0;5579:87;;38126:38;;;;;;;;;;;;;;;;26356:104;;;;;;;;;;;;;:::i;38663:300::-;;;;;;:::i;:::-;;:::i;28039:155::-;;;;;;;;;;-1:-1:-1;28039:155:0;;;;;:::i;:::-;;:::i;37976:31::-;;;;;;;;;;;;;:::i;40637:130::-;;;;;;;;;;-1:-1:-1;40637:130:0;;;;;:::i;:::-;;:::i;29162:328::-;;;;;;;;;;-1:-1:-1;29162:328:0;;;;;:::i;:::-;;:::i;39132:191::-;;;;;;;;;;-1:-1:-1;39132:191:0;;;;;:::i;:::-;;:::i;39970:494::-;;;;;;;;;;-1:-1:-1;39970:494:0;;;;;:::i;:::-;;:::i;38089:32::-;;;;;;;;;;;;;;;;40470:81;;;;;;;;;;-1:-1:-1;40470:81:0;;;;;:::i;:::-;;:::i;28265:164::-;;;;;;;;;;-1:-1:-1;28265:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28386:25:0;;;28362:4;28386:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28265:164;38971:155;;;;;;;;;;-1:-1:-1;38971:155:0;;;;;:::i;:::-;;:::i;6488:201::-;;;;;;;;;;-1:-1:-1;6488:201:0;;;;;:::i;:::-;;:::i;41206:98::-;;;;;;;;;;-1:-1:-1;41206:98:0;;;;;:::i;:::-;;:::i;25242:305::-;25344:4;-1:-1:-1;;;;;;25381:40:0;;-1:-1:-1;;;25381:40:0;;:105;;-1:-1:-1;;;;;;;25438:48:0;;-1:-1:-1;;;25438:48:0;25381:105;:158;;;-1:-1:-1;;;;;;;;;;18120:40:0;;;25503:36;25361:178;25242:305;-1:-1:-1;;25242:305:0:o;26187:100::-;26241:13;26274:5;26267:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26187:100;:::o;27746:221::-;27822:7;31089:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31089:16:0;27842:73;;;;-1:-1:-1;;;27842:73:0;;8215:2:1;27842:73:0;;;8197:21:1;8254:2;8234:18;;;8227:30;8293:34;8273:18;;;8266:62;-1:-1:-1;;;8344:18:1;;;8337:42;8396:19;;27842:73:0;;;;;;;;;-1:-1:-1;27935:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27935:24:0;;27746:221::o;27269:411::-;27350:13;27366:23;27381:7;27366:14;:23::i;:::-;27350:39;;27414:5;-1:-1:-1;;;;;27408:11:0;:2;-1:-1:-1;;;;;27408:11:0;;;27400:57;;;;-1:-1:-1;;;27400:57:0;;8628:2:1;27400:57:0;;;8610:21:1;8667:2;8647:18;;;8640:30;8706:34;8686:18;;;8679:62;-1:-1:-1;;;8757:18:1;;;8750:31;8798:19;;27400:57:0;8426:397:1;27400:57:0;4383:10;-1:-1:-1;;;;;27492:21:0;;;;:62;;-1:-1:-1;27517:37:0;27534:5;4383:10;28265:164;:::i;27517:37::-;27470:168;;;;-1:-1:-1;;;27470:168:0;;9030:2:1;27470:168:0;;;9012:21:1;9069:2;9049:18;;;9042:30;9108:34;9088:18;;;9081:62;9179:26;9159:18;;;9152:54;9223:19;;27470:168:0;8828:420:1;27470:168:0;27651:21;27660:2;27664:7;27651:8;:21::i;:::-;27339:341;27269:411;;:::o;41017:100::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;41089:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41017:100:::0;:::o;41123:77::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;41179:6:::1;:15:::0;;-1:-1:-1;;41179:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41123:77::o;38568:89::-;38612:7;38635:16;:6;999:14;;907:114;38635:16;38628:23;;38568:89;:::o;28496:339::-;28691:41;4383:10;28724:7;28691:18;:41::i;:::-;28683:103;;;;-1:-1:-1;;;28683:103:0;;;;;;;:::i;:::-;28799:28;28809:4;28815:2;28819:7;28799:9;:28::i;41310:137::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;41355:7:::1;41376;5652:6:::0;;-1:-1:-1;;;;;5652:6:0;;5579:87;41376:7:::1;-1:-1:-1::0;;;;;41368:21:0::1;41397;41368:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41354:69;;;41438:2;41430:11;;;::::0;::::1;;41347:100;41310:137::o:0;28906:185::-;29044:39;29061:4;29067:2;29071:7;29044:39;;;;;;;;;;;;:16;:39::i;39329:635::-;39404:16;39432:23;39458:17;39468:6;39458:9;:17::i;:::-;39432:43;;39482:30;39529:15;39515:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39515:30:0;-1:-1:-1;39482:63:0;-1:-1:-1;39577:1:0;39552:22;39621:309;39646:15;39628;:33;:64;;;;;39683:9;;39665:14;:27;;39628:64;39621:309;;;39703:25;39731:23;39739:14;39731:7;:23::i;:::-;39703:51;;39790:6;-1:-1:-1;;;;;39769:27:0;:17;-1:-1:-1;;;;;39769:27:0;;39765:131;;;39842:14;39809:13;39823:15;39809:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;39869:17;;;;:::i;:::-;;;;39765:131;39906:16;;;;:::i;:::-;;;;39694:236;39621:309;;;-1:-1:-1;39945:13:0;;39329:635;-1:-1:-1;;;;39329:635:0:o;40557:74::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;40613:4:::1;:12:::0;40557:74::o;40773:132::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;40861:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;37938:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37905:28::-;;;;;;;:::i;25881:239::-;25953:7;25989:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25989:16:0;26024:19;26016:73;;;;-1:-1:-1;;;26016:73:0;;10848:2:1;26016:73:0;;;10830:21:1;10887:2;10867:18;;;10860:30;10926:34;10906:18;;;10899:62;-1:-1:-1;;;10977:18:1;;;10970:39;11026:19;;26016:73:0;10646:405:1;25611:208:0;25683:7;-1:-1:-1;;;;;25711:19:0;;25703:74;;;;-1:-1:-1;;;25703:74:0;;11258:2:1;25703:74:0;;;11240:21:1;11297:2;11277:18;;;11270:30;11336:34;11316:18;;;11309:62;-1:-1:-1;;;11387:18:1;;;11380:40;11437:19;;25703:74:0;11056:406:1;25703:74:0;-1:-1:-1;;;;;;25795:16:0;;;;;:9;:16;;;;;;;25611:208::o;6230:103::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;6295:30:::1;6322:1;6295:18;:30::i;:::-;6230:103::o:0;40911:100::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;40983:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26356:104::-:0;26412:13;26445:7;26438:14;;;;;:::i;38663:300::-;38728:11;38402:1;38388:11;:15;:52;;;;;38422:18;;38407:11;:33;;38388:52;38380:85;;;;-1:-1:-1;;;38380:85:0;;11669:2:1;38380:85:0;;;11651:21:1;11708:2;11688:18;;;11681:30;-1:-1:-1;;;11727:18:1;;;11720:50;11787:18;;38380:85:0;11467:344:1;38380:85:0;38514:9;;38499:11;38480:16;:6;999:14;;907:114;38480:16;:30;;;;:::i;:::-;:43;;38472:76;;;;-1:-1:-1;;;38472:76:0;;12151:2:1;38472:76:0;;;12133:21:1;12190:2;12170:18;;;12163:30;-1:-1:-1;;;12209:18:1;;;12202:50;12269:18;;38472:76:0;11949:344:1;38472:76:0;38757:6:::1;::::0;::::1;;38756:7;38748:43;;;::::0;-1:-1:-1;;;38748:43:0;;12500:2:1;38748:43:0::1;::::0;::::1;12482:21:1::0;12539:2;12519:18;;;12512:30;12578:25;12558:18;;;12551:53;12621:18;;38748:43:0::1;12298:347:1::0;38748:43:0::1;38821:10;::::0;38802:6:::1;999:14:::0;38802:29:::1;38798:117;;;38872:11;38865:4;;:18;;;;:::i;:::-;38852:9;:31;;38844:63;;;::::0;-1:-1:-1;;;38844:63:0;;13025:2:1;38844:63:0::1;::::0;::::1;13007:21:1::0;13064:2;13044:18;;;13037:30;-1:-1:-1;;;13083:18:1;;;13076:49;13142:18;;38844:63:0::1;12823:343:1::0;38844:63:0::1;38923:34;38933:10;38945:11;38923:9;:34::i;28039:155::-:0;28134:52;4383:10;28167:8;28177;28134:18;:52::i;37976:31::-;;;;;;;:::i;40637:130::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;40721:18:::1;:40:::0;40637:130::o;29162:328::-;29337:41;4383:10;29370:7;29337:18;:41::i;:::-;29329:103;;;;-1:-1:-1;;;29329:103:0;;;;;;;:::i;:::-;29443:39;29457:4;29463:2;29467:7;29476:5;29443:13;:39::i;:::-;29162:328;;;;:::o;39132:191::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;39225:9:::1;39220:96;39242:10;:17;39238:1;:21;39220:96;;;39276:32;39286:10;39297:1;39286:13;;;;;;;;:::i;:::-;;;;;;;39301:6;39276:9;:32::i;:::-;39261:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39220:96;;39970:494:::0;31065:4;31089:16;;;:7;:16;;;;;;40069:13;;-1:-1:-1;;;;;31089:16:0;40094:98;;;;-1:-1:-1;;;40094:98:0;;13373:2:1;40094:98:0;;;13355:21:1;13412:2;13392:18;;;13385:30;13451:34;13431:18;;;13424:62;-1:-1:-1;;;13502:18:1;;;13495:45;13557:19;;40094:98:0;13171:411:1;40094:98:0;40205:8;;;;;;;40201:64;;40240:17;40233:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39970:494;;;:::o;40201:64::-;40273:28;40304:10;:8;:10::i;:::-;40273:41;;40359:1;40334:14;40328:28;:32;:130;;;;;;;;;;;;;;;;;40396:14;40412:19;:8;:17;:19::i;:::-;40433:9;40379:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40328:130;40321:137;39970:494;-1:-1:-1;;;39970:494:0:o;40470:81::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;40528:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;40528:17:0;;::::1;::::0;;;::::1;::::0;;40470:81::o;38971:155::-;39057:11;38402:1;38388:11;:15;:52;;;;;38422:18;;38407:11;:33;;38388:52;38380:85;;;;-1:-1:-1;;;38380:85:0;;11669:2:1;38380:85:0;;;11651:21:1;11708:2;11688:18;;;11681:30;-1:-1:-1;;;11727:18:1;;;11720:50;11787:18;;38380:85:0;11467:344:1;38380:85:0;38514:9;;38499:11;38480:16;:6;999:14;;907:114;38480:16;:30;;;;:::i;:::-;:43;;38472:76;;;;-1:-1:-1;;;38472:76:0;;12151:2:1;38472:76:0;;;12133:21:1;12190:2;12170:18;;;12163:30;-1:-1:-1;;;12209:18:1;;;12202:50;12269:18;;38472:76:0;11949:344:1;38472:76:0;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23:::1;5791:68;;;;-1:-1:-1::0;;;5791:68:0::1;;;;;;;:::i;:::-;39087:33:::2;39097:9;39108:11;39087:9;:33::i;6488:201::-:0;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6577:22:0;::::1;6569:73;;;::::0;-1:-1:-1;;;6569:73:0;;15447:2:1;6569:73:0::1;::::0;::::1;15429:21:1::0;15486:2;15466:18;;;15459:30;15525:34;15505:18;;;15498:62;-1:-1:-1;;;15576:18:1;;;15569:36;15622:19;;6569:73:0::1;15245:402:1::0;6569:73:0::1;6653:28;6672:8;6653:18;:28::i;41206:98::-:0;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;;;;;;:::i;:::-;41274:10:::1;:24:::0;41206:98::o;34982:174::-;35057:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35057:29:0;-1:-1:-1;;;;;35057:29:0;;;;;;;;:24;;35111:23;35057:24;35111:14;:23::i;:::-;-1:-1:-1;;;;;35102:46:0;;;;;;;;;;;34982:174;;:::o;31294:348::-;31387:4;31089:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31089:16:0;31404:73;;;;-1:-1:-1;;;31404:73:0;;15854:2:1;31404:73:0;;;15836:21:1;15893:2;15873:18;;;15866:30;15932:34;15912:18;;;15905:62;-1:-1:-1;;;15983:18:1;;;15976:42;16035:19;;31404:73:0;15652:408:1;31404:73:0;31488:13;31504:23;31519:7;31504:14;:23::i;:::-;31488:39;;31557:5;-1:-1:-1;;;;;31546:16:0;:7;-1:-1:-1;;;;;31546:16:0;;:51;;;;31590:7;-1:-1:-1;;;;;31566:31:0;:20;31578:7;31566:11;:20::i;:::-;-1:-1:-1;;;;;31566:31:0;;31546:51;:87;;;-1:-1:-1;;;;;;28386:25:0;;;28362:4;28386:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31601:32;31538:96;31294:348;-1:-1:-1;;;;31294:348:0:o;34286:578::-;34445:4;-1:-1:-1;;;;;34418:31:0;:23;34433:7;34418:14;:23::i;:::-;-1:-1:-1;;;;;34418:31:0;;34410:85;;;;-1:-1:-1;;;34410:85:0;;16267:2:1;34410:85:0;;;16249:21:1;16306:2;16286:18;;;16279:30;16345:34;16325:18;;;16318:62;-1:-1:-1;;;16396:18:1;;;16389:39;16445:19;;34410:85:0;16065:405:1;34410:85:0;-1:-1:-1;;;;;34514:16:0;;34506:65;;;;-1:-1:-1;;;34506:65:0;;16677:2:1;34506:65:0;;;16659:21:1;16716:2;16696:18;;;16689:30;16755:34;16735:18;;;16728:62;-1:-1:-1;;;16806:18:1;;;16799:34;16850:19;;34506:65:0;16475:400:1;34506:65:0;34688:29;34705:1;34709:7;34688:8;:29::i;:::-;-1:-1:-1;;;;;34730:15:0;;;;;;:9;:15;;;;;:20;;34749:1;;34730:15;:20;;34749:1;;34730:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34761:13:0;;;;;;:9;:13;;;;;:18;;34778:1;;34761:13;:18;;34778:1;;34761:18;:::i;:::-;;;;-1:-1:-1;;34790:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34790:21:0;-1:-1:-1;;;;;34790:21:0;;;;;;;;;34829:27;;34790:16;;34829:27;;;;;;;34286:578;;;:::o;6849:191::-;6942:6;;;-1:-1:-1;;;;;6959:17:0;;;-1:-1:-1;;;;;;6959:17:0;;;;;;;6992:40;;6942:6;;;6959:17;6942:6;;6992:40;;6923:16;;6992:40;6912:128;6849:191;:::o;41453:204::-;41533:9;41528:124;41552:11;41548:1;:15;41528:124;;;41579:18;:6;1118:19;;1136:1;1118:19;;;1029:127;41579:18;41606:38;41616:9;41627:16;:6;999:14;;907:114;41627:16;41606:9;:38::i;:::-;41565:3;;;;:::i;:::-;;;;41528:124;;35298:315;35453:8;-1:-1:-1;;;;;35444:17:0;:5;-1:-1:-1;;;;;35444:17:0;;;35436:55;;;;-1:-1:-1;;;35436:55:0;;17212:2:1;35436:55:0;;;17194:21:1;17251:2;17231:18;;;17224:30;17290:27;17270:18;;;17263:55;17335:18;;35436:55:0;17010:349:1;35436:55:0;-1:-1:-1;;;;;35502:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35502:46:0;;;;;;;;;;35564:41;;540::1;;;35564::0;;513:18:1;35564:41:0;;;;;;;35298:315;;;:::o;30372:::-;30529:28;30539:4;30545:2;30549:7;30529:9;:28::i;:::-;30576:48;30599:4;30605:2;30609:7;30618:5;30576:22;:48::i;:::-;30568:111;;;;-1:-1:-1;;;30568:111:0;;;;;;;:::i;41663:104::-;41723:13;41752:9;41745:16;;;;;:::i;1865:723::-;1921:13;2142:10;2138:53;;-1:-1:-1;;2169:10:0;;;;;;;;;;;;-1:-1:-1;;;2169:10:0;;;;;1865:723::o;2138:53::-;2216:5;2201:12;2257:78;2264:9;;2257:78;;2290:8;;;;:::i;:::-;;-1:-1:-1;2313:10:0;;-1:-1:-1;2321:2:0;2313:10;;:::i;:::-;;;2257:78;;;2345:19;2377:6;2367:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2367:17:0;;2345:39;;2395:154;2402:10;;2395:154;;2429:11;2439:1;2429:11;;:::i;:::-;;-1:-1:-1;2498:10:0;2506:2;2498:5;:10;:::i;:::-;2485:24;;:2;:24;:::i;:::-;2472:39;;2455:6;2462;2455:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2455:56:0;;;;;;;;-1:-1:-1;2526:11:0;2535:2;2526:11;;:::i;:::-;;;2395:154;;31984:110;32060:26;32070:2;32074:7;32060:26;;;;;;;;;;;;:9;:26::i;36178:799::-;36333:4;-1:-1:-1;;;;;36354:13:0;;8190:20;8238:8;36350:620;;36390:72;;-1:-1:-1;;;36390:72:0;;-1:-1:-1;;;;;36390:36:0;;;;;:72;;4383:10;;36441:4;;36447:7;;36456:5;;36390:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36390:72:0;;;;;;;;-1:-1:-1;;36390:72:0;;;;;;;;;;;;:::i;:::-;;;36386:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36632:13:0;;36628:272;;36675:60;;-1:-1:-1;;;36675:60:0;;;;;;;:::i;36628:272::-;36850:6;36844:13;36835:6;36831:2;36827:15;36820:38;36386:529;-1:-1:-1;;;;;;36513:51:0;-1:-1:-1;;;36513:51:0;;-1:-1:-1;36506:58:0;;36350:620;-1:-1:-1;36954:4:0;36178:799;;;;;;:::o;32321:321::-;32451:18;32457:2;32461:7;32451:5;:18::i;:::-;32502:54;32533:1;32537:2;32541:7;32550:5;32502:22;:54::i;:::-;32480:154;;;;-1:-1:-1;;;32480:154:0;;;;;;;:::i;32978:382::-;-1:-1:-1;;;;;33058:16:0;;33050:61;;;;-1:-1:-1;;;33050:61:0;;19107:2:1;33050:61:0;;;19089:21:1;;;19126:18;;;19119:30;19185:34;19165:18;;;19158:62;19237:18;;33050:61:0;18905:356:1;33050:61:0;31065:4;31089:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31089:16:0;:30;33122:58;;;;-1:-1:-1;;;33122:58:0;;19468:2:1;33122:58:0;;;19450:21:1;19507:2;19487:18;;;19480:30;19546;19526:18;;;19519:58;19594:18;;33122:58:0;19266:352:1;33122:58:0;-1:-1:-1;;;;;33251:13:0;;;;;;:9;:13;;;;;:18;;33268:1;;33251:13;:18;;33268:1;;33251:18;:::i;:::-;;;;-1:-1:-1;;33280:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33280:21:0;-1:-1:-1;;;;;33280:21:0;;;;;;;;33319:33;;33280:16;;;33319:33;;33280:16;;33319:33;32978:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:275;2558:2;2552:9;2623:2;2604:13;;-1:-1:-1;;2600:27:1;2588:40;;2658:18;2643:34;;2679:22;;;2640:62;2637:88;;;2705:18;;:::i;:::-;2741:2;2734:22;2487:275;;-1:-1:-1;2487:275:1:o;2767:407::-;2832:5;2866:18;2858:6;2855:30;2852:56;;;2888:18;;:::i;:::-;2926:57;2971:2;2950:15;;-1:-1:-1;;2946:29:1;2977:4;2942:40;2926:57;:::i;:::-;2917:66;;3006:6;2999:5;2992:21;3046:3;3037:6;3032:3;3028:16;3025:25;3022:45;;;3063:1;3060;3053:12;3022:45;3112:6;3107:3;3100:4;3093:5;3089:16;3076:43;3166:1;3159:4;3150:6;3143:5;3139:18;3135:29;3128:40;2767:407;;;;;:::o;3179:451::-;3248:6;3301:2;3289:9;3280:7;3276:23;3272:32;3269:52;;;3317:1;3314;3307:12;3269:52;3357:9;3344:23;3390:18;3382:6;3379:30;3376:50;;;3422:1;3419;3412:12;3376:50;3445:22;;3498:4;3490:13;;3486:27;-1:-1:-1;3476:55:1;;3527:1;3524;3517:12;3476:55;3550:74;3616:7;3611:2;3598:16;3593:2;3589;3585:11;3550:74;:::i;3635:160::-;3700:20;;3756:13;;3749:21;3739:32;;3729:60;;3785:1;3782;3775:12;3800:180;3856:6;3909:2;3897:9;3888:7;3884:23;3880:32;3877:52;;;3925:1;3922;3915:12;3877:52;3948:26;3964:9;3948:26;:::i;3985:328::-;4062:6;4070;4078;4131:2;4119:9;4110:7;4106:23;4102:32;4099:52;;;4147:1;4144;4137:12;4099:52;4170:29;4189:9;4170:29;:::i;:::-;4160:39;;4218:38;4252:2;4241:9;4237:18;4218:38;:::i;:::-;4208:48;;4303:2;4292:9;4288:18;4275:32;4265:42;;3985:328;;;;;:::o;4318:186::-;4377:6;4430:2;4418:9;4409:7;4405:23;4401:32;4398:52;;;4446:1;4443;4436:12;4398:52;4469:29;4488:9;4469:29;:::i;4509:632::-;4680:2;4732:21;;;4802:13;;4705:18;;;4824:22;;;4651:4;;4680:2;4903:15;;;;4877:2;4862:18;;;4651:4;4946:169;4960:6;4957:1;4954:13;4946:169;;;5021:13;;5009:26;;5090:15;;;;5055:12;;;;4982:1;4975:9;4946:169;;;-1:-1:-1;5132:3:1;;4509:632;-1:-1:-1;;;;;;4509:632:1:o;5146:254::-;5211:6;5219;5272:2;5260:9;5251:7;5247:23;5243:32;5240:52;;;5288:1;5285;5278:12;5240:52;5311:29;5330:9;5311:29;:::i;:::-;5301:39;;5359:35;5390:2;5379:9;5375:18;5359:35;:::i;:::-;5349:45;;5146:254;;;;;:::o;5405:667::-;5500:6;5508;5516;5524;5577:3;5565:9;5556:7;5552:23;5548:33;5545:53;;;5594:1;5591;5584:12;5545:53;5617:29;5636:9;5617:29;:::i;:::-;5607:39;;5665:38;5699:2;5688:9;5684:18;5665:38;:::i;:::-;5655:48;;5750:2;5739:9;5735:18;5722:32;5712:42;;5805:2;5794:9;5790:18;5777:32;5832:18;5824:6;5821:30;5818:50;;;5864:1;5861;5854:12;5818:50;5887:22;;5940:4;5932:13;;5928:27;-1:-1:-1;5918:55:1;;5969:1;5966;5959:12;5918:55;5992:74;6058:7;6053:2;6040:16;6035:2;6031;6027:11;5992:74;:::i;:::-;5982:84;;;5405:667;;;;;;;:::o;6077:1022::-;6170:6;6178;6231:2;6219:9;6210:7;6206:23;6202:32;6199:52;;;6247:1;6244;6237:12;6199:52;6287:9;6274:23;6316:18;6357:2;6349:6;6346:14;6343:34;;;6373:1;6370;6363:12;6343:34;6411:6;6400:9;6396:22;6386:32;;6456:7;6449:4;6445:2;6441:13;6437:27;6427:55;;6478:1;6475;6468:12;6427:55;6514:2;6501:16;6536:4;6559:2;6555;6552:10;6549:36;;;6565:18;;:::i;:::-;6611:2;6608:1;6604:10;6594:20;;6634:28;6658:2;6654;6650:11;6634:28;:::i;:::-;6696:15;;;6766:11;;;6762:20;;;6727:12;;;;6794:19;;;6791:39;;;6826:1;6823;6816:12;6791:39;6850:11;;;;6870:148;6886:6;6881:3;6878:15;6870:148;;;6952:23;6971:3;6952:23;:::i;:::-;6940:36;;6903:12;;;;6996;;;;6870:148;;;7037:5;7074:18;;;;7061:32;;-1:-1:-1;;;;;;;6077:1022:1:o;7104:260::-;7172:6;7180;7233:2;7221:9;7212:7;7208:23;7204:32;7201:52;;;7249:1;7246;7239:12;7201:52;7272:29;7291:9;7272:29;:::i;:::-;7262:39;;7320:38;7354:2;7343:9;7339:18;7320:38;:::i;7369:254::-;7437:6;7445;7498:2;7486:9;7477:7;7473:23;7469:32;7466:52;;;7514:1;7511;7504:12;7466:52;7550:9;7537:23;7527:33;;7579:38;7613:2;7602:9;7598:18;7579:38;:::i;7628:380::-;7707:1;7703:12;;;;7750;;;7771:61;;7825:4;7817:6;7813:17;7803:27;;7771:61;7878:2;7870:6;7867:14;7847:18;7844:38;7841:161;;;7924:10;7919:3;7915:20;7912:1;7905:31;7959:4;7956:1;7949:15;7987:4;7984:1;7977:15;7841:161;;7628:380;;;:::o;9253:356::-;9455:2;9437:21;;;9474:18;;;9467:30;9533:34;9528:2;9513:18;;9506:62;9600:2;9585:18;;9253:356::o;9614:413::-;9816:2;9798:21;;;9855:2;9835:18;;;9828:30;9894:34;9889:2;9874:18;;9867:62;-1:-1:-1;;;9960:2:1;9945:18;;9938:47;10017:3;10002:19;;9614:413::o;10242:127::-;10303:10;10298:3;10294:20;10291:1;10284:31;10334:4;10331:1;10324:15;10358:4;10355:1;10348:15;10374:127;10435:10;10430:3;10426:20;10423:1;10416:31;10466:4;10463:1;10456:15;10490:4;10487:1;10480:15;10506:135;10545:3;-1:-1:-1;;10566:17:1;;10563:43;;;10586:18;;:::i;:::-;-1:-1:-1;10633:1:1;10622:13;;10506:135::o;11816:128::-;11856:3;11887:1;11883:6;11880:1;11877:13;11874:39;;;11893:18;;:::i;:::-;-1:-1:-1;11929:9:1;;11816:128::o;12650:168::-;12690:7;12756:1;12752;12748:6;12744:14;12741:1;12738:21;12733:1;12726:9;12719:17;12715:45;12712:71;;;12763:18;;:::i;:::-;-1:-1:-1;12803:9:1;;12650:168::o;13713:1527::-;13937:3;13975:6;13969:13;14001:4;14014:51;14058:6;14053:3;14048:2;14040:6;14036:15;14014:51;:::i;:::-;14128:13;;14087:16;;;;14150:55;14128:13;14087:16;14172:15;;;14150:55;:::i;:::-;14294:13;;14227:20;;;14267:1;;14354;14376:18;;;;14429;;;;14456:93;;14534:4;14524:8;14520:19;14508:31;;14456:93;14597:2;14587:8;14584:16;14564:18;14561:40;14558:167;;;-1:-1:-1;;;14624:33:1;;14680:4;14677:1;14670:15;14710:4;14631:3;14698:17;14558:167;14741:18;14768:110;;;;14892:1;14887:328;;;;14734:481;;14768:110;-1:-1:-1;;14803:24:1;;14789:39;;14848:20;;;;-1:-1:-1;14768:110:1;;14887:328;13660:1;13653:14;;;13697:4;13684:18;;14982:1;14996:169;15010:8;15007:1;15004:15;14996:169;;;15092:14;;15077:13;;;15070:37;15135:16;;;;15027:10;;14996:169;;;15000:3;;15196:8;15189:5;15185:20;15178:27;;14734:481;-1:-1:-1;15231:3:1;;13713:1527;-1:-1:-1;;;;;;;;;;;13713:1527:1:o;16880:125::-;16920:4;16948:1;16945;16942:8;16939:34;;;16953:18;;:::i;:::-;-1:-1:-1;16990:9:1;;16880:125::o;17364:414::-;17566:2;17548:21;;;17605:2;17585:18;;;17578:30;17644:34;17639:2;17624:18;;17617:62;-1:-1:-1;;;17710:2:1;17695:18;;17688:48;17768:3;17753:19;;17364:414::o;17783:127::-;17844:10;17839:3;17835:20;17832:1;17825:31;17875:4;17872:1;17865:15;17899:4;17896:1;17889:15;17915:120;17955:1;17981;17971:35;;17986:18;;:::i;:::-;-1:-1:-1;18020:9:1;;17915:120::o;18040:112::-;18072:1;18098;18088:35;;18103:18;;:::i;:::-;-1:-1:-1;18137:9:1;;18040:112::o;18157:489::-;-1:-1:-1;;;;;18426:15:1;;;18408:34;;18478:15;;18473:2;18458:18;;18451:43;18525:2;18510:18;;18503:34;;;18573:3;18568:2;18553:18;;18546:31;;;18351:4;;18594:46;;18620:19;;18612:6;18594:46;:::i;:::-;18586:54;18157:489;-1:-1:-1;;;;;;18157:489:1:o;18651:249::-;18720:6;18773:2;18761:9;18752:7;18748:23;18744:32;18741:52;;;18789:1;18786;18779:12;18741:52;18821:9;18815:16;18840:30;18864:5;18840:30;:::i

Swarm Source

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