ETH Price: $2,490.13 (+3.06%)

Token

Golden Gamblers (SVCCGG)
 

Overview

Max Total Supply

1,111 SVCCGG

Holders

303

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 SVCCGG
0x9e8e45461b95f318d8fc87a1ae89256b82cee60c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The SVCC Golden Gambler Collection consists of 1,111 unique Gamblers generated from 200+ different traits. Holders will fund & own our Web 2.0 Casino.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SVCCGG

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-05
*/

pragma solidity ^0.8.0;

// SPDX-License-Identifier: MIT

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

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

interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

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

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

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

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

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
        interfaceId == type(IERC721).interfaceId ||
        interfaceId == type(IERC721Metadata).interfaceId ||
        super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
            if( owner == _owners[i] ){
                ++count;
            }
        }
        delete length;
        return count;
    }
    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;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.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);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    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);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    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);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    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);
    }
    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");
    }
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
    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"
        );
    }
    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);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721P.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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }
    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;
        }
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721P) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

contract SVCCGG is ERC721Enum, Ownable, ReentrancyGuard {
    using Strings for uint256;
	
    uint256 public MAX_NFT = 1111;
	uint256 public MAX_MINT_SALE = 1111;
	uint256 public MAX_BY_MINT_IN_TRANSACTION = 11;
	
	uint256 public SALE_MINTED;
	uint256 public GIVEAWAY_MINTED;
	
	uint256 public STARTING_PRICE = 7.77 ether;
	uint256 public ENDING_PRICE = 0.77 ether;
	uint256 public PRICE_DEDUCTION_RATE = 0.5 ether;
	uint256 public TIME_INTERVAL = 600;
	uint256 public STARTING_TIME;
	
	bool public saleEnable = false;
    string private baseURI;
	
	struct User {
		uint256 salemint;
    }
	mapping (address => User) public users;

    constructor() ERC721P('Golden Gamblers', 'SVCCGG') {}
	
    function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
    }
	
	function mintGiveawayNFT(address _to, uint256 _count) public onlyOwner{
	    uint256 totalSupply = totalSupply();
        require(
            totalSupply + _count <= MAX_NFT, 
            "Max limit"
        );
		for (uint256 i = 0; i < _count; i++) {
            _safeMint(_to, totalSupply + i);
			GIVEAWAY_MINTED++;
        }
    }
	
	function mintSaleNFT(uint256 _count) public payable{
		uint256 totalSupply = totalSupply();
		require(
			saleEnable, 
			"Sale is not enable"
		);
        require(
			totalSupply + _count <= MAX_NFT, 
			"Exceeds max limit"
		);
		require(
			users[msg.sender].salemint + _count <= MAX_MINT_SALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= MAX_BY_MINT_IN_TRANSACTION,
			"Exceeds max mint limit per tnx"
		);
		require(
			msg.value >= price(_count),
			"Value below price"
		);
		for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
			SALE_MINTED++;
        }
		users[msg.sender].salemint = users[msg.sender].salemint + _count;
    }
	
	function price(uint256 _count) public view returns (uint256) {
	    uint256 PRICE;
	    if(STARTING_TIME > 0)
		{
		   uint256 TOTAL_TIME = block.timestamp - STARTING_TIME;
		   uint256 TOTAL_INTERVAL = TOTAL_TIME / TIME_INTERVAL;
		   uint256 TOTAL_DEDUCTION = TOTAL_INTERVAL * PRICE_DEDUCTION_RATE;
		   if(TOTAL_DEDUCTION >= STARTING_PRICE)
		   {
		       PRICE = ENDING_PRICE;
		   }
		   else
		   {
		       PRICE = STARTING_PRICE - TOTAL_DEDUCTION;
		   }
		   
		   if(PRICE > ENDING_PRICE)
		   {
		       return PRICE * _count;
		   }
		   else
		   {
		      return ENDING_PRICE * _count;
		   }
		}
		else
		{
		   return 0;
		}
    }
	
    function tokenURI(uint256 _tokenId) external view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : "";
    }
	
    function transferFrom(address _from, address _to, uint256 _tokenId) public override {
        ERC721P.transferFrom(_from, _to, _tokenId);
    }

    function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes memory _data) public override {
        ERC721P.safeTransferFrom(_from, _to, _tokenId, _data);
    }
	
	function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
	
	function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }

	function setSaleStatus(bool status) public onlyOwner {
        require(saleEnable != status);
		if(status)
		{
		    STARTING_TIME = block.timestamp;
		}
		else
		{
		    STARTING_TIME = 0;
		}
		saleEnable = status;
    }
	
	function updateSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(MAX_NFT >= newLimit, "Incorrect value");
        MAX_MINT_SALE = newLimit;
    }
	
	function updateMaxSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= totalSupply(), "Incorrect value");
        MAX_NFT = newSupply;
    }
	
	function updateMintLimitPerTransection(uint256 newLimit) external onlyOwner {
	    require(MAX_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION = newLimit;
    }
	
	function updateAuctionDetails(uint256 NewStartingPrice, uint256 NewEndingPrice, uint256 NewPriceDeductionRate, uint256 NewTimeInterval) external onlyOwner {
        STARTING_PRICE = NewStartingPrice;
		ENDING_PRICE = NewEndingPrice;
		PRICE_DEDUCTION_RATE = NewPriceDeductionRate;
		TIME_INTERVAL = NewTimeInterval;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ENDING_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIVEAWAY_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_DEDUCTION_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STARTING_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STARTING_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIME_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintGiveawayNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSaleNFT","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","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":"saleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"NewStartingPrice","type":"uint256"},{"internalType":"uint256","name":"NewEndingPrice","type":"uint256"},{"internalType":"uint256","name":"NewPriceDeductionRate","type":"uint256"},{"internalType":"uint256","name":"NewTimeInterval","type":"uint256"}],"name":"updateAuctionDetails","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"salemint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526104576007819055600855600b600955676bd495d530c90000600c55670aaf96eb9d0d0000600d556706f05b59d3b20000600e55610258600f556011805460ff191690553480156200005557600080fd5b50604080518082018252600f81526e476f6c64656e2047616d626c65727360881b60208083019182528351808501909452600684526553564343474760d01b908401528151919291620000ab916000916200013f565b508051620000c19060019060208401906200013f565b505050620000de620000d8620000e960201b60201c565b620000ed565b600160065562000222565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014d90620001e5565b90600052602060002090601f016020900481019282620001715760008555620001bc565b82601f106200018c57805160ff1916838001178555620001bc565b82800160010185558215620001bc579182015b82811115620001bc5782518255916020019190600101906200019f565b50620001ca929150620001ce565b5090565b5b80821115620001ca5760008155600101620001cf565b600281046001821680620001fa57607f821691505b602082108114156200021c57634e487b7160e01b600052602260045260246000fd5b50919050565b6126f480620002326000396000f3fe6080604052600436106102515760003560e01c806385983ed811610139578063c4e43ba8116100b6578063e985e9c51161007a578063e985e9c514610670578063e9bb37a014610690578063f103b433146106a5578063f176baaa146106c5578063f2fde38b146106e5578063fe4ca8471461070557610251565b8063c4e43ba8146105db578063c87b56dd146105fb578063d12f70291461061b578063d897833e14610630578063dce051cc1461065057610251565b8063a9526862116100fd578063a952686214610569578063abc63d001461057c578063ae5cc17214610591578063b88d4fde146105a6578063be0e430f146105c657610251565b806385983ed8146104ea5780638da5cb5b146104ff57806395d89b4114610514578063a22cb46514610529578063a87430ba1461054957610251565b806342842e0e116101d25780636c115099116101965780636c1150991461043e5780636dd094d41461045e5780636fdaddf11461047357806370a0823114610488578063715018a6146104a85780638462151c146104bd57610251565b806342842e0e146103a95780634d7cea16146103c95780634f6ccce7146103de57806355f804b3146103fe5780636352211e1461041e57610251565b806318160ddd1161021957806318160ddd1461031f57806323b872dd1461033457806326a49e37146103545780632f745c59146103745780633ccfd60b1461039457610251565b806301ffc9a71461025657806306fdde031461028c578063081812fc146102ae578063095ea7b3146102db5780630990e534146102fd575b600080fd5b34801561026257600080fd5b50610276610271366004611d81565b61071a565b6040516102839190611f48565b60405180910390f35b34801561029857600080fd5b506102a1610747565b6040516102839190611f53565b3480156102ba57600080fd5b506102ce6102c9366004611dff565b6107d9565b6040516102839190611eb3565b3480156102e757600080fd5b506102fb6102f6366004611d3e565b610825565b005b34801561030957600080fd5b506103126108bd565b604051610283919061256b565b34801561032b57600080fd5b506103126108c3565b34801561034057600080fd5b506102fb61034f366004611c61565b6108c9565b34801561036057600080fd5b5061031261036f366004611dff565b6108d4565b34801561038057600080fd5b5061031261038f366004611d3e565b610979565b3480156103a057600080fd5b506102fb610a3c565b3480156103b557600080fd5b506102fb6103c4366004611c61565b610aae565b3480156103d557600080fd5b50610312610ac9565b3480156103ea57600080fd5b506103126103f9366004611dff565b610acf565b34801561040a57600080fd5b506102fb610419366004611db9565b610afb565b34801561042a57600080fd5b506102ce610439366004611dff565b610b4d565b34801561044a57600080fd5b506102fb610459366004611e17565b610ba5565b34801561046a57600080fd5b50610312610bf8565b34801561047f57600080fd5b50610312610bfe565b34801561049457600080fd5b506103126104a3366004611c15565b610c04565b3480156104b457600080fd5b506102fb610ca1565b3480156104c957600080fd5b506104dd6104d8366004611c15565b610cec565b6040516102839190611f04565b3480156104f657600080fd5b50610312610dd2565b34801561050b57600080fd5b506102ce610dd8565b34801561052057600080fd5b506102a1610de7565b34801561053557600080fd5b506102fb610544366004611d15565b610df6565b34801561055557600080fd5b50610312610564366004611c15565b610ec4565b6102fb610577366004611dff565b610ed6565b34801561058857600080fd5b5061031261102c565b34801561059d57600080fd5b50610312611032565b3480156105b257600080fd5b506102fb6105c1366004611c9c565b611038565b3480156105d257600080fd5b5061031261104a565b3480156105e757600080fd5b506102fb6105f6366004611dff565b611050565b34801561060757600080fd5b506102a1610616366004611dff565b6110b6565b34801561062757600080fd5b50610312611139565b34801561063c57600080fd5b506102fb61064b366004611d67565b61113f565b34801561065c57600080fd5b506102fb61066b366004611d3e565b6111bc565b34801561067c57600080fd5b5061027661068b366004611c2f565b611274565b34801561069c57600080fd5b506103126112a2565b3480156106b157600080fd5b506102fb6106c0366004611dff565b6112a8565b3480156106d157600080fd5b506102fb6106e0366004611dff565b611313565b3480156106f157600080fd5b506102fb610700366004611c15565b611379565b34801561071157600080fd5b506102766113ea565b60006001600160e01b0319821663780e9d6360e01b148061073f575061073f826113f3565b90505b919050565b60606000805461075690612602565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612602565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e482611433565b6108095760405162461bcd60e51b815260040161080090612313565b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061083082610b4d565b9050806001600160a01b0316836001600160a01b031614156108645760405162461bcd60e51b815260040161080090612498565b806001600160a01b031661087661148b565b6001600160a01b0316148061089257506108928161068b61148b565b6108ae5760405162461bcd60e51b81526004016108009061218c565b6108b8838361148f565b505050565b600a5481565b60025490565b6108b88383836114fd565b60008060006010541115610969576000601054426108f291906125bf565b90506000600f5482610904919061258c565b90506000600e548261091691906125a0565b9050600c54811061092b57600d54935061093c565b80600c5461093991906125bf565b93505b600d5484111561095b5761095086856125a0565b945050505050610742565b85600d5461095091906125a0565b6000915050610742565b50919050565b600061098483610c04565b82106109a25760405162461bcd60e51b815260040161080090612431565b6000805b600254811015610a1d57600281815481106109d157634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610a0d5783821415610a01579150610a369050565b610a0a82612637565b91505b610a1681612637565b90506109a6565b5060405162461bcd60e51b815260040161080090612431565b92915050565b610a4461148b565b6001600160a01b0316610a55610dd8565b6001600160a01b031614610a7b5760405162461bcd60e51b815260040161080090612388565b6040514790339082156108fc029083906000818181858888f19350505050158015610aaa573d6000803e3d6000fd5b5050565b6108b883838360405180602001604052806000815250611038565b600b5481565b6000610ad96108c3565b8210610af75760405162461bcd60e51b815260040161080090612461565b5090565b610b0361148b565b6001600160a01b0316610b14610dd8565b6001600160a01b031614610b3a5760405162461bcd60e51b815260040161080090612388565b8051610aaa906012906020840190611aee565b60008060028381548110610b7157634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031690508061073f5760405162461bcd60e51b81526004016108009061226a565b610bad61148b565b6001600160a01b0316610bbe610dd8565b6001600160a01b031614610be45760405162461bcd60e51b815260040161080090612388565b600c93909355600d91909155600e55600f55565b600e5481565b60075481565b60006001600160a01b038216610c2c5760405162461bcd60e51b815260040161080090612220565b600254600090815b81811015610c985760028181548110610c5d57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610c8857610c8583612637565b92505b610c9181612637565b9050610c34565b50909392505050565b610ca961148b565b6001600160a01b0316610cba610dd8565b6001600160a01b031614610ce05760405162461bcd60e51b815260040161080090612388565b610cea6000611535565b565b6060610cf782610c04565b600010610d165760405162461bcd60e51b815260040161080090612431565b6000610d2183610c04565b905060008167ffffffffffffffff811115610d4c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d75578160200160208202803683370190505b50905060005b82811015610dca57610d8d8582610979565b828281518110610dad57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610dc281612637565b915050610d7b565b509392505050565b600d5481565b6005546001600160a01b031690565b60606001805461075690612602565b610dfe61148b565b6001600160a01b0316826001600160a01b03161415610e2f5760405162461bcd60e51b8152600401610800906120ba565b8060046000610e3c61148b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e8061148b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610eb89190611f48565b60405180910390a35050565b60136020526000908152604090205481565b6000610ee06108c3565b60115490915060ff16610f055760405162461bcd60e51b815260040161080090612114565b600754610f128383612574565b1115610f305760405162461bcd60e51b8152600401610800906122b3565b60085433600090815260136020526040902054610f4e908490612574565b1115610f6c5760405162461bcd60e51b81526004016108009061252a565b600954821115610f8e5760405162461bcd60e51b8152600401610800906121e9565b610f97826108d4565b341015610fb65760405162461bcd60e51b815260040161080090612406565b60005b82811015610ffc57610fd433610fcf8385612574565b611587565b600a8054906000610fe483612637565b91905055508080610ff490612637565b915050610fb9565b5033600090815260136020526040902054611018908390612574565b336000908152601360205260409020555050565b60105481565b60085481565b611044848484846115a1565b50505050565b60095481565b61105861148b565b6001600160a01b0316611069610dd8565b6001600160a01b03161461108f5760405162461bcd60e51b815260040161080090612388565b8060075410156110b15760405162461bcd60e51b81526004016108009061235f565b600955565b60606110c182611433565b6110dd5760405162461bcd60e51b815260040161080090611f66565b60006110e76115da565b905060008151116111075760405180602001604052806000815250611132565b80611111846115e9565b604051602001611122929190611e74565b6040516020818303038152906040525b9392505050565b600c5481565b61114761148b565b6001600160a01b0316611158610dd8565b6001600160a01b03161461117e5760405162461bcd60e51b815260040161080090612388565b60115460ff161515811515141561119457600080fd5b80156111a357426010556111a9565b60006010555b6011805460ff1916911515919091179055565b6111c461148b565b6001600160a01b03166111d5610dd8565b6001600160a01b0316146111fb5760405162461bcd60e51b815260040161080090612388565b60006112056108c3565b6007549091506112158383612574565b11156112335760405162461bcd60e51b8152600401610800906120f1565b60005b828110156110445761124c84610fcf8385612574565b600b805490600061125c83612637565b9190505550808061126c90612637565b915050611236565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b600f5481565b6112b061148b565b6001600160a01b03166112c1610dd8565b6001600160a01b0316146112e75760405162461bcd60e51b815260040161080090612388565b6112ef6108c3565b81101561130e5760405162461bcd60e51b81526004016108009061235f565b600755565b61131b61148b565b6001600160a01b031661132c610dd8565b6001600160a01b0316146113525760405162461bcd60e51b815260040161080090612388565b8060075410156113745760405162461bcd60e51b81526004016108009061235f565b600855565b61138161148b565b6001600160a01b0316611392610dd8565b6001600160a01b0316146113b85760405162461bcd60e51b815260040161080090612388565b6001600160a01b0381166113de5760405162461bcd60e51b815260040161080090611ff9565b6113e781611535565b50565b60115460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061142457506001600160e01b03198216635b5e139f60e01b145b8061073f575061073f8261170c565b6002546000908210801561073f575060006001600160a01b03166002838154811061146e57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114c482610b4d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61150e61150861148b565b82611725565b61152a5760405162461bcd60e51b8152600401610800906124d9565b6108b88383836117a2565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610aaa828260405180602001604052806000815250611893565b6115b26115ac61148b565b83611725565b6115ce5760405162461bcd60e51b8152600401610800906124d9565b611044848484846118c6565b60606012805461075690612602565b60608161160e57506040805180820190915260018152600360fc1b6020820152610742565b8160005b8115611638578061162281612637565b91506116319050600a8361258c565b9150611612565b60008167ffffffffffffffff81111561166157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561168b576020820181803683370190505b5090505b8415611704576116a06001836125bf565b91506116ad600a86612652565b6116b8906030612574565b60f81b8183815181106116db57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506116fd600a8661258c565b945061168f565b949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b600061173082611433565b61174c5760405162461bcd60e51b815260040161080090612140565b600061175783610b4d565b9050806001600160a01b0316846001600160a01b031614806117925750836001600160a01b0316611787846107d9565b6001600160a01b0316145b8061170457506117048185611274565b826001600160a01b03166117b582610b4d565b6001600160a01b0316146117db5760405162461bcd60e51b8152600401610800906123bd565b6001600160a01b0382166118015760405162461bcd60e51b815260040161080090612076565b61180c8383836108b8565b61181760008261148f565b816002828154811061183957634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b61189d83836118f9565b6118aa60008484846119cd565b6108b85760405162461bcd60e51b815260040161080090611fa7565b6118d18484846117a2565b6118dd848484846119cd565b6110445760405162461bcd60e51b815260040161080090611fa7565b6001600160a01b03821661191f5760405162461bcd60e51b8152600401610800906122de565b61192881611433565b156119455760405162461bcd60e51b81526004016108009061203f565b611951600083836108b8565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006119e1846001600160a01b0316611ae8565b15611add57836001600160a01b031663150b7a026119fd61148b565b8786866040518563ffffffff1660e01b8152600401611a1f9493929190611ec7565b602060405180830381600087803b158015611a3957600080fd5b505af1925050508015611a69575060408051601f3d908101601f19168201909252611a6691810190611d9d565b60015b611ac3573d808015611a97576040519150601f19603f3d011682016040523d82523d6000602084013e611a9c565b606091505b508051611abb5760405162461bcd60e51b815260040161080090611fa7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611704565b506001949350505050565b3b151590565b828054611afa90612602565b90600052602060002090601f016020900481019282611b1c5760008555611b62565b82601f10611b3557805160ff1916838001178555611b62565b82800160010185558215611b62579182015b82811115611b62578251825591602001919060010190611b47565b50610af79291505b80821115610af75760008155600101611b6a565b600067ffffffffffffffff80841115611b9957611b99612692565b604051601f8501601f191681016020018281118282101715611bbd57611bbd612692565b604052848152915081838501861015611bd557600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461074257600080fd5b8035801515811461074257600080fd5b600060208284031215611c26578081fd5b61113282611bee565b60008060408385031215611c41578081fd5b611c4a83611bee565b9150611c5860208401611bee565b90509250929050565b600080600060608486031215611c75578081fd5b611c7e84611bee565b9250611c8c60208501611bee565b9150604084013590509250925092565b60008060008060808587031215611cb1578081fd5b611cba85611bee565b9350611cc860208601611bee565b925060408501359150606085013567ffffffffffffffff811115611cea578182fd5b8501601f81018713611cfa578182fd5b611d0987823560208401611b7e565b91505092959194509250565b60008060408385031215611d27578182fd5b611d3083611bee565b9150611c5860208401611c05565b60008060408385031215611d50578182fd5b611d5983611bee565b946020939093013593505050565b600060208284031215611d78578081fd5b61113282611c05565b600060208284031215611d92578081fd5b8135611132816126a8565b600060208284031215611dae578081fd5b8151611132816126a8565b600060208284031215611dca578081fd5b813567ffffffffffffffff811115611de0578182fd5b8201601f81018413611df0578182fd5b61170484823560208401611b7e565b600060208284031215611e10578081fd5b5035919050565b60008060008060808587031215611e2c578384fd5b5050823594602084013594506040840135936060013592509050565b60008151808452611e608160208601602086016125d6565b601f01601f19169290920160200192915050565b60008351611e868184602088016125d6565b835190830190611e9a8183602088016125d6565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611efa90830184611e48565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f3c57835183529284019291840191600101611f20565b50909695505050505050565b901515815260200190565b6000602082526111326020830184611e48565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d69742070657220746e780000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526017908201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b90815260200190565b6000821982111561258757612587612666565b500190565b60008261259b5761259b61267c565b500490565b60008160001904831182151516156125ba576125ba612666565b500290565b6000828210156125d1576125d1612666565b500390565b60005b838110156125f15781810151838201526020016125d9565b838111156110445750506000910152565b60028104600182168061261657607f821691505b6020821081141561097357634e487b7160e01b600052602260045260246000fd5b600060001982141561264b5761264b612666565b5060010190565b6000826126615761266161267c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113e757600080fdfea2646970667358221220898a1b8cff86dfbb7134c2c1437f20d9bda7a5d3ab78e6f4c44c62ce56b8f17364736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102515760003560e01c806385983ed811610139578063c4e43ba8116100b6578063e985e9c51161007a578063e985e9c514610670578063e9bb37a014610690578063f103b433146106a5578063f176baaa146106c5578063f2fde38b146106e5578063fe4ca8471461070557610251565b8063c4e43ba8146105db578063c87b56dd146105fb578063d12f70291461061b578063d897833e14610630578063dce051cc1461065057610251565b8063a9526862116100fd578063a952686214610569578063abc63d001461057c578063ae5cc17214610591578063b88d4fde146105a6578063be0e430f146105c657610251565b806385983ed8146104ea5780638da5cb5b146104ff57806395d89b4114610514578063a22cb46514610529578063a87430ba1461054957610251565b806342842e0e116101d25780636c115099116101965780636c1150991461043e5780636dd094d41461045e5780636fdaddf11461047357806370a0823114610488578063715018a6146104a85780638462151c146104bd57610251565b806342842e0e146103a95780634d7cea16146103c95780634f6ccce7146103de57806355f804b3146103fe5780636352211e1461041e57610251565b806318160ddd1161021957806318160ddd1461031f57806323b872dd1461033457806326a49e37146103545780632f745c59146103745780633ccfd60b1461039457610251565b806301ffc9a71461025657806306fdde031461028c578063081812fc146102ae578063095ea7b3146102db5780630990e534146102fd575b600080fd5b34801561026257600080fd5b50610276610271366004611d81565b61071a565b6040516102839190611f48565b60405180910390f35b34801561029857600080fd5b506102a1610747565b6040516102839190611f53565b3480156102ba57600080fd5b506102ce6102c9366004611dff565b6107d9565b6040516102839190611eb3565b3480156102e757600080fd5b506102fb6102f6366004611d3e565b610825565b005b34801561030957600080fd5b506103126108bd565b604051610283919061256b565b34801561032b57600080fd5b506103126108c3565b34801561034057600080fd5b506102fb61034f366004611c61565b6108c9565b34801561036057600080fd5b5061031261036f366004611dff565b6108d4565b34801561038057600080fd5b5061031261038f366004611d3e565b610979565b3480156103a057600080fd5b506102fb610a3c565b3480156103b557600080fd5b506102fb6103c4366004611c61565b610aae565b3480156103d557600080fd5b50610312610ac9565b3480156103ea57600080fd5b506103126103f9366004611dff565b610acf565b34801561040a57600080fd5b506102fb610419366004611db9565b610afb565b34801561042a57600080fd5b506102ce610439366004611dff565b610b4d565b34801561044a57600080fd5b506102fb610459366004611e17565b610ba5565b34801561046a57600080fd5b50610312610bf8565b34801561047f57600080fd5b50610312610bfe565b34801561049457600080fd5b506103126104a3366004611c15565b610c04565b3480156104b457600080fd5b506102fb610ca1565b3480156104c957600080fd5b506104dd6104d8366004611c15565b610cec565b6040516102839190611f04565b3480156104f657600080fd5b50610312610dd2565b34801561050b57600080fd5b506102ce610dd8565b34801561052057600080fd5b506102a1610de7565b34801561053557600080fd5b506102fb610544366004611d15565b610df6565b34801561055557600080fd5b50610312610564366004611c15565b610ec4565b6102fb610577366004611dff565b610ed6565b34801561058857600080fd5b5061031261102c565b34801561059d57600080fd5b50610312611032565b3480156105b257600080fd5b506102fb6105c1366004611c9c565b611038565b3480156105d257600080fd5b5061031261104a565b3480156105e757600080fd5b506102fb6105f6366004611dff565b611050565b34801561060757600080fd5b506102a1610616366004611dff565b6110b6565b34801561062757600080fd5b50610312611139565b34801561063c57600080fd5b506102fb61064b366004611d67565b61113f565b34801561065c57600080fd5b506102fb61066b366004611d3e565b6111bc565b34801561067c57600080fd5b5061027661068b366004611c2f565b611274565b34801561069c57600080fd5b506103126112a2565b3480156106b157600080fd5b506102fb6106c0366004611dff565b6112a8565b3480156106d157600080fd5b506102fb6106e0366004611dff565b611313565b3480156106f157600080fd5b506102fb610700366004611c15565b611379565b34801561071157600080fd5b506102766113ea565b60006001600160e01b0319821663780e9d6360e01b148061073f575061073f826113f3565b90505b919050565b60606000805461075690612602565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612602565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e482611433565b6108095760405162461bcd60e51b815260040161080090612313565b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061083082610b4d565b9050806001600160a01b0316836001600160a01b031614156108645760405162461bcd60e51b815260040161080090612498565b806001600160a01b031661087661148b565b6001600160a01b0316148061089257506108928161068b61148b565b6108ae5760405162461bcd60e51b81526004016108009061218c565b6108b8838361148f565b505050565b600a5481565b60025490565b6108b88383836114fd565b60008060006010541115610969576000601054426108f291906125bf565b90506000600f5482610904919061258c565b90506000600e548261091691906125a0565b9050600c54811061092b57600d54935061093c565b80600c5461093991906125bf565b93505b600d5484111561095b5761095086856125a0565b945050505050610742565b85600d5461095091906125a0565b6000915050610742565b50919050565b600061098483610c04565b82106109a25760405162461bcd60e51b815260040161080090612431565b6000805b600254811015610a1d57600281815481106109d157634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610a0d5783821415610a01579150610a369050565b610a0a82612637565b91505b610a1681612637565b90506109a6565b5060405162461bcd60e51b815260040161080090612431565b92915050565b610a4461148b565b6001600160a01b0316610a55610dd8565b6001600160a01b031614610a7b5760405162461bcd60e51b815260040161080090612388565b6040514790339082156108fc029083906000818181858888f19350505050158015610aaa573d6000803e3d6000fd5b5050565b6108b883838360405180602001604052806000815250611038565b600b5481565b6000610ad96108c3565b8210610af75760405162461bcd60e51b815260040161080090612461565b5090565b610b0361148b565b6001600160a01b0316610b14610dd8565b6001600160a01b031614610b3a5760405162461bcd60e51b815260040161080090612388565b8051610aaa906012906020840190611aee565b60008060028381548110610b7157634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031690508061073f5760405162461bcd60e51b81526004016108009061226a565b610bad61148b565b6001600160a01b0316610bbe610dd8565b6001600160a01b031614610be45760405162461bcd60e51b815260040161080090612388565b600c93909355600d91909155600e55600f55565b600e5481565b60075481565b60006001600160a01b038216610c2c5760405162461bcd60e51b815260040161080090612220565b600254600090815b81811015610c985760028181548110610c5d57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610c8857610c8583612637565b92505b610c9181612637565b9050610c34565b50909392505050565b610ca961148b565b6001600160a01b0316610cba610dd8565b6001600160a01b031614610ce05760405162461bcd60e51b815260040161080090612388565b610cea6000611535565b565b6060610cf782610c04565b600010610d165760405162461bcd60e51b815260040161080090612431565b6000610d2183610c04565b905060008167ffffffffffffffff811115610d4c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d75578160200160208202803683370190505b50905060005b82811015610dca57610d8d8582610979565b828281518110610dad57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610dc281612637565b915050610d7b565b509392505050565b600d5481565b6005546001600160a01b031690565b60606001805461075690612602565b610dfe61148b565b6001600160a01b0316826001600160a01b03161415610e2f5760405162461bcd60e51b8152600401610800906120ba565b8060046000610e3c61148b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e8061148b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610eb89190611f48565b60405180910390a35050565b60136020526000908152604090205481565b6000610ee06108c3565b60115490915060ff16610f055760405162461bcd60e51b815260040161080090612114565b600754610f128383612574565b1115610f305760405162461bcd60e51b8152600401610800906122b3565b60085433600090815260136020526040902054610f4e908490612574565b1115610f6c5760405162461bcd60e51b81526004016108009061252a565b600954821115610f8e5760405162461bcd60e51b8152600401610800906121e9565b610f97826108d4565b341015610fb65760405162461bcd60e51b815260040161080090612406565b60005b82811015610ffc57610fd433610fcf8385612574565b611587565b600a8054906000610fe483612637565b91905055508080610ff490612637565b915050610fb9565b5033600090815260136020526040902054611018908390612574565b336000908152601360205260409020555050565b60105481565b60085481565b611044848484846115a1565b50505050565b60095481565b61105861148b565b6001600160a01b0316611069610dd8565b6001600160a01b03161461108f5760405162461bcd60e51b815260040161080090612388565b8060075410156110b15760405162461bcd60e51b81526004016108009061235f565b600955565b60606110c182611433565b6110dd5760405162461bcd60e51b815260040161080090611f66565b60006110e76115da565b905060008151116111075760405180602001604052806000815250611132565b80611111846115e9565b604051602001611122929190611e74565b6040516020818303038152906040525b9392505050565b600c5481565b61114761148b565b6001600160a01b0316611158610dd8565b6001600160a01b03161461117e5760405162461bcd60e51b815260040161080090612388565b60115460ff161515811515141561119457600080fd5b80156111a357426010556111a9565b60006010555b6011805460ff1916911515919091179055565b6111c461148b565b6001600160a01b03166111d5610dd8565b6001600160a01b0316146111fb5760405162461bcd60e51b815260040161080090612388565b60006112056108c3565b6007549091506112158383612574565b11156112335760405162461bcd60e51b8152600401610800906120f1565b60005b828110156110445761124c84610fcf8385612574565b600b805490600061125c83612637565b9190505550808061126c90612637565b915050611236565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b600f5481565b6112b061148b565b6001600160a01b03166112c1610dd8565b6001600160a01b0316146112e75760405162461bcd60e51b815260040161080090612388565b6112ef6108c3565b81101561130e5760405162461bcd60e51b81526004016108009061235f565b600755565b61131b61148b565b6001600160a01b031661132c610dd8565b6001600160a01b0316146113525760405162461bcd60e51b815260040161080090612388565b8060075410156113745760405162461bcd60e51b81526004016108009061235f565b600855565b61138161148b565b6001600160a01b0316611392610dd8565b6001600160a01b0316146113b85760405162461bcd60e51b815260040161080090612388565b6001600160a01b0381166113de5760405162461bcd60e51b815260040161080090611ff9565b6113e781611535565b50565b60115460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061142457506001600160e01b03198216635b5e139f60e01b145b8061073f575061073f8261170c565b6002546000908210801561073f575060006001600160a01b03166002838154811061146e57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114c482610b4d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61150e61150861148b565b82611725565b61152a5760405162461bcd60e51b8152600401610800906124d9565b6108b88383836117a2565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610aaa828260405180602001604052806000815250611893565b6115b26115ac61148b565b83611725565b6115ce5760405162461bcd60e51b8152600401610800906124d9565b611044848484846118c6565b60606012805461075690612602565b60608161160e57506040805180820190915260018152600360fc1b6020820152610742565b8160005b8115611638578061162281612637565b91506116319050600a8361258c565b9150611612565b60008167ffffffffffffffff81111561166157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561168b576020820181803683370190505b5090505b8415611704576116a06001836125bf565b91506116ad600a86612652565b6116b8906030612574565b60f81b8183815181106116db57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506116fd600a8661258c565b945061168f565b949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b600061173082611433565b61174c5760405162461bcd60e51b815260040161080090612140565b600061175783610b4d565b9050806001600160a01b0316846001600160a01b031614806117925750836001600160a01b0316611787846107d9565b6001600160a01b0316145b8061170457506117048185611274565b826001600160a01b03166117b582610b4d565b6001600160a01b0316146117db5760405162461bcd60e51b8152600401610800906123bd565b6001600160a01b0382166118015760405162461bcd60e51b815260040161080090612076565b61180c8383836108b8565b61181760008261148f565b816002828154811061183957634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b61189d83836118f9565b6118aa60008484846119cd565b6108b85760405162461bcd60e51b815260040161080090611fa7565b6118d18484846117a2565b6118dd848484846119cd565b6110445760405162461bcd60e51b815260040161080090611fa7565b6001600160a01b03821661191f5760405162461bcd60e51b8152600401610800906122de565b61192881611433565b156119455760405162461bcd60e51b81526004016108009061203f565b611951600083836108b8565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006119e1846001600160a01b0316611ae8565b15611add57836001600160a01b031663150b7a026119fd61148b565b8786866040518563ffffffff1660e01b8152600401611a1f9493929190611ec7565b602060405180830381600087803b158015611a3957600080fd5b505af1925050508015611a69575060408051601f3d908101601f19168201909252611a6691810190611d9d565b60015b611ac3573d808015611a97576040519150601f19603f3d011682016040523d82523d6000602084013e611a9c565b606091505b508051611abb5760405162461bcd60e51b815260040161080090611fa7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611704565b506001949350505050565b3b151590565b828054611afa90612602565b90600052602060002090601f016020900481019282611b1c5760008555611b62565b82601f10611b3557805160ff1916838001178555611b62565b82800160010185558215611b62579182015b82811115611b62578251825591602001919060010190611b47565b50610af79291505b80821115610af75760008155600101611b6a565b600067ffffffffffffffff80841115611b9957611b99612692565b604051601f8501601f191681016020018281118282101715611bbd57611bbd612692565b604052848152915081838501861015611bd557600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461074257600080fd5b8035801515811461074257600080fd5b600060208284031215611c26578081fd5b61113282611bee565b60008060408385031215611c41578081fd5b611c4a83611bee565b9150611c5860208401611bee565b90509250929050565b600080600060608486031215611c75578081fd5b611c7e84611bee565b9250611c8c60208501611bee565b9150604084013590509250925092565b60008060008060808587031215611cb1578081fd5b611cba85611bee565b9350611cc860208601611bee565b925060408501359150606085013567ffffffffffffffff811115611cea578182fd5b8501601f81018713611cfa578182fd5b611d0987823560208401611b7e565b91505092959194509250565b60008060408385031215611d27578182fd5b611d3083611bee565b9150611c5860208401611c05565b60008060408385031215611d50578182fd5b611d5983611bee565b946020939093013593505050565b600060208284031215611d78578081fd5b61113282611c05565b600060208284031215611d92578081fd5b8135611132816126a8565b600060208284031215611dae578081fd5b8151611132816126a8565b600060208284031215611dca578081fd5b813567ffffffffffffffff811115611de0578182fd5b8201601f81018413611df0578182fd5b61170484823560208401611b7e565b600060208284031215611e10578081fd5b5035919050565b60008060008060808587031215611e2c578384fd5b5050823594602084013594506040840135936060013592509050565b60008151808452611e608160208601602086016125d6565b601f01601f19169290920160200192915050565b60008351611e868184602088016125d6565b835190830190611e9a8183602088016125d6565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611efa90830184611e48565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611f3c57835183529284019291840191600101611f20565b50909695505050505050565b901515815260200190565b6000602082526111326020830184611e48565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d69742070657220746e780000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526017908201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b90815260200190565b6000821982111561258757612587612666565b500190565b60008261259b5761259b61267c565b500490565b60008160001904831182151516156125ba576125ba612666565b500290565b6000828210156125d1576125d1612666565b500390565b60005b838110156125f15781810151838201526020016125d9565b838111156110445750506000910152565b60028104600182168061261657607f821691505b6020821081141561097357634e487b7160e01b600052602260045260246000fd5b600060001982141561264b5761264b612666565b5060010190565b6000826126615761266161267c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113e757600080fdfea2646970667358221220898a1b8cff86dfbb7134c2c1437f20d9bda7a5d3ab78e6f4c44c62ce56b8f17364736f6c63430008000033

Deployed Bytecode Sourcemap

29786:4653:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28308:225;;;;;;;;;;-1:-1:-1;28308:225:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22427:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23061:221::-;;;;;;;;;;-1:-1:-1;23061:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22643:412::-;;;;;;;;;;-1:-1:-1;22643:412:0;;;;;:::i;:::-;;:::i;:::-;;30009:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29469:110::-;;;;;;;;;;;;;:::i;32744:145::-;;;;;;;;;;-1:-1:-1;32744:145:0;;;;;:::i;:::-;;:::i;31697:676::-;;;;;;;;;;-1:-1:-1;31697:676:0;;;;;:::i;:::-;;:::i;28539:500::-;;;;;;;;;;-1:-1:-1;28539:500:0;;;;;:::i;:::-;;:::i;33083:143::-;;;;;;;;;;;;;:::i;24104:185::-;;;;;;;;;;-1:-1:-1;24104:185:0;;;;;:::i;:::-;;:::i;30039:30::-;;;;;;;;;;;;;:::i;29585:194::-;;;;;;;;;;-1:-1:-1;29585:194:0;;;;;:::i;:::-;;:::i;33232:102::-;;;;;;;;;;-1:-1:-1;33232:102:0;;;;;:::i;:::-;;:::i;22182:239::-;;;;;;;;;;-1:-1:-1;22182:239:0;;;;;:::i;:::-;;:::i;34110:326::-;;;;;;;;;;-1:-1:-1;34110:326:0;;;;;:::i;:::-;;:::i;30166:47::-;;;;;;;;;;;;;:::i;29884:29::-;;;;;;;;;;;;;:::i;21754:422::-;;;;;;;;;;-1:-1:-1;21754:422:0;;;;;:::i;:::-;;:::i;1363:94::-;;;;;;;;;;;;;:::i;29045:418::-;;;;;;;;;;-1:-1:-1;29045:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;30122:40::-;;;;;;;;;;;;;:::i;712:87::-;;;;;;;;;;;;;:::i;22533:104::-;;;;;;;;;;;;;:::i;23288:295::-;;;;;;;;;;-1:-1:-1;23288:295:0;;;;;:::i;:::-;;:::i;30400:38::-;;;;;;;;;;-1:-1:-1;30400:38:0;;;;;:::i;:::-;;:::i;30965:726::-;;;;;;:::i;:::-;;:::i;30255:28::-;;;;;;;;;;;;;:::i;29917:35::-;;;;;;;;;;;;;:::i;32897:180::-;;;;;;;;;;-1:-1:-1;32897:180:0;;;;;:::i;:::-;;:::i;29956:46::-;;;;;;;;;;;;;:::i;33917:187::-;;;;;;;;;;-1:-1:-1;33917:187:0;;;;;:::i;:::-;;:::i;32382:353::-;;;;;;;;;;-1:-1:-1;32382:353:0;;;;;:::i;:::-;;:::i;30076:42::-;;;;;;;;;;;;;:::i;33339:233::-;;;;;;;;;;-1:-1:-1;33339:233:0;;;;;:::i;:::-;;:::i;30614:345::-;;;;;;;;;;-1:-1:-1;30614:345:0;;;;;:::i;:::-;;:::i;23589:164::-;;;;;;;;;;-1:-1:-1;23589:164:0;;;;;:::i;:::-;;:::i;30217:34::-;;;;;;;;;;;;;:::i;33748:163::-;;;;;;;;;;-1:-1:-1;33748:163:0;;;;;:::i;:::-;;:::i;33578:164::-;;;;;;;;;;-1:-1:-1;33578:164:0;;;;;:::i;:::-;;:::i;1612:192::-;;;;;;;;;;-1:-1:-1;1612:192:0;;;;;:::i;:::-;;:::i;30290:30::-;;;;;;;;;;;;;:::i;28308:225::-;28411:4;-1:-1:-1;;;;;;28435:50:0;;-1:-1:-1;;;28435:50:0;;:90;;;28489:36;28513:11;28489:23;:36::i;:::-;28428:97;;28308:225;;;;:::o;22427:100::-;22481:13;22514:5;22507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22427:100;:::o;23061:221::-;23137:7;23165:16;23173:7;23165;:16::i;:::-;23157:73;;;;-1:-1:-1;;;23157:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23250:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23250:24:0;;23061:221::o;22643:412::-;22724:13;22740:24;22756:7;22740:15;:24::i;:::-;22724:40;;22789:5;-1:-1:-1;;;;;22783:11:0;:2;-1:-1:-1;;;;;22783:11:0;;;22775:57;;;;-1:-1:-1;;;22775:57:0;;;;;;;:::i;:::-;22883:5;-1:-1:-1;;;;;22867:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22867:21:0;;:62;;;;22892:37;22909:5;22916:12;:10;:12::i;22892:37::-;22845:168;;;;-1:-1:-1;;;22845:168:0;;;;;;;:::i;:::-;23026:21;23035:2;23039:7;23026:8;:21::i;:::-;22643:412;;;:::o;30009:26::-;;;;:::o;29469:110::-;29557:7;:14;29469:110;:::o;32744:145::-;32839:42;32860:5;32867:3;32872:8;32839:20;:42::i;31697:676::-;31749:7;31766:13;31806:1;31790:13;;:17;31787:579;;;31820:18;31859:13;;31841:15;:31;;;;:::i;:::-;31820:52;;31880:22;31918:13;;31905:10;:26;;;;:::i;:::-;31880:51;;31939:23;31982:20;;31965:14;:37;;;;:::i;:::-;31939:63;;32032:14;;32013:15;:33;32010:164;;32074:12;;32066:20;;32010:164;;;32150:15;32133:14;;:32;;;;:::i;:::-;32125:40;;32010:164;32199:12;;32191:5;:20;32188:139;;;32238:14;32246:6;32238:5;:14;:::i;:::-;32231:21;;;;;;;;32188:139;32312:6;32297:12;;:21;;;;:::i;31787:579::-;32359:1;32352:8;;;;;31787:579;31697:676;;;;:::o;28539:500::-;28628:15;28672:24;28690:5;28672:17;:24::i;:::-;28664:5;:32;28656:67;;;;-1:-1:-1;;;28656:67:0;;;;;;;:::i;:::-;28734:10;28760:6;28755:226;28772:7;:14;28768:18;;28755:226;;;28821:7;28829:1;28821:10;;;;;;-1:-1:-1;;;28821:10:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28812:19:0;;;28821:10;;28812:19;28808:162;;;28865:5;28856;:14;28852:102;;;28901:1;-1:-1:-1;28894:8:0;;-1:-1:-1;28894:8:0;28852:102;28947:7;;;:::i;:::-;;;28852:102;28788:3;;;:::i;:::-;;;28755:226;;;-1:-1:-1;28991:40:0;;-1:-1:-1;;;28991:40:0;;;;;;;:::i;28539:500::-;;;;;:::o;33083:143::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;33181:37:::1;::::0;33149:21:::1;::::0;33189:10:::1;::::0;33181:37;::::1;;;::::0;33149:21;;33131:15:::1;33181:37:::0;33131:15;33181:37;33149:21;33189:10;33181:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1003:1;33083:143::o:0;24104:185::-;24242:39;24259:4;24265:2;24269:7;24242:39;;;;;;;;;;;;:16;:39::i;30039:30::-;;;;:::o;29585:194::-;29660:7;29696:24;:22;:24::i;:::-;29688:5;:32;29680:68;;;;-1:-1:-1;;;29680:68:0;;;;;;;:::i;:::-;-1:-1:-1;29766:5:0;29585:194::o;33232:102::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;33306:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;22182:239::-:0;22254:7;22274:13;22290:7;22298;22290:16;;;;;;-1:-1:-1;;;22290:16:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22290:16:0;;-1:-1:-1;22325:19:0;22317:73;;;;-1:-1:-1;;;22317:73:0;;;;;;;:::i;34110:326::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;34276:14:::1;:33:::0;;;;34314:12:::1;:29:::0;;;;34348:20:::1;:44:::0;34397:13:::1;:31:::0;34110:326::o;30166:47::-;;;;:::o;29884:29::-;;;;:::o;21754:422::-;21826:7;-1:-1:-1;;;;;21854:19:0;;21846:74;;;;-1:-1:-1;;;21846:74:0;;;;;;;:::i;:::-;21970:7;:14;21931:10;;;21995:127;22016:6;22012:1;:10;21995:127;;;22057:7;22065:1;22057:10;;;;;;-1:-1:-1;;;22057:10:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22048:19:0;;;22057:10;;22048:19;22044:67;;;22088:7;;;:::i;:::-;;;22044:67;22024:3;;;:::i;:::-;;;21995:127;;;-1:-1:-1;22163:5:0;;21754:422;-1:-1:-1;;;21754:422:0:o;1363:94::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;1428:21:::1;1446:1;1428:9;:21::i;:::-;1363:94::o:0;29045:418::-;29104:16;29145:24;29163:5;29145:17;:24::i;:::-;29141:1;:28;29133:63;;;;-1:-1:-1;;;29133:63:0;;;;;;;:::i;:::-;29207:18;29228:16;29238:5;29228:9;:16::i;:::-;29207:37;;29255:25;29297:10;29283:25;;;;;;-1:-1:-1;;;29283:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29283:25:0;;29255:53;;29324:9;29319:111;29343:10;29339:1;:14;29319:111;;;29389:29;29409:5;29416:1;29389:19;:29::i;:::-;29375:8;29384:1;29375:11;;;;;;-1:-1:-1;;;29375:11:0;;;;;;;;;;;;;;;;;;:43;29355:3;;;;:::i;:::-;;;;29319:111;;;-1:-1:-1;29447:8:0;29045:418;-1:-1:-1;;;29045:418:0:o;30122:40::-;;;;:::o;712:87::-;785:6;;-1:-1:-1;;;;;785:6:0;712:87;:::o;22533:104::-;22589:13;22622:7;22615:14;;;;;:::i;23288:295::-;23403:12;:10;:12::i;:::-;-1:-1:-1;;;;;23391:24:0;:8;-1:-1:-1;;;;;23391:24:0;;;23383:62;;;;-1:-1:-1;;;23383:62:0;;;;;;;:::i;:::-;23503:8;23458:18;:32;23477:12;:10;:12::i;:::-;-1:-1:-1;;;;;23458:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23458:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23458:53:0;;;;;;;;;;;23542:12;:10;:12::i;:::-;-1:-1:-1;;;;;23527:48:0;;23566:8;23527:48;;;;;;:::i;:::-;;;;;;;;23288:295;;:::o;30400:38::-;;;;;;;;;;;;;:::o;30965:726::-;31021:19;31043:13;:11;:13::i;:::-;31074:10;;31021:35;;-1:-1:-1;31074:10:0;;31061:55;;;;-1:-1:-1;;;31061:55:0;;;;;;;:::i;:::-;31164:7;;31140:20;31154:6;31140:11;:20;:::i;:::-;:31;;31127:75;;;;-1:-1:-1;;;31127:75:0;;;;;;;:::i;:::-;31259:13;;31226:10;31220:17;;;;:5;:17;;;;;:26;:35;;31249:6;;31220:35;:::i;:::-;:52;;31207:111;;;;-1:-1:-1;;;31207:111:0;;;;;;;:::i;:::-;31346:26;;31336:6;:36;;31323:92;;;;-1:-1:-1;;;31323:92:0;;;;;;;:::i;:::-;31446:13;31452:6;31446:5;:13::i;:::-;31433:9;:26;;31420:69;;;;-1:-1:-1;;;31420:69:0;;;;;;;:::i;:::-;31499:9;31494:121;31518:6;31514:1;:10;31494:121;;;31546:38;31556:10;31568:15;31582:1;31568:11;:15;:::i;:::-;31546:9;:38::i;:::-;31590:11;:13;;;:11;:13;;;:::i;:::-;;;;;;31526:3;;;;;:::i;:::-;;;;31494:121;;;-1:-1:-1;31654:10:0;31648:17;;;;:5;:17;;;;;:26;:35;;31677:6;;31648:35;:::i;:::-;31625:10;31619:17;;;;:5;:17;;;;;:64;-1:-1:-1;;30965:726:0:o;30255:28::-;;;;:::o;29917:35::-;;;;:::o;32897:180::-;33016:53;33041:5;33048:3;33053:8;33063:5;33016:24;:53::i;:::-;32897:180;;;;:::o;29956:46::-;;;;:::o;33917:187::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;34020:8:::1;34009:7;;:19;;34001:47;;;;-1:-1:-1::0;;;34001:47:0::1;;;;;;;:::i;:::-;34059:26;:37:::0;33917:187::o;32382:353::-;32458:13;32492:17;32500:8;32492:7;:17::i;:::-;32484:63;;;;-1:-1:-1;;;32484:63:0;;;;;;;:::i;:::-;32558:28;32589:10;:8;:10::i;:::-;32558:41;;32648:1;32623:14;32617:28;:32;:110;;;;;;;;;;;;;;;;;32676:14;32692:19;:8;:17;:19::i;:::-;32659:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32617:110;32610:117;32382:353;-1:-1:-1;;;32382:353:0:o;30076:42::-;;;;:::o;33339:233::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;33411:10:::1;::::0;::::1;;:20;;::::0;::::1;;;;33403:29;;;::::0;::::1;;33440:6;33437:104;;;33476:15;33460:13;:31:::0;33437:104:::1;;;33534:1;33518:13;:17:::0;33437:104:::1;33545:10;:19:::0;;-1:-1:-1;;33545:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33339:233::o;30614:345::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;30692:19:::1;30714:13;:11;:13::i;:::-;30784:7;::::0;30692:35;;-1:-1:-1;30760:20:0::1;30774:6:::0;30692:35;30760:20:::1;:::i;:::-;:31;;30738:91;;;;-1:-1:-1::0;;;30738:91:0::1;;;;;;;:::i;:::-;30839:9;30834:118;30858:6;30854:1;:10;30834:118;;;30886:31;30896:3:::0;30901:15:::1;30915:1:::0;30901:11;:15:::1;:::i;30886:31::-;30923:15;:17:::0;;;:15:::1;:17;::::0;::::1;:::i;:::-;;;;;;30866:3;;;;;:::i;:::-;;;;30834:118;;23589:164:::0;-1:-1:-1;;;;;23710:25:0;;;23686:4;23710:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23589:164::o;30217:34::-;;;;:::o;33748:163::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;33840:13:::1;:11;:13::i;:::-;33827:9;:26;;33819:54;;;;-1:-1:-1::0;;;33819:54:0::1;;;;;;;:::i;:::-;33884:7;:19:::0;33748:163::o;33578:164::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;33671:8:::1;33660:7;;:19;;33652:47;;;;-1:-1:-1::0;;;33652:47:0::1;;;;;;;:::i;:::-;33710:13;:24:::0;33578:164::o;1612:192::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1701:22:0;::::1;1693:73;;;;-1:-1:-1::0;;;1693:73:0::1;;;;;;;:::i;:::-;1777:19;1787:8;1777:9;:19::i;:::-;1612:192:::0;:::o;30290:30::-;;;;;;:::o;21455:293::-;21557:4;-1:-1:-1;;;;;;21590:40:0;;-1:-1:-1;;;21590:40:0;;:101;;-1:-1:-1;;;;;;;21643:48:0;;-1:-1:-1;;;21643:48:0;21590:101;:150;;;;21704:36;21728:11;21704:23;:36::i;24950:155::-;25049:7;:14;25015:4;;25039:24;;:58;;;;;25095:1;-1:-1:-1;;;;;25067:30:0;:7;25075;25067:16;;;;;;-1:-1:-1;;;25067:16:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25067:16:0;:30;;;24950:155;-1:-1:-1;;24950:155:0:o;95:98::-;175:10;95:98;:::o;27123:175::-;27198:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;27198:29:0;-1:-1:-1;;;;;27198:29:0;;;;;;;;:24;;27252;27198;27252:15;:24::i;:::-;-1:-1:-1;;;;;27243:47:0;;;;;;;;;;;27123:175;;:::o;23759:339::-;23954:41;23973:12;:10;:12::i;:::-;23987:7;23954:18;:41::i;:::-;23946:103;;;;-1:-1:-1;;;23946:103:0;;;;;;;:::i;:::-;24062:28;24072:4;24078:2;24082:7;24062:9;:28::i;1812:173::-;1887:6;;;-1:-1:-1;;;;;1904:17:0;;;-1:-1:-1;;;;;;1904:17:0;;;;;;;1937:40;;1887:6;;;1904:17;1887:6;;1937:40;;1868:16;;1937:40;1812:173;;:::o;25466:110::-;25542:26;25552:2;25556:7;25542:26;;;;;;;;;;;;:9;:26::i;24295:328::-;24470:41;24489:12;:10;:12::i;:::-;24503:7;24470:18;:41::i;:::-;24462:103;;;;-1:-1:-1;;;24462:103:0;;;;;;;:::i;:::-;24576:39;24590:4;24596:2;24600:7;24609:5;24576:13;:39::i;30509:99::-;30560:13;30593:7;30586:14;;;;;:::i;2180:723::-;2236:13;2457:10;2453:53;;-1:-1:-1;2484:10:0;;;;;;;;;;;;-1:-1:-1;;;2484:10:0;;;;;;2453:53;2531:5;2516:12;2572:78;2579:9;;2572:78;;2605:8;;;;:::i;:::-;;-1:-1:-1;2628:10:0;;-1:-1:-1;2636:2:0;2628:10;;:::i;:::-;;;2572:78;;;2660:19;2692:6;2682:17;;;;;;-1:-1:-1;;;2682:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2682:17:0;;2660:39;;2710:154;2717:10;;2710:154;;2744:11;2754:1;2744:11;;:::i;:::-;;-1:-1:-1;2813:10:0;2821:2;2813:5;:10;:::i;:::-;2800:24;;:2;:24;:::i;:::-;2787:39;;2770:6;2777;2770:14;;;;;;-1:-1:-1;;;2770:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2770:56:0;;;;;;;;-1:-1:-1;2841:11:0;2850:2;2841:11;;:::i;:::-;;;2710:154;;;2888:6;2180:723;-1:-1:-1;;;;2180:723:0:o;20834:157::-;-1:-1:-1;;;;;;20943:40:0;;-1:-1:-1;;;20943:40:0;20834:157;;;:::o;25111:349::-;25204:4;25229:16;25237:7;25229;:16::i;:::-;25221:73;;;;-1:-1:-1;;;25221:73:0;;;;;;;:::i;:::-;25305:13;25321:24;25337:7;25321:15;:24::i;:::-;25305:40;;25375:5;-1:-1:-1;;;;;25364:16:0;:7;-1:-1:-1;;;;;25364:16:0;;:51;;;;25408:7;-1:-1:-1;;;;;25384:31:0;:20;25396:7;25384:11;:20::i;:::-;-1:-1:-1;;;;;25384:31:0;;25364:51;:87;;;;25419:32;25436:5;25443:7;25419:16;:32::i;26600:517::-;26760:4;-1:-1:-1;;;;;26732:32:0;:24;26748:7;26732:15;:24::i;:::-;-1:-1:-1;;;;;26732:32:0;;26724:86;;;;-1:-1:-1;;;26724:86:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26829:16:0;;26821:65;;;;-1:-1:-1;;;26821:65:0;;;;;;;:::i;:::-;26899:39;26920:4;26926:2;26930:7;26899:20;:39::i;:::-;27003:29;27020:1;27024:7;27003:8;:29::i;:::-;27062:2;27043:7;27051;27043:16;;;;;;-1:-1:-1;;;27043:16:0;;;;;;;;;;;;;;;;;:21;;-1:-1:-1;;;;;;27043:21:0;-1:-1:-1;;;;;27043:21:0;;;;;;27082:27;;27101:7;;27082:27;;;;;;;;;;27043:16;27082:27;26600:517;;;:::o;25582:321::-;25712:18;25718:2;25722:7;25712:5;:18::i;:::-;25763:54;25794:1;25798:2;25802:7;25811:5;25763:22;:54::i;:::-;25741:154;;;;-1:-1:-1;;;25741:154:0;;;;;;;:::i;24629:315::-;24786:28;24796:4;24802:2;24806:7;24786:9;:28::i;:::-;24833:48;24856:4;24862:2;24866:7;24875:5;24833:22;:48::i;:::-;24825:111;;;;-1:-1:-1;;;24825:111:0;;;;;;;:::i;25909:346::-;-1:-1:-1;;;;;25989:16:0;;25981:61;;;;-1:-1:-1;;;25981:61:0;;;;;;;:::i;:::-;26062:16;26070:7;26062;:16::i;:::-;26061:17;26053:58;;;;-1:-1:-1;;;26053:58:0;;;;;;;:::i;:::-;26124:45;26153:1;26157:2;26161:7;26124:20;:45::i;:::-;26180:7;:16;;;;;;;-1:-1:-1;26180:16:0;;;;;;;-1:-1:-1;;;;;;26180:16:0;-1:-1:-1;;;;;26180:16:0;;;;;;;;26214:33;;26239:7;;-1:-1:-1;26214:33:0;;-1:-1:-1;;26214:33:0;25909:346;;:::o;27304:799::-;27459:4;27480:15;:2;-1:-1:-1;;;;;27480:13:0;;:15::i;:::-;27476:620;;;27532:2;-1:-1:-1;;;;;27516:36:0;;27553:12;:10;:12::i;:::-;27567:4;27573:7;27582:5;27516:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27516:72:0;;;;;;;;-1:-1:-1;;27516:72:0;;;;;;;;;;;;:::i;:::-;;;27512:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27758:13:0;;27754:272;;27801:60;;-1:-1:-1;;;27801:60:0;;;;;;;:::i;27754:272::-;27976:6;27970:13;27961:6;27957:2;27953:15;27946:38;27512:529;-1:-1:-1;;;;;;27639:51:0;-1:-1:-1;;;27639:51:0;;-1:-1:-1;27632:58:0;;27476:620;-1:-1:-1;28080:4:0;27304:799;;;;;;:::o;13396:387::-;13719:20;13767:8;;;13396:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:395::-;;;;;4623:3;4611:9;4602:7;4598:23;4594:33;4591:2;;;4645:6;4637;4630:22;4591:2;-1:-1:-1;;4673:23:1;;;4743:2;4728:18;;4715:32;;-1:-1:-1;4794:2:1;4779:18;;4766:32;;4845:2;4830:18;4817:32;;-1:-1:-1;4581:274:1;-1:-1:-1;4581:274:1:o;4860:259::-;;4941:5;4935:12;4968:6;4963:3;4956:19;4984:63;5040:6;5033:4;5028:3;5024:14;5017:4;5010:5;5006:16;4984:63;:::i;:::-;5101:2;5080:15;-1:-1:-1;;5076:29:1;5067:39;;;;5108:4;5063:50;;4911:208;-1:-1:-1;;4911:208:1:o;5124:637::-;;5442:6;5436:13;5458:53;5504:6;5499:3;5492:4;5484:6;5480:17;5458:53;:::i;:::-;5574:13;;5533:16;;;;5596:57;5574:13;5533:16;5630:4;5618:17;;5596:57;:::i;:::-;-1:-1:-1;;;5675:20:1;;5704:22;;;5753:1;5742:13;;5412:349;-1:-1:-1;;;;5412:349:1:o;5766:203::-;-1:-1:-1;;;;;5930:32:1;;;;5912:51;;5900:2;5885:18;;5867:102::o;5974:490::-;-1:-1:-1;;;;;6243:15:1;;;6225:34;;6295:15;;6290:2;6275:18;;6268:43;6342:2;6327:18;;6320:34;;;6390:3;6385:2;6370:18;;6363:31;;;5974:490;;6411:47;;6438:19;;6430:6;6411:47;:::i;:::-;6403:55;6177:287;-1:-1:-1;;;;;;6177:287:1:o;6469:635::-;6640:2;6692:21;;;6762:13;;6665:18;;;6784:22;;;6469:635;;6640:2;6863:15;;;;6837:2;6822:18;;;6469:635;6909:169;6923:6;6920:1;6917:13;6909:169;;;6984:13;;6972:26;;7053:15;;;;7018:12;;;;6945:1;6938:9;6909:169;;;-1:-1:-1;7095:3:1;;6620:484;-1:-1:-1;;;;;;6620:484:1:o;7109:187::-;7274:14;;7267:22;7249:41;;7237:2;7222:18;;7204:92::o;7301:221::-;;7450:2;7439:9;7432:21;7470:46;7512:2;7501:9;7497:18;7489:6;7470:46;:::i;7527:397::-;7729:2;7711:21;;;7768:2;7748:18;;;7741:30;7807:34;7802:2;7787:18;;7780:62;-1:-1:-1;;;7873:2:1;7858:18;;7851:31;7914:3;7899:19;;7701:223::o;7929:414::-;8131:2;8113:21;;;8170:2;8150:18;;;8143:30;8209:34;8204:2;8189:18;;8182:62;-1:-1:-1;;;8275:2:1;8260:18;;8253:48;8333:3;8318:19;;8103:240::o;8348:402::-;8550:2;8532:21;;;8589:2;8569:18;;;8562:30;8628:34;8623:2;8608:18;;8601:62;-1:-1:-1;;;8694:2:1;8679:18;;8672:36;8740:3;8725:19;;8522:228::o;8755:352::-;8957:2;8939:21;;;8996:2;8976:18;;;8969:30;9035;9030:2;9015:18;;9008:58;9098:2;9083:18;;8929:178::o;9112:400::-;9314:2;9296:21;;;9353:2;9333:18;;;9326:30;9392:34;9387:2;9372:18;;9365:62;-1:-1:-1;;;9458:2:1;9443:18;;9436:34;9502:3;9487:19;;9286:226::o;9517:349::-;9719:2;9701:21;;;9758:2;9738:18;;;9731:30;9797:27;9792:2;9777:18;;9770:55;9857:2;9842:18;;9691:175::o;9871:332::-;10073:2;10055:21;;;10112:1;10092:18;;;10085:29;-1:-1:-1;;;10145:2:1;10130:18;;10123:39;10194:2;10179:18;;10045:158::o;10208:342::-;10410:2;10392:21;;;10449:2;10429:18;;;10422:30;-1:-1:-1;;;10483:2:1;10468:18;;10461:48;10541:2;10526:18;;10382:168::o;10555:408::-;10757:2;10739:21;;;10796:2;10776:18;;;10769:30;10835:34;10830:2;10815:18;;10808:62;-1:-1:-1;;;10901:2:1;10886:18;;10879:42;10953:3;10938:19;;10729:234::o;10968:420::-;11170:2;11152:21;;;11209:2;11189:18;;;11182:30;11248:34;11243:2;11228:18;;11221:62;11319:26;11314:2;11299:18;;11292:54;11378:3;11363:19;;11142:246::o;11393:354::-;11595:2;11577:21;;;11634:2;11614:18;;;11607:30;11673:32;11668:2;11653:18;;11646:60;11738:2;11723:18;;11567:180::o;11752:406::-;11954:2;11936:21;;;11993:2;11973:18;;;11966:30;12032:34;12027:2;12012:18;;12005:62;-1:-1:-1;;;12098:2:1;12083:18;;12076:40;12148:3;12133:19;;11926:232::o;12163:405::-;12365:2;12347:21;;;12404:2;12384:18;;;12377:30;12443:34;12438:2;12423:18;;12416:62;-1:-1:-1;;;12509:2:1;12494:18;;12487:39;12558:3;12543:19;;12337:231::o;12573:341::-;12775:2;12757:21;;;12814:2;12794:18;;;12787:30;-1:-1:-1;;;12848:2:1;12833:18;;12826:47;12905:2;12890:18;;12747:167::o;12919:356::-;13121:2;13103:21;;;13140:18;;;13133:30;13199:34;13194:2;13179:18;;13172:62;13266:2;13251:18;;13093:182::o;13280:408::-;13482:2;13464:21;;;13521:2;13501:18;;;13494:30;13560:34;13555:2;13540:18;;13533:62;-1:-1:-1;;;13626:2:1;13611:18;;13604:42;13678:3;13663:19;;13454:234::o;13693:339::-;13895:2;13877:21;;;13934:2;13914:18;;;13907:30;-1:-1:-1;;;13968:2:1;13953:18;;13946:45;14023:2;14008:18;;13867:165::o;14037:356::-;14239:2;14221:21;;;14258:18;;;14251:30;14317:34;14312:2;14297:18;;14290:62;14384:2;14369:18;;14211:182::o;14398:405::-;14600:2;14582:21;;;14639:2;14619:18;;;14612:30;14678:34;14673:2;14658:18;;14651:62;-1:-1:-1;;;14744:2:1;14729:18;;14722:39;14793:3;14778:19;;14572:231::o;14808:341::-;15010:2;14992:21;;;15049:2;15029:18;;;15022:30;-1:-1:-1;;;15083:2:1;15068:18;;15061:47;15140:2;15125:18;;14982:167::o;15154:346::-;15356:2;15338:21;;;15395:2;15375:18;;;15368:30;-1:-1:-1;;;15429:2:1;15414:18;;15407:52;15491:2;15476:18;;15328:172::o;15505:347::-;15707:2;15689:21;;;15746:2;15726:18;;;15719:30;15785:25;15780:2;15765:18;;15758:53;15843:2;15828:18;;15679:173::o;15857:397::-;16059:2;16041:21;;;16098:2;16078:18;;;16071:30;16137:34;16132:2;16117:18;;16110:62;-1:-1:-1;;;16203:2:1;16188:18;;16181:31;16244:3;16229:19;;16031:223::o;16259:413::-;16461:2;16443:21;;;16500:2;16480:18;;;16473:30;16539:34;16534:2;16519:18;;16512:62;-1:-1:-1;;;16605:2:1;16590:18;;16583:47;16662:3;16647:19;;16433:239::o;16677:397::-;16879:2;16861:21;;;16918:2;16898:18;;;16891:30;16957:34;16952:2;16937:18;;16930:62;-1:-1:-1;;;17023:2:1;17008:18;;17001:31;17064:3;17049:19;;16851:223::o;17079:177::-;17225:25;;;17213:2;17198:18;;17180:76::o;17261:128::-;;17332:1;17328:6;17325:1;17322:13;17319:2;;;17338:18;;:::i;:::-;-1:-1:-1;17374:9:1;;17309:80::o;17394:120::-;;17460:1;17450:2;;17465:18;;:::i;:::-;-1:-1:-1;17499:9:1;;17440:74::o;17519:168::-;;17625:1;17621;17617:6;17613:14;17610:1;17607:21;17602:1;17595:9;17588:17;17584:45;17581:2;;;17632:18;;:::i;:::-;-1:-1:-1;17672:9:1;;17571:116::o;17692:125::-;;17760:1;17757;17754:8;17751:2;;;17765:18;;:::i;:::-;-1:-1:-1;17802:9:1;;17741:76::o;17822:258::-;17894:1;17904:113;17918:6;17915:1;17912:13;17904:113;;;17994:11;;;17988:18;17975:11;;;17968:39;17940:2;17933:10;17904:113;;;18035:6;18032:1;18029:13;18026:2;;;-1:-1:-1;;18070:1:1;18052:16;;18045:27;17875:205::o;18085:380::-;18170:1;18160:12;;18217:1;18207:12;;;18228:2;;18282:4;18274:6;18270:17;18260:27;;18228:2;18335;18327:6;18324:14;18304:18;18301:38;18298:2;;;18381:10;18376:3;18372:20;18369:1;18362:31;18416:4;18413:1;18406:15;18444:4;18441:1;18434:15;18470:135;;-1:-1:-1;;18530:17:1;;18527:2;;;18550:18;;:::i;:::-;-1:-1:-1;18597:1:1;18586:13;;18517:88::o;18610:112::-;;18668:1;18658:2;;18673:18;;:::i;:::-;-1:-1:-1;18707:9:1;;18648:74::o;18727:127::-;18788:10;18783:3;18779:20;18776:1;18769:31;18819:4;18816:1;18809:15;18843:4;18840:1;18833:15;18859:127;18920:10;18915:3;18911:20;18908:1;18901:31;18951:4;18948:1;18941:15;18975:4;18972:1;18965:15;18991:127;19052:10;19047:3;19043:20;19040:1;19033:31;19083:4;19080:1;19073:15;19107:4;19104:1;19097:15;19123:133;-1:-1:-1;;;;;;19199:32:1;;19189:43;;19179:2;;19246:1;19243;19236:12

Swarm Source

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