ETH Price: $2,987.15 (-4.64%)
Gas: 3 Gwei

Token

Chill Ape Club (CAC)
 

Overview

Max Total Supply

2,203 CAC

Holders

1,004

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 CAC
0x4eb173b2a73875921facbf9e048c4b71ec8c8818
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:
chillapeclub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-04
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

//Developer Info:
//Written by Blockchainguy.net
//Email: [email protected]
//Instagram: @sheraz.manzoor

/**
 * @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;
    }
}
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);
    }
}
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);
            }
        }
    }
}
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);
}
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);
}
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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
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;
    }
}
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;
}
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);
}
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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //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 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 {}
}pragma solidity ^0.8.0;

contract chillapeclub is Ownable, ERC721 {
    uint constant PRESALE_Price = 0.1 ether;
    uint public maxSupply = 10010;
    uint public totalSupply = 0;
    
    uint public sale_startTime = 1638741600; //Sunday, December 5, 2021 10:00:00 PM
    uint public presale_startTime = 1638720000; // Sunday, December 5, 2021 4:00:00 PM

    uint public presale_Limit = 2000;

    uint public second_phase = sale_startTime + 14400;
    uint public third_phase = second_phase + 14400;

    bool public pause_sale = false;
    bool public custom_price = false;
    uint public custom_token_Price = 0.24 ether;

    string public baseURI = "https://www.chillapeclub.com/api/nft/";
    mapping(address => bool) private presaleList;
    constructor() ERC721("Chill Ape Club", "CAC"){}

   function buy(uint _count) public payable{
        require(_count > 0, "mint at least one token");
        require(_count <= 10, "Max 10 Allowed in 1 Transaction.");
        require(totalSupply + _count <= maxSupply, "Not enough tokens left");
        require(msg.value == get_PublicSale_Price() * _count, "incorrect ether amount");
        require(block.timestamp >= sale_startTime,"Sale not Started Yet.");
        require(pause_sale == false, "Sale is Paused.");
        
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
            
            totalSupply += _count;
    }
   function buy_Presale(uint _count) public payable{
        require(_count > 0, "mint at least one token");
        require(_count <= 1, "Max 1 Allowed in 1 Transaction..");
        require(totalSupply + _count <= presale_Limit, "Presale Limit Reached.");
        require(msg.value == PRESALE_Price * _count, "incorrect ether amount");
        require(block.timestamp >= presale_startTime,"Presale have not started yet.");
        require(block.timestamp < sale_startTime,"Presale Ended.");
        require(pause_sale == false, "Sale is Paused.");
        require(isWhitelisted(msg.sender), "You are not allowed to mint.");
        
        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
            
            totalSupply += _count;
            presaleList[msg.sender] = false;
    }

    function get_PublicSale_Price() public view returns(uint){
        if(!custom_price){
            if(block.timestamp >= sale_startTime && block.timestamp < second_phase){
                return 0.28 ether;
            }else if(block.timestamp > second_phase && block.timestamp < third_phase){
                return 0.26 ether;
            }else{
                return 0.24 ether;
            }
        }else{
            return custom_token_Price;
        }
    }
    function sendGifts(address[] memory _wallets) public onlyOwner{
        require(totalSupply + _wallets.length <= maxSupply, "not enough tokens left");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], totalSupply + 1 + i);
        totalSupply += _wallets.length;
    }

    function addPresaleList(address[] memory _wallets) public onlyOwner{
        for(uint i; i < _wallets.length; i++)
            presaleList[_wallets[i]] = true;
    }
    
    function isWhitelisted(address _sender) public view returns(bool){
        return presaleList[_sender];
    }
    
    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
    function setPauseSale(bool temp) external onlyOwner {
        pause_sale = temp;
    }
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    function set_start_time(uint _time) external onlyOwner{
        sale_startTime = _time;
    }
    function set_presale_start_time(uint _time) external onlyOwner{
        presale_startTime = _time;
    }
    function set_second_phase_time(uint _time) external onlyOwner{
        second_phase = _time;
    }
    function set_third_phase_time(uint _time) external onlyOwner{
        third_phase = _time;
    }
    function set_presale_limit(uint _limit) external onlyOwner{
        presale_Limit = _limit;
    } 
    function set_custom_token_price(uint _price) external onlyOwner{
        custom_token_Price = _price;
    } 
    function enable_custom_price(bool _enable) external onlyOwner{
        custom_price = _enable;
    }     
    function withdraw() external onlyOwner {
        uint _balance = address(this).balance;
        payable(0xf8caBDFDca3BEf9B86Aff7eeF516E2b1884A710B).transfer(_balance * 12 / 100); //Eetu
        payable(0x18C0B7B74a6731D8cc4dF912E3EfD99a16AE43E8).transfer(_balance * 10 / 100); //Jouni
        payable(0xeC0DaAe4d5DFd7c4eEf1D61D094134999798344A).transfer(_balance * 10 / 100); //Oskari
        payable(0x62d2d53A55b667f169af0652EA26a36DEA0d738E).transfer(_balance * 5 / 100);  //Nova
        payable(0x20a851E8CF45742AB755576d911300B9330A3D5A).transfer(_balance * 10 / 100); //Blockchainguy.net
        payable(0x9EfA9A49DAbE821F259B655788837a95312718Db).transfer(_balance * 1 / 100);  //Pyry
        payable(0x5CddCb316Cd77617D5048a3c2fB978c972Ff1180).transfer(_balance * 17 / 100); //Rasmus
        payable(0x44920617711d625107604B4ffC73fD8110CA80fb).transfer(_balance * 35 / 100); //Jesse
    }
}

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":"_wallets","type":"address[]"}],"name":"addPresaleList","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy_Presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"custom_price","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"custom_token_Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enable_custom_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"get_PublicSale_Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"pause_sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_Limit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale_startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"second_phase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"setPauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"set_custom_token_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"set_presale_limit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"set_presale_start_time","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"set_second_phase_time","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"set_start_time","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"set_third_phase_time","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"third_phase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261271a60075560006008556361ad366060098190556361ace200600a556107d0600b5562000035906138406200022b565b600c81905562000048906138406200022b565b600d55600e805461ffff19169055670354a6ba7a180000600f556040805160608101909152602580825262002b8560208301398051620000919160109160209091019062000185565b503480156200009f57600080fd5b506040518060400160405280600e81526020016d21b434b6361020b8329021b63ab160911b8152506040518060400160405280600381526020016243414360e81b815250620000fd620000f76200013160201b60201c565b62000135565b81516200011290600190602085019062000185565b5080516200012890600290602084019062000185565b5050506200028f565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001939062000252565b90600052602060002090601f016020900481019282620001b7576000855562000202565b82601f10620001d257805160ff191683800117855562000202565b8280016001018555821562000202579182015b8281111562000202578251825591602001919060010190620001e5565b506200021092915062000214565b5090565b5b8082111562000210576000815560010162000215565b600082198211156200024d57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200026757607f821691505b602082108114156200028957634e487b7160e01b600052602260045260246000fd5b50919050565b6128e6806200029f6000396000f3fe60806040526004361061025c5760003560e01c8063715018a611610144578063b88d4fde116100b6578063d96a094a1161007a578063d96a094a146106c6578063e985e9c5146106d9578063ebb3151014610722578063f2fde38b14610742578063f4effb6e14610762578063f50689291461078257600080fd5b8063b88d4fde14610636578063c1580cb314610656578063c4f2eb2a14610670578063c87b56dd14610690578063d5abeb01146106b057600080fd5b806395d89b411161010857806395d89b411461058c578063a0bcfc7f146105a1578063a22cb465146105c1578063aa29e23f146105e1578063b27b1a6d14610601578063b2d068241461062157600080fd5b8063715018a6146105105780637c8255db146105255780638090dd0f146105455780638aa328a21461055b5780638da5cb5b1461056e57600080fd5b806342842e0e116101dd5780635ec8defb116101a15780635ec8defb146104655780636352211e1461047b5780636c0360eb1461049b5780636ed4b488146104b05780636f07734f146104d057806370a08231146104f057600080fd5b806342842e0e146103d95780634783dbd6146103f9578063492cf95414610419578063533d80e71461042f57806353635bba1461044557600080fd5b806318160ddd1161022457806318160ddd1461033657806323b872dd1461034c5780633a4087c71461036c5780633af32abf1461038b5780633ccfd60b146103c457600080fd5b806301ffc9a71461026157806303158dde1461029657806306fdde03146102ba578063081812fc146102dc578063095ea7b314610314575b600080fd5b34801561026d57600080fd5b5061028161027c3660046124fa565b610798565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ac60095481565b60405190815260200161028d565b3480156102c657600080fd5b506102cf6107ea565b60405161028d919061262e565b3480156102e857600080fd5b506102fc6102f736600461257d565b61087c565b6040516001600160a01b03909116815260200161028d565b34801561032057600080fd5b5061033461032f366004612401565b610916565b005b34801561034257600080fd5b506102ac60085481565b34801561035857600080fd5b5061033461036736600461231f565b610a2c565b34801561037857600080fd5b50600e5461028190610100900460ff1681565b34801561039757600080fd5b506102816103a63660046122d1565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156103d057600080fd5b50610334610a5d565b3480156103e557600080fd5b506103346103f436600461231f565b610d4b565b34801561040557600080fd5b5061033461041436600461257d565b610d66565b34801561042557600080fd5b506102ac600f5481565b34801561043b57600080fd5b506102ac600a5481565b34801561045157600080fd5b5061033461046036600461257d565b610d95565b34801561047157600080fd5b506102ac600b5481565b34801561048757600080fd5b506102fc61049636600461257d565b610dc4565b3480156104a757600080fd5b506102cf610e3b565b3480156104bc57600080fd5b506103346104cb36600461257d565b610ec9565b3480156104dc57600080fd5b506103346104eb36600461257d565b610ef8565b3480156104fc57600080fd5b506102ac61050b3660046122d1565b610f27565b34801561051c57600080fd5b50610334610fae565b34801561053157600080fd5b5061033461054036600461242b565b610fe4565b34801561055157600080fd5b506102ac600c5481565b61033461056936600461257d565b6110dd565b34801561057a57600080fd5b506000546001600160a01b03166102fc565b34801561059857600080fd5b506102cf6113c4565b3480156105ad57600080fd5b506103346105bc366004612534565b6113d3565b3480156105cd57600080fd5b506103346105dc3660046123d7565b611410565b3480156105ed57600080fd5b506103346105fc3660046124df565b6114d5565b34801561060d57600080fd5b5061033461061c36600461257d565b611512565b34801561062d57600080fd5b506102ac611541565b34801561064257600080fd5b5061033461065136600461235b565b6115b0565b34801561066257600080fd5b50600e546102819060ff1681565b34801561067c57600080fd5b5061033461068b36600461257d565b6115e8565b34801561069c57600080fd5b506102cf6106ab36600461257d565b611617565b3480156106bc57600080fd5b506102ac60075481565b6103346106d436600461257d565b6116f2565b3480156106e557600080fd5b506102816106f43660046122ec565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561072e57600080fd5b5061033461073d36600461242b565b611912565b34801561074e57600080fd5b5061033461075d3660046122d1565b6119a4565b34801561076e57600080fd5b5061033461077d3660046124df565b611a3f565b34801561078e57600080fd5b506102ac600d5481565b60006001600160e01b031982166380ac58cd60e01b14806107c957506001600160e01b03198216635b5e139f60e01b145b806107e457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107f9906127d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610825906127d8565b80156108725780601f1061084757610100808354040283529160200191610872565b820191906000526020600020905b81548152906001019060200180831161085557829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166108fa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061092182610dc4565b9050806001600160a01b0316836001600160a01b0316141561098f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108f1565b336001600160a01b03821614806109ab57506109ab81336106f4565b610a1d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108f1565b610a278383611a83565b505050565b610a363382611af1565b610a525760405162461bcd60e51b81526004016108f1906126c8565b610a27838383611be8565b6000546001600160a01b03163314610a875760405162461bcd60e51b81526004016108f190612693565b4773f8cabdfdca3bef9b86aff7eef516e2b1884a710b6108fc6064610aad84600c612776565b610ab79190612762565b6040518115909202916000818181858888f19350505050158015610adf573d6000803e3d6000fd5b507318c0b7b74a6731d8cc4df912e3efd99a16ae43e86108fc6064610b0584600a612776565b610b0f9190612762565b6040518115909202916000818181858888f19350505050158015610b37573d6000803e3d6000fd5b5073ec0daae4d5dfd7c4eef1d61d094134999798344a6108fc6064610b5d84600a612776565b610b679190612762565b6040518115909202916000818181858888f19350505050158015610b8f573d6000803e3d6000fd5b507362d2d53a55b667f169af0652ea26a36dea0d738e6108fc6064610bb5846005612776565b610bbf9190612762565b6040518115909202916000818181858888f19350505050158015610be7573d6000803e3d6000fd5b507320a851e8cf45742ab755576d911300b9330a3d5a6108fc6064610c0d84600a612776565b610c179190612762565b6040518115909202916000818181858888f19350505050158015610c3f573d6000803e3d6000fd5b50739efa9a49dabe821f259b655788837a95312718db6108fc6064610c65846001612776565b610c6f9190612762565b6040518115909202916000818181858888f19350505050158015610c97573d6000803e3d6000fd5b50735cddcb316cd77617d5048a3c2fb978c972ff11806108fc6064610cbd846011612776565b610cc79190612762565b6040518115909202916000818181858888f19350505050158015610cef573d6000803e3d6000fd5b507344920617711d625107604b4ffc73fd8110ca80fb6108fc6064610d15846023612776565b610d1f9190612762565b6040518115909202916000818181858888f19350505050158015610d47573d6000803e3d6000fd5b5050565b610a27838383604051806020016040528060008152506115b0565b6000546001600160a01b03163314610d905760405162461bcd60e51b81526004016108f190612693565b600c55565b6000546001600160a01b03163314610dbf5760405162461bcd60e51b81526004016108f190612693565b600d55565b6000818152600360205260408120546001600160a01b0316806107e45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108f1565b60108054610e48906127d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e74906127d8565b8015610ec15780601f10610e9657610100808354040283529160200191610ec1565b820191906000526020600020905b815481529060010190602001808311610ea457829003601f168201915b505050505081565b6000546001600160a01b03163314610ef35760405162461bcd60e51b81526004016108f190612693565b600a55565b6000546001600160a01b03163314610f225760405162461bcd60e51b81526004016108f190612693565b600b55565b60006001600160a01b038216610f925760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108f1565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610fd85760405162461bcd60e51b81526004016108f190612693565b610fe26000611d88565b565b6000546001600160a01b0316331461100e5760405162461bcd60e51b81526004016108f190612693565b6007548151600854611020919061274a565b11156110675760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016108f1565b60005b81518110156110c1576110af8282815181106110885761108861286e565b60200260200101518260085460016110a0919061274a565b6110aa919061274a565b611dd8565b806110b981612813565b91505061106a565b508051600860008282546110d5919061274a565b909155505050565b600081116111275760405162461bcd60e51b815260206004820152601760248201527636b4b73a1030ba103632b0b9ba1037b732903a37b5b2b760491b60448201526064016108f1565b60018111156111785760405162461bcd60e51b815260206004820181905260248201527f4d6178203120416c6c6f77656420696e2031205472616e73616374696f6e2e2e60448201526064016108f1565b600b5481600854611189919061274a565b11156111d05760405162461bcd60e51b8152602060048201526016602482015275283932b9b0b632902634b6b4ba102932b0b1b432b21760511b60448201526064016108f1565b6111e28167016345785d8a0000612776565b34146112295760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b60448201526064016108f1565b600a5442101561127b5760405162461bcd60e51b815260206004820152601d60248201527f50726573616c652068617665206e6f742073746172746564207965742e00000060448201526064016108f1565b60095442106112bd5760405162461bcd60e51b815260206004820152600e60248201526d283932b9b0b6329022b73232b21760911b60448201526064016108f1565b600e5460ff16156113025760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b60448201526064016108f1565b3360009081526011602052604090205460ff166113615760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f7420616c6c6f77656420746f206d696e742e0000000060448201526064016108f1565b60005b8181101561139257611380338260085460016110a0919061274a565b8061138a81612813565b915050611364565b5080600860008282546113a5919061274a565b9091555050336000908152601160205260409020805460ff1916905550565b6060600280546107f9906127d8565b6000546001600160a01b031633146113fd5760405162461bcd60e51b81526004016108f190612693565b8051610d479060109060208401906121b4565b6001600160a01b0382163314156114695760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108f1565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146114ff5760405162461bcd60e51b81526004016108f190612693565b600e805460ff1916911515919091179055565b6000546001600160a01b0316331461153c5760405162461bcd60e51b81526004016108f190612693565b600955565b600e54600090610100900460ff166115a95760095442101580156115665750600c5442105b1561157857506703e2c284391c000090565b600c544211801561158a5750600d5442105b1561159c575067039bb49f599a000090565b50670354a6ba7a18000090565b50600f5490565b6115ba3383611af1565b6115d65760405162461bcd60e51b81526004016108f1906126c8565b6115e284848484611df2565b50505050565b6000546001600160a01b031633146116125760405162461bcd60e51b81526004016108f190612693565b600f55565b6000818152600360205260409020546060906001600160a01b03166116965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f1565b60006116a0611e25565b905060008151116116c057604051806020016040528060008152506116eb565b806116ca84611e34565b6040516020016116db9291906125c2565b6040516020818303038152906040525b9392505050565b6000811161173c5760405162461bcd60e51b815260206004820152601760248201527636b4b73a1030ba103632b0b9ba1037b732903a37b5b2b760491b60448201526064016108f1565b600a81111561178d5760405162461bcd60e51b815260206004820181905260248201527f4d617820313020416c6c6f77656420696e2031205472616e73616374696f6e2e60448201526064016108f1565b6007548160085461179e919061274a565b11156117e55760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016108f1565b806117ee611541565b6117f89190612776565b341461183f5760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b60448201526064016108f1565b6009544210156118895760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b60448201526064016108f1565b600e5460ff16156118ce5760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b60448201526064016108f1565b60005b818110156118ff576118ed338260085460016110a0919061274a565b806118f781612813565b9150506118d1565b5080600860008282546110d5919061274a565b6000546001600160a01b0316331461193c5760405162461bcd60e51b81526004016108f190612693565b60005b8151811015610d47576001601160008484815181106119605761196061286e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061199c81612813565b91505061193f565b6000546001600160a01b031633146119ce5760405162461bcd60e51b81526004016108f190612693565b6001600160a01b038116611a335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f1565b611a3c81611d88565b50565b6000546001600160a01b03163314611a695760405162461bcd60e51b81526004016108f190612693565b600e80549115156101000261ff0019909216919091179055565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ab882610dc4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611b6a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f1565b6000611b7583610dc4565b9050806001600160a01b0316846001600160a01b03161480611bb05750836001600160a01b0316611ba58461087c565b6001600160a01b0316145b80611be057506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bfb82610dc4565b6001600160a01b031614611c635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108f1565b6001600160a01b038216611cc55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108f1565b611cd0600082611a83565b6001600160a01b0383166000908152600460205260408120805460019290611cf9908490612795565b90915550506001600160a01b0382166000908152600460205260408120805460019290611d2790849061274a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610d47828260405180602001604052806000815250611f32565b611dfd848484611be8565b611e0984848484611f65565b6115e25760405162461bcd60e51b81526004016108f190612641565b6060601080546107f9906127d8565b606081611e585750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e825780611e6c81612813565b9150611e7b9050600a83612762565b9150611e5c565b60008167ffffffffffffffff811115611e9d57611e9d612884565b6040519080825280601f01601f191660200182016040528015611ec7576020820181803683370190505b5090505b8415611be057611edc600183612795565b9150611ee9600a8661282e565b611ef490603061274a565b60f81b818381518110611f0957611f0961286e565b60200101906001600160f81b031916908160001a905350611f2b600a86612762565b9450611ecb565b611f3c8383612072565b611f496000848484611f65565b610a275760405162461bcd60e51b81526004016108f190612641565b60006001600160a01b0384163b1561206757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fa99033908990889088906004016125f1565b602060405180830381600087803b158015611fc357600080fd5b505af1925050508015611ff3575060408051601f3d908101601f19168201909252611ff091810190612517565b60015b61204d573d808015612021576040519150601f19603f3d011682016040523d82523d6000602084013e612026565b606091505b5080516120455760405162461bcd60e51b81526004016108f190612641565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611be0565b506001949350505050565b6001600160a01b0382166120c85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108f1565b6000818152600360205260409020546001600160a01b03161561212d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108f1565b6001600160a01b038216600090815260046020526040812080546001929061215690849061274a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121c0906127d8565b90600052602060002090601f0160209004810192826121e25760008555612228565b82601f106121fb57805160ff1916838001178555612228565b82800160010185558215612228579182015b8281111561222857825182559160200191906001019061220d565b50612234929150612238565b5090565b5b808211156122345760008155600101612239565b600067ffffffffffffffff83111561226757612267612884565b61227a601f8401601f1916602001612719565b905082815283838301111561228e57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122bc57600080fd5b919050565b803580151581146122bc57600080fd5b6000602082840312156122e357600080fd5b6116eb826122a5565b600080604083850312156122ff57600080fd5b612308836122a5565b9150612316602084016122a5565b90509250929050565b60008060006060848603121561233457600080fd5b61233d846122a5565b925061234b602085016122a5565b9150604084013590509250925092565b6000806000806080858703121561237157600080fd5b61237a856122a5565b9350612388602086016122a5565b925060408501359150606085013567ffffffffffffffff8111156123ab57600080fd5b8501601f810187136123bc57600080fd5b6123cb8782356020840161224d565b91505092959194509250565b600080604083850312156123ea57600080fd5b6123f3836122a5565b9150612316602084016122c1565b6000806040838503121561241457600080fd5b61241d836122a5565b946020939093013593505050565b6000602080838503121561243e57600080fd5b823567ffffffffffffffff8082111561245657600080fd5b818501915085601f83011261246a57600080fd5b81358181111561247c5761247c612884565b8060051b915061248d848301612719565b8181528481019084860184860187018a10156124a857600080fd5b600095505b838610156124d2576124be816122a5565b8352600195909501949186019186016124ad565b5098975050505050505050565b6000602082840312156124f157600080fd5b6116eb826122c1565b60006020828403121561250c57600080fd5b81356116eb8161289a565b60006020828403121561252957600080fd5b81516116eb8161289a565b60006020828403121561254657600080fd5b813567ffffffffffffffff81111561255d57600080fd5b8201601f8101841361256e57600080fd5b611be08482356020840161224d565b60006020828403121561258f57600080fd5b5035919050565b600081518084526125ae8160208601602086016127ac565b601f01601f19169290920160200192915050565b600083516125d48184602088016127ac565b8351908301906125e88183602088016127ac565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061262490830184612596565b9695505050505050565b6020815260006116eb6020830184612596565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561274257612742612884565b604052919050565b6000821982111561275d5761275d612842565b500190565b60008261277157612771612858565b500490565b600081600019048311821515161561279057612790612842565b500290565b6000828210156127a7576127a7612842565b500390565b60005b838110156127c75781810151838201526020016127af565b838111156115e25750506000910152565b600181811c908216806127ec57607f821691505b6020821081141561280d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561282757612827612842565b5060010190565b60008261283d5761283d612858565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a3c57600080fdfea2646970667358221220f1c18e93ab531e82b3013ecf01d27eec5929c58d06e4bd50d49736b5198b961864736f6c6343000807003368747470733a2f2f7777772e6368696c6c617065636c75622e636f6d2f6170692f6e66742f

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063715018a611610144578063b88d4fde116100b6578063d96a094a1161007a578063d96a094a146106c6578063e985e9c5146106d9578063ebb3151014610722578063f2fde38b14610742578063f4effb6e14610762578063f50689291461078257600080fd5b8063b88d4fde14610636578063c1580cb314610656578063c4f2eb2a14610670578063c87b56dd14610690578063d5abeb01146106b057600080fd5b806395d89b411161010857806395d89b411461058c578063a0bcfc7f146105a1578063a22cb465146105c1578063aa29e23f146105e1578063b27b1a6d14610601578063b2d068241461062157600080fd5b8063715018a6146105105780637c8255db146105255780638090dd0f146105455780638aa328a21461055b5780638da5cb5b1461056e57600080fd5b806342842e0e116101dd5780635ec8defb116101a15780635ec8defb146104655780636352211e1461047b5780636c0360eb1461049b5780636ed4b488146104b05780636f07734f146104d057806370a08231146104f057600080fd5b806342842e0e146103d95780634783dbd6146103f9578063492cf95414610419578063533d80e71461042f57806353635bba1461044557600080fd5b806318160ddd1161022457806318160ddd1461033657806323b872dd1461034c5780633a4087c71461036c5780633af32abf1461038b5780633ccfd60b146103c457600080fd5b806301ffc9a71461026157806303158dde1461029657806306fdde03146102ba578063081812fc146102dc578063095ea7b314610314575b600080fd5b34801561026d57600080fd5b5061028161027c3660046124fa565b610798565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ac60095481565b60405190815260200161028d565b3480156102c657600080fd5b506102cf6107ea565b60405161028d919061262e565b3480156102e857600080fd5b506102fc6102f736600461257d565b61087c565b6040516001600160a01b03909116815260200161028d565b34801561032057600080fd5b5061033461032f366004612401565b610916565b005b34801561034257600080fd5b506102ac60085481565b34801561035857600080fd5b5061033461036736600461231f565b610a2c565b34801561037857600080fd5b50600e5461028190610100900460ff1681565b34801561039757600080fd5b506102816103a63660046122d1565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156103d057600080fd5b50610334610a5d565b3480156103e557600080fd5b506103346103f436600461231f565b610d4b565b34801561040557600080fd5b5061033461041436600461257d565b610d66565b34801561042557600080fd5b506102ac600f5481565b34801561043b57600080fd5b506102ac600a5481565b34801561045157600080fd5b5061033461046036600461257d565b610d95565b34801561047157600080fd5b506102ac600b5481565b34801561048757600080fd5b506102fc61049636600461257d565b610dc4565b3480156104a757600080fd5b506102cf610e3b565b3480156104bc57600080fd5b506103346104cb36600461257d565b610ec9565b3480156104dc57600080fd5b506103346104eb36600461257d565b610ef8565b3480156104fc57600080fd5b506102ac61050b3660046122d1565b610f27565b34801561051c57600080fd5b50610334610fae565b34801561053157600080fd5b5061033461054036600461242b565b610fe4565b34801561055157600080fd5b506102ac600c5481565b61033461056936600461257d565b6110dd565b34801561057a57600080fd5b506000546001600160a01b03166102fc565b34801561059857600080fd5b506102cf6113c4565b3480156105ad57600080fd5b506103346105bc366004612534565b6113d3565b3480156105cd57600080fd5b506103346105dc3660046123d7565b611410565b3480156105ed57600080fd5b506103346105fc3660046124df565b6114d5565b34801561060d57600080fd5b5061033461061c36600461257d565b611512565b34801561062d57600080fd5b506102ac611541565b34801561064257600080fd5b5061033461065136600461235b565b6115b0565b34801561066257600080fd5b50600e546102819060ff1681565b34801561067c57600080fd5b5061033461068b36600461257d565b6115e8565b34801561069c57600080fd5b506102cf6106ab36600461257d565b611617565b3480156106bc57600080fd5b506102ac60075481565b6103346106d436600461257d565b6116f2565b3480156106e557600080fd5b506102816106f43660046122ec565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561072e57600080fd5b5061033461073d36600461242b565b611912565b34801561074e57600080fd5b5061033461075d3660046122d1565b6119a4565b34801561076e57600080fd5b5061033461077d3660046124df565b611a3f565b34801561078e57600080fd5b506102ac600d5481565b60006001600160e01b031982166380ac58cd60e01b14806107c957506001600160e01b03198216635b5e139f60e01b145b806107e457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107f9906127d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610825906127d8565b80156108725780601f1061084757610100808354040283529160200191610872565b820191906000526020600020905b81548152906001019060200180831161085557829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166108fa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061092182610dc4565b9050806001600160a01b0316836001600160a01b0316141561098f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108f1565b336001600160a01b03821614806109ab57506109ab81336106f4565b610a1d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108f1565b610a278383611a83565b505050565b610a363382611af1565b610a525760405162461bcd60e51b81526004016108f1906126c8565b610a27838383611be8565b6000546001600160a01b03163314610a875760405162461bcd60e51b81526004016108f190612693565b4773f8cabdfdca3bef9b86aff7eef516e2b1884a710b6108fc6064610aad84600c612776565b610ab79190612762565b6040518115909202916000818181858888f19350505050158015610adf573d6000803e3d6000fd5b507318c0b7b74a6731d8cc4df912e3efd99a16ae43e86108fc6064610b0584600a612776565b610b0f9190612762565b6040518115909202916000818181858888f19350505050158015610b37573d6000803e3d6000fd5b5073ec0daae4d5dfd7c4eef1d61d094134999798344a6108fc6064610b5d84600a612776565b610b679190612762565b6040518115909202916000818181858888f19350505050158015610b8f573d6000803e3d6000fd5b507362d2d53a55b667f169af0652ea26a36dea0d738e6108fc6064610bb5846005612776565b610bbf9190612762565b6040518115909202916000818181858888f19350505050158015610be7573d6000803e3d6000fd5b507320a851e8cf45742ab755576d911300b9330a3d5a6108fc6064610c0d84600a612776565b610c179190612762565b6040518115909202916000818181858888f19350505050158015610c3f573d6000803e3d6000fd5b50739efa9a49dabe821f259b655788837a95312718db6108fc6064610c65846001612776565b610c6f9190612762565b6040518115909202916000818181858888f19350505050158015610c97573d6000803e3d6000fd5b50735cddcb316cd77617d5048a3c2fb978c972ff11806108fc6064610cbd846011612776565b610cc79190612762565b6040518115909202916000818181858888f19350505050158015610cef573d6000803e3d6000fd5b507344920617711d625107604b4ffc73fd8110ca80fb6108fc6064610d15846023612776565b610d1f9190612762565b6040518115909202916000818181858888f19350505050158015610d47573d6000803e3d6000fd5b5050565b610a27838383604051806020016040528060008152506115b0565b6000546001600160a01b03163314610d905760405162461bcd60e51b81526004016108f190612693565b600c55565b6000546001600160a01b03163314610dbf5760405162461bcd60e51b81526004016108f190612693565b600d55565b6000818152600360205260408120546001600160a01b0316806107e45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108f1565b60108054610e48906127d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e74906127d8565b8015610ec15780601f10610e9657610100808354040283529160200191610ec1565b820191906000526020600020905b815481529060010190602001808311610ea457829003601f168201915b505050505081565b6000546001600160a01b03163314610ef35760405162461bcd60e51b81526004016108f190612693565b600a55565b6000546001600160a01b03163314610f225760405162461bcd60e51b81526004016108f190612693565b600b55565b60006001600160a01b038216610f925760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108f1565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610fd85760405162461bcd60e51b81526004016108f190612693565b610fe26000611d88565b565b6000546001600160a01b0316331461100e5760405162461bcd60e51b81526004016108f190612693565b6007548151600854611020919061274a565b11156110675760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016108f1565b60005b81518110156110c1576110af8282815181106110885761108861286e565b60200260200101518260085460016110a0919061274a565b6110aa919061274a565b611dd8565b806110b981612813565b91505061106a565b508051600860008282546110d5919061274a565b909155505050565b600081116111275760405162461bcd60e51b815260206004820152601760248201527636b4b73a1030ba103632b0b9ba1037b732903a37b5b2b760491b60448201526064016108f1565b60018111156111785760405162461bcd60e51b815260206004820181905260248201527f4d6178203120416c6c6f77656420696e2031205472616e73616374696f6e2e2e60448201526064016108f1565b600b5481600854611189919061274a565b11156111d05760405162461bcd60e51b8152602060048201526016602482015275283932b9b0b632902634b6b4ba102932b0b1b432b21760511b60448201526064016108f1565b6111e28167016345785d8a0000612776565b34146112295760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b60448201526064016108f1565b600a5442101561127b5760405162461bcd60e51b815260206004820152601d60248201527f50726573616c652068617665206e6f742073746172746564207965742e00000060448201526064016108f1565b60095442106112bd5760405162461bcd60e51b815260206004820152600e60248201526d283932b9b0b6329022b73232b21760911b60448201526064016108f1565b600e5460ff16156113025760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b60448201526064016108f1565b3360009081526011602052604090205460ff166113615760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f7420616c6c6f77656420746f206d696e742e0000000060448201526064016108f1565b60005b8181101561139257611380338260085460016110a0919061274a565b8061138a81612813565b915050611364565b5080600860008282546113a5919061274a565b9091555050336000908152601160205260409020805460ff1916905550565b6060600280546107f9906127d8565b6000546001600160a01b031633146113fd5760405162461bcd60e51b81526004016108f190612693565b8051610d479060109060208401906121b4565b6001600160a01b0382163314156114695760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108f1565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146114ff5760405162461bcd60e51b81526004016108f190612693565b600e805460ff1916911515919091179055565b6000546001600160a01b0316331461153c5760405162461bcd60e51b81526004016108f190612693565b600955565b600e54600090610100900460ff166115a95760095442101580156115665750600c5442105b1561157857506703e2c284391c000090565b600c544211801561158a5750600d5442105b1561159c575067039bb49f599a000090565b50670354a6ba7a18000090565b50600f5490565b6115ba3383611af1565b6115d65760405162461bcd60e51b81526004016108f1906126c8565b6115e284848484611df2565b50505050565b6000546001600160a01b031633146116125760405162461bcd60e51b81526004016108f190612693565b600f55565b6000818152600360205260409020546060906001600160a01b03166116965760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108f1565b60006116a0611e25565b905060008151116116c057604051806020016040528060008152506116eb565b806116ca84611e34565b6040516020016116db9291906125c2565b6040516020818303038152906040525b9392505050565b6000811161173c5760405162461bcd60e51b815260206004820152601760248201527636b4b73a1030ba103632b0b9ba1037b732903a37b5b2b760491b60448201526064016108f1565b600a81111561178d5760405162461bcd60e51b815260206004820181905260248201527f4d617820313020416c6c6f77656420696e2031205472616e73616374696f6e2e60448201526064016108f1565b6007548160085461179e919061274a565b11156117e55760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016108f1565b806117ee611541565b6117f89190612776565b341461183f5760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b60448201526064016108f1565b6009544210156118895760405162461bcd60e51b815260206004820152601560248201527429b0b632903737ba1029ba30b93a32b2102cb2ba1760591b60448201526064016108f1565b600e5460ff16156118ce5760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b60448201526064016108f1565b60005b818110156118ff576118ed338260085460016110a0919061274a565b806118f781612813565b9150506118d1565b5080600860008282546110d5919061274a565b6000546001600160a01b0316331461193c5760405162461bcd60e51b81526004016108f190612693565b60005b8151811015610d47576001601160008484815181106119605761196061286e565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061199c81612813565b91505061193f565b6000546001600160a01b031633146119ce5760405162461bcd60e51b81526004016108f190612693565b6001600160a01b038116611a335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f1565b611a3c81611d88565b50565b6000546001600160a01b03163314611a695760405162461bcd60e51b81526004016108f190612693565b600e80549115156101000261ff0019909216919091179055565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ab882610dc4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611b6a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f1565b6000611b7583610dc4565b9050806001600160a01b0316846001600160a01b03161480611bb05750836001600160a01b0316611ba58461087c565b6001600160a01b0316145b80611be057506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bfb82610dc4565b6001600160a01b031614611c635760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108f1565b6001600160a01b038216611cc55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108f1565b611cd0600082611a83565b6001600160a01b0383166000908152600460205260408120805460019290611cf9908490612795565b90915550506001600160a01b0382166000908152600460205260408120805460019290611d2790849061274a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610d47828260405180602001604052806000815250611f32565b611dfd848484611be8565b611e0984848484611f65565b6115e25760405162461bcd60e51b81526004016108f190612641565b6060601080546107f9906127d8565b606081611e585750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e825780611e6c81612813565b9150611e7b9050600a83612762565b9150611e5c565b60008167ffffffffffffffff811115611e9d57611e9d612884565b6040519080825280601f01601f191660200182016040528015611ec7576020820181803683370190505b5090505b8415611be057611edc600183612795565b9150611ee9600a8661282e565b611ef490603061274a565b60f81b818381518110611f0957611f0961286e565b60200101906001600160f81b031916908160001a905350611f2b600a86612762565b9450611ecb565b611f3c8383612072565b611f496000848484611f65565b610a275760405162461bcd60e51b81526004016108f190612641565b60006001600160a01b0384163b1561206757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fa99033908990889088906004016125f1565b602060405180830381600087803b158015611fc357600080fd5b505af1925050508015611ff3575060408051601f3d908101601f19168201909252611ff091810190612517565b60015b61204d573d808015612021576040519150601f19603f3d011682016040523d82523d6000602084013e612026565b606091505b5080516120455760405162461bcd60e51b81526004016108f190612641565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611be0565b506001949350505050565b6001600160a01b0382166120c85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108f1565b6000818152600360205260409020546001600160a01b03161561212d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108f1565b6001600160a01b038216600090815260046020526040812080546001929061215690849061274a565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121c0906127d8565b90600052602060002090601f0160209004810192826121e25760008555612228565b82601f106121fb57805160ff1916838001178555612228565b82800160010185558215612228579182015b8281111561222857825182559160200191906001019061220d565b50612234929150612238565b5090565b5b808211156122345760008155600101612239565b600067ffffffffffffffff83111561226757612267612884565b61227a601f8401601f1916602001612719565b905082815283838301111561228e57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146122bc57600080fd5b919050565b803580151581146122bc57600080fd5b6000602082840312156122e357600080fd5b6116eb826122a5565b600080604083850312156122ff57600080fd5b612308836122a5565b9150612316602084016122a5565b90509250929050565b60008060006060848603121561233457600080fd5b61233d846122a5565b925061234b602085016122a5565b9150604084013590509250925092565b6000806000806080858703121561237157600080fd5b61237a856122a5565b9350612388602086016122a5565b925060408501359150606085013567ffffffffffffffff8111156123ab57600080fd5b8501601f810187136123bc57600080fd5b6123cb8782356020840161224d565b91505092959194509250565b600080604083850312156123ea57600080fd5b6123f3836122a5565b9150612316602084016122c1565b6000806040838503121561241457600080fd5b61241d836122a5565b946020939093013593505050565b6000602080838503121561243e57600080fd5b823567ffffffffffffffff8082111561245657600080fd5b818501915085601f83011261246a57600080fd5b81358181111561247c5761247c612884565b8060051b915061248d848301612719565b8181528481019084860184860187018a10156124a857600080fd5b600095505b838610156124d2576124be816122a5565b8352600195909501949186019186016124ad565b5098975050505050505050565b6000602082840312156124f157600080fd5b6116eb826122c1565b60006020828403121561250c57600080fd5b81356116eb8161289a565b60006020828403121561252957600080fd5b81516116eb8161289a565b60006020828403121561254657600080fd5b813567ffffffffffffffff81111561255d57600080fd5b8201601f8101841361256e57600080fd5b611be08482356020840161224d565b60006020828403121561258f57600080fd5b5035919050565b600081518084526125ae8160208601602086016127ac565b601f01601f19169290920160200192915050565b600083516125d48184602088016127ac565b8351908301906125e88183602088016127ac565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061262490830184612596565b9695505050505050565b6020815260006116eb6020830184612596565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561274257612742612884565b604052919050565b6000821982111561275d5761275d612842565b500190565b60008261277157612771612858565b500490565b600081600019048311821515161561279057612790612842565b500290565b6000828210156127a7576127a7612842565b500390565b60005b838110156127c75781810151838201526020016127af565b838111156115e25750506000910152565b600181811c908216806127ec57607f821691505b6020821081141561280d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561282757612827612842565b5060010190565b60008261283d5761283d612858565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a3c57600080fdfea2646970667358221220f1c18e93ab531e82b3013ecf01d27eec5929c58d06e4bd50d49736b5198b961864736f6c63430008070033

Deployed Bytecode Sourcemap

34526:5365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22380:305;;;;;;;;;;-1:-1:-1;22380:305:0;;;;;:::i;:::-;;:::i;:::-;;;6646:14:1;;6639:22;6621:41;;6609:2;6594:18;22380:305:0;;;;;;;;34696:39;;;;;;;;;;;;;;;;;;;17655:25:1;;;17643:2;17628:18;34696:39:0;17509:177:1;23325:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24884:221::-;;;;;;;;;;-1:-1:-1;24884:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5944:32:1;;;5926:51;;5914:2;5899:18;24884:221:0;5780:203:1;24407:411:0;;;;;;;;;;-1:-1:-1;24407:411:0;;;;;:::i;:::-;;:::i;:::-;;34656:27;;;;;;;;;;;;;;;;25774:339;;;;;;;;;;-1:-1:-1;25774:339:0;;;;;:::i;:::-;;:::i;35060:32::-;;;;;;;;;;-1:-1:-1;35060:32:0;;;;;;;;;;;37795:111;;;;;;;;;;-1:-1:-1;37795:111:0;;;;;:::i;:::-;-1:-1:-1;;;;;37878:20:0;37855:4;37878:20;;;:11;:20;;;;;;;;;37795:111;38982:906;;;;;;;;;;;;;:::i;26184:185::-;;;;;;;;;;-1:-1:-1;26184:185:0;;;;;:::i;:::-;;:::i;38437:100::-;;;;;;;;;;-1:-1:-1;38437:100:0;;;;;:::i;:::-;;:::i;35099:43::-;;;;;;;;;;;;;;;;34781:42;;;;;;;;;;;;;;;;38543:98;;;;;;;;;;-1:-1:-1;38543:98:0;;;;;:::i;:::-;;:::i;34871:32::-;;;;;;;;;;;;;;;;23019:239;;;;;;;;;;-1:-1:-1;23019:239:0;;;;;:::i;:::-;;:::i;35151:63::-;;;;;;;;;;;;;:::i;38325:106::-;;;;;;;;;;-1:-1:-1;38325:106:0;;;;;:::i;:::-;;:::i;38647:99::-;;;;;;;;;;-1:-1:-1;38647:99:0;;;;;:::i;:::-;;:::i;22749:208::-;;;;;;;;;;-1:-1:-1;22749:208:0;;;;;:::i;:::-;;:::i;14227:94::-;;;;;;;;;;;;;:::i;37299:308::-;;;;;;;;;;-1:-1:-1;37299:308:0;;;;;:::i;:::-;;:::i;34912:49::-;;;;;;;;;;;;;;;;35967:841;;;;;;:::i;:::-;;:::i;13576:87::-;;;;;;;;;;-1:-1:-1;13622:7:0;13649:6;-1:-1:-1;;;;;13649:6:0;13576:87;;23494:104;;;;;;;;;;;;;:::i;37918:92::-;;;;;;;;;;-1:-1:-1;37918:92:0;;;;;:::i;:::-;;:::i;25177:295::-;;;;;;;;;;-1:-1:-1;25177:295:0;;;;;:::i;:::-;;:::i;38016:88::-;;;;;;;;;;-1:-1:-1;38016:88:0;;;;;:::i;:::-;;:::i;38224:95::-;;;;;;;;;;-1:-1:-1;38224:95:0;;;;;:::i;:::-;;:::i;36816:477::-;;;;;;;;;;;;;:::i;26440:328::-;;;;;;;;;;-1:-1:-1;26440:328:0;;;;;:::i;:::-;;:::i;35023:30::-;;;;;;;;;;-1:-1:-1;35023:30:0;;;;;;;;38753:109;;;;;;;;;;-1:-1:-1;38753:109:0;;;;;:::i;:::-;;:::i;23669:334::-;;;;;;;;;;-1:-1:-1;23669:334:0;;;;;:::i;:::-;;:::i;34620:29::-;;;;;;;;;;;;;;;;35326:636;;;;;;:::i;:::-;;:::i;25543:164::-;;;;;;;;;;-1:-1:-1;25543:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25664:25:0;;;25640:4;25664:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25543:164;37615:168;;;;;;;;;;-1:-1:-1;37615:168:0;;;;;:::i;:::-;;:::i;14476:192::-;;;;;;;;;;-1:-1:-1;14476:192:0;;;;;:::i;:::-;;:::i;38869:102::-;;;;;;;;;;-1:-1:-1;38869:102:0;;;;;:::i;:::-;;:::i;34968:46::-;;;;;;;;;;;;;;;;22380:305;22482:4;-1:-1:-1;;;;;;22519:40:0;;-1:-1:-1;;;22519:40:0;;:105;;-1:-1:-1;;;;;;;22576:48:0;;-1:-1:-1;;;22576:48:0;22519:105;:158;;;-1:-1:-1;;;;;;;;;;15690:40:0;;;22641:36;22499:178;22380:305;-1:-1:-1;;22380:305:0:o;23325:100::-;23379:13;23412:5;23405:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23325:100;:::o;24884:221::-;24960:7;28367:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28367:16:0;24980:73;;;;-1:-1:-1;;;24980:73:0;;12471:2:1;24980:73:0;;;12453:21:1;12510:2;12490:18;;;12483:30;12549:34;12529:18;;;12522:62;-1:-1:-1;;;12600:18:1;;;12593:42;12652:19;;24980:73:0;;;;;;;;;-1:-1:-1;25073:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25073:24:0;;24884:221::o;24407:411::-;24488:13;24504:23;24519:7;24504:14;:23::i;:::-;24488:39;;24552:5;-1:-1:-1;;;;;24546:11:0;:2;-1:-1:-1;;;;;24546:11:0;;;24538:57;;;;-1:-1:-1;;;24538:57:0;;14779:2:1;24538:57:0;;;14761:21:1;14818:2;14798:18;;;14791:30;14857:34;14837:18;;;14830:62;-1:-1:-1;;;14908:18:1;;;14901:31;14949:19;;24538:57:0;14577:397:1;24538:57:0;796:10;-1:-1:-1;;;;;24630:21:0;;;;:62;;-1:-1:-1;24655:37:0;24672:5;796:10;25543:164;:::i;24655:37::-;24608:168;;;;-1:-1:-1;;;24608:168:0;;10513:2:1;24608:168:0;;;10495:21:1;10552:2;10532:18;;;10525:30;10591:34;10571:18;;;10564:62;10662:26;10642:18;;;10635:54;10706:19;;24608:168:0;10311:420:1;24608:168:0;24789:21;24798:2;24802:7;24789:8;:21::i;:::-;24477:341;24407:411;;:::o;25774:339::-;25969:41;796:10;26002:7;25969:18;:41::i;:::-;25961:103;;;;-1:-1:-1;;;25961:103:0;;;;;;;:::i;:::-;26077:28;26087:4;26093:2;26097:7;26077:9;:28::i;38982:906::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;39048:21:::1;39088:42;39080:81;39157:3;39141:13;39048:21:::0;39152:2:::1;39141:13;:::i;:::-;:19;;;;:::i;:::-;39080:81;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39187:42:0::1;39179:81;39256:3;39240:13;:8:::0;39251:2:::1;39240:13;:::i;:::-;:19;;;;:::i;:::-;39179:81;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39287:42:0::1;39279:81;39356:3;39340:13;:8:::0;39351:2:::1;39340:13;:::i;:::-;:19;;;;:::i;:::-;39279:81;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39388:42:0::1;39380:80;39456:3;39441:12;:8:::0;39452:1:::1;39441:12;:::i;:::-;:18;;;;:::i;:::-;39380:80;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39487:42:0::1;39479:81;39556:3;39540:13;:8:::0;39551:2:::1;39540:13;:::i;:::-;:19;;;;:::i;:::-;39479:81;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39599:42:0::1;39591:80;39667:3;39652:12;:8:::0;39663:1:::1;39652:12;:::i;:::-;:18;;;;:::i;:::-;39591:80;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39698:42:0::1;39690:81;39767:3;39751:13;:8:::0;39762:2:::1;39751:13;:::i;:::-;:19;;;;:::i;:::-;39690:81;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39799:42:0::1;39791:81;39868:3;39852:13;:8:::0;39863:2:::1;39852:13;:::i;:::-;:19;;;;:::i;:::-;39791:81;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;39021:867;38982:906::o:0;26184:185::-;26322:39;26339:4;26345:2;26349:7;26322:39;;;;;;;;;;;;:16;:39::i;38437:100::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;38509:12:::1;:20:::0;38437:100::o;38543:98::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;38614:11:::1;:19:::0;38543:98::o;23019:239::-;23091:7;23127:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23127:16:0;23162:19;23154:73;;;;-1:-1:-1;;;23154:73:0;;11349:2:1;23154:73:0;;;11331:21:1;11388:2;11368:18;;;11361:30;11427:34;11407:18;;;11400:62;-1:-1:-1;;;11478:18:1;;;11471:39;11527:19;;23154:73:0;11147:405:1;35151:63:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38325:106::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;38398:17:::1;:25:::0;38325:106::o;38647:99::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;38716:13:::1;:22:::0;38647:99::o;22749:208::-;22821:7;-1:-1:-1;;;;;22849:19:0;;22841:74;;;;-1:-1:-1;;;22841:74:0;;10938:2:1;22841:74:0;;;10920:21:1;10977:2;10957:18;;;10950:30;11016:34;10996:18;;;10989:62;-1:-1:-1;;;11067:18:1;;;11060:40;11117:19;;22841:74:0;10736:406:1;22841:74:0;-1:-1:-1;;;;;;22933:16:0;;;;;:9;:16;;;;;;;22749:208::o;14227:94::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;14292:21:::1;14310:1;14292:9;:21::i;:::-;14227:94::o:0;37299:308::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;37413:9:::1;;37394:8;:15;37380:11;;:29;;;;:::i;:::-;:42;;37372:77;;;::::0;-1:-1:-1;;;37372:77:0;;17016:2:1;37372:77:0::1;::::0;::::1;16998:21:1::0;17055:2;17035:18;;;17028:30;-1:-1:-1;;;17074:18:1;;;17067:52;17136:18;;37372:77:0::1;16814:346:1::0;37372:77:0::1;37464:6;37460:98;37480:8;:15;37476:1;:19;37460:98;;;37515:43;37525:8;37534:1;37525:11;;;;;;;;:::i;:::-;;;;;;;37556:1;37538:11;;37552:1;37538:15;;;;:::i;:::-;:19;;;;:::i;:::-;37515:9;:43::i;:::-;37497:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37460:98;;;;37584:8;:15;37569:11;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;37299:308:0:o;35967:841::-;36043:1;36034:6;:10;36026:46;;;;-1:-1:-1;;;36026:46:0;;16664:2:1;36026:46:0;;;16646:21:1;16703:2;16683:18;;;16676:30;-1:-1:-1;;;16722:18:1;;;16715:53;16785:18;;36026:46:0;16462:347:1;36026:46:0;36101:1;36091:6;:11;;36083:56;;;;-1:-1:-1;;;36083:56:0;;15885:2:1;36083:56:0;;;15867:21:1;;;15904:18;;;15897:30;15963:34;15943:18;;;15936:62;16015:18;;36083:56:0;15683:356:1;36083:56:0;36182:13;;36172:6;36158:11;;:20;;;;:::i;:::-;:37;;36150:72;;;;-1:-1:-1;;;36150:72:0;;7456:2:1;36150:72:0;;;7438:21:1;7495:2;7475:18;;;7468:30;-1:-1:-1;;;7514:18:1;;;7507:52;7576:18;;36150:72:0;7254:346:1;36150:72:0;36254:22;36270:6;34604:9;36254:22;:::i;:::-;36241:9;:35;36233:70;;;;-1:-1:-1;;;36233:70:0;;10162:2:1;36233:70:0;;;10144:21:1;10201:2;10181:18;;;10174:30;-1:-1:-1;;;10220:18:1;;;10213:52;10282:18;;36233:70:0;9960:346:1;36233:70:0;36341:17;;36322:15;:36;;36314:77;;;;-1:-1:-1;;;36314:77:0;;13245:2:1;36314:77:0;;;13227:21:1;13284:2;13264:18;;;13257:30;13323:31;13303:18;;;13296:59;13372:18;;36314:77:0;13043:353:1;36314:77:0;36428:14;;36410:15;:32;36402:58;;;;-1:-1:-1;;;36402:58:0;;15542:2:1;36402:58:0;;;15524:21:1;15581:2;15561:18;;;15554:30;-1:-1:-1;;;15600:18:1;;;15593:44;15654:18;;36402:58:0;15340:338:1;36402:58:0;36479:10;;;;:19;36471:47;;;;-1:-1:-1;;;36471:47:0;;17367:2:1;36471:47:0;;;17349:21:1;17406:2;17386:18;;;17379:30;-1:-1:-1;;;17425:18:1;;;17418:45;17480:18;;36471:47:0;17165:339:1;36471:47:0;36551:10;37855:4;37878:20;;;:11;:20;;;;;;;;36529:66;;;;-1:-1:-1;;;36529:66:0;;7099:2:1;36529:66:0;;;7081:21:1;7138:2;7118:18;;;7111:30;7177;7157:18;;;7150:58;7225:18;;36529:66:0;6897:352:1;36529:66:0;36620:6;36616:88;36636:6;36632:1;:10;36616:88;;;36662:42;36672:10;36702:1;36684:11;;36698:1;36684:15;;;;:::i;36662:42::-;36644:3;;;;:::i;:::-;;;;36616:88;;;;36748:6;36733:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;36781:10:0;36795:5;36769:23;;;:11;:23;;;;;:31;;-1:-1:-1;;36769:31:0;;;-1:-1:-1;35967:841:0:o;23494:104::-;23550:13;23583:7;23576:14;;;;;:::i;37918:92::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;37988:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;25177:295::-:0;-1:-1:-1;;;;;25280:24:0;;796:10;25280:24;;25272:62;;;;-1:-1:-1;;;25272:62:0;;9395:2:1;25272:62:0;;;9377:21:1;9434:2;9414:18;;;9407:30;9473:27;9453:18;;;9446:55;9518:18;;25272:62:0;9193:349:1;25272:62:0;796:10;25347:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25347:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25347:53:0;;;;;;;;;;25416:48;;6621:41:1;;;25347:42:0;;796:10;25416:48;;6594:18:1;25416:48:0;;;;;;;25177:295;;:::o;38016:88::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;38079:10:::1;:17:::0;;-1:-1:-1;;38079:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38016:88::o;38224:95::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;38289:14:::1;:22:::0;38224:95::o;36816:477::-;36888:12;;36868:4;;36888:12;;;;;36884:402;;36938:14;;36919:15;:33;;:67;;;;;36974:12;;36956:15;:30;36919:67;36916:303;;;-1:-1:-1;37013:10:0;;36816:477::o;36916:303::-;37065:12;;37047:15;:30;:63;;;;;37099:11;;37081:15;:29;37047:63;37044:175;;;-1:-1:-1;37137:10:0;;36816:477::o;37044:175::-;-1:-1:-1;37193:10:0;;36816:477::o;36884:402::-;-1:-1:-1;37256:18:0;;;36816:477::o;26440:328::-;26615:41;796:10;26648:7;26615:18;:41::i;:::-;26607:103;;;;-1:-1:-1;;;26607:103:0;;;;;;;:::i;:::-;26721:39;26735:4;26741:2;26745:7;26754:5;26721:13;:39::i;:::-;26440:328;;;;:::o;38753:109::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;38827:18:::1;:27:::0;38753:109::o;23669:334::-;28343:4;28367:16;;;:7;:16;;;;;;23742:13;;-1:-1:-1;;;;;28367:16:0;23768:76;;;;-1:-1:-1;;;23768:76:0;;14363:2:1;23768:76:0;;;14345:21:1;14402:2;14382:18;;;14375:30;14441:34;14421:18;;;14414:62;-1:-1:-1;;;14492:18:1;;;14485:45;14547:19;;23768:76:0;14161:411:1;23768:76:0;23857:21;23881:10;:8;:10::i;:::-;23857:34;;23933:1;23915:7;23909:21;:25;:86;;;;;;;;;;;;;;;;;23961:7;23970:18;:7;:16;:18::i;:::-;23944:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23909:86;23902:93;23669:334;-1:-1:-1;;;23669:334:0:o;35326:636::-;35394:1;35385:6;:10;35377:46;;;;-1:-1:-1;;;35377:46:0;;16664:2:1;35377:46:0;;;16646:21:1;16703:2;16683:18;;;16676:30;-1:-1:-1;;;16722:18:1;;;16715:53;16785:18;;35377:46:0;16462:347:1;35377:46:0;35452:2;35442:6;:12;;35434:57;;;;-1:-1:-1;;;35434:57:0;;15181:2:1;35434:57:0;;;15163:21:1;;;15200:18;;;15193:30;15259:34;15239:18;;;15232:62;15311:18;;35434:57:0;14979:356:1;35434:57:0;35534:9;;35524:6;35510:11;;:20;;;;:::i;:::-;:33;;35502:68;;;;-1:-1:-1;;;35502:68:0;;11759:2:1;35502:68:0;;;11741:21:1;11798:2;11778:18;;;11771:30;-1:-1:-1;;;11817:18:1;;;11810:52;11879:18;;35502:68:0;11557:346:1;35502:68:0;35627:6;35602:22;:20;:22::i;:::-;:31;;;;:::i;:::-;35589:9;:44;35581:79;;;;-1:-1:-1;;;35581:79:0;;10162:2:1;35581:79:0;;;10144:21:1;10201:2;10181:18;;;10174:30;-1:-1:-1;;;10220:18:1;;;10213:52;10282:18;;35581:79:0;9960:346:1;35581:79:0;35698:14;;35679:15;:33;;35671:66;;;;-1:-1:-1;;;35671:66:0;;13603:2:1;35671:66:0;;;13585:21:1;13642:2;13622:18;;;13615:30;-1:-1:-1;;;13661:18:1;;;13654:51;13722:18;;35671:66:0;13401:345:1;35671:66:0;35756:10;;;;:19;35748:47;;;;-1:-1:-1;;;35748:47:0;;17367:2:1;35748:47:0;;;17349:21:1;17406:2;17386:18;;;17379:30;-1:-1:-1;;;17425:18:1;;;17418:45;17480:18;;35748:47:0;17165:339:1;35748:47:0;35820:6;35816:88;35836:6;35832:1;:10;35816:88;;;35862:42;35872:10;35902:1;35884:11;;35898:1;35884:15;;;;:::i;35862:42::-;35844:3;;;;:::i;:::-;;;;35816:88;;;;35948:6;35933:11;;:21;;;;;;;:::i;37615:168::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;37697:6:::1;37693:82;37709:8;:15;37705:1;:19;37693:82;;;37771:4;37744:11;:24;37756:8;37765:1;37756:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;37744:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;37744:24:0;:31;;-1:-1:-1;;37744:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37726:3;::::1;::::0;::::1;:::i;:::-;;;;37693:82;;14476:192:::0;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14565:22:0;::::1;14557:73;;;::::0;-1:-1:-1;;;14557:73:0;;8226:2:1;14557:73:0::1;::::0;::::1;8208:21:1::0;8265:2;8245:18;;;8238:30;8304:34;8284:18;;;8277:62;-1:-1:-1;;;8355:18:1;;;8348:36;8401:19;;14557:73:0::1;8024:402:1::0;14557:73:0::1;14641:19;14651:8;14641:9;:19::i;:::-;14476:192:::0;:::o;38869:102::-;13622:7;13649:6;-1:-1:-1;;;;;13649:6:0;796:10;13796:23;13788:68;;;;-1:-1:-1;;;13788:68:0;;;;;;;:::i;:::-;38941:12:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;38941:22:0;;::::1;::::0;;;::::1;::::0;;38869:102::o;32260:174::-;32335:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32335:29:0;-1:-1:-1;;;;;32335:29:0;;;;;;;;:24;;32389:23;32335:24;32389:14;:23::i;:::-;-1:-1:-1;;;;;32380:46:0;;;;;;;;;;;32260:174;;:::o;28572:348::-;28665:4;28367:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28367:16:0;28682:73;;;;-1:-1:-1;;;28682:73:0;;9749:2:1;28682:73:0;;;9731:21:1;9788:2;9768:18;;;9761:30;9827:34;9807:18;;;9800:62;-1:-1:-1;;;9878:18:1;;;9871:42;9930:19;;28682:73:0;9547:408:1;28682:73:0;28766:13;28782:23;28797:7;28782:14;:23::i;:::-;28766:39;;28835:5;-1:-1:-1;;;;;28824:16:0;:7;-1:-1:-1;;;;;28824:16:0;;:51;;;;28868:7;-1:-1:-1;;;;;28844:31:0;:20;28856:7;28844:11;:20::i;:::-;-1:-1:-1;;;;;28844:31:0;;28824:51;:87;;;-1:-1:-1;;;;;;25664:25:0;;;25640:4;25664:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28879:32;28816:96;28572:348;-1:-1:-1;;;;28572:348:0:o;31564:578::-;31723:4;-1:-1:-1;;;;;31696:31:0;:23;31711:7;31696:14;:23::i;:::-;-1:-1:-1;;;;;31696:31:0;;31688:85;;;;-1:-1:-1;;;31688:85:0;;13953:2:1;31688:85:0;;;13935:21:1;13992:2;13972:18;;;13965:30;14031:34;14011:18;;;14004:62;-1:-1:-1;;;14082:18:1;;;14075:39;14131:19;;31688:85:0;13751:405:1;31688:85:0;-1:-1:-1;;;;;31792:16:0;;31784:65;;;;-1:-1:-1;;;31784:65:0;;8990:2:1;31784:65:0;;;8972:21:1;9029:2;9009:18;;;9002:30;9068:34;9048:18;;;9041:62;-1:-1:-1;;;9119:18:1;;;9112:34;9163:19;;31784:65:0;8788:400:1;31784:65:0;31966:29;31983:1;31987:7;31966:8;:29::i;:::-;-1:-1:-1;;;;;32008:15:0;;;;;;:9;:15;;;;;:20;;32027:1;;32008:15;:20;;32027:1;;32008:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32039:13:0;;;;;;:9;:13;;;;;:18;;32056:1;;32039:13;:18;;32056:1;;32039:18;:::i;:::-;;;;-1:-1:-1;;32068:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32068:21:0;-1:-1:-1;;;;;32068:21:0;;;;;;;;;32107:27;;32068:16;;32107:27;;;;;;;31564:578;;;:::o;14676:173::-;14732:16;14751:6;;-1:-1:-1;;;;;14768:17:0;;;-1:-1:-1;;;;;;14768:17:0;;;;;;14801:40;;14751:6;;;;;;;14801:40;;14732:16;14801:40;14721:128;14676:173;:::o;29262:110::-;29338:26;29348:2;29352:7;29338:26;;;;;;;;;;;;:9;:26::i;27650:315::-;27807:28;27817:4;27823:2;27827:7;27807:9;:28::i;:::-;27854:48;27877:4;27883:2;27887:7;27896:5;27854:22;:48::i;:::-;27846:111;;;;-1:-1:-1;;;27846:111:0;;;;;;;:::i;38110:108::-;38170:13;38203:7;38196:14;;;;;:::i;1181:723::-;1237:13;1458:10;1454:53;;-1:-1:-1;;1485:10:0;;;;;;;;;;;;-1:-1:-1;;;1485:10:0;;;;;1181:723::o;1454:53::-;1532:5;1517:12;1573:78;1580:9;;1573:78;;1606:8;;;;:::i;:::-;;-1:-1:-1;1629:10:0;;-1:-1:-1;1637:2:0;1629:10;;:::i;:::-;;;1573:78;;;1661:19;1693:6;1683:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1683:17:0;;1661:39;;1711:154;1718:10;;1711:154;;1745:11;1755:1;1745:11;;:::i;:::-;;-1:-1:-1;1814:10:0;1822:2;1814:5;:10;:::i;:::-;1801:24;;:2;:24;:::i;:::-;1788:39;;1771:6;1778;1771:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1771:56:0;;;;;;;;-1:-1:-1;1842:11:0;1851:2;1842:11;;:::i;:::-;;;1711:154;;29599:321;29729:18;29735:2;29739:7;29729:5;:18::i;:::-;29780:54;29811:1;29815:2;29819:7;29828:5;29780:22;:54::i;:::-;29758:154;;;;-1:-1:-1;;;29758:154:0;;;;;;;:::i;32999:799::-;33154:4;-1:-1:-1;;;;;33175:13:0;;3969:20;4017:8;33171:620;;33211:72;;-1:-1:-1;;;33211:72:0;;-1:-1:-1;;;;;33211:36:0;;;;;:72;;796:10;;33262:4;;33268:7;;33277:5;;33211:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33211:72:0;;;;;;;;-1:-1:-1;;33211:72:0;;;;;;;;;;;;:::i;:::-;;;33207:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33453:13:0;;33449:272;;33496:60;;-1:-1:-1;;;33496:60:0;;;;;;;:::i;33449:272::-;33671:6;33665:13;33656:6;33652:2;33648:15;33641:38;33207:529;-1:-1:-1;;;;;;33334:51:0;-1:-1:-1;;;33334:51:0;;-1:-1:-1;33327:58:0;;33171:620;-1:-1:-1;33775:4:0;32999:799;;;;;;:::o;30256:382::-;-1:-1:-1;;;;;30336:16:0;;30328:61;;;;-1:-1:-1;;;30328:61:0;;12110:2:1;30328:61:0;;;12092:21:1;;;12129:18;;;12122:30;12188:34;12168:18;;;12161:62;12240:18;;30328:61:0;11908:356:1;30328:61:0;28343:4;28367:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28367:16:0;:30;30400:58;;;;-1:-1:-1;;;30400:58:0;;8633:2:1;30400:58:0;;;8615:21:1;8672:2;8652:18;;;8645:30;8711;8691:18;;;8684:58;8759:18;;30400:58:0;8431:352:1;30400:58:0;-1:-1:-1;;;;;30529:13:0;;;;;;:9;:13;;;;;:18;;30546:1;;30529:13;:18;;30546:1;;30529:18;:::i;:::-;;;;-1:-1:-1;;30558:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30558:21:0;-1:-1:-1;;;;;30558:21:0;;;;;;;;30597:33;;30558:16;;;30597:33;;30558:16;;30597:33;30256:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:257::-;5084:3;5122:5;5116:12;5149:6;5144:3;5137:19;5165:63;5221:6;5214:4;5209:3;5205:14;5198:4;5191:5;5187:16;5165:63;:::i;:::-;5282:2;5261:15;-1:-1:-1;;5257:29:1;5248:39;;;;5289:4;5244:50;;5043:257;-1:-1:-1;;5043:257:1:o;5305:470::-;5484:3;5522:6;5516:13;5538:53;5584:6;5579:3;5572:4;5564:6;5560:17;5538:53;:::i;:::-;5654:13;;5613:16;;;;5676:57;5654:13;5613:16;5710:4;5698:17;;5676:57;:::i;:::-;5749:20;;5305:470;-1:-1:-1;;;;5305:470:1:o;5988:488::-;-1:-1:-1;;;;;6257:15:1;;;6239:34;;6309:15;;6304:2;6289:18;;6282:43;6356:2;6341:18;;6334:34;;;6404:3;6399:2;6384:18;;6377:31;;;6182:4;;6425:45;;6450:19;;6442:6;6425:45;:::i;:::-;6417:53;5988:488;-1:-1:-1;;;;;;5988:488:1:o;6673:219::-;6822:2;6811:9;6804:21;6785:4;6842:44;6882:2;6871:9;6867:18;6859:6;6842:44;:::i;7605:414::-;7807:2;7789:21;;;7846:2;7826:18;;;7819:30;7885:34;7880:2;7865:18;;7858:62;-1:-1:-1;;;7951:2:1;7936:18;;7929:48;8009:3;7994:19;;7605:414::o;12682:356::-;12884:2;12866:21;;;12903:18;;;12896:30;12962:34;12957:2;12942:18;;12935:62;13029:2;13014:18;;12682:356::o;16044:413::-;16246:2;16228:21;;;16285:2;16265:18;;;16258:30;16324:34;16319:2;16304:18;;16297:62;-1:-1:-1;;;16390:2:1;16375:18;;16368:47;16447:3;16432:19;;16044:413::o;17691:275::-;17762:2;17756:9;17827:2;17808:13;;-1:-1:-1;;17804:27:1;17792:40;;17862:18;17847:34;;17883:22;;;17844:62;17841:88;;;17909:18;;:::i;:::-;17945:2;17938:22;17691:275;;-1:-1:-1;17691:275:1:o;17971:128::-;18011:3;18042:1;18038:6;18035:1;18032:13;18029:39;;;18048:18;;:::i;:::-;-1:-1:-1;18084:9:1;;17971:128::o;18104:120::-;18144:1;18170;18160:35;;18175:18;;:::i;:::-;-1:-1:-1;18209:9:1;;18104:120::o;18229:168::-;18269:7;18335:1;18331;18327:6;18323:14;18320:1;18317:21;18312:1;18305:9;18298:17;18294:45;18291:71;;;18342:18;;:::i;:::-;-1:-1:-1;18382:9:1;;18229:168::o;18402:125::-;18442:4;18470:1;18467;18464:8;18461:34;;;18475:18;;:::i;:::-;-1:-1:-1;18512:9:1;;18402:125::o;18532:258::-;18604:1;18614:113;18628:6;18625:1;18622:13;18614:113;;;18704:11;;;18698:18;18685:11;;;18678:39;18650:2;18643:10;18614:113;;;18745:6;18742:1;18739:13;18736:48;;;-1:-1:-1;;18780:1:1;18762:16;;18755:27;18532:258::o;18795:380::-;18874:1;18870:12;;;;18917;;;18938:61;;18992:4;18984:6;18980:17;18970:27;;18938:61;19045:2;19037:6;19034:14;19014:18;19011:38;19008:161;;;19091:10;19086:3;19082:20;19079:1;19072:31;19126:4;19123:1;19116:15;19154:4;19151:1;19144:15;19008:161;;18795:380;;;:::o;19180:135::-;19219:3;-1:-1:-1;;19240:17:1;;19237:43;;;19260:18;;:::i;:::-;-1:-1:-1;19307:1:1;19296:13;;19180:135::o;19320:112::-;19352:1;19378;19368:35;;19383:18;;:::i;:::-;-1:-1:-1;19417:9:1;;19320:112::o;19437:127::-;19498:10;19493:3;19489:20;19486:1;19479:31;19529:4;19526:1;19519:15;19553:4;19550:1;19543:15;19569:127;19630:10;19625:3;19621:20;19618:1;19611:31;19661:4;19658:1;19651:15;19685:4;19682:1;19675:15;19701:127;19762:10;19757:3;19753:20;19750:1;19743:31;19793:4;19790:1;19783:15;19817:4;19814:1;19807:15;19833:127;19894:10;19889:3;19885:20;19882:1;19875:31;19925:4;19922:1;19915:15;19949:4;19946:1;19939:15;19965:131;-1:-1:-1;;;;;;20039:32:1;;20029:43;;20019:71;;20086:1;20083;20076:12

Swarm Source

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