ETH Price: $3,388.18 (-1.56%)
Gas: 2 Gwei

Token

Goatorade (Goatorade)
 

Overview

Max Total Supply

10,991 Goatorade

Holders

9,500

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Goatorade
0xbe6796f8667ab82a2dde3c808e5f8752b07945a3
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Goatorade

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-08-17
*/

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

library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
		
        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

contract Goatorade is ERC721Enum, Ownable, ReentrancyGuard {
    using Strings for uint256;
	
    uint256 public AIRDROP_NFT = 10000;
	uint256 public RESERVED_NFT = 5000;
	
	uint256 public AIRDROP_MINTED;
	uint256 public RESERVED_MINTED;
	
    string private baseURI;
    
	constructor() ERC721P('Goatorade', 'Goatorade') {}
	
    function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
    }
	
	function mintReservedNFT(address[] calldata _to, uint256[] calldata _count) external onlyOwner nonReentrant{
        require(_to.length == _count.length,"Mismatch between Address and count");
		for(uint i=0; i < _to.length; i++){
		    uint256 totalSupply = totalSupply();
		    require(
				RESERVED_MINTED + _count[i] <= RESERVED_NFT, 
				"Max limit reached"
			);
			for (uint256 j = 0; j < _count[i]; j++) {
				_safeMint(_to[i], totalSupply + j);
				RESERVED_MINTED++;
			}
		}
    }
	
	function mintAirDropNFT(address[] calldata _to, uint256[] calldata _count) external onlyOwner nonReentrant{
        require(_to.length == _count.length,"Mismatch between Address and count");
		for(uint i=0; i < _to.length; i++){
		    uint256 totalSupply = totalSupply();
		    require(
				AIRDROP_MINTED + _count[i] <= AIRDROP_NFT, 
				"Max limit reached"
			);
			for (uint256 j = 0; j < _count[i]; j++) {
				_safeMint(_to[i], totalSupply + j);
				AIRDROP_MINTED++;
			}
		}
    }
	
	function burnBatchNFT(address[] calldata _holder, uint256[] calldata _count) external onlyOwner nonReentrant{
        require(_holder.length == _count.length,"Mismatch between Address and count");
		for(uint i=0; i < _holder.length; i++){
		    require(
			   balanceOf(_holder[i]) >= _count[i], 
			   "insufficient balance for burn"
			);
			uint256[] memory tokenID = tokensOfOwner(_holder[i]);
			for (uint256 j = 0; j < _count[i]; j++) {
				_burn(tokenID[j]);
			}
		}
    }
	
	function burnNFT(address _holder, uint256[] calldata _tokenId) external onlyOwner nonReentrant{
        require(
            balanceOf(_holder) >= _tokenId.length, 
            "insufficient balance for burn"
        );
        for (uint256 j = 0; j < _tokenId.length; j++) {
            require(
               _holder == ownerOf(_tokenId[j]), 
               "incorrect owner of nft"
            );
            _burn(_tokenId[j]);
        }
    }
	
	function burnNFT(uint256[] calldata _tokenId) external onlyOwner nonReentrant{
        for (uint256 j = 0; j < _tokenId.length; j++) {
            _burn(_tokenId[j]);
        }
    }
	
    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() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
	
	function setBaseURI(string memory newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }
	
	function updateAirDropSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= AIRDROP_MINTED, "Incorrect value");
        AIRDROP_NFT = newSupply;
    }
	
	function updateReservedSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= RESERVED_MINTED, "Incorrect value");
        RESERVED_NFT = newSupply;
    }
}

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":"AIRDROP_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AIRDROP_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_NFT","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":"address[]","name":"_holder","type":"address[]"},{"internalType":"uint256[]","name":"_count","type":"uint256[]"}],"name":"burnBatchNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"}],"name":"burnNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenId","type":"uint256[]"}],"name":"burnNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"mintAirDropNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_count","type":"uint256[]"}],"name":"mintReservedNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"newSupply","type":"uint256"}],"name":"updateAirDropSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateReservedSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526127106007556113886008553480156200001d57600080fd5b50604080518082018252600980825268476f61746f7261646560b81b6020808401828152855180870190965292855284015281519192916200006291600091620000f6565b50805162000078906001906020840190620000f6565b505050620000956200008f620000a060201b60201c565b620000a4565b6001600655620001d9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000104906200019c565b90600052602060002090601f01602090048101928262000128576000855562000173565b82601f106200014357805160ff191683800117855562000173565b8280016001018555821562000173579182015b828111156200017357825182559160200191906001019062000156565b506200018192915062000185565b5090565b5b8082111562000181576000815560010162000186565b600281046001821680620001b157607f821691505b60208210811415620001d357634e487b7160e01b600052602260045260246000fd5b50919050565b61286680620001e96000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a578063b88d4fde116100ad578063dbe1a1721161007c578063dbe1a17214610408578063e538651a14610410578063e985e9c514610423578063f2fde38b14610436578063f921d83f14610449576101fb565b8063b88d4fde146103c7578063c87b56dd146103da578063d4bba0e9146103ed578063d8710ba3146103f5576101fb565b806395d89b41116100e957806395d89b411461038657806395de7a9e1461038e578063a22cb465146103a1578063aa9dc50c146103b4576101fb565b8063715018a6146103435780638462151c1461034b57806386529a611461036b5780638da5cb5b1461037e576101fb565b80633ccfd60b1161019257806355f804b31161016157806355f804b3146102f75780636352211e1461030a57806367746f4e1461031d57806370a0823114610330576101fb565b80633ccfd60b146102b657806342842e0e146102be5780634df08219146102d15780634f6ccce7146102e4576101fb565b806318160ddd116101ce57806318160ddd1461027357806323b872dd146102885780632f745c591461029b5780633b9e8a57146102ae576101fb565b806301ffc9a71461020057806306fdde0314610229578063081812fc1461023e578063095ea7b31461025e575b600080fd5b61021361020e366004611f4f565b610451565b60405161022091906120e5565b60405180910390f35b61023161047e565b60405161022091906120f0565b61025161024c366004611fcd565b610510565b6040516102209190612050565b61027161026c366004611e7d565b61055c565b005b61027b6105f4565b60405161022091906126f6565b610271610296366004611d3e565b6105fa565b61027b6102a9366004611e7d565b610605565b61027b6106c8565b6102716106ce565b6102716102cc366004611d3e565b610740565b6102716102df366004611ea6565b61075b565b61027b6102f2366004611fcd565b61090e565b610271610305366004611f87565b61093a565b610251610318366004611fcd565b61098c565b61027161032b366004611ea6565b6109e4565b61027b61033e366004611cf2565b610b67565b610271610c04565b61035e610359366004611cf2565b610c4f565b60405161022091906120a1565b610271610379366004611df2565b610d35565b610251610e7a565b610231610e89565b61027161039c366004611f0f565b610e98565b6102716103af366004611e43565b610f49565b6102716103c2366004611fcd565b611017565b6102716103d5366004611d79565b61107d565b6102316103e8366004611fcd565b61108f565b61027b611112565b610271610403366004611fcd565b611118565b61027b61117e565b61027161041e366004611ea6565b611184565b610213610431366004611d0c565b611356565b610271610444366004611cf2565b611384565b61027b6113f5565b60006001600160e01b0319821663780e9d6360e01b14806104765750610476826113fb565b90505b919050565b60606000805461048d9061276e565b80601f01602080910402602001604051908101604052809291908181526020018280546104b99061276e565b80156105065780601f106104db57610100808354040283529160200191610506565b820191906000526020600020905b8154815290600101906020018083116104e957829003601f168201915b5050505050905090565b600061051b8261143b565b6105405760405162461bcd60e51b8152600401610537906124d3565b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006105678261098c565b9050806001600160a01b0316836001600160a01b0316141561059b5760405162461bcd60e51b81526004016105379061262d565b806001600160a01b03166105ad611493565b6001600160a01b031614806105c957506105c981610431611493565b6105e55760405162461bcd60e51b815260040161053790612311565b6105ef8383611497565b505050565b60025490565b6105ef838383611505565b600061061083610b67565b821061062e5760405162461bcd60e51b8152600401610537906125c6565b6000805b6002548110156106a9576002818154811061065d57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610699578382141561068d5791506106c29050565b610696826127a9565b91505b6106a2816127a9565b9050610632565b5060405162461bcd60e51b8152600401610537906125c6565b92915050565b60095481565b6106d6611493565b6001600160a01b03166106e7610e7a565b6001600160a01b03161461070d5760405162461bcd60e51b815260040161053790612548565b6040514790339082156108fc029083906000818181858888f1935050505015801561073c573d6000803e3d6000fd5b5050565b6105ef8383836040518060200160405280600081525061107d565b610763611493565b6001600160a01b0316610774610e7a565b6001600160a01b03161461079a5760405162461bcd60e51b815260040161053790612548565b600260065414156107bd5760405162461bcd60e51b8152600401610537906126bf565b60026006558281146107e15760405162461bcd60e51b81526004016105379061242c565b60005b838110156109025760006107f66105f4565b905060085484848481811061081b57634e487b7160e01b600052603260045260246000fd5b90506020020135600a5461082f91906126ff565b111561084d5760405162461bcd60e51b81526004016105379061236e565b60005b84848481811061087057634e487b7160e01b600052603260045260246000fd5b905060200201358110156108ed576108c58787858181106108a157634e487b7160e01b600052603260045260246000fd5b90506020020160208101906108b69190611cf2565b6108c083856126ff565b61153d565b600a80549060006108d5836127a9565b919050555080806108e5906127a9565b915050610850565b505080806108fa906127a9565b9150506107e4565b50506001600655505050565b60006109186105f4565b82106109365760405162461bcd60e51b8152600401610537906125f6565b5090565b610942611493565b6001600160a01b0316610953610e7a565b6001600160a01b0316146109795760405162461bcd60e51b815260040161053790612548565b805161073c90600b906020840190611b92565b600080600283815481106109b057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03169050806104765760405162461bcd60e51b8152600401610537906123e3565b6109ec611493565b6001600160a01b03166109fd610e7a565b6001600160a01b031614610a235760405162461bcd60e51b815260040161053790612548565b60026006541415610a465760405162461bcd60e51b8152600401610537906126bf565b6002600655828114610a6a5760405162461bcd60e51b81526004016105379061242c565b60005b83811015610902576000610a7f6105f4565b9050600754848484818110610aa457634e487b7160e01b600052603260045260246000fd5b90506020020135600954610ab891906126ff565b1115610ad65760405162461bcd60e51b81526004016105379061236e565b60005b848484818110610af957634e487b7160e01b600052603260045260246000fd5b90506020020135811015610b5257610b2a8787858181106108a157634e487b7160e01b600052603260045260246000fd5b60098054906000610b3a836127a9565b91905055508080610b4a906127a9565b915050610ad9565b50508080610b5f906127a9565b915050610a6d565b60006001600160a01b038216610b8f5760405162461bcd60e51b815260040161053790612399565b600254600090815b81811015610bfb5760028181548110610bc057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610beb57610be8836127a9565b92505b610bf4816127a9565b9050610b97565b50909392505050565b610c0c611493565b6001600160a01b0316610c1d610e7a565b6001600160a01b031614610c435760405162461bcd60e51b815260040161053790612548565b610c4d6000611557565b565b6060610c5a82610b67565b600010610c795760405162461bcd60e51b8152600401610537906125c6565b6000610c8483610b67565b905060008167ffffffffffffffff811115610caf57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cd8578160200160208202803683370190505b50905060005b82811015610d2d57610cf08582610605565b828281518110610d1057634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d25816127a9565b915050610cde565b509392505050565b610d3d611493565b6001600160a01b0316610d4e610e7a565b6001600160a01b031614610d745760405162461bcd60e51b815260040161053790612548565b60026006541415610d975760405162461bcd60e51b8152600401610537906126bf565b600260065580610da684610b67565b1015610dc45760405162461bcd60e51b81526004016105379061228e565b60005b81811015610e6f57610dfe838383818110610df257634e487b7160e01b600052603260045260246000fd5b9050602002013561098c565b6001600160a01b0316846001600160a01b031614610e2e5760405162461bcd60e51b81526004016105379061246e565b610e5d838383818110610e5157634e487b7160e01b600052603260045260246000fd5b905060200201356115a9565b80610e67816127a9565b915050610dc7565b505060016006555050565b6005546001600160a01b031690565b60606001805461048d9061276e565b610ea0611493565b6001600160a01b0316610eb1610e7a565b6001600160a01b031614610ed75760405162461bcd60e51b815260040161053790612548565b60026006541415610efa5760405162461bcd60e51b8152600401610537906126bf565b600260065560005b81811015610f3f57610f2d838383818110610e5157634e487b7160e01b600052603260045260246000fd5b80610f37816127a9565b915050610f02565b5050600160065550565b610f51611493565b6001600160a01b0316826001600160a01b03161415610f825760405162461bcd60e51b815260040161053790612257565b8060046000610f8f611493565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fd3611493565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161100b91906120e5565b60405180910390a35050565b61101f611493565b6001600160a01b0316611030610e7a565b6001600160a01b0316146110565760405162461bcd60e51b815260040161053790612548565b600a548110156110785760405162461bcd60e51b81526004016105379061251f565b600855565b61108984848484611645565b50505050565b606061109a8261143b565b6110b65760405162461bcd60e51b815260040161053790612103565b60006110c061167e565b905060008151116110e0576040518060200160405280600081525061110b565b806110ea8461168d565b6040516020016110fb929190612011565b6040516020818303038152906040525b9392505050565b60085481565b611120611493565b6001600160a01b0316611131610e7a565b6001600160a01b0316146111575760405162461bcd60e51b815260040161053790612548565b6009548110156111795760405162461bcd60e51b81526004016105379061251f565b600755565b60075481565b61118c611493565b6001600160a01b031661119d610e7a565b6001600160a01b0316146111c35760405162461bcd60e51b815260040161053790612548565b600260065414156111e65760405162461bcd60e51b8152600401610537906126bf565b600260065582811461120a5760405162461bcd60e51b81526004016105379061242c565b60005b838110156109025782828281811061123557634e487b7160e01b600052603260045260246000fd5b9050602002013561127486868481811061125f57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061033e9190611cf2565b10156112925760405162461bcd60e51b81526004016105379061228e565b60006112cc8686848181106112b757634e487b7160e01b600052603260045260246000fd5b90506020020160208101906103599190611cf2565b905060005b8484848181106112f157634e487b7160e01b600052603260045260246000fd5b905060200201358110156113415761132f82828151811061132257634e487b7160e01b600052603260045260246000fd5b60200260200101516115a9565b80611339816127a9565b9150506112d1565b5050808061134e906127a9565b91505061120d565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b61138c611493565b6001600160a01b031661139d610e7a565b6001600160a01b0316146113c35760405162461bcd60e51b815260040161053790612548565b6001600160a01b0381166113e95760405162461bcd60e51b815260040161053790612196565b6113f281611557565b50565b600a5481565b60006001600160e01b031982166380ac58cd60e01b148061142c57506001600160e01b03198216635b5e139f60e01b145b806104765750610476826117b0565b60025460009082108015610476575060006001600160a01b03166002838154811061147657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114cc8261098c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611516611510611493565b826117c9565b6115325760405162461bcd60e51b81526004016105379061266e565b6105ef838383611846565b61073c828260405180602001604052806000815250611937565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006115b48261098c565b90506115c2816000846105ef565b6115cd600083611497565b6000600283815481106115f057634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611656611650611493565b836117c9565b6116725760405162461bcd60e51b81526004016105379061266e565b6110898484848461196a565b6060600b805461048d9061276e565b6060816116b257506040805180820190915260018152600360fc1b6020820152610479565b8160005b81156116dc57806116c6816127a9565b91506116d59050600a83612717565b91506116b6565b60008167ffffffffffffffff81111561170557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561172f576020820181803683370190505b5090505b84156117a85761174460018361272b565b9150611751600a866127c4565b61175c9060306126ff565b60f81b81838151811061177f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117a1600a86612717565b9450611733565b949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b60006117d48261143b565b6117f05760405162461bcd60e51b8152600401610537906122c5565b60006117fb8361098c565b9050806001600160a01b0316846001600160a01b031614806118365750836001600160a01b031661182b84610510565b6001600160a01b0316145b806117a857506117a88185611356565b826001600160a01b03166118598261098c565b6001600160a01b03161461187f5760405162461bcd60e51b81526004016105379061257d565b6001600160a01b0382166118a55760405162461bcd60e51b815260040161053790612213565b6118b08383836105ef565b6118bb600082611497565b81600282815481106118dd57634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611941838361199d565b61194e6000848484611a71565b6105ef5760405162461bcd60e51b815260040161053790612144565b611975848484611846565b61198184848484611a71565b6110895760405162461bcd60e51b815260040161053790612144565b6001600160a01b0382166119c35760405162461bcd60e51b81526004016105379061249e565b6119cc8161143b565b156119e95760405162461bcd60e51b8152600401610537906121dc565b6119f5600083836105ef565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611a85846001600160a01b0316611b8c565b15611b8157836001600160a01b031663150b7a02611aa1611493565b8786866040518563ffffffff1660e01b8152600401611ac39493929190612064565b602060405180830381600087803b158015611add57600080fd5b505af1925050508015611b0d575060408051601f3d908101601f19168201909252611b0a91810190611f6b565b60015b611b67573d808015611b3b576040519150601f19603f3d011682016040523d82523d6000602084013e611b40565b606091505b508051611b5f5760405162461bcd60e51b815260040161053790612144565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117a8565b506001949350505050565b3b151590565b828054611b9e9061276e565b90600052602060002090601f016020900481019282611bc05760008555611c06565b82601f10611bd957805160ff1916838001178555611c06565b82800160010185558215611c06579182015b82811115611c06578251825591602001919060010190611beb565b506109369291505b808211156109365760008155600101611c0e565b600067ffffffffffffffff80841115611c3d57611c3d612804565b604051601f8501601f191681016020018281118282101715611c6157611c61612804565b604052848152915081838501861015611c7957600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461047957600080fd5b60008083601f840112611cba578081fd5b50813567ffffffffffffffff811115611cd1578182fd5b6020830191508360208083028501011115611ceb57600080fd5b9250929050565b600060208284031215611d03578081fd5b61110b82611c92565b60008060408385031215611d1e578081fd5b611d2783611c92565b9150611d3560208401611c92565b90509250929050565b600080600060608486031215611d52578081fd5b611d5b84611c92565b9250611d6960208501611c92565b9150604084013590509250925092565b60008060008060808587031215611d8e578081fd5b611d9785611c92565b9350611da560208601611c92565b925060408501359150606085013567ffffffffffffffff811115611dc7578182fd5b8501601f81018713611dd7578182fd5b611de687823560208401611c22565b91505092959194509250565b600080600060408486031215611e06578283fd5b611e0f84611c92565b9250602084013567ffffffffffffffff811115611e2a578283fd5b611e3686828701611ca9565b9497909650939450505050565b60008060408385031215611e55578182fd5b611e5e83611c92565b915060208301358015158114611e72578182fd5b809150509250929050565b60008060408385031215611e8f578182fd5b611e9883611c92565b946020939093013593505050565b60008060008060408587031215611ebb578384fd5b843567ffffffffffffffff80821115611ed2578586fd5b611ede88838901611ca9565b90965094506020870135915080821115611ef6578384fd5b50611f0387828801611ca9565b95989497509550505050565b60008060208385031215611f21578182fd5b823567ffffffffffffffff811115611f37578283fd5b611f4385828601611ca9565b90969095509350505050565b600060208284031215611f60578081fd5b813561110b8161281a565b600060208284031215611f7c578081fd5b815161110b8161281a565b600060208284031215611f98578081fd5b813567ffffffffffffffff811115611fae578182fd5b8201601f81018413611fbe578182fd5b6117a884823560208401611c22565b600060208284031215611fde578081fd5b5035919050565b60008151808452611ffd816020860160208601612742565b601f01601f19169290920160200192915050565b60008351612023818460208801612742565b835190830190612037818360208801612742565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061209790830184611fe5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120d9578351835292840192918401916001016120bd565b50909695505050505050565b901515815260200190565b60006020825261110b6020830184611fe5565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601d908201527f696e73756666696369656e742062616c616e636520666f72206275726e000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526011908201527013585e081b1a5b5a5d081c995858da1959607a1b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526022908201527f4d69736d61746368206265747765656e204164647265737320616e6420636f756040820152611b9d60f21b606082015260800190565b6020808252601690820152751a5b98dbdc9c9958dd081bdddb995c881bd9881b999d60521b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526017908201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b60008219821115612712576127126127d8565b500190565b600082612726576127266127ee565b500490565b60008282101561273d5761273d6127d8565b500390565b60005b8381101561275d578181015183820152602001612745565b838111156110895750506000910152565b60028104600182168061278257607f821691505b602082108114156127a357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127bd576127bd6127d8565b5060010190565b6000826127d3576127d36127ee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113f257600080fdfea2646970667358221220bc2c53286d82bb7dd26af1e797b02c31d160c982911940d4f92593a813dd343264736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063715018a61161011a578063b88d4fde116100ad578063dbe1a1721161007c578063dbe1a17214610408578063e538651a14610410578063e985e9c514610423578063f2fde38b14610436578063f921d83f14610449576101fb565b8063b88d4fde146103c7578063c87b56dd146103da578063d4bba0e9146103ed578063d8710ba3146103f5576101fb565b806395d89b41116100e957806395d89b411461038657806395de7a9e1461038e578063a22cb465146103a1578063aa9dc50c146103b4576101fb565b8063715018a6146103435780638462151c1461034b57806386529a611461036b5780638da5cb5b1461037e576101fb565b80633ccfd60b1161019257806355f804b31161016157806355f804b3146102f75780636352211e1461030a57806367746f4e1461031d57806370a0823114610330576101fb565b80633ccfd60b146102b657806342842e0e146102be5780634df08219146102d15780634f6ccce7146102e4576101fb565b806318160ddd116101ce57806318160ddd1461027357806323b872dd146102885780632f745c591461029b5780633b9e8a57146102ae576101fb565b806301ffc9a71461020057806306fdde0314610229578063081812fc1461023e578063095ea7b31461025e575b600080fd5b61021361020e366004611f4f565b610451565b60405161022091906120e5565b60405180910390f35b61023161047e565b60405161022091906120f0565b61025161024c366004611fcd565b610510565b6040516102209190612050565b61027161026c366004611e7d565b61055c565b005b61027b6105f4565b60405161022091906126f6565b610271610296366004611d3e565b6105fa565b61027b6102a9366004611e7d565b610605565b61027b6106c8565b6102716106ce565b6102716102cc366004611d3e565b610740565b6102716102df366004611ea6565b61075b565b61027b6102f2366004611fcd565b61090e565b610271610305366004611f87565b61093a565b610251610318366004611fcd565b61098c565b61027161032b366004611ea6565b6109e4565b61027b61033e366004611cf2565b610b67565b610271610c04565b61035e610359366004611cf2565b610c4f565b60405161022091906120a1565b610271610379366004611df2565b610d35565b610251610e7a565b610231610e89565b61027161039c366004611f0f565b610e98565b6102716103af366004611e43565b610f49565b6102716103c2366004611fcd565b611017565b6102716103d5366004611d79565b61107d565b6102316103e8366004611fcd565b61108f565b61027b611112565b610271610403366004611fcd565b611118565b61027b61117e565b61027161041e366004611ea6565b611184565b610213610431366004611d0c565b611356565b610271610444366004611cf2565b611384565b61027b6113f5565b60006001600160e01b0319821663780e9d6360e01b14806104765750610476826113fb565b90505b919050565b60606000805461048d9061276e565b80601f01602080910402602001604051908101604052809291908181526020018280546104b99061276e565b80156105065780601f106104db57610100808354040283529160200191610506565b820191906000526020600020905b8154815290600101906020018083116104e957829003601f168201915b5050505050905090565b600061051b8261143b565b6105405760405162461bcd60e51b8152600401610537906124d3565b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006105678261098c565b9050806001600160a01b0316836001600160a01b0316141561059b5760405162461bcd60e51b81526004016105379061262d565b806001600160a01b03166105ad611493565b6001600160a01b031614806105c957506105c981610431611493565b6105e55760405162461bcd60e51b815260040161053790612311565b6105ef8383611497565b505050565b60025490565b6105ef838383611505565b600061061083610b67565b821061062e5760405162461bcd60e51b8152600401610537906125c6565b6000805b6002548110156106a9576002818154811061065d57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610699578382141561068d5791506106c29050565b610696826127a9565b91505b6106a2816127a9565b9050610632565b5060405162461bcd60e51b8152600401610537906125c6565b92915050565b60095481565b6106d6611493565b6001600160a01b03166106e7610e7a565b6001600160a01b03161461070d5760405162461bcd60e51b815260040161053790612548565b6040514790339082156108fc029083906000818181858888f1935050505015801561073c573d6000803e3d6000fd5b5050565b6105ef8383836040518060200160405280600081525061107d565b610763611493565b6001600160a01b0316610774610e7a565b6001600160a01b03161461079a5760405162461bcd60e51b815260040161053790612548565b600260065414156107bd5760405162461bcd60e51b8152600401610537906126bf565b60026006558281146107e15760405162461bcd60e51b81526004016105379061242c565b60005b838110156109025760006107f66105f4565b905060085484848481811061081b57634e487b7160e01b600052603260045260246000fd5b90506020020135600a5461082f91906126ff565b111561084d5760405162461bcd60e51b81526004016105379061236e565b60005b84848481811061087057634e487b7160e01b600052603260045260246000fd5b905060200201358110156108ed576108c58787858181106108a157634e487b7160e01b600052603260045260246000fd5b90506020020160208101906108b69190611cf2565b6108c083856126ff565b61153d565b600a80549060006108d5836127a9565b919050555080806108e5906127a9565b915050610850565b505080806108fa906127a9565b9150506107e4565b50506001600655505050565b60006109186105f4565b82106109365760405162461bcd60e51b8152600401610537906125f6565b5090565b610942611493565b6001600160a01b0316610953610e7a565b6001600160a01b0316146109795760405162461bcd60e51b815260040161053790612548565b805161073c90600b906020840190611b92565b600080600283815481106109b057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03169050806104765760405162461bcd60e51b8152600401610537906123e3565b6109ec611493565b6001600160a01b03166109fd610e7a565b6001600160a01b031614610a235760405162461bcd60e51b815260040161053790612548565b60026006541415610a465760405162461bcd60e51b8152600401610537906126bf565b6002600655828114610a6a5760405162461bcd60e51b81526004016105379061242c565b60005b83811015610902576000610a7f6105f4565b9050600754848484818110610aa457634e487b7160e01b600052603260045260246000fd5b90506020020135600954610ab891906126ff565b1115610ad65760405162461bcd60e51b81526004016105379061236e565b60005b848484818110610af957634e487b7160e01b600052603260045260246000fd5b90506020020135811015610b5257610b2a8787858181106108a157634e487b7160e01b600052603260045260246000fd5b60098054906000610b3a836127a9565b91905055508080610b4a906127a9565b915050610ad9565b50508080610b5f906127a9565b915050610a6d565b60006001600160a01b038216610b8f5760405162461bcd60e51b815260040161053790612399565b600254600090815b81811015610bfb5760028181548110610bc057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610beb57610be8836127a9565b92505b610bf4816127a9565b9050610b97565b50909392505050565b610c0c611493565b6001600160a01b0316610c1d610e7a565b6001600160a01b031614610c435760405162461bcd60e51b815260040161053790612548565b610c4d6000611557565b565b6060610c5a82610b67565b600010610c795760405162461bcd60e51b8152600401610537906125c6565b6000610c8483610b67565b905060008167ffffffffffffffff811115610caf57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610cd8578160200160208202803683370190505b50905060005b82811015610d2d57610cf08582610605565b828281518110610d1057634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d25816127a9565b915050610cde565b509392505050565b610d3d611493565b6001600160a01b0316610d4e610e7a565b6001600160a01b031614610d745760405162461bcd60e51b815260040161053790612548565b60026006541415610d975760405162461bcd60e51b8152600401610537906126bf565b600260065580610da684610b67565b1015610dc45760405162461bcd60e51b81526004016105379061228e565b60005b81811015610e6f57610dfe838383818110610df257634e487b7160e01b600052603260045260246000fd5b9050602002013561098c565b6001600160a01b0316846001600160a01b031614610e2e5760405162461bcd60e51b81526004016105379061246e565b610e5d838383818110610e5157634e487b7160e01b600052603260045260246000fd5b905060200201356115a9565b80610e67816127a9565b915050610dc7565b505060016006555050565b6005546001600160a01b031690565b60606001805461048d9061276e565b610ea0611493565b6001600160a01b0316610eb1610e7a565b6001600160a01b031614610ed75760405162461bcd60e51b815260040161053790612548565b60026006541415610efa5760405162461bcd60e51b8152600401610537906126bf565b600260065560005b81811015610f3f57610f2d838383818110610e5157634e487b7160e01b600052603260045260246000fd5b80610f37816127a9565b915050610f02565b5050600160065550565b610f51611493565b6001600160a01b0316826001600160a01b03161415610f825760405162461bcd60e51b815260040161053790612257565b8060046000610f8f611493565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fd3611493565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161100b91906120e5565b60405180910390a35050565b61101f611493565b6001600160a01b0316611030610e7a565b6001600160a01b0316146110565760405162461bcd60e51b815260040161053790612548565b600a548110156110785760405162461bcd60e51b81526004016105379061251f565b600855565b61108984848484611645565b50505050565b606061109a8261143b565b6110b65760405162461bcd60e51b815260040161053790612103565b60006110c061167e565b905060008151116110e0576040518060200160405280600081525061110b565b806110ea8461168d565b6040516020016110fb929190612011565b6040516020818303038152906040525b9392505050565b60085481565b611120611493565b6001600160a01b0316611131610e7a565b6001600160a01b0316146111575760405162461bcd60e51b815260040161053790612548565b6009548110156111795760405162461bcd60e51b81526004016105379061251f565b600755565b60075481565b61118c611493565b6001600160a01b031661119d610e7a565b6001600160a01b0316146111c35760405162461bcd60e51b815260040161053790612548565b600260065414156111e65760405162461bcd60e51b8152600401610537906126bf565b600260065582811461120a5760405162461bcd60e51b81526004016105379061242c565b60005b838110156109025782828281811061123557634e487b7160e01b600052603260045260246000fd5b9050602002013561127486868481811061125f57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061033e9190611cf2565b10156112925760405162461bcd60e51b81526004016105379061228e565b60006112cc8686848181106112b757634e487b7160e01b600052603260045260246000fd5b90506020020160208101906103599190611cf2565b905060005b8484848181106112f157634e487b7160e01b600052603260045260246000fd5b905060200201358110156113415761132f82828151811061132257634e487b7160e01b600052603260045260246000fd5b60200260200101516115a9565b80611339816127a9565b9150506112d1565b5050808061134e906127a9565b91505061120d565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b61138c611493565b6001600160a01b031661139d610e7a565b6001600160a01b0316146113c35760405162461bcd60e51b815260040161053790612548565b6001600160a01b0381166113e95760405162461bcd60e51b815260040161053790612196565b6113f281611557565b50565b600a5481565b60006001600160e01b031982166380ac58cd60e01b148061142c57506001600160e01b03198216635b5e139f60e01b145b806104765750610476826117b0565b60025460009082108015610476575060006001600160a01b03166002838154811061147657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114cc8261098c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611516611510611493565b826117c9565b6115325760405162461bcd60e51b81526004016105379061266e565b6105ef838383611846565b61073c828260405180602001604052806000815250611937565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006115b48261098c565b90506115c2816000846105ef565b6115cd600083611497565b6000600283815481106115f057634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611656611650611493565b836117c9565b6116725760405162461bcd60e51b81526004016105379061266e565b6110898484848461196a565b6060600b805461048d9061276e565b6060816116b257506040805180820190915260018152600360fc1b6020820152610479565b8160005b81156116dc57806116c6816127a9565b91506116d59050600a83612717565b91506116b6565b60008167ffffffffffffffff81111561170557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561172f576020820181803683370190505b5090505b84156117a85761174460018361272b565b9150611751600a866127c4565b61175c9060306126ff565b60f81b81838151811061177f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117a1600a86612717565b9450611733565b949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b60006117d48261143b565b6117f05760405162461bcd60e51b8152600401610537906122c5565b60006117fb8361098c565b9050806001600160a01b0316846001600160a01b031614806118365750836001600160a01b031661182b84610510565b6001600160a01b0316145b806117a857506117a88185611356565b826001600160a01b03166118598261098c565b6001600160a01b03161461187f5760405162461bcd60e51b81526004016105379061257d565b6001600160a01b0382166118a55760405162461bcd60e51b815260040161053790612213565b6118b08383836105ef565b6118bb600082611497565b81600282815481106118dd57634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611941838361199d565b61194e6000848484611a71565b6105ef5760405162461bcd60e51b815260040161053790612144565b611975848484611846565b61198184848484611a71565b6110895760405162461bcd60e51b815260040161053790612144565b6001600160a01b0382166119c35760405162461bcd60e51b81526004016105379061249e565b6119cc8161143b565b156119e95760405162461bcd60e51b8152600401610537906121dc565b6119f5600083836105ef565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611a85846001600160a01b0316611b8c565b15611b8157836001600160a01b031663150b7a02611aa1611493565b8786866040518563ffffffff1660e01b8152600401611ac39493929190612064565b602060405180830381600087803b158015611add57600080fd5b505af1925050508015611b0d575060408051601f3d908101601f19168201909252611b0a91810190611f6b565b60015b611b67573d808015611b3b576040519150601f19603f3d011682016040523d82523d6000602084013e611b40565b606091505b508051611b5f5760405162461bcd60e51b815260040161053790612144565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117a8565b506001949350505050565b3b151590565b828054611b9e9061276e565b90600052602060002090601f016020900481019282611bc05760008555611c06565b82601f10611bd957805160ff1916838001178555611c06565b82800160010185558215611c06579182015b82811115611c06578251825591602001919060010190611beb565b506109369291505b808211156109365760008155600101611c0e565b600067ffffffffffffffff80841115611c3d57611c3d612804565b604051601f8501601f191681016020018281118282101715611c6157611c61612804565b604052848152915081838501861015611c7957600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461047957600080fd5b60008083601f840112611cba578081fd5b50813567ffffffffffffffff811115611cd1578182fd5b6020830191508360208083028501011115611ceb57600080fd5b9250929050565b600060208284031215611d03578081fd5b61110b82611c92565b60008060408385031215611d1e578081fd5b611d2783611c92565b9150611d3560208401611c92565b90509250929050565b600080600060608486031215611d52578081fd5b611d5b84611c92565b9250611d6960208501611c92565b9150604084013590509250925092565b60008060008060808587031215611d8e578081fd5b611d9785611c92565b9350611da560208601611c92565b925060408501359150606085013567ffffffffffffffff811115611dc7578182fd5b8501601f81018713611dd7578182fd5b611de687823560208401611c22565b91505092959194509250565b600080600060408486031215611e06578283fd5b611e0f84611c92565b9250602084013567ffffffffffffffff811115611e2a578283fd5b611e3686828701611ca9565b9497909650939450505050565b60008060408385031215611e55578182fd5b611e5e83611c92565b915060208301358015158114611e72578182fd5b809150509250929050565b60008060408385031215611e8f578182fd5b611e9883611c92565b946020939093013593505050565b60008060008060408587031215611ebb578384fd5b843567ffffffffffffffff80821115611ed2578586fd5b611ede88838901611ca9565b90965094506020870135915080821115611ef6578384fd5b50611f0387828801611ca9565b95989497509550505050565b60008060208385031215611f21578182fd5b823567ffffffffffffffff811115611f37578283fd5b611f4385828601611ca9565b90969095509350505050565b600060208284031215611f60578081fd5b813561110b8161281a565b600060208284031215611f7c578081fd5b815161110b8161281a565b600060208284031215611f98578081fd5b813567ffffffffffffffff811115611fae578182fd5b8201601f81018413611fbe578182fd5b6117a884823560208401611c22565b600060208284031215611fde578081fd5b5035919050565b60008151808452611ffd816020860160208601612742565b601f01601f19169290920160200192915050565b60008351612023818460208801612742565b835190830190612037818360208801612742565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061209790830184611fe5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120d9578351835292840192918401916001016120bd565b50909695505050505050565b901515815260200190565b60006020825261110b6020830184611fe5565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601d908201527f696e73756666696369656e742062616c616e636520666f72206275726e000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526011908201527013585e081b1a5b5a5d081c995858da1959607a1b604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526022908201527f4d69736d61746368206265747765656e204164647265737320616e6420636f756040820152611b9d60f21b606082015260800190565b6020808252601690820152751a5b98dbdc9c9958dd081bdddb995c881bd9881b999d60521b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526017908201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b60008219821115612712576127126127d8565b500190565b600082612726576127266127ee565b500490565b60008282101561273d5761273d6127d8565b500390565b60005b8381101561275d578181015183820152602001612745565b838111156110895750506000910152565b60028104600182168061278257607f821691505b602082108114156127a357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127bd576127bd6127d8565b5060010190565b6000826127d3576127d36127ee565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113f257600080fdfea2646970667358221220bc2c53286d82bb7dd26af1e797b02c31d160c982911940d4f92593a813dd343264736f6c63430008000033

Deployed Bytecode Sourcemap

30986:3940:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28308:225;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22427:100;;;:::i;:::-;;;;;;;:::i;23061:221::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22643:412::-;;;;;;:::i;:::-;;:::i;:::-;;29469:110;;;:::i;:::-;;;;;;;:::i;33970:145::-;;;;;;:::i;:::-;;:::i;28539:500::-;;;;;;:::i;:::-;;:::i;31166:29::-;;;:::i;34309:145::-;;;:::i;24104:185::-;;;;;;:::i;:::-;;:::i;31435:503::-;;;;;;:::i;:::-;;:::i;29585:194::-;;;;;;:::i;:::-;;:::i;34460:104::-;;;;;;:::i;:::-;;:::i;22182:239::-;;;;;;:::i;:::-;;:::i;31944:499::-;;;;;;:::i;:::-;;:::i;21754:422::-;;;;;;:::i;:::-;;:::i;1363:94::-;;;:::i;29045:418::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;32947:460::-;;;;;;:::i;:::-;;:::i;712:87::-;;;:::i;22533:104::-;;;:::i;33413:186::-;;;;;;:::i;:::-;;:::i;23288:295::-;;;;;;:::i;:::-;;:::i;34748:175::-;;;;;;:::i;:::-;;:::i;34123:180::-;;;;;;:::i;:::-;;:::i;33608:353::-;;;;;;:::i;:::-;;:::i;31125:34::-;;;:::i;34570:172::-;;;;;;:::i;:::-;;:::i;31087:34::-;;;:::i;32449:492::-;;;;;;:::i;:::-;;:::i;23589:164::-;;;;;;:::i;:::-;;:::i;1612:192::-;;;;;;:::i;:::-;;:::i;31199: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;29469:110::-;29557:7;:14;29469:110;:::o;33970:145::-;34065:42;34086:5;34093:3;34098:8;34065:20;:42::i;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;31166:29::-;;;;:::o;34309:145::-;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;:::-;34409:37:::1;::::0;34377:21:::1;::::0;34417:10:::1;::::0;34409:37;::::1;;;::::0;34377:21;;34359:15:::1;34409:37:::0;34359:15;34409:37;34377:21;34417:10;34409:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1003:1;34309:145::o:0;24104:185::-;24242:39;24259:4;24265:2;24269:7;24242:39;;;;;;;;;;;;:16;:39::i;31435:503::-;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;:::-;4823:1:::1;5419:7;;:19;;5411:63;;;;-1:-1:-1::0;;;5411:63:0::1;;;;;;;:::i;:::-;4823:1;5552:7;:18:::0;31561:27;;::::2;31553:73;;;;-1:-1:-1::0;;;31553:73:0::2;;;;;;;:::i;:::-;31635:6;31631:300;31645:14:::0;;::::2;31631:300;;;31674:19;31696:13;:11;:13::i;:::-;31674:35;;31763:12;;31750:6;;31757:1;31750:9;;;;;-1:-1:-1::0;;;31750:9:0::2;;;;;;;;;;;;;;;31732:15;;:27;;;;:::i;:::-;:43;;31718:90;;;;-1:-1:-1::0;;;31718:90:0::2;;;;;;;:::i;:::-;31819:9;31814:112;31838:6;;31845:1;31838:9;;;;;-1:-1:-1::0;;;31838:9:0::2;;;;;;;;;;;;;;;31834:1;:13;31814:112;;;31861:34;31871:3;;31875:1;31871:6;;;;;-1:-1:-1::0;;;31871:6:0::2;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31879:15;31893:1:::0;31879:11;:15:::2;:::i;:::-;31861:9;:34::i;:::-;31902:15;:17:::0;;;:15:::2;:17;::::0;::::2;:::i;:::-;;;;;;31849:3;;;;;:::i;:::-;;;;31814:112;;;;31631:300;31661:3;;;;;:::i;:::-;;;;31631:300;;;-1:-1:-1::0;;4779:1:0::1;5731:7;:22:::0;-1:-1:-1;;;31435:503:0: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;34460:104::-;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;:::-;34536: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;31944:499::-;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;:::-;4823:1:::1;5419:7;;:19;;5411:63;;;;-1:-1:-1::0;;;5411:63:0::1;;;;;;;:::i;:::-;4823:1;5552:7;:18:::0;32069:27;;::::2;32061:73;;;;-1:-1:-1::0;;;32061:73:0::2;;;;;;;:::i;:::-;32143:6;32139:297;32153:14:::0;;::::2;32139:297;;;32182:19;32204:13;:11;:13::i;:::-;32182:35;;32270:11;;32257:6;;32264:1;32257:9;;;;;-1:-1:-1::0;;;32257:9:0::2;;;;;;;;;;;;;;;32240:14;;:26;;;;:::i;:::-;:41;;32226:88;;;;-1:-1:-1::0;;;32226:88:0::2;;;;;;;:::i;:::-;32325:9;32320:111;32344:6;;32351:1;32344:9;;;;;-1:-1:-1::0;;;32344:9:0::2;;;;;;;;;;;;;;;32340:1;:13;32320:111;;;32367:34;32377:3;;32381:1;32377:6;;;;;-1:-1:-1::0;;;32377:6:0::2;;;;;;;;32367:34;32408:14;:16:::0;;;:14:::2;:16;::::0;::::2;:::i;:::-;;;;;;32355:3;;;;;:::i;:::-;;;;32320:111;;;;32139:297;32169:3;;;;;:::i;:::-;;;;32139:297;;21754:422:::0;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;32947:460::-;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;:::-;4823:1:::1;5419:7;;:19;;5411:63;;;;-1:-1:-1::0;;;5411:63:0::1;;;;;;;:::i;:::-;4823:1;5552:7;:18:::0;33096:8;33074:18:::2;33084:7:::0;33074:9:::2;:18::i;:::-;:37;;33052:117;;;;-1:-1:-1::0;;;33052:117:0::2;;;;;;;:::i;:::-;33185:9;33180:220;33200:19:::0;;::::2;33180:220;;;33277:20;33285:8;;33294:1;33285:11;;;;;-1:-1:-1::0;;;33285:11:0::2;;;;;;;;;;;;;;;33277:7;:20::i;:::-;-1:-1:-1::0;;;;;33266:31:0::2;:7;-1:-1:-1::0;;;;;33266:31:0::2;;33241:114;;;;-1:-1:-1::0;;;33241:114:0::2;;;;;;;:::i;:::-;33370:18;33376:8;;33385:1;33376:11;;;;;-1:-1:-1::0;;;33376:11:0::2;;;;;;;;;;;;;;;33370:5;:18::i;:::-;33221:3:::0;::::2;::::0;::::2;:::i;:::-;;;;33180:220;;;-1:-1:-1::0;;4779:1:0::1;5731:7;:22:::0;-1:-1:-1;;32947:460:0:o;712:87::-;785:6;;-1:-1:-1;;;;;785:6:0;712:87;:::o;22533:104::-;22589:13;22622:7;22615:14;;;;;:::i;33413:186::-;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;:::-;4823:1:::1;5419:7;;:19;;5411:63;;;;-1:-1:-1::0;;;5411:63:0::1;;;;;;;:::i;:::-;4823:1;5552:7;:18:::0;33506:9:::2;33501:91;33521:19:::0;;::::2;33501:91;;;33562:18;33568:8;;33577:1;33568:11;;;;;-1:-1:-1::0;;;33568:11:0::2;;;;;;;;33562:18;33542:3:::0;::::2;::::0;::::2;:::i;:::-;;;;33501:91;;;-1:-1:-1::0;;4779:1:0::1;5731:7;:22:::0;-1:-1:-1;33413:186:0:o;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;34748:175::-;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;:::-;34845:15:::1;;34832:9;:28;;34824:56;;;;-1:-1:-1::0;;;34824:56:0::1;;;;;;;:::i;:::-;34891:12;:24:::0;34748:175::o;34123:180::-;34242:53;34267:5;34274:3;34279:8;34289:5;34242:24;:53::i;:::-;34123:180;;;;:::o;33608:353::-;33684:13;33718:17;33726:8;33718:7;:17::i;:::-;33710:63;;;;-1:-1:-1;;;33710:63:0;;;;;;;:::i;:::-;33784:28;33815:10;:8;:10::i;:::-;33784:41;;33874:1;33849:14;33843:28;:32;:110;;;;;;;;;;;;;;;;;33902:14;33918:19;:8;:17;:19::i;:::-;33885:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33843:110;33836:117;33608:353;-1:-1:-1;;;33608:353:0:o;31125:34::-;;;;:::o;34570:172::-;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;:::-;34666:14:::1;;34653:9;:27;;34645:55;;;;-1:-1:-1::0;;;34645:55:0::1;;;;;;;:::i;:::-;34711:11;:23:::0;34570:172::o;31087:34::-;;;;:::o;32449:492::-;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;:::-;4823:1:::1;5419:7;;:19;;5411:63;;;;-1:-1:-1::0;;;5411:63:0::1;;;;;;;:::i;:::-;4823:1;5552:7;:18:::0;32576:31;;::::2;32568:77;;;;-1:-1:-1::0;;;32568:77:0::2;;;;;;;:::i;:::-;32654:6;32650:284;32664:18:::0;;::::2;32650:284;;;32738:6;;32745:1;32738:9;;;;;-1:-1:-1::0;;;32738:9:0::2;;;;;;;;;;;;;;;32713:21;32723:7;;32731:1;32723:10;;;;;-1:-1:-1::0;;;32723:10:0::2;;;;;;;;;;;;;;;;;;;;;;:::i;32713:21::-;:34;;32697:97;;;;-1:-1:-1::0;;;32697:97:0::2;;;;;;;:::i;:::-;32800:24;32827:25;32841:7;;32849:1;32841:10;;;;;-1:-1:-1::0;;;32841:10:0::2;;;;;;;;;;;;;;;;;;;;;;:::i;32827:25::-;32800:52;;32863:9;32858:71;32882:6;;32889:1;32882:9;;;;;-1:-1:-1::0;;;32882:9:0::2;;;;;;;;;;;;;;;32878:1;:13;32858:71;;;32905:17;32911:7;32919:1;32911:10;;;;;;-1:-1:-1::0;;;32911:10:0::2;;;;;;;;;;;;;;;32905:5;:17::i;:::-;32893:3:::0;::::2;::::0;::::2;:::i;:::-;;;;32858:71;;;;32650:284;32684:3;;;;;:::i;:::-;;;;32650:284;;23589:164:::0;-1:-1:-1;;;;;23710:25:0;;;23686:4;23710:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23589: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;31199: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;25466:110::-;25542:26;25552:2;25556:7;25542:26;;;;;;;;;;;;:9;:26::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;26261:333::-;26321:13;26337:24;26353:7;26337:15;:24::i;:::-;26321:40;;26374:48;26395:5;26410:1;26414:7;26374:20;:48::i;:::-;26463:29;26480:1;26484:7;26463:8;:29::i;:::-;26530:1;26503:7;26511;26503:16;;;;;;-1:-1:-1;;;26503:16:0;;;;;;;;;;;;;;;;;:29;;-1:-1:-1;;;;;;26503:29:0;-1:-1:-1;;;;;26503:29:0;;;;;;26550:36;;26578:7;;26550:36;;;;;26503:16;;26550:36;26261:333;;:::o;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;31330:99::-;31381:13;31414:7;31407: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:400;;;939:3;932:4;924:6;920:17;916:27;906:2;;962:6;954;947:22;906:2;-1:-1:-1;990:20:1;;1033:18;1022:30;;1019:2;;;1072:8;1062;1055:26;1019:2;1116:4;1108:6;1104:17;1092:29;;1179:3;1172:4;1164;1156:6;1152:17;1144:6;1140:30;1136:41;1133:50;1130:2;;;1196:1;1193;1186:12;1130:2;896:310;;;;;:::o;1211:198::-;;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:31;1393:9;1372:31;:::i;1414:274::-;;;1543:2;1531:9;1522:7;1518:23;1514:32;1511:2;;;1564:6;1556;1549:22;1511:2;1592:31;1613:9;1592:31;:::i;:::-;1582:41;;1642:40;1678:2;1667:9;1663:18;1642:40;:::i;:::-;1632:50;;1501:187;;;;;:::o;1693:342::-;;;;1839:2;1827:9;1818:7;1814:23;1810:32;1807:2;;;1860:6;1852;1845:22;1807:2;1888:31;1909:9;1888:31;:::i;:::-;1878:41;;1938:40;1974:2;1963:9;1959:18;1938:40;:::i;:::-;1928:50;;2025:2;2014:9;2010:18;1997:32;1987:42;;1797:238;;;;;:::o;2040:702::-;;;;;2212:3;2200:9;2191:7;2187:23;2183:33;2180:2;;;2234:6;2226;2219:22;2180:2;2262:31;2283:9;2262:31;:::i;:::-;2252:41;;2312:40;2348:2;2337:9;2333:18;2312:40;:::i;:::-;2302:50;;2399:2;2388:9;2384:18;2371:32;2361:42;;2454:2;2443:9;2439:18;2426:32;2481:18;2473:6;2470:30;2467:2;;;2518:6;2510;2503:22;2467:2;2546:22;;2599:4;2591:13;;2587:27;-1:-1:-1;2577:2:1;;2633:6;2625;2618:22;2577:2;2661:75;2728:7;2723:2;2710:16;2705:2;2701;2697:11;2661:75;:::i;:::-;2651:85;;;2170:572;;;;;;;:::o;2747:539::-;;;;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;;3042:2;3031:9;3027:18;3014:32;3069:18;3061:6;3058:30;3055:2;;;3106:6;3098;3091:22;3055:2;3150:76;3218:7;3209:6;3198:9;3194:22;3150:76;:::i;:::-;2869:417;;3245:8;;-1:-1:-1;3124:102:1;;-1:-1:-1;;;;2869:417:1:o;3291:369::-;;;3417:2;3405:9;3396:7;3392:23;3388:32;3385:2;;;3438:6;3430;3423:22;3385:2;3466:31;3487:9;3466:31;:::i;:::-;3456:41;;3547:2;3536:9;3532:18;3519:32;3594:5;3587:13;3580:21;3573:5;3570:32;3560:2;;3621:6;3613;3606:22;3560:2;3649:5;3639:15;;;3375:285;;;;;:::o;3665:266::-;;;3794:2;3782:9;3773:7;3769:23;3765:32;3762:2;;;3815:6;3807;3800:22;3762:2;3843:31;3864:9;3843:31;:::i;:::-;3833:41;3921:2;3906:18;;;;3893:32;;-1:-1:-1;;;3752:179:1:o;3936:815::-;;;;;4135:2;4123:9;4114:7;4110:23;4106:32;4103:2;;;4156:6;4148;4141:22;4103:2;4201:9;4188:23;4230:18;4271:2;4263:6;4260:14;4257:2;;;4292:6;4284;4277:22;4257:2;4336:76;4404:7;4395:6;4384:9;4380:22;4336:76;:::i;:::-;4431:8;;-1:-1:-1;4310:102:1;-1:-1:-1;4519:2:1;4504:18;;4491:32;;-1:-1:-1;4535:16:1;;;4532:2;;;4569:6;4561;4554:22;4532:2;;4613:78;4683:7;4672:8;4661:9;4657:24;4613:78;:::i;:::-;4093:658;;;;-1:-1:-1;4710:8:1;-1:-1:-1;;;;4093:658:1:o;4756:463::-;;;4903:2;4891:9;4882:7;4878:23;4874:32;4871:2;;;4924:6;4916;4909:22;4871:2;4969:9;4956:23;5002:18;4994:6;4991:30;4988:2;;;5039:6;5031;5024:22;4988:2;5083:76;5151:7;5142:6;5131:9;5127:22;5083:76;:::i;:::-;5178:8;;5057:102;;-1:-1:-1;4861:358:1;-1:-1:-1;;;;4861:358:1:o;5224:257::-;;5335:2;5323:9;5314:7;5310:23;5306:32;5303:2;;;5356:6;5348;5341:22;5303:2;5400:9;5387:23;5419:32;5445:5;5419:32;:::i;5486:261::-;;5608:2;5596:9;5587:7;5583:23;5579:32;5576:2;;;5629:6;5621;5614:22;5576:2;5666:9;5660:16;5685:32;5711:5;5685:32;:::i;5752:482::-;;5874:2;5862:9;5853:7;5849:23;5845:32;5842:2;;;5895:6;5887;5880:22;5842:2;5940:9;5927:23;5973:18;5965:6;5962:30;5959:2;;;6010:6;6002;5995:22;5959:2;6038:22;;6091:4;6083:13;;6079:27;-1:-1:-1;6069:2:1;;6125:6;6117;6110:22;6069:2;6153:75;6220:7;6215:2;6202:16;6197:2;6193;6189:11;6153:75;:::i;6239:190::-;;6351:2;6339:9;6330:7;6326:23;6322:32;6319:2;;;6372:6;6364;6357:22;6319:2;-1:-1:-1;6400:23:1;;6309:120;-1:-1:-1;6309:120:1:o;6434:259::-;;6515:5;6509:12;6542:6;6537:3;6530:19;6558:63;6614:6;6607:4;6602:3;6598:14;6591:4;6584:5;6580:16;6558:63;:::i;:::-;6675:2;6654:15;-1:-1:-1;;6650:29:1;6641:39;;;;6682:4;6637:50;;6485:208;-1:-1:-1;;6485:208:1:o;6698:637::-;;7016:6;7010:13;7032:53;7078:6;7073:3;7066:4;7058:6;7054:17;7032:53;:::i;:::-;7148:13;;7107:16;;;;7170:57;7148:13;7107:16;7204:4;7192:17;;7170:57;:::i;:::-;-1:-1:-1;;;7249:20:1;;7278:22;;;7327:1;7316:13;;6986:349;-1:-1:-1;;;;6986:349:1:o;7340:203::-;-1:-1:-1;;;;;7504:32:1;;;;7486:51;;7474:2;7459:18;;7441:102::o;7548:490::-;-1:-1:-1;;;;;7817:15:1;;;7799:34;;7869:15;;7864:2;7849:18;;7842:43;7916:2;7901:18;;7894:34;;;7964:3;7959:2;7944:18;;7937:31;;;7548:490;;7985:47;;8012:19;;8004:6;7985:47;:::i;:::-;7977:55;7751:287;-1:-1:-1;;;;;;7751:287:1:o;8043:635::-;8214:2;8266:21;;;8336:13;;8239:18;;;8358:22;;;8043:635;;8214:2;8437:15;;;;8411:2;8396:18;;;8043:635;8483:169;8497:6;8494:1;8491:13;8483:169;;;8558:13;;8546:26;;8627:15;;;;8592:12;;;;8519:1;8512:9;8483:169;;;-1:-1:-1;8669:3:1;;8194:484;-1:-1:-1;;;;;;8194:484:1:o;8683:187::-;8848:14;;8841:22;8823:41;;8811:2;8796:18;;8778:92::o;8875:221::-;;9024:2;9013:9;9006:21;9044:46;9086:2;9075:9;9071:18;9063:6;9044:46;:::i;9101:397::-;9303:2;9285:21;;;9342:2;9322:18;;;9315:30;9381:34;9376:2;9361:18;;9354:62;-1:-1:-1;;;9447:2:1;9432:18;;9425:31;9488:3;9473:19;;9275:223::o;9503:414::-;9705:2;9687:21;;;9744:2;9724:18;;;9717:30;9783:34;9778:2;9763:18;;9756:62;-1:-1:-1;;;9849:2:1;9834:18;;9827:48;9907:3;9892:19;;9677:240::o;9922:402::-;10124:2;10106:21;;;10163:2;10143:18;;;10136:30;10202:34;10197:2;10182:18;;10175:62;-1:-1:-1;;;10268:2:1;10253:18;;10246:36;10314:3;10299:19;;10096:228::o;10329:352::-;10531:2;10513:21;;;10570:2;10550:18;;;10543:30;10609;10604:2;10589:18;;10582:58;10672:2;10657:18;;10503:178::o;10686:400::-;10888:2;10870:21;;;10927:2;10907:18;;;10900:30;10966:34;10961:2;10946:18;;10939:62;-1:-1:-1;;;11032:2:1;11017:18;;11010:34;11076:3;11061:19;;10860:226::o;11091:349::-;11293:2;11275:21;;;11332:2;11312:18;;;11305:30;11371:27;11366:2;11351:18;;11344:55;11431:2;11416:18;;11265:175::o;11445:353::-;11647:2;11629:21;;;11686:2;11666:18;;;11659:30;11725:31;11720:2;11705:18;;11698:59;11789:2;11774:18;;11619:179::o;11803:408::-;12005:2;11987:21;;;12044:2;12024:18;;;12017:30;12083:34;12078:2;12063:18;;12056:62;-1:-1:-1;;;12149:2:1;12134:18;;12127:42;12201:3;12186:19;;11977:234::o;12216:420::-;12418:2;12400:21;;;12457:2;12437:18;;;12430:30;12496:34;12491:2;12476:18;;12469:62;12567:26;12562:2;12547:18;;12540:54;12626:3;12611:19;;12390:246::o;12641:341::-;12843:2;12825:21;;;12882:2;12862:18;;;12855:30;-1:-1:-1;;;12916:2:1;12901:18;;12894:47;12973:2;12958:18;;12815:167::o;12987:406::-;13189:2;13171:21;;;13228:2;13208:18;;;13201:30;13267:34;13262:2;13247:18;;13240:62;-1:-1:-1;;;13333:2:1;13318:18;;13311:40;13383:3;13368:19;;13161:232::o;13398:405::-;13600:2;13582:21;;;13639:2;13619:18;;;13612:30;13678:34;13673:2;13658:18;;13651:62;-1:-1:-1;;;13744:2:1;13729:18;;13722:39;13793:3;13778:19;;13572:231::o;13808:398::-;14010:2;13992:21;;;14049:2;14029:18;;;14022:30;14088:34;14083:2;14068:18;;14061:62;-1:-1:-1;;;14154:2:1;14139:18;;14132:32;14196:3;14181:19;;13982:224::o;14211:346::-;14413:2;14395:21;;;14452:2;14432:18;;;14425:30;-1:-1:-1;;;14486:2:1;14471:18;;14464:52;14548:2;14533:18;;14385:172::o;14562:356::-;14764:2;14746:21;;;14783:18;;;14776:30;14842:34;14837:2;14822:18;;14815:62;14909:2;14894:18;;14736:182::o;14923:408::-;15125:2;15107:21;;;15164:2;15144:18;;;15137:30;15203:34;15198:2;15183:18;;15176:62;-1:-1:-1;;;15269:2:1;15254:18;;15247:42;15321:3;15306:19;;15097:234::o;15336:339::-;15538:2;15520:21;;;15577:2;15557:18;;;15550:30;-1:-1:-1;;;15611:2:1;15596:18;;15589:45;15666:2;15651:18;;15510:165::o;15680:356::-;15882:2;15864:21;;;15901:18;;;15894:30;15960:34;15955:2;15940:18;;15933:62;16027:2;16012:18;;15854:182::o;16041:405::-;16243:2;16225:21;;;16282:2;16262:18;;;16255:30;16321:34;16316:2;16301:18;;16294:62;-1:-1:-1;;;16387:2:1;16372:18;;16365:39;16436:3;16421:19;;16215:231::o;16451:346::-;16653:2;16635:21;;;16692:2;16672:18;;;16665:30;-1:-1:-1;;;16726:2:1;16711:18;;16704:52;16788:2;16773:18;;16625:172::o;16802:347::-;17004:2;16986:21;;;17043:2;17023:18;;;17016:30;17082:25;17077:2;17062:18;;17055:53;17140:2;17125:18;;16976:173::o;17154:397::-;17356:2;17338:21;;;17395:2;17375:18;;;17368:30;17434:34;17429:2;17414:18;;17407:62;-1:-1:-1;;;17500:2:1;17485:18;;17478:31;17541:3;17526:19;;17328:223::o;17556:413::-;17758:2;17740:21;;;17797:2;17777:18;;;17770:30;17836:34;17831:2;17816:18;;17809:62;-1:-1:-1;;;17902:2:1;17887:18;;17880:47;17959:3;17944:19;;17730:239::o;17974:355::-;18176:2;18158:21;;;18215:2;18195:18;;;18188:30;18254:33;18249:2;18234:18;;18227:61;18320:2;18305:18;;18148:181::o;18334:177::-;18480:25;;;18468:2;18453:18;;18435:76::o;18516:128::-;;18587:1;18583:6;18580:1;18577:13;18574:2;;;18593:18;;:::i;:::-;-1:-1:-1;18629:9:1;;18564:80::o;18649:120::-;;18715:1;18705:2;;18720:18;;:::i;:::-;-1:-1:-1;18754:9:1;;18695:74::o;18774:125::-;;18842:1;18839;18836:8;18833:2;;;18847:18;;:::i;:::-;-1:-1:-1;18884:9:1;;18823:76::o;18904:258::-;18976:1;18986:113;19000:6;18997:1;18994:13;18986:113;;;19076:11;;;19070:18;19057:11;;;19050:39;19022:2;19015:10;18986:113;;;19117:6;19114:1;19111:13;19108:2;;;-1:-1:-1;;19152:1:1;19134:16;;19127:27;18957:205::o;19167:380::-;19252:1;19242:12;;19299:1;19289:12;;;19310:2;;19364:4;19356:6;19352:17;19342:27;;19310:2;19417;19409:6;19406:14;19386:18;19383:38;19380:2;;;19463:10;19458:3;19454:20;19451:1;19444:31;19498:4;19495:1;19488:15;19526:4;19523:1;19516:15;19380:2;;19222:325;;;:::o;19552:135::-;;-1:-1:-1;;19612:17:1;;19609:2;;;19632:18;;:::i;:::-;-1:-1:-1;19679:1:1;19668:13;;19599:88::o;19692:112::-;;19750:1;19740:2;;19755:18;;:::i;:::-;-1:-1:-1;19789:9:1;;19730:74::o;19809:127::-;19870:10;19865:3;19861:20;19858:1;19851:31;19901:4;19898:1;19891:15;19925:4;19922:1;19915:15;19941:127;20002:10;19997:3;19993:20;19990:1;19983:31;20033:4;20030:1;20023:15;20057:4;20054:1;20047:15;20073:127;20134:10;20129:3;20125:20;20122:1;20115:31;20165:4;20162:1;20155:15;20189:4;20186:1;20179:15;20205:133;-1:-1:-1;;;;;;20281:32:1;;20271:43;;20261:2;;20328:1;20325;20318:12

Swarm Source

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