ETH Price: $3,274.80 (-3.98%)
Gas: 13 Gwei

Token

Ghidorah Godz (GG)
 

Overview

Max Total Supply

5,999 GG

Holders

2,125

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
streetwolf.eth
Balance
2 GG
0x3Bbc58FB15BDA7b208BD415AaEb3a8455a4c29Bf
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:
GhidorahGodz

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/IWagyu.sol


pragma solidity ^0.8.4;

interface IWagyu {
    function mint(address user, uint256 amount) external;
    function burn(address user, uint256 amount) external;
    function setController(address controller, bool authorized) external;
    function setAuthorizedAddress(address authorizedAddress, bool authorized) external;
}
// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol



pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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



pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: contracts/gg.sol


pragma solidity ^0.8.4;






contract GhidorahGodz is ERC721, Ownable {
    using Strings for uint256;

    uint256 public constant SALE_MAX = 5944;
    uint256 public constant GIFT_MAX = 55;
    uint256 public constant EGG_MAX = 4000;
    uint256 public constant GG_PB_PRICE = 0.045 ether;
    uint256 public constant GG_PS_PRICE = 0.035 ether;
    uint256 public constant PER_MINT = 6;
    uint256 public constant PER_PRESALE = 2;
    address public constant PAYOUT_ADDRESS = 0x4E02BBBd1c318101FFA76645FF6B074aC68cf8be;
    address public constant DEV_ADDRESS = 0x411f92E47FB4Af1834D3ac651daa47D5f2B2417f;

    mapping(address => uint256) public presalerPurchases;
    mapping(string => bool) private _nonces;
    mapping(uint256 => uint256) private lastClaimedAt;
    
    string private _tokenBaseURI = "https://ghidorahgodz.com/api/metadata/";
    address private _signerAddress = 0xf11DD62Abe61bBE59fafe29bbaA9A6A085EAeda2;
    IWagyu private _wagyuToken;
    uint256[24] genesisTokenData;

    uint256 public wagyuPerDay = 10 ether;
    uint256 public wagyuStartTime = 1643641200;
    uint256 public totalSupply;
    uint256 public publicCounter;
    uint256 public privateCounter;
    uint256 public giftCounter;
    uint256 public eggCounter;
    bool public saleLive;
    bool public presaleLive;
    bool public wagyuLive;
    mapping(uint256 => bool) public revealed;
    
    constructor() ERC721("Ghidorah Godz", "GG") {}
    
    function verifyTransaction(address sender, uint256 amount, string calldata nonce, bytes calldata signature, bool presale) private view returns(bool) {
        bytes32 hash = keccak256(abi.encodePacked(sender, amount, nonce, presale));
        return _signerAddress == ECDSA.recover(hash, signature);
    }

    function purchase(uint256 amount, string calldata nonce, bytes calldata signature) external payable {
        require(saleLive && !presaleLive, "GG: Sale Closed");
        require(amount <= PER_MINT, "GG: Amount Exceeds Max Per TX");
        require(publicCounter + privateCounter + amount <= SALE_MAX, "GG: Max Minted");
        require(!_nonces[nonce], "GG: Signature Used");
        require(verifyTransaction(msg.sender, amount, nonce, signature, false), "GG: Contract Mint Disallowed");
        require(GG_PB_PRICE * amount <= msg.value, "GG: Insufficient ETH");
        
        _nonces[nonce] = true;
        publicCounter += amount;

        for (uint256 i = 1; i <= amount; i++) {
            _mint(msg.sender, totalSupply + i);
        }

        totalSupply += amount;
    }

    function purchasePresale(uint256 amount, string calldata nonce, bytes calldata signature) external payable {
        require(!saleLive && presaleLive, "GG: Presale Closed");
        require(publicCounter + privateCounter + amount <= SALE_MAX, "GG: Private Sale Max");
        require(presalerPurchases[msg.sender] + amount <= PER_PRESALE, "GG: Max Minted");
        require(!_nonces[nonce], "GG: Signature Used");
        require(verifyTransaction(msg.sender, amount, nonce, signature, true), "GG: Contract Mint Disallowed");
        require(GG_PS_PRICE * amount <= msg.value, "GG: Insufficient ETH");

        _nonces[nonce] = true;
        privateCounter += amount;
        presalerPurchases[msg.sender] += amount;

        for (uint256 i = 1; i <= amount; i++) {
            _mint(msg.sender, totalSupply + i);
        }

        totalSupply += amount;
    }
    
    function purchaseEggs(uint256 amount) external {
        require(wagyuLive, "GG: Wagyu Minting Not Live");
        eggCounter += amount;
        require(eggCounter <= EGG_MAX, "GG: Max Supply Minted");

        _wagyuToken.burn(msg.sender, amount * 600 ether);

        for (uint256 i = 1; i <= amount; i++) {
            _mint(msg.sender, totalSupply + i);
        }

        totalSupply += amount;
    }

    function breed(uint256 genesisOne, uint256 genesisTwo, uint256 nest) external {
        require(wagyuLive, "GG: Wagyu Minting Not Live");
        require(ownerOf(genesisOne) == msg.sender && ownerOf(genesisTwo) == msg.sender && ownerOf(nest) == msg.sender, "GG: Not owner of tokens");
        require(isGenesis(genesisOne) && isGenesis(genesisTwo) && nest > 5999 && nest < 10000, "GG: Invalid Token IDs");
        require(!revealed[nest], "GG: Unrevealed Nest Only");

        revealed[nest] = true;
    }

    function pendingWagyu(uint256[] calldata tokens) external view returns(uint256) {
        require(block.timestamp > wagyuStartTime, "GG: Wagyu not live");
        uint256 pending;

        for (uint256 i = 0; i < tokens.length; i++) {
            uint256 token = tokens[i];
            if (isGenesis(token) && ownerOf(token) == msg.sender) {
                uint256 _lastClaimedAt = lastClaimedAt[token];
                pending += (block.timestamp - (_lastClaimedAt == 0 ? wagyuStartTime : _lastClaimedAt)) * wagyuPerDay / 86400;
            }
        }

        return pending;
    }

    function claimWagyu(uint256[] calldata tokens) external {
        require(block.timestamp > wagyuStartTime, "GG: Wagyu not live");
        uint256 pending;

        for (uint256 i = 0; i < tokens.length; i++) {
            uint256 token = tokens[i];
            if (isGenesis(token) && ownerOf(token) == msg.sender) {
                uint256 _lastClaimedAt = lastClaimedAt[token];
                pending += (block.timestamp - (_lastClaimedAt == 0 ? wagyuStartTime : _lastClaimedAt)) * wagyuPerDay / 86400;
                lastClaimedAt[token] = block.timestamp;
            }
        }

        _wagyuToken.mint(msg.sender, pending);
    }

    function gift(address[] calldata _receivers) external onlyOwner {
        giftCounter += _receivers.length;
        require(giftCounter <= GIFT_MAX, "GG: Receivers can't exceed gift max");

        for (uint256 i = 1; i <= _receivers.length; i++) {
            _mint(_receivers[i - 1], totalSupply + i);
        }

        totalSupply += _receivers.length;
    }
    
    function withdraw() external onlyOwner {
        payable(DEV_ADDRESS).transfer(address(this).balance / 10);
        payable(PAYOUT_ADDRESS).transfer(address(this).balance);
    }
    
    function toggleSale() external onlyOwner {
        saleLive = !saleLive;
    }
    
    function togglePresale() external onlyOwner {
        presaleLive = !presaleLive;
    }

    function toggleWagyu() external onlyOwner {
        wagyuLive = !wagyuLive;
    }
    
    function setSignerAddress(address addr) external onlyOwner {
        _signerAddress = addr;
    }

    function setWagyuAddress(address addr) external onlyOwner {
        _wagyuToken = IWagyu(addr);
    }

    function setWagyuRate(uint256 rate) external onlyOwner {
       wagyuPerDay = rate;
    }

    function setWagyuStartTime(uint256 startTime) external onlyOwner {
       wagyuPerDay = startTime;
    }

    function setBaseURI(string calldata uri) external onlyOwner {
        _tokenBaseURI = uri;
    }

    function setGenesisTokens(uint256[24] calldata data) external onlyOwner {
        genesisTokenData = data;
    }

    function isGenesis(uint256 tokenId) public view returns (bool) {
        require(tokenId < 6000, "Invalid token");
        return genesisTokenData[tokenId / 256] >> (tokenId % 256) & 1 == 1;
    }
    
    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        
        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }
}

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":"DEV_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EGG_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GG_PB_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GG_PS_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIFT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAYOUT_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PER_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"genesisOne","type":"uint256"},{"internalType":"uint256","name":"genesisTwo","type":"uint256"},{"internalType":"uint256","name":"nest","type":"uint256"}],"name":"breed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokens","type":"uint256[]"}],"name":"claimWagyu","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"eggCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giftCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isGenesis","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokens","type":"uint256[]"}],"name":"pendingWagyu","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"nonce","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"purchaseEggs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"string","name":"nonce","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"purchasePresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[24]","name":"data","type":"uint256[24]"}],"name":"setGenesisTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setWagyuAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setWagyuRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"setWagyuStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWagyu","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wagyuLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wagyuPerDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wagyuStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260266080818152906200364460a03980516200002991600a9160209091019062000150565b50600b80546001600160a01b03191673f11dd62abe61bbe59fafe29bbaa9a6a085eaeda2179055678ac7230489e800006025556361f7f9706026553480156200007157600080fd5b50604080518082018252600d81526c23b434b237b930b41023b7b23d60991b602080830191825283518085019094526002845261474760f01b908401528151919291620000c19160009162000150565b508051620000d790600190602084019062000150565b505050620000f4620000ee620000fa60201b60201c565b620000fe565b62000233565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015e90620001f6565b90600052602060002090601f016020900481019282620001825760008555620001cd565b82601f106200019d57805160ff1916838001178555620001cd565b82800160010185558215620001cd579182015b82811115620001cd578251825591602001919060010190620001b0565b50620001db929150620001df565b5090565b5b80821115620001db5760008155600101620001e0565b600181811c908216806200020b57607f821691505b602082108114156200022d57634e487b7160e01b600052602260045260246000fd5b50919050565b61340180620002436000396000f3fe6080604052600436106103505760003560e01c80637d8966e4116101c6578063b060aac8116100f7578063dd1e776f11610095578063e985e9c51161006f578063e985e9c514610917578063f1e25ea814610960578063f2fde38b14610980578063f597d801146109a057600080fd5b8063dd1e776f146108bd578063e06ff743146108dd578063e081b781146108fd57600080fd5b8063bf328332116100d1578063bf3283321461085d578063c637b6e514610872578063c87b56dd14610887578063cbc10e39146108a757600080fd5b8063b060aac814610800578063b88d4fde14610815578063bc2038c61461083557600080fd5b80639b5e168711610164578063a22cb4651161013e578063a22cb46514610787578063a31317a1146107a7578063a5a263f7146107bd578063a8fa270d146107ea57600080fd5b80639b5e16871461073b5780639b8c34521461075b5780639eb8eac51461077157600080fd5b806384a08af0116101a057806384a08af0146106e85780638da5cb5b14610708578063954081fc146106e857806395d89b411461072657600080fd5b80637d8966e41461069e5780637ebee30f146106b357806383a9e049146106c957600080fd5b806334393743116102a05780636352211e1161023e5780636dc22abc116102185780636dc22abc14610639578063707a58691461065457806370a0823114610669578063715018a61461068957600080fd5b80636352211e146105d957806368e9f4e6146105f95780636a76ff051461061957600080fd5b806355f804b31161027a57806355f804b3146105415780635639e8cf146105615780635694e7751461058957806361a2bc01146105a957600080fd5b806334393743146104f75780633ccfd60b1461050c57806342842e0e1461052157600080fd5b806312fba2121161030d5780631f50b718116102e75780631f50b7181461049857806321489c9c146104ae57806323b872dd146104c457806329bc1b83146104e457600080fd5b806312fba2121461044f578063163e1e611461046257806318160ddd1461048257600080fd5b806301149cb11461035557806301ffc9a714610383578063046dc166146103b357806306fdde03146103d5578063081812fc146103f7578063095ea7b31461042f575b600080fd5b34801561036157600080fd5b50610370669fdf42f6e4800081565b6040519081526020015b60405180910390f35b34801561038f57600080fd5b506103a361039e366004612ef3565b6109c0565b604051901515815260200161037a565b3480156103bf57600080fd5b506103d36103ce366004612cc4565b610a12565b005b3480156103e157600080fd5b506103ea610a67565b60405161037a9190613190565b34801561040357600080fd5b50610417610412366004612f5f565b610af9565b6040516001600160a01b03909116815260200161037a565b34801561043b57600080fd5b506103d361044a366004612e61565b610b8e565b6103d361045d366004612f77565b610ca4565b34801561046e57600080fd5b506103d361047d366004612e8a565b610fa0565b34801561048e57600080fd5b5061037060275481565b3480156104a457600080fd5b50610370602b5481565b3480156104ba57600080fd5b5061037060295481565b3480156104d057600080fd5b506103d36104df366004612d17565b6110ce565b6103d36104f2366004612f77565b6110ff565b34801561050357600080fd5b506103d361139e565b34801561051857600080fd5b506103d36113e5565b34801561052d57600080fd5b506103d361053c366004612d17565b61149e565b34801561054d57600080fd5b506103d361055c366004612f2b565b6114b9565b34801561056d57600080fd5b5061041773411f92e47fb4af1834d3ac651daa47d5f2b2417f81565b34801561059557600080fd5b506103706105a4366004612e8a565b6114ef565b3480156105b557600080fd5b506103a36105c4366004612f5f565b602d6020526000908152604090205460ff1681565b3480156105e557600080fd5b506104176105f4366004612f5f565b611606565b34801561060557600080fd5b506103d3610614366004612e8a565b61167d565b34801561062557600080fd5b506103d3610634366004612cc4565b611805565b34801561064557600080fd5b50610370667c58508723800081565b34801561066057600080fd5b50610370603781565b34801561067557600080fd5b50610370610684366004612cc4565b611851565b34801561069557600080fd5b506103d36118d8565b3480156106aa57600080fd5b506103d361190e565b3480156106bf57600080fd5b50610370602a5481565b3480156106d557600080fd5b50602c546103a390610100900460ff1681565b3480156106f457600080fd5b506103d3610703366004612f5f565b61194c565b34801561071457600080fd5b506006546001600160a01b0316610417565b34801561073257600080fd5b506103ea61197b565b34801561074757600080fd5b506103d3610756366004612fee565b61198a565b34801561076757600080fd5b5061037060265481565b34801561077d57600080fd5b50610370610fa081565b34801561079357600080fd5b506103d36107a2366004612e27565b611b6d565b3480156107b357600080fd5b5061037061173881565b3480156107c957600080fd5b506103706107d8366004612cc4565b60076020526000908152604090205481565b3480156107f657600080fd5b5061037060285481565b34801561080c57600080fd5b506103d3611c32565b34801561082157600080fd5b506103d3610830366004612d52565b611c7b565b34801561084157600080fd5b50610417734e02bbbd1c318101ffa76645ff6b074ac68cf8be81565b34801561086957600080fd5b50610370600281565b34801561087e57600080fd5b50610370600681565b34801561089357600080fd5b506103ea6108a2366004612f5f565b611cb3565b3480156108b357600080fd5b5061037060255481565b3480156108c957600080fd5b506103d36108d8366004612eca565b611d4c565b3480156108e957600080fd5b50602c546103a39062010000900460ff1681565b34801561090957600080fd5b50602c546103a39060ff1681565b34801561092357600080fd5b506103a3610932366004612ce5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561096c57600080fd5b506103a361097b366004612f5f565b611d87565b34801561098c57600080fd5b506103d361099b366004612cc4565b611e11565b3480156109ac57600080fd5b506103d36109bb366004612f5f565b611ea9565b60006001600160e01b031982166380ac58cd60e01b14806109f157506001600160e01b03198216635b5e139f60e01b145b80610a0c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b03163314610a455760405162461bcd60e51b8152600401610a3c906131f5565b60405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610a7690613309565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa290613309565b8015610aef5780601f10610ac457610100808354040283529160200191610aef565b820191906000526020600020905b815481529060010190602001808311610ad257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3c565b506000908152600460205260409020546001600160a01b031690565b6000610b9982611606565b9050806001600160a01b0316836001600160a01b03161415610c075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a3c565b336001600160a01b0382161480610c235750610c238133610932565b610c955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a3c565b610c9f8383612031565b505050565b602c5460ff16158015610cbe5750602c54610100900460ff165b610cff5760405162461bcd60e51b815260206004820152601260248201527111d1ce88141c995cd85b194810db1bdcd95960721b6044820152606401610a3c565b61173885602954602854610d13919061327b565b610d1d919061327b565b1115610d625760405162461bcd60e51b815260206004820152601460248201527308e8e7440a0e4d2ecc2e8ca40a6c2d8ca409ac2f60631b6044820152606401610a3c565b33600090815260076020526040902054600290610d8090879061327b565b1115610dbf5760405162461bcd60e51b815260206004820152600e60248201526d11d1ce8813585e08135a5b9d195960921b6044820152606401610a3c565b60088484604051610dd192919061309d565b9081526040519081900360200190205460ff1615610e265760405162461bcd60e51b815260206004820152601260248201527111d1ce8814da59db985d1d5c9948155cd95960721b6044820152606401610a3c565b610e36338686868686600161209f565b610e825760405162461bcd60e51b815260206004820152601c60248201527f47473a20436f6e7472616374204d696e7420446973616c6c6f776564000000006044820152606401610a3c565b34610e9486667c5850872380006132a7565b1115610ed95760405162461bcd60e51b815260206004820152601460248201527308e8e744092dce6eaccccd2c6d2cadce8408aa8960631b6044820152606401610a3c565b600160088585604051610eed92919061309d565b908152602001604051809103902060006101000a81548160ff0219169083151502179055508460296000828254610f24919061327b565b90915550503360009081526007602052604081208054879290610f4890849061327b565b90915550600190505b858111610f8157610f6f3382602754610f6a919061327b565b612131565b80610f7981613344565b915050610f51565b508460276000828254610f94919061327b565b90915550505050505050565b6006546001600160a01b03163314610fca5760405162461bcd60e51b8152600401610a3c906131f5565b81819050602a6000828254610fdf919061327b565b9091555050602a54603710156110435760405162461bcd60e51b815260206004820152602360248201527f47473a205265636569766572732063616e2774206578636565642067696674206044820152620dac2f60eb1b6064820152608401610a3c565b60015b8181116110af5761109d838361105d6001856132c6565b81811061107a57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061108f9190612cc4565b82602754610f6a919061327b565b806110a781613344565b915050611046565b5081819050602760008282546110c5919061327b565b90915550505050565b6110d83382612273565b6110f45760405162461bcd60e51b8152600401610a3c9061322a565b610c9f83838361236a565b602c5460ff1680156111195750602c54610100900460ff16155b6111575760405162461bcd60e51b815260206004820152600f60248201526e11d1ce8814d85b194810db1bdcd959608a1b6044820152606401610a3c565b60068511156111a85760405162461bcd60e51b815260206004820152601d60248201527f47473a20416d6f756e742045786365656473204d6178205065722054580000006044820152606401610a3c565b611738856029546028546111bc919061327b565b6111c6919061327b565b11156112055760405162461bcd60e51b815260206004820152600e60248201526d11d1ce8813585e08135a5b9d195960921b6044820152606401610a3c565b6008848460405161121792919061309d565b9081526040519081900360200190205460ff161561126c5760405162461bcd60e51b815260206004820152601260248201527111d1ce8814da59db985d1d5c9948155cd95960721b6044820152606401610a3c565b61127c338686868686600061209f565b6112c85760405162461bcd60e51b815260206004820152601c60248201527f47473a20436f6e7472616374204d696e7420446973616c6c6f776564000000006044820152606401610a3c565b346112da86669fdf42f6e480006132a7565b111561131f5760405162461bcd60e51b815260206004820152601460248201527308e8e744092dce6eaccccd2c6d2cadce8408aa8960631b6044820152606401610a3c565b60016008858560405161133392919061309d565b908152602001604051809103902060006101000a81548160ff021916908315150217905550846028600082825461136a919061327b565b90915550600190505b858111610f815761138c3382602754610f6a919061327b565b8061139681613344565b915050611373565b6006546001600160a01b031633146113c85760405162461bcd60e51b8152600401610a3c906131f5565b602c805461ff001981166101009182900460ff1615909102179055565b6006546001600160a01b0316331461140f5760405162461bcd60e51b8152600401610a3c906131f5565b73411f92e47fb4af1834d3ac651daa47d5f2b2417f6108fc611432600a47613293565b6040518115909202916000818181858888f1935050505015801561145a573d6000803e3d6000fd5b50604051734e02bbbd1c318101ffa76645ff6b074ac68cf8be904780156108fc02916000818181858888f1935050505015801561149b573d6000803e3d6000fd5b50565b610c9f83838360405180602001604052806000815250611c7b565b6006546001600160a01b031633146114e35760405162461bcd60e51b8152600401610a3c906131f5565b610c9f600a8383612b5f565b600060265442116115375760405162461bcd60e51b815260206004820152601260248201527147473a205761677975206e6f74206c69766560701b6044820152606401610a3c565b6000805b838110156115fe57600085858381811061156557634e487b7160e01b600052603260045260246000fd5b90506020020135905061157781611d87565b801561159357503361158882611606565b6001600160a01b0316145b156115eb57600081815260096020526040902054602554620151809082156115bb57826115bf565b6026545b6115c990426132c6565b6115d391906132a7565b6115dd9190613293565b6115e7908561327b565b9350505b50806115f681613344565b91505061153b565b509392505050565b6000818152600260205260408120546001600160a01b031680610a0c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a3c565b60265442116116c35760405162461bcd60e51b815260206004820152601260248201527147473a205761677975206e6f74206c69766560701b6044820152606401610a3c565b6000805b8281101561179b5760008484838181106116f157634e487b7160e01b600052603260045260246000fd5b90506020020135905061170381611d87565b801561171f57503361171482611606565b6001600160a01b0316145b156117885760008181526009602052604090205460255462015180908215611747578261174b565b6026545b61175590426132c6565b61175f91906132a7565b6117699190613293565b611773908561327b565b60008381526009602052604090204290559350505b508061179381613344565b9150506116c7565b50600c546040516340c10f1960e01b8152336004820152602481018390526001600160a01b03909116906340c10f1990604401600060405180830381600087803b1580156117e857600080fd5b505af11580156117fc573d6000803e3d6000fd5b50505050505050565b6006546001600160a01b0316331461182f5760405162461bcd60e51b8152600401610a3c906131f5565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166118bc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a3c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146119025760405162461bcd60e51b8152600401610a3c906131f5565b61190c600061250a565b565b6006546001600160a01b031633146119385760405162461bcd60e51b8152600401610a3c906131f5565b602c805460ff19811660ff90911615179055565b6006546001600160a01b031633146119765760405162461bcd60e51b8152600401610a3c906131f5565b602555565b606060018054610a7690613309565b602c5462010000900460ff166119e25760405162461bcd60e51b815260206004820152601a60248201527f47473a205761677975204d696e74696e67204e6f74204c6976650000000000006044820152606401610a3c565b336119ec84611606565b6001600160a01b0316148015611a12575033611a0783611606565b6001600160a01b0316145b8015611a2e575033611a2382611606565b6001600160a01b0316145b611a7a5760405162461bcd60e51b815260206004820152601760248201527f47473a204e6f74206f776e6572206f6620746f6b656e730000000000000000006044820152606401610a3c565b611a8383611d87565b8015611a935750611a9382611d87565b8015611aa0575061176f81115b8015611aad575061271081105b611af15760405162461bcd60e51b815260206004820152601560248201527447473a20496e76616c696420546f6b656e2049447360581b6044820152606401610a3c565b6000818152602d602052604090205460ff1615611b505760405162461bcd60e51b815260206004820152601860248201527f47473a20556e72657665616c6564204e657374204f6e6c7900000000000000006044820152606401610a3c565b6000908152602d60205260409020805460ff191660011790555050565b6001600160a01b038216331415611bc65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a3c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b03163314611c5c5760405162461bcd60e51b8152600401610a3c906131f5565b602c805462ff0000198116620100009182900460ff1615909102179055565b611c853383612273565b611ca15760405162461bcd60e51b8152600401610a3c9061322a565b611cad8484848461255c565b50505050565b6000818152600260205260409020546060906001600160a01b0316611d1a5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610a3c565b600a611d258361258f565b604051602001611d369291906130ad565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314611d765760405162461bcd60e51b8152600401610a3c906131f5565b611d83600d826018612be3565b5050565b60006117708210611dca5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610a3c565b611dd66101008361335f565b600d611de461010085613293565b60188110611e0257634e487b7160e01b600052603260045260246000fd5b01546001911c81161492915050565b6006546001600160a01b03163314611e3b5760405162461bcd60e51b8152600401610a3c906131f5565b6001600160a01b038116611ea05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3c565b61149b8161250a565b602c5462010000900460ff16611f015760405162461bcd60e51b815260206004820152601a60248201527f47473a205761677975204d696e74696e67204e6f74204c6976650000000000006044820152606401610a3c565b80602b6000828254611f13919061327b565b9091555050602b54610fa01015611f645760405162461bcd60e51b815260206004820152601560248201527411d1ce8813585e0814dd5c1c1b1e48135a5b9d1959605a1b6044820152606401610a3c565b600c546001600160a01b0316639dc29fac33611f8984682086ac3510526000006132a7565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611fcf57600080fd5b505af1158015611fe3573d6000803e3d6000fd5b506001925050505b818111612016576120043382602754610f6a919061327b565b8061200e81613344565b915050611feb565b508060276000828254612029919061327b565b909155505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061206682611606565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008088888888866040516020016120bb959493929190613061565b6040516020818303038152906040528051906020012090506121138186868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506126a992505050565b600b546001600160a01b039182169116149998505050505050505050565b6001600160a01b0382166121875760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a3c565b6000818152600260205260409020546001600160a01b0316156121ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a3c565b6001600160a01b038216600090815260036020526040812080546001929061221590849061327b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166122ec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3c565b60006122f783611606565b9050806001600160a01b0316846001600160a01b031614806123325750836001600160a01b031661232784610af9565b6001600160a01b0316145b8061236257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661237d82611606565b6001600160a01b0316146123e55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a3c565b6001600160a01b0382166124475760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3c565b612452600082612031565b6001600160a01b038316600090815260036020526040812080546001929061247b9084906132c6565b90915550506001600160a01b03821660009081526003602052604081208054600192906124a990849061327b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61256784848461236a565b612573848484846126c5565b611cad5760405162461bcd60e51b8152600401610a3c906131a3565b6060816125b35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125dd57806125c781613344565b91506125d69050600a83613293565b91506125b7565b60008167ffffffffffffffff81111561260657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612630576020820181803683370190505b5090505b8415612362576126456001836132c6565b9150612652600a8661335f565b61265d90603061327b565b60f81b81838151811061268057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506126a2600a86613293565b9450612634565b60008060006126b885856127d2565b915091506115fe81612842565b60006001600160a01b0384163b156127c757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612709903390899088908890600401613153565b602060405180830381600087803b15801561272357600080fd5b505af1925050508015612753575060408051601f3d908101601f1916820190925261275091810190612f0f565b60015b6127ad573d808015612781576040519150601f19603f3d011682016040523d82523d6000602084013e612786565b606091505b5080516127a55760405162461bcd60e51b8152600401610a3c906131a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612362565b506001949350505050565b6000808251604114156128095760208301516040840151606085015160001a6127fd87828585612a43565b9450945050505061283b565b8251604014156128335760208301516040840151612828868383612b30565b93509350505061283b565b506000905060025b9250929050565b600081600481111561286457634e487b7160e01b600052602160045260246000fd5b141561286d5750565b600181600481111561288f57634e487b7160e01b600052602160045260246000fd5b14156128dd5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a3c565b60028160048111156128ff57634e487b7160e01b600052602160045260246000fd5b141561294d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a3c565b600381600481111561296f57634e487b7160e01b600052602160045260246000fd5b14156129c85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a3c565b60048160048111156129ea57634e487b7160e01b600052602160045260246000fd5b141561149b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a3c565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612a7a5750600090506003612b27565b8460ff16601b14158015612a9257508460ff16601c14155b15612aa35750600090506004612b27565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612af7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612b2057600060019250925050612b27565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01612b5187828885612a43565b935093505050935093915050565b828054612b6b90613309565b90600052602060002090601f016020900481019282612b8d5760008555612bd3565b82601f10612ba65782800160ff19823516178555612bd3565b82800160010185558215612bd3579182015b82811115612bd3578235825591602001919060010190612bb8565b50612bdf929150612c10565b5090565b8260188101928215612bd35791602002820182811115612bd3578235825591602001919060010190612bb8565b5b80821115612bdf5760008155600101612c11565b80356001600160a01b0381168114612c3c57600080fd5b919050565b60008083601f840112612c52578081fd5b50813567ffffffffffffffff811115612c69578182fd5b6020830191508360208260051b850101111561283b57600080fd5b60008083601f840112612c95578182fd5b50813567ffffffffffffffff811115612cac578182fd5b60208301915083602082850101111561283b57600080fd5b600060208284031215612cd5578081fd5b612cde82612c25565b9392505050565b60008060408385031215612cf7578081fd5b612d0083612c25565b9150612d0e60208401612c25565b90509250929050565b600080600060608486031215612d2b578081fd5b612d3484612c25565b9250612d4260208501612c25565b9150604084013590509250925092565b60008060008060808587031215612d67578081fd5b612d7085612c25565b9350612d7e60208601612c25565b925060408501359150606085013567ffffffffffffffff80821115612da1578283fd5b818701915087601f830112612db4578283fd5b813581811115612dc657612dc661339f565b604051601f8201601f19908116603f01168101908382118183101715612dee57612dee61339f565b816040528281528a6020848701011115612e06578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612e39578182fd5b612e4283612c25565b915060208301358015158114612e56578182fd5b809150509250929050565b60008060408385031215612e73578182fd5b612e7c83612c25565b946020939093013593505050565b60008060208385031215612e9c578182fd5b823567ffffffffffffffff811115612eb2578283fd5b612ebe85828601612c41565b90969095509350505050565b6000610300808385031215612edd578182fd5b838184011115612eeb578182fd5b509092915050565b600060208284031215612f04578081fd5b8135612cde816133b5565b600060208284031215612f20578081fd5b8151612cde816133b5565b60008060208385031215612f3d578182fd5b823567ffffffffffffffff811115612f53578283fd5b612ebe85828601612c84565b600060208284031215612f70578081fd5b5035919050565b600080600080600060608688031215612f8e578283fd5b85359450602086013567ffffffffffffffff80821115612fac578485fd5b612fb889838a01612c84565b90965094506040880135915080821115612fd0578283fd5b50612fdd88828901612c84565b969995985093965092949392505050565b600080600060608486031215613002578081fd5b505081359360208301359350604090920135919050565b600081518084526130318160208601602086016132dd565b601f01601f19169290920160200192915050565b600081516130578185602086016132dd565b9290920192915050565b6bffffffffffffffffffffffff198660601b1681528460148201528284603483013790151560f81b910160348101919091526035019392505050565b8183823760009101908152919050565b600080845482600182811c9150808316806130c957607f831692505b60208084108214156130e957634e487b7160e01b87526022600452602487fd5b8180156130fd576001811461310e5761313a565b60ff1986168952848901965061313a565b60008b815260209020885b868110156131325781548b820152908501908301613119565b505084890196505b50505050505061314a8185613045565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061318690830184613019565b9695505050505050565b602081526000612cde6020830184613019565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561328e5761328e613373565b500190565b6000826132a2576132a2613389565b500490565b60008160001904831182151516156132c1576132c1613373565b500290565b6000828210156132d8576132d8613373565b500390565b60005b838110156132f85781810151838201526020016132e0565b83811115611cad5750506000910152565b600181811c9082168061331d57607f821691505b6020821081141561333e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561335857613358613373565b5060010190565b60008261336e5761336e613389565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461149b57600080fdfea26469706673582212203f04d8dad32b97f042983bf2194eaa913848939a86ed37de4f395cba911d76f564736f6c6343000804003368747470733a2f2f676869646f726168676f647a2e636f6d2f6170692f6d657461646174612f

Deployed Bytecode

0x6080604052600436106103505760003560e01c80637d8966e4116101c6578063b060aac8116100f7578063dd1e776f11610095578063e985e9c51161006f578063e985e9c514610917578063f1e25ea814610960578063f2fde38b14610980578063f597d801146109a057600080fd5b8063dd1e776f146108bd578063e06ff743146108dd578063e081b781146108fd57600080fd5b8063bf328332116100d1578063bf3283321461085d578063c637b6e514610872578063c87b56dd14610887578063cbc10e39146108a757600080fd5b8063b060aac814610800578063b88d4fde14610815578063bc2038c61461083557600080fd5b80639b5e168711610164578063a22cb4651161013e578063a22cb46514610787578063a31317a1146107a7578063a5a263f7146107bd578063a8fa270d146107ea57600080fd5b80639b5e16871461073b5780639b8c34521461075b5780639eb8eac51461077157600080fd5b806384a08af0116101a057806384a08af0146106e85780638da5cb5b14610708578063954081fc146106e857806395d89b411461072657600080fd5b80637d8966e41461069e5780637ebee30f146106b357806383a9e049146106c957600080fd5b806334393743116102a05780636352211e1161023e5780636dc22abc116102185780636dc22abc14610639578063707a58691461065457806370a0823114610669578063715018a61461068957600080fd5b80636352211e146105d957806368e9f4e6146105f95780636a76ff051461061957600080fd5b806355f804b31161027a57806355f804b3146105415780635639e8cf146105615780635694e7751461058957806361a2bc01146105a957600080fd5b806334393743146104f75780633ccfd60b1461050c57806342842e0e1461052157600080fd5b806312fba2121161030d5780631f50b718116102e75780631f50b7181461049857806321489c9c146104ae57806323b872dd146104c457806329bc1b83146104e457600080fd5b806312fba2121461044f578063163e1e611461046257806318160ddd1461048257600080fd5b806301149cb11461035557806301ffc9a714610383578063046dc166146103b357806306fdde03146103d5578063081812fc146103f7578063095ea7b31461042f575b600080fd5b34801561036157600080fd5b50610370669fdf42f6e4800081565b6040519081526020015b60405180910390f35b34801561038f57600080fd5b506103a361039e366004612ef3565b6109c0565b604051901515815260200161037a565b3480156103bf57600080fd5b506103d36103ce366004612cc4565b610a12565b005b3480156103e157600080fd5b506103ea610a67565b60405161037a9190613190565b34801561040357600080fd5b50610417610412366004612f5f565b610af9565b6040516001600160a01b03909116815260200161037a565b34801561043b57600080fd5b506103d361044a366004612e61565b610b8e565b6103d361045d366004612f77565b610ca4565b34801561046e57600080fd5b506103d361047d366004612e8a565b610fa0565b34801561048e57600080fd5b5061037060275481565b3480156104a457600080fd5b50610370602b5481565b3480156104ba57600080fd5b5061037060295481565b3480156104d057600080fd5b506103d36104df366004612d17565b6110ce565b6103d36104f2366004612f77565b6110ff565b34801561050357600080fd5b506103d361139e565b34801561051857600080fd5b506103d36113e5565b34801561052d57600080fd5b506103d361053c366004612d17565b61149e565b34801561054d57600080fd5b506103d361055c366004612f2b565b6114b9565b34801561056d57600080fd5b5061041773411f92e47fb4af1834d3ac651daa47d5f2b2417f81565b34801561059557600080fd5b506103706105a4366004612e8a565b6114ef565b3480156105b557600080fd5b506103a36105c4366004612f5f565b602d6020526000908152604090205460ff1681565b3480156105e557600080fd5b506104176105f4366004612f5f565b611606565b34801561060557600080fd5b506103d3610614366004612e8a565b61167d565b34801561062557600080fd5b506103d3610634366004612cc4565b611805565b34801561064557600080fd5b50610370667c58508723800081565b34801561066057600080fd5b50610370603781565b34801561067557600080fd5b50610370610684366004612cc4565b611851565b34801561069557600080fd5b506103d36118d8565b3480156106aa57600080fd5b506103d361190e565b3480156106bf57600080fd5b50610370602a5481565b3480156106d557600080fd5b50602c546103a390610100900460ff1681565b3480156106f457600080fd5b506103d3610703366004612f5f565b61194c565b34801561071457600080fd5b506006546001600160a01b0316610417565b34801561073257600080fd5b506103ea61197b565b34801561074757600080fd5b506103d3610756366004612fee565b61198a565b34801561076757600080fd5b5061037060265481565b34801561077d57600080fd5b50610370610fa081565b34801561079357600080fd5b506103d36107a2366004612e27565b611b6d565b3480156107b357600080fd5b5061037061173881565b3480156107c957600080fd5b506103706107d8366004612cc4565b60076020526000908152604090205481565b3480156107f657600080fd5b5061037060285481565b34801561080c57600080fd5b506103d3611c32565b34801561082157600080fd5b506103d3610830366004612d52565b611c7b565b34801561084157600080fd5b50610417734e02bbbd1c318101ffa76645ff6b074ac68cf8be81565b34801561086957600080fd5b50610370600281565b34801561087e57600080fd5b50610370600681565b34801561089357600080fd5b506103ea6108a2366004612f5f565b611cb3565b3480156108b357600080fd5b5061037060255481565b3480156108c957600080fd5b506103d36108d8366004612eca565b611d4c565b3480156108e957600080fd5b50602c546103a39062010000900460ff1681565b34801561090957600080fd5b50602c546103a39060ff1681565b34801561092357600080fd5b506103a3610932366004612ce5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561096c57600080fd5b506103a361097b366004612f5f565b611d87565b34801561098c57600080fd5b506103d361099b366004612cc4565b611e11565b3480156109ac57600080fd5b506103d36109bb366004612f5f565b611ea9565b60006001600160e01b031982166380ac58cd60e01b14806109f157506001600160e01b03198216635b5e139f60e01b145b80610a0c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b03163314610a455760405162461bcd60e51b8152600401610a3c906131f5565b60405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610a7690613309565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa290613309565b8015610aef5780601f10610ac457610100808354040283529160200191610aef565b820191906000526020600020905b815481529060010190602001808311610ad257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3c565b506000908152600460205260409020546001600160a01b031690565b6000610b9982611606565b9050806001600160a01b0316836001600160a01b03161415610c075760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a3c565b336001600160a01b0382161480610c235750610c238133610932565b610c955760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a3c565b610c9f8383612031565b505050565b602c5460ff16158015610cbe5750602c54610100900460ff165b610cff5760405162461bcd60e51b815260206004820152601260248201527111d1ce88141c995cd85b194810db1bdcd95960721b6044820152606401610a3c565b61173885602954602854610d13919061327b565b610d1d919061327b565b1115610d625760405162461bcd60e51b815260206004820152601460248201527308e8e7440a0e4d2ecc2e8ca40a6c2d8ca409ac2f60631b6044820152606401610a3c565b33600090815260076020526040902054600290610d8090879061327b565b1115610dbf5760405162461bcd60e51b815260206004820152600e60248201526d11d1ce8813585e08135a5b9d195960921b6044820152606401610a3c565b60088484604051610dd192919061309d565b9081526040519081900360200190205460ff1615610e265760405162461bcd60e51b815260206004820152601260248201527111d1ce8814da59db985d1d5c9948155cd95960721b6044820152606401610a3c565b610e36338686868686600161209f565b610e825760405162461bcd60e51b815260206004820152601c60248201527f47473a20436f6e7472616374204d696e7420446973616c6c6f776564000000006044820152606401610a3c565b34610e9486667c5850872380006132a7565b1115610ed95760405162461bcd60e51b815260206004820152601460248201527308e8e744092dce6eaccccd2c6d2cadce8408aa8960631b6044820152606401610a3c565b600160088585604051610eed92919061309d565b908152602001604051809103902060006101000a81548160ff0219169083151502179055508460296000828254610f24919061327b565b90915550503360009081526007602052604081208054879290610f4890849061327b565b90915550600190505b858111610f8157610f6f3382602754610f6a919061327b565b612131565b80610f7981613344565b915050610f51565b508460276000828254610f94919061327b565b90915550505050505050565b6006546001600160a01b03163314610fca5760405162461bcd60e51b8152600401610a3c906131f5565b81819050602a6000828254610fdf919061327b565b9091555050602a54603710156110435760405162461bcd60e51b815260206004820152602360248201527f47473a205265636569766572732063616e2774206578636565642067696674206044820152620dac2f60eb1b6064820152608401610a3c565b60015b8181116110af5761109d838361105d6001856132c6565b81811061107a57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061108f9190612cc4565b82602754610f6a919061327b565b806110a781613344565b915050611046565b5081819050602760008282546110c5919061327b565b90915550505050565b6110d83382612273565b6110f45760405162461bcd60e51b8152600401610a3c9061322a565b610c9f83838361236a565b602c5460ff1680156111195750602c54610100900460ff16155b6111575760405162461bcd60e51b815260206004820152600f60248201526e11d1ce8814d85b194810db1bdcd959608a1b6044820152606401610a3c565b60068511156111a85760405162461bcd60e51b815260206004820152601d60248201527f47473a20416d6f756e742045786365656473204d6178205065722054580000006044820152606401610a3c565b611738856029546028546111bc919061327b565b6111c6919061327b565b11156112055760405162461bcd60e51b815260206004820152600e60248201526d11d1ce8813585e08135a5b9d195960921b6044820152606401610a3c565b6008848460405161121792919061309d565b9081526040519081900360200190205460ff161561126c5760405162461bcd60e51b815260206004820152601260248201527111d1ce8814da59db985d1d5c9948155cd95960721b6044820152606401610a3c565b61127c338686868686600061209f565b6112c85760405162461bcd60e51b815260206004820152601c60248201527f47473a20436f6e7472616374204d696e7420446973616c6c6f776564000000006044820152606401610a3c565b346112da86669fdf42f6e480006132a7565b111561131f5760405162461bcd60e51b815260206004820152601460248201527308e8e744092dce6eaccccd2c6d2cadce8408aa8960631b6044820152606401610a3c565b60016008858560405161133392919061309d565b908152602001604051809103902060006101000a81548160ff021916908315150217905550846028600082825461136a919061327b565b90915550600190505b858111610f815761138c3382602754610f6a919061327b565b8061139681613344565b915050611373565b6006546001600160a01b031633146113c85760405162461bcd60e51b8152600401610a3c906131f5565b602c805461ff001981166101009182900460ff1615909102179055565b6006546001600160a01b0316331461140f5760405162461bcd60e51b8152600401610a3c906131f5565b73411f92e47fb4af1834d3ac651daa47d5f2b2417f6108fc611432600a47613293565b6040518115909202916000818181858888f1935050505015801561145a573d6000803e3d6000fd5b50604051734e02bbbd1c318101ffa76645ff6b074ac68cf8be904780156108fc02916000818181858888f1935050505015801561149b573d6000803e3d6000fd5b50565b610c9f83838360405180602001604052806000815250611c7b565b6006546001600160a01b031633146114e35760405162461bcd60e51b8152600401610a3c906131f5565b610c9f600a8383612b5f565b600060265442116115375760405162461bcd60e51b815260206004820152601260248201527147473a205761677975206e6f74206c69766560701b6044820152606401610a3c565b6000805b838110156115fe57600085858381811061156557634e487b7160e01b600052603260045260246000fd5b90506020020135905061157781611d87565b801561159357503361158882611606565b6001600160a01b0316145b156115eb57600081815260096020526040902054602554620151809082156115bb57826115bf565b6026545b6115c990426132c6565b6115d391906132a7565b6115dd9190613293565b6115e7908561327b565b9350505b50806115f681613344565b91505061153b565b509392505050565b6000818152600260205260408120546001600160a01b031680610a0c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a3c565b60265442116116c35760405162461bcd60e51b815260206004820152601260248201527147473a205761677975206e6f74206c69766560701b6044820152606401610a3c565b6000805b8281101561179b5760008484838181106116f157634e487b7160e01b600052603260045260246000fd5b90506020020135905061170381611d87565b801561171f57503361171482611606565b6001600160a01b0316145b156117885760008181526009602052604090205460255462015180908215611747578261174b565b6026545b61175590426132c6565b61175f91906132a7565b6117699190613293565b611773908561327b565b60008381526009602052604090204290559350505b508061179381613344565b9150506116c7565b50600c546040516340c10f1960e01b8152336004820152602481018390526001600160a01b03909116906340c10f1990604401600060405180830381600087803b1580156117e857600080fd5b505af11580156117fc573d6000803e3d6000fd5b50505050505050565b6006546001600160a01b0316331461182f5760405162461bcd60e51b8152600401610a3c906131f5565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166118bc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a3c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146119025760405162461bcd60e51b8152600401610a3c906131f5565b61190c600061250a565b565b6006546001600160a01b031633146119385760405162461bcd60e51b8152600401610a3c906131f5565b602c805460ff19811660ff90911615179055565b6006546001600160a01b031633146119765760405162461bcd60e51b8152600401610a3c906131f5565b602555565b606060018054610a7690613309565b602c5462010000900460ff166119e25760405162461bcd60e51b815260206004820152601a60248201527f47473a205761677975204d696e74696e67204e6f74204c6976650000000000006044820152606401610a3c565b336119ec84611606565b6001600160a01b0316148015611a12575033611a0783611606565b6001600160a01b0316145b8015611a2e575033611a2382611606565b6001600160a01b0316145b611a7a5760405162461bcd60e51b815260206004820152601760248201527f47473a204e6f74206f776e6572206f6620746f6b656e730000000000000000006044820152606401610a3c565b611a8383611d87565b8015611a935750611a9382611d87565b8015611aa0575061176f81115b8015611aad575061271081105b611af15760405162461bcd60e51b815260206004820152601560248201527447473a20496e76616c696420546f6b656e2049447360581b6044820152606401610a3c565b6000818152602d602052604090205460ff1615611b505760405162461bcd60e51b815260206004820152601860248201527f47473a20556e72657665616c6564204e657374204f6e6c7900000000000000006044820152606401610a3c565b6000908152602d60205260409020805460ff191660011790555050565b6001600160a01b038216331415611bc65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a3c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b03163314611c5c5760405162461bcd60e51b8152600401610a3c906131f5565b602c805462ff0000198116620100009182900460ff1615909102179055565b611c853383612273565b611ca15760405162461bcd60e51b8152600401610a3c9061322a565b611cad8484848461255c565b50505050565b6000818152600260205260409020546060906001600160a01b0316611d1a5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610a3c565b600a611d258361258f565b604051602001611d369291906130ad565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314611d765760405162461bcd60e51b8152600401610a3c906131f5565b611d83600d826018612be3565b5050565b60006117708210611dca5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b6044820152606401610a3c565b611dd66101008361335f565b600d611de461010085613293565b60188110611e0257634e487b7160e01b600052603260045260246000fd5b01546001911c81161492915050565b6006546001600160a01b03163314611e3b5760405162461bcd60e51b8152600401610a3c906131f5565b6001600160a01b038116611ea05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3c565b61149b8161250a565b602c5462010000900460ff16611f015760405162461bcd60e51b815260206004820152601a60248201527f47473a205761677975204d696e74696e67204e6f74204c6976650000000000006044820152606401610a3c565b80602b6000828254611f13919061327b565b9091555050602b54610fa01015611f645760405162461bcd60e51b815260206004820152601560248201527411d1ce8813585e0814dd5c1c1b1e48135a5b9d1959605a1b6044820152606401610a3c565b600c546001600160a01b0316639dc29fac33611f8984682086ac3510526000006132a7565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b158015611fcf57600080fd5b505af1158015611fe3573d6000803e3d6000fd5b506001925050505b818111612016576120043382602754610f6a919061327b565b8061200e81613344565b915050611feb565b508060276000828254612029919061327b565b909155505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061206682611606565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008088888888866040516020016120bb959493929190613061565b6040516020818303038152906040528051906020012090506121138186868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506126a992505050565b600b546001600160a01b039182169116149998505050505050505050565b6001600160a01b0382166121875760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a3c565b6000818152600260205260409020546001600160a01b0316156121ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a3c565b6001600160a01b038216600090815260036020526040812080546001929061221590849061327b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166122ec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3c565b60006122f783611606565b9050806001600160a01b0316846001600160a01b031614806123325750836001600160a01b031661232784610af9565b6001600160a01b0316145b8061236257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661237d82611606565b6001600160a01b0316146123e55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a3c565b6001600160a01b0382166124475760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3c565b612452600082612031565b6001600160a01b038316600090815260036020526040812080546001929061247b9084906132c6565b90915550506001600160a01b03821660009081526003602052604081208054600192906124a990849061327b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61256784848461236a565b612573848484846126c5565b611cad5760405162461bcd60e51b8152600401610a3c906131a3565b6060816125b35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125dd57806125c781613344565b91506125d69050600a83613293565b91506125b7565b60008167ffffffffffffffff81111561260657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612630576020820181803683370190505b5090505b8415612362576126456001836132c6565b9150612652600a8661335f565b61265d90603061327b565b60f81b81838151811061268057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506126a2600a86613293565b9450612634565b60008060006126b885856127d2565b915091506115fe81612842565b60006001600160a01b0384163b156127c757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612709903390899088908890600401613153565b602060405180830381600087803b15801561272357600080fd5b505af1925050508015612753575060408051601f3d908101601f1916820190925261275091810190612f0f565b60015b6127ad573d808015612781576040519150601f19603f3d011682016040523d82523d6000602084013e612786565b606091505b5080516127a55760405162461bcd60e51b8152600401610a3c906131a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612362565b506001949350505050565b6000808251604114156128095760208301516040840151606085015160001a6127fd87828585612a43565b9450945050505061283b565b8251604014156128335760208301516040840151612828868383612b30565b93509350505061283b565b506000905060025b9250929050565b600081600481111561286457634e487b7160e01b600052602160045260246000fd5b141561286d5750565b600181600481111561288f57634e487b7160e01b600052602160045260246000fd5b14156128dd5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a3c565b60028160048111156128ff57634e487b7160e01b600052602160045260246000fd5b141561294d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a3c565b600381600481111561296f57634e487b7160e01b600052602160045260246000fd5b14156129c85760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a3c565b60048160048111156129ea57634e487b7160e01b600052602160045260246000fd5b141561149b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a3c565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612a7a5750600090506003612b27565b8460ff16601b14158015612a9257508460ff16601c14155b15612aa35750600090506004612b27565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612af7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612b2057600060019250925050612b27565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01612b5187828885612a43565b935093505050935093915050565b828054612b6b90613309565b90600052602060002090601f016020900481019282612b8d5760008555612bd3565b82601f10612ba65782800160ff19823516178555612bd3565b82800160010185558215612bd3579182015b82811115612bd3578235825591602001919060010190612bb8565b50612bdf929150612c10565b5090565b8260188101928215612bd35791602002820182811115612bd3578235825591602001919060010190612bb8565b5b80821115612bdf5760008155600101612c11565b80356001600160a01b0381168114612c3c57600080fd5b919050565b60008083601f840112612c52578081fd5b50813567ffffffffffffffff811115612c69578182fd5b6020830191508360208260051b850101111561283b57600080fd5b60008083601f840112612c95578182fd5b50813567ffffffffffffffff811115612cac578182fd5b60208301915083602082850101111561283b57600080fd5b600060208284031215612cd5578081fd5b612cde82612c25565b9392505050565b60008060408385031215612cf7578081fd5b612d0083612c25565b9150612d0e60208401612c25565b90509250929050565b600080600060608486031215612d2b578081fd5b612d3484612c25565b9250612d4260208501612c25565b9150604084013590509250925092565b60008060008060808587031215612d67578081fd5b612d7085612c25565b9350612d7e60208601612c25565b925060408501359150606085013567ffffffffffffffff80821115612da1578283fd5b818701915087601f830112612db4578283fd5b813581811115612dc657612dc661339f565b604051601f8201601f19908116603f01168101908382118183101715612dee57612dee61339f565b816040528281528a6020848701011115612e06578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612e39578182fd5b612e4283612c25565b915060208301358015158114612e56578182fd5b809150509250929050565b60008060408385031215612e73578182fd5b612e7c83612c25565b946020939093013593505050565b60008060208385031215612e9c578182fd5b823567ffffffffffffffff811115612eb2578283fd5b612ebe85828601612c41565b90969095509350505050565b6000610300808385031215612edd578182fd5b838184011115612eeb578182fd5b509092915050565b600060208284031215612f04578081fd5b8135612cde816133b5565b600060208284031215612f20578081fd5b8151612cde816133b5565b60008060208385031215612f3d578182fd5b823567ffffffffffffffff811115612f53578283fd5b612ebe85828601612c84565b600060208284031215612f70578081fd5b5035919050565b600080600080600060608688031215612f8e578283fd5b85359450602086013567ffffffffffffffff80821115612fac578485fd5b612fb889838a01612c84565b90965094506040880135915080821115612fd0578283fd5b50612fdd88828901612c84565b969995985093965092949392505050565b600080600060608486031215613002578081fd5b505081359360208301359350604090920135919050565b600081518084526130318160208601602086016132dd565b601f01601f19169290920160200192915050565b600081516130578185602086016132dd565b9290920192915050565b6bffffffffffffffffffffffff198660601b1681528460148201528284603483013790151560f81b910160348101919091526035019392505050565b8183823760009101908152919050565b600080845482600182811c9150808316806130c957607f831692505b60208084108214156130e957634e487b7160e01b87526022600452602487fd5b8180156130fd576001811461310e5761313a565b60ff1986168952848901965061313a565b60008b815260209020885b868110156131325781548b820152908501908301613119565b505084890196505b50505050505061314a8185613045565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061318690830184613019565b9695505050505050565b602081526000612cde6020830184613019565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561328e5761328e613373565b500190565b6000826132a2576132a2613389565b500490565b60008160001904831182151516156132c1576132c1613373565b500290565b6000828210156132d8576132d8613373565b500390565b60005b838110156132f85781810151838201526020016132e0565b83811115611cad5750506000910152565b600181811c9082168061331d57607f821691505b6020821081141561333e57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561335857613358613373565b5060010190565b60008261336e5761336e613389565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461149b57600080fdfea26469706673582212203f04d8dad32b97f042983bf2194eaa913848939a86ed37de4f395cba911d76f564736f6c63430008040033

Deployed Bytecode Sourcemap

44487:7666:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44704:49;;;;;;;;;;;;44742:11;44704:49;;;;;25068:25:1;;;25056:2;25041:18;44704:49:0;;;;;;;;32296:305;;;;;;;;;;-1:-1:-1;32296:305:0;;;;;:::i;:::-;;:::i;:::-;;;10776:14:1;;10769:22;10751:41;;10739:2;10724:18;32296:305:0;10706:92:1;51026:99:0;;;;;;;;;;-1:-1:-1;51026:99:0;;;;;:::i;:::-;;:::i;:::-;;33241:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34800:221::-;;;;;;;;;;-1:-1:-1;34800:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9795:32:1;;;9777:51;;9765:2;9750:18;34800:221:0;9732:102:1;34323:411:0;;;;;;;;;;-1:-1:-1;34323:411:0;;;;;:::i;:::-;;:::i;47063:878::-;;;;;;:::i;:::-;;:::i;50166:371::-;;;;;;;;;;-1:-1:-1;50166:371:0;;;;;:::i;:::-;;:::i;45574:26::-;;;;;;;;;;;;;;;;45711:25;;;;;;;;;;;;;;;;45642:29;;;;;;;;;;;;;;;;35690:339;;;;;;;;;;-1:-1:-1;35690:339:0;;;;;:::i;:::-;;:::i;46255:800::-;;;;;;:::i;:::-;;:::i;50834:89::-;;;;;;;;;;;;;:::i;50549:181::-;;;;;;;;;;;;;:::i;36100:185::-;;;;;;;;;;-1:-1:-1;36100:185:0;;;;;:::i;:::-;;:::i;51457:98::-;;;;;;;;;;-1:-1:-1;51457:98:0;;;;;:::i;:::-;;:::i;44995:80::-;;;;;;;;;;;;45033:42;44995:80;;48898:598;;;;;;;;;;-1:-1:-1;48898:598:0;;;;;:::i;:::-;;:::i;45828:40::-;;;;;;;;;;-1:-1:-1;45828:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32935:239;;;;;;;;;;-1:-1:-1;32935:239:0;;;;;:::i;:::-;;:::i;49504:654::-;;;;;;;;;;-1:-1:-1;49504:654:0;;;;;:::i;:::-;;:::i;51133:103::-;;;;;;;;;;-1:-1:-1;51133:103:0;;;;;:::i;:::-;;:::i;44760:49::-;;;;;;;;;;;;44798:11;44760:49;;44615:37;;;;;;;;;;;;44650:2;44615:37;;32665:208;;;;;;;;;;-1:-1:-1;32665:208:0;;;;;:::i;:::-;;:::i;13931:94::-;;;;;;;;;;;;;:::i;50742:80::-;;;;;;;;;;;;;:::i;45678:26::-;;;;;;;;;;;;;;;;45770:23;;;;;;;;;;-1:-1:-1;45770:23:0;;;;;;;;;;;51343:106;;;;;;;;;;-1:-1:-1;51343:106:0;;;;;:::i;:::-;;:::i;13280:87::-;;;;;;;;;;-1:-1:-1;13353:6:0;;-1:-1:-1;;;;;13353:6:0;13280:87;;33410:104;;;;;;;;;;;;;:::i;48378:512::-;;;;;;;;;;-1:-1:-1;48378:512:0;;;;;:::i;:::-;;:::i;45525:42::-;;;;;;;;;;;;;;;;44659:38;;;;;;;;;;;;44693:4;44659:38;;35093:295;;;;;;;;;;-1:-1:-1;35093:295:0;;;;;:::i;:::-;;:::i;44569:39::-;;;;;;;;;;;;44604:4;44569:39;;45084:52;;;;;;;;;;-1:-1:-1;45084:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;45607:28;;;;;;;;;;;;;;;;50931:83;;;;;;;;;;;;;:::i;36356:328::-;;;;;;;;;;-1:-1:-1;36356:328:0;;;;;:::i;:::-;;:::i;44905:83::-;;;;;;;;;;;;44946:42;44905:83;;44859:39;;;;;;;;;;;;44897:1;44859:39;;44816:36;;;;;;;;;;;;44851:1;44816:36;;51896:254;;;;;;;;;;-1:-1:-1;51896:254:0;;;;;:::i;:::-;;:::i;45481:37::-;;;;;;;;;;;;;;;;51563:114;;;;;;;;;;-1:-1:-1;51563:114:0;;;;;:::i;:::-;;:::i;45800:21::-;;;;;;;;;;-1:-1:-1;45800:21:0;;;;;;;;;;;45743:20;;;;;;;;;;-1:-1:-1;45743:20:0;;;;;;;;35459:164;;;;;;;;;;-1:-1:-1;35459:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35580:25:0;;;35556:4;35580:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35459:164;51685:199;;;;;;;;;;-1:-1:-1;51685:199:0;;;;;:::i;:::-;;:::i;14180:192::-;;;;;;;;;;-1:-1:-1;14180:192:0;;;;;:::i;:::-;;:::i;47953:417::-;;;;;;;;;;-1:-1:-1;47953:417:0;;;;;:::i;:::-;;:::i;32296:305::-;32398:4;-1:-1:-1;;;;;;32435:40:0;;-1:-1:-1;;;32435:40:0;;:105;;-1:-1:-1;;;;;;;32492:48:0;;-1:-1:-1;;;32492:48:0;32435:105;:158;;;-1:-1:-1;;;;;;;;;;25375:40:0;;;32557:36;32415:178;32296:305;-1:-1:-1;;32296:305:0:o;51026:99::-;13353:6;;-1:-1:-1;;;;;13353:6:0;12148:10;13500:23;13492:68;;;;-1:-1:-1;;;13492:68:0;;;;;;;:::i;:::-;;;;;;;;;51096:14:::1;:21:::0;;-1:-1:-1;;;;;;51096:21:0::1;-1:-1:-1::0;;;;;51096:21:0;;;::::1;::::0;;;::::1;::::0;;51026:99::o;33241:100::-;33295:13;33328:5;33321:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33241:100;:::o;34800:221::-;34876:7;38283:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38283:16:0;34896:73;;;;-1:-1:-1;;;34896:73:0;;19186:2:1;34896:73:0;;;19168:21:1;19225:2;19205:18;;;19198:30;19264:34;19244:18;;;19237:62;-1:-1:-1;;;19315:18:1;;;19308:42;19367:19;;34896:73:0;19158:234:1;34896:73:0;-1:-1:-1;34989:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34989:24:0;;34800:221::o;34323:411::-;34404:13;34420:23;34435:7;34420:14;:23::i;:::-;34404:39;;34468:5;-1:-1:-1;;;;;34462:11:0;:2;-1:-1:-1;;;;;34462:11:0;;;34454:57;;;;-1:-1:-1;;;34454:57:0;;21088:2:1;34454:57:0;;;21070:21:1;21127:2;21107:18;;;21100:30;21166:34;21146:18;;;21139:62;-1:-1:-1;;;21217:18:1;;;21210:31;21258:19;;34454:57:0;21060:223:1;34454:57:0;12148:10;-1:-1:-1;;;;;34546:21:0;;;;:62;;-1:-1:-1;34571:37:0;34588:5;12148:10;35459:164;:::i;34571:37::-;34524:168;;;;-1:-1:-1;;;34524:168:0;;16829:2:1;34524:168:0;;;16811:21:1;16868:2;16848:18;;;16841:30;16907:34;16887:18;;;16880:62;16978:26;16958:18;;;16951:54;17022:19;;34524:168:0;16801:246:1;34524:168:0;34705:21;34714:2;34718:7;34705:8;:21::i;:::-;34323:411;;;:::o;47063:878::-;47190:8;;;;47189:9;:24;;;;-1:-1:-1;47202:11:0;;;;;;;47189:24;47181:55;;;;-1:-1:-1;;;47181:55:0;;22613:2:1;47181:55:0;;;22595:21:1;22652:2;22632:18;;;22625:30;-1:-1:-1;;;22671:18:1;;;22664:48;22729:18;;47181:55:0;22585:168:1;47181:55:0;44604:4;47288:6;47271:14;;47255:13;;:30;;;;:::i;:::-;:39;;;;:::i;:::-;:51;;47247:84;;;;-1:-1:-1;;;47247:84:0;;24371:2:1;47247:84:0;;;24353:21:1;24410:2;24390:18;;;24383:30;-1:-1:-1;;;24429:18:1;;;24422:50;24489:18;;47247:84:0;24343:170:1;47247:84:0;47368:10;47350:29;;;;:17;:29;;;;;;44897:1;;47350:38;;47382:6;;47350:38;:::i;:::-;:53;;47342:80;;;;-1:-1:-1;;;47342:80:0;;14569:2:1;47342:80:0;;;14551:21:1;14608:2;14588:18;;;14581:30;-1:-1:-1;;;14627:18:1;;;14620:44;14681:18;;47342:80:0;14541:164:1;47342:80:0;47442:7;47450:5;;47442:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;47441:15;47433:46;;;;-1:-1:-1;;;47433:46:0;;14222:2:1;47433:46:0;;;14204:21:1;14261:2;14241:18;;;14234:30;-1:-1:-1;;;14280:18:1;;;14273:48;14338:18;;47433:46:0;14194:168:1;47433:46:0;47498:61;47516:10;47528:6;47536:5;;47543:9;;47554:4;47498:17;:61::i;:::-;47490:102;;;;-1:-1:-1;;;47490:102:0;;23313:2:1;47490:102:0;;;23295:21:1;23352:2;23332:18;;;23325:30;23391;23371:18;;;23364:58;23439:18;;47490:102:0;23285:178:1;47490:102:0;47635:9;47611:20;47625:6;44798:11;47611:20;:::i;:::-;:33;;47603:66;;;;-1:-1:-1;;;47603:66:0;;23670:2:1;47603:66:0;;;23652:21:1;23709:2;23689:18;;;23682:30;-1:-1:-1;;;23728:18:1;;;23721:50;23788:18;;47603:66:0;23642:170:1;47603:66:0;47699:4;47682:7;47690:5;;47682:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47732:6;47714:14;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;;47767:10:0;47749:29;;;;:17;:29;;;;;:39;;47782:6;;47749:29;:39;;47782:6;;47749:39;:::i;:::-;;;;-1:-1:-1;47818:1:0;;-1:-1:-1;47801:99:0;47826:6;47821:1;:11;47801:99;;47854:34;47860:10;47886:1;47872:11;;:15;;;;:::i;:::-;47854:5;:34::i;:::-;47834:3;;;;:::i;:::-;;;;47801:99;;;;47927:6;47912:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;47063:878:0:o;50166:371::-;13353:6;;-1:-1:-1;;;;;13353:6:0;12148:10;13500:23;13492:68;;;;-1:-1:-1;;;13492:68:0;;;;;;;:::i;:::-;50256:10:::1;;:17;;50241:11;;:32;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;50292:11:0::1;::::0;44650:2:::1;-1:-1:-1::0;50292:23:0::1;50284:71;;;::::0;-1:-1:-1;;;50284:71:0;;24720:2:1;50284:71:0::1;::::0;::::1;24702:21:1::0;24759:2;24739:18;;;24732:30;24798:34;24778:18;;;24771:62;-1:-1:-1;;;24849:18:1;;;24842:33;24892:19;;50284:71:0::1;24692:225:1::0;50284:71:0::1;50385:1;50368:117;50388:22:::0;;::::1;50368:117;;50432:41;50438:10:::0;;50449:5:::1;50453:1;50449::::0;:5:::1;:::i;:::-;50438:17;;;;;-1:-1:-1::0;;;50438:17:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50471:1;50457:11;;:15;;;;:::i;50432:41::-;50412:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50368:117;;;;50512:10;;:17;;50497:11;;:32;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;50166:371:0:o;35690:339::-;35885:41;12148:10;35918:7;35885:18;:41::i;:::-;35877:103;;;;-1:-1:-1;;;35877:103:0;;;;;;;:::i;:::-;35993:28;36003:4;36009:2;36013:7;35993:9;:28::i;46255:800::-;46374:8;;;;:24;;;;-1:-1:-1;46387:11:0;;;;;;;46386:12;46374:24;46366:52;;;;-1:-1:-1;;;46366:52:0;;12345:2:1;46366:52:0;;;12327:21:1;12384:2;12364:18;;;12357:30;-1:-1:-1;;;12403:18:1;;;12396:45;12458:18;;46366:52:0;12317:165:1;46366:52:0;44851:1;46437:6;:18;;46429:60;;;;-1:-1:-1;;;46429:60:0;;20370:2:1;46429:60:0;;;20352:21:1;20409:2;20389:18;;;20382:30;20448:31;20428:18;;;20421:59;20497:18;;46429:60:0;20342:179:1;46429:60:0;44604:4;46541:6;46524:14;;46508:13;;:30;;;;:::i;:::-;:39;;;;:::i;:::-;:51;;46500:78;;;;-1:-1:-1;;;46500:78:0;;14569:2:1;46500:78:0;;;14551:21:1;14608:2;14588:18;;;14581:30;-1:-1:-1;;;14627:18:1;;;14620:44;14681:18;;46500:78:0;14541:164:1;46500:78:0;46598:7;46606:5;;46598:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;46597:15;46589:46;;;;-1:-1:-1;;;46589:46:0;;14222:2:1;46589:46:0;;;14204:21:1;14261:2;14241:18;;;14234:30;-1:-1:-1;;;14280:18:1;;;14273:48;14338:18;;46589:46:0;14194:168:1;46589:46:0;46654:62;46672:10;46684:6;46692:5;;46699:9;;46710:5;46654:17;:62::i;:::-;46646:103;;;;-1:-1:-1;;;46646:103:0;;23313:2:1;46646:103:0;;;23295:21:1;23352:2;23332:18;;;23325:30;23391;23371:18;;;23364:58;23439:18;;46646:103:0;23285:178:1;46646:103:0;46792:9;46768:20;46782:6;44742:11;46768:20;:::i;:::-;:33;;46760:66;;;;-1:-1:-1;;;46760:66:0;;23670:2:1;46760:66:0;;;23652:21:1;23709:2;23689:18;;;23682:30;-1:-1:-1;;;23728:18:1;;;23721:50;23788:18;;46760:66:0;23642:170:1;46760:66:0;46864:4;46847:7;46855:5;;46847:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;46896:6;46879:13;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;46932:1:0;;-1:-1:-1;46915:99:0;46940:6;46935:1;:11;46915:99;;46968:34;46974:10;47000:1;46986:11;;:15;;;;:::i;46968:34::-;46948:3;;;;:::i;:::-;;;;46915:99;;50834:89;13353:6;;-1:-1:-1;;;;;13353:6:0;12148:10;13500:23;13492:68;;;;-1:-1:-1;;;13492:68:0;;;;;;;:::i;:::-;50904:11:::1;::::0;;-1:-1:-1;;50889:26:0;::::1;50904:11;::::0;;;::::1;;;50903:12;50889:26:::0;;::::1;;::::0;;50834:89::o;50549:181::-;13353:6;;-1:-1:-1;;;;;13353:6:0;12148:10;13500:23;13492:68;;;;-1:-1:-1;;;13492:68:0;;;;;;;:::i;:::-;45033:42:::1;50599:57;50629:26;50653:2;50629:21;:26;:::i;:::-;50599:57;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;50667:55:0::1;::::0;44946:42:::1;::::0;50700:21:::1;50667:55:::0;::::1;;;::::0;::::1;::::0;;;50700:21;44946:42;50667:55;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50549:181::o:0;36100:185::-;36238:39;36255:4;36261:2;36265:7;36238:39;;;;;;;;;;;;:16;:39::i;51457:98::-;13353:6;;-1:-1:-1;;;;;13353:6:0;12148:10;13500:23;13492:68;;;;-1:-1:-1;;;13492:68:0;;;;;;;:::i;:::-;51528:19:::1;:13;51544:3:::0;;51528:19:::1;:::i;48898:598::-:0;48969:7;49015:14;;48997:15;:32;48989:63;;;;-1:-1:-1;;;48989:63:0;;18839:2:1;48989:63:0;;;18821:21:1;18878:2;18858:18;;;18851:30;-1:-1:-1;;;18897:18:1;;;18890:48;18955:18;;48989:63:0;18811:168:1;48989:63:0;49063:15;;49091:371;49111:17;;;49091:371;;;49150:13;49166:6;;49173:1;49166:9;;;;;-1:-1:-1;;;49166:9:0;;;;;;;;;;;;;;;49150:25;;49194:16;49204:5;49194:9;:16::i;:::-;:48;;;;-1:-1:-1;49232:10:0;49214:14;49222:5;49214:7;:14::i;:::-;-1:-1:-1;;;;;49214:28:0;;49194:48;49190:261;;;49263:22;49288:20;;;:13;:20;;;;;;49416:11;;49430:5;;49358:19;;:53;;49397:14;49358:53;;;49380:14;;49358:53;49339:73;;:15;:73;:::i;:::-;49338:89;;;;:::i;:::-;:97;;;;:::i;:::-;49327:108;;;;:::i;:::-;;;49190:261;;-1:-1:-1;49130:3:0;;;;:::i;:::-;;;;49091:371;;;-1:-1:-1;49481:7:0;48898:598;-1:-1:-1;;;48898:598:0:o;32935:239::-;33007:7;33043:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33043:16:0;33078:19;33070:73;;;;-1:-1:-1;;;33070:73:0;;17665:2:1;33070:73:0;;;17647:21:1;17704:2;17684:18;;;17677:30;17743:34;17723:18;;;17716:62;-1:-1:-1;;;17794:18:1;;;17787:39;17843:19;;33070:73:0;17637:231:1;49504:654:0;49597:14;;49579:15;:32;49571:63;;;;-1:-1:-1;;;49571:63:0;;18839:2:1;49571:63:0;;;18821:21:1;18878:2;18858:18;;;18851:30;-1:-1:-1;;;18897:18:1;;;18890:48;18955:18;;49571:63:0;18811:168:1;49571:63:0;49645:15;;49673:428;49693:17;;;49673:428;;;49732:13;49748:6;;49755:1;49748:9;;;;;-1:-1:-1;;;49748:9:0;;;;;;;;;;;;;;;49732:25;;49776:16;49786:5;49776:9;:16::i;:::-;:48;;;;-1:-1:-1;49814:10:0;49796:14;49804:5;49796:7;:14::i;:::-;-1:-1:-1;;;;;49796:28:0;;49776:48;49772:318;;;49845:22;49870:20;;;:13;:20;;;;;;49998:11;;50012:5;;49940:19;;:53;;49979:14;49940:53;;;49962:14;;49940:53;49921:73;;:15;:73;:::i;:::-;49920:89;;;;:::i;:::-;:97;;;;:::i;:::-;49909:108;;;;:::i;:::-;50036:20;;;;:13;:20;;;;;50059:15;50036:38;;49909:108;-1:-1:-1;;49772:318:0;-1:-1:-1;49712:3:0;;;;:::i;:::-;;;;49673:428;;;-1:-1:-1;50113:11:0;;:37;;-1:-1:-1;;;50113:37:0;;50130:10;50113:37;;;10506:51:1;10573:18;;;10566:34;;;-1:-1:-1;;;;;50113:11:0;;;;:16;;10479:18:1;;50113:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49504:654;;;:::o;51133:103::-;13353:6;;-1:-1:-1;;;;;13353:6:0;12148:10;13500:23;13492:68;;;;-1:-1:-1;;;13492:68:0;;;;;;;:::i;:::-;51202:11:::1;:26:::0;;-1:-1:-1;;;;;;51202:26:0::1;-1:-1:-1::0;;;;;51202:26:0;;;::::1;::::0;;;::::1;::::0;;51133:103::o;32665:208::-;32737:7;-1:-1:-1;;;;;32765:19:0;;32757:74;;;;-1:-1:-1;;;32757:74:0;;17254:2:1;32757:74:0;;;17236:21:1;17293:2;17273:18;;;17266:30;17332:34;17312:18;;;17305:62;-1:-1:-1;;;17383:18:1;;;17376:40;17433:19;;32757:74:0;17226:232:1;32757:74:0;-1:-1:-1;;;;;;32849:16:0;;;;;:9;:16;;;;;;;32665:208::o;13931:94::-;13353:6;;-1:-1:-1;;;;;13353:6:0;12148:10;13500:23;13492:68;;;;-1:-1:-1;;;13492:68:0;;;;;;;:::i;:::-;13996:21:::1;14014:1;13996:9;:21::i;:::-;13931:94::o:0;50742:80::-;13353:6;;-1:-1:-1;;;;;13353:6:0;12148:10;13500:23;13492:68;;;;-1:-1:-1;;;13492:68:0;;;;;;;:::i;:::-;50806:8:::1;::::0;;-1:-1:-1;;50794:20:0;::::1;50806:8;::::0;;::::1;50805:9;50794:20;::::0;;50742:80::o;51343:106::-;13353:6;;-1:-1:-1;;;;;13353:6:0;12148:10;13500:23;13492:68;;;;-1:-1:-1;;;13492:68:0;;;;;;;:::i;:::-;51418:11:::1;:23:::0;51343:106::o;33410:104::-;33466:13;33499:7;33492:14;;;;;:::i;48378:512::-;48475:9;;;;;;;48467:48;;;;-1:-1:-1;;;48467:48:0;;21840:2:1;48467:48:0;;;21822:21:1;21879:2;21859:18;;;21852:30;21918:28;21898:18;;;21891:56;21964:18;;48467:48:0;21812:176:1;48467:48:0;48557:10;48534:19;48542:10;48534:7;:19::i;:::-;-1:-1:-1;;;;;48534:33:0;;:70;;;;-1:-1:-1;48594:10:0;48571:19;48579:10;48571:7;:19::i;:::-;-1:-1:-1;;;;;48571:33:0;;48534:70;:101;;;;-1:-1:-1;48625:10:0;48608:13;48616:4;48608:7;:13::i;:::-;-1:-1:-1;;;;;48608:27:0;;48534:101;48526:137;;;;-1:-1:-1;;;48526:137:0;;24019:2:1;48526:137:0;;;24001:21:1;24058:2;24038:18;;;24031:30;24097:25;24077:18;;;24070:53;24140:18;;48526:137:0;23991:173:1;48526:137:0;48682:21;48692:10;48682:9;:21::i;:::-;:46;;;;;48707:21;48717:10;48707:9;:21::i;:::-;48682:61;;;;;48739:4;48732;:11;48682:61;:77;;;;;48754:5;48747:4;:12;48682:77;48674:111;;;;-1:-1:-1;;;48674:111:0;;21490:2:1;48674:111:0;;;21472:21:1;21529:2;21509:18;;;21502:30;-1:-1:-1;;;21548:18:1;;;21541:51;21609:18;;48674:111:0;21462:171:1;48674:111:0;48805:14;;;;:8;:14;;;;;;;;48804:15;48796:52;;;;-1:-1:-1;;;48796:52:0;;22960:2:1;48796:52:0;;;22942:21:1;22999:2;22979:18;;;22972:30;23038:26;23018:18;;;23011:54;23082:18;;48796:52:0;22932:174:1;48796:52:0;48861:14;;;;:8;:14;;;;;:21;;-1:-1:-1;;48861:21:0;48878:4;48861:21;;;-1:-1:-1;;48378:512:0:o;35093:295::-;-1:-1:-1;;;;;35196:24:0;;12148:10;35196:24;;35188:62;;;;-1:-1:-1;;;35188:62:0;;15317:2:1;35188:62:0;;;15299:21:1;15356:2;15336:18;;;15329:30;15395:27;15375:18;;;15368:55;15440:18;;35188:62:0;15289:175:1;35188:62:0;12148:10;35263:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35263:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35263:53:0;;;;;;;;;;35332:48;;10751:41:1;;;35263:42:0;;12148:10;35332:48;;10724:18:1;35332:48:0;;;;;;;35093:295;;:::o;50931:83::-;13353:6;;-1:-1:-1;;;;;13353:6:0;12148:10;13500:23;13492:68;;;;-1:-1:-1;;;13492:68:0;;;;;;;:::i;:::-;50997:9:::1;::::0;;-1:-1:-1;;50984:22:0;::::1;50997:9:::0;;;;::::1;;;50996:10;50984:22:::0;;::::1;;::::0;;50931:83::o;36356:328::-;36531:41;12148:10;36564:7;36531:18;:41::i;:::-;36523:103;;;;-1:-1:-1;;;36523:103:0;;;;;;;:::i;:::-;36637:39;36651:4;36657:2;36661:7;36670:5;36637:13;:39::i;:::-;36356:328;;;;:::o;51896:254::-;38259:4;38283:16;;;:7;:16;;;;;;51969:13;;-1:-1:-1;;;;;38283:16:0;51995:60;;;;-1:-1:-1;;;51995:60:0;;20728:2:1;51995:60:0;;;20710:21:1;20767:2;20747:18;;;20740:30;20806:33;20786:18;;;20779:61;20857:18;;51995:60:0;20700:181:1;51995:60:0;52107:13;52122:18;:7;:16;:18::i;:::-;52090:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52076:66;;51896:254;;;:::o;51563:114::-;13353:6;;-1:-1:-1;;;;;13353:6:0;12148:10;13500:23;13492:68;;;;-1:-1:-1;;;13492:68:0;;;;;;;:::i;:::-;51646:23:::1;:16;51665:4:::0;51646:23:::1;;:::i;:::-;;51563:114:::0;:::o;51685:199::-;51742:4;51777;51767:7;:14;51759:40;;;;-1:-1:-1;;;51759:40:0;;16487:2:1;51759:40:0;;;16469:21:1;16526:2;16506:18;;;16499:30;-1:-1:-1;;;16545:18:1;;;16538:43;16598:18;;51759:40:0;16459:163:1;51759:40:0;51853:13;51863:3;51853:7;:13;:::i;:::-;51817:16;51834:13;51844:3;51834:7;:13;:::i;:::-;51817:31;;;;;-1:-1:-1;;;51817:31:0;;;;;;;;;;;51870:1;51817:50;;:54;;:59;;51685:199;-1:-1:-1;;51685:199:0:o;14180:192::-;13353:6;;-1:-1:-1;;;;;13353:6:0;12148:10;13500:23;13492:68;;;;-1:-1:-1;;;13492:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14269:22:0;::::1;14261:73;;;::::0;-1:-1:-1;;;14261:73:0;;13458:2:1;14261:73:0::1;::::0;::::1;13440:21:1::0;13497:2;13477:18;;;13470:30;13536:34;13516:18;;;13509:62;-1:-1:-1;;;13587:18:1;;;13580:36;13633:19;;14261:73:0::1;13430:228:1::0;14261:73:0::1;14345:19;14355:8;14345:9;:19::i;47953:417::-:0;48019:9;;;;;;;48011:48;;;;-1:-1:-1;;;48011:48:0;;21840:2:1;48011:48:0;;;21822:21:1;21879:2;21859:18;;;21852:30;21918:28;21898:18;;;21891:56;21964:18;;48011:48:0;21812:176:1;48011:48:0;48084:6;48070:10;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;48109:10:0;;44693:4;-1:-1:-1;48109:21:0;48101:55;;;;-1:-1:-1;;;48101:55:0;;13108:2:1;48101:55:0;;;13090:21:1;13147:2;13127:18;;;13120:30;-1:-1:-1;;;13166:18:1;;;13159:51;13227:18;;48101:55:0;13080:171:1;48101:55:0;48169:11;;-1:-1:-1;;;;;48169:11:0;:16;48186:10;48198:18;:6;48207:9;48198:18;:::i;:::-;48169:48;;-1:-1:-1;;;;;;48169:48:0;;;;;;;-1:-1:-1;;;;;10524:32:1;;;48169:48:0;;;10506:51:1;10573:18;;;10566:34;10479:18;;48169:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48247:1:0;;-1:-1:-1;;;48230:99:0;48255:6;48250:1;:11;48230:99;;48283:34;48289:10;48315:1;48301:11;;:15;;;;:::i;48283:34::-;48263:3;;;;:::i;:::-;;;;48230:99;;;;48356:6;48341:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;47953:417:0:o;42176:174::-;42251:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42251:29:0;-1:-1:-1;;;;;42251:29:0;;;;;;;;:24;;42305:23;42251:24;42305:14;:23::i;:::-;-1:-1:-1;;;;;42296:46:0;;;;;;;;;;;42176:174;;:::o;45939:308::-;46082:4;46099:12;46141:6;46149;46157:5;;46164:7;46124:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46114:59;;;;;;46099:74;;46209:30;46223:4;46229:9;;46209:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46209:13:0;;-1:-1:-1;;;46209:30:0:i;:::-;46191:14;;-1:-1:-1;;;;;46191:48:0;;;:14;;:48;;45939:308;-1:-1:-1;;;;;;;;;45939:308:0:o;40172:382::-;-1:-1:-1;;;;;40252:16:0;;40244:61;;;;-1:-1:-1;;;40244:61:0;;18478:2:1;40244:61:0;;;18460:21:1;;;18497:18;;;18490:30;18556:34;18536:18;;;18529:62;18608:18;;40244:61:0;18450:182:1;40244:61:0;38259:4;38283:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38283:16:0;:30;40316:58;;;;-1:-1:-1;;;40316:58:0;;13865:2:1;40316:58:0;;;13847:21:1;13904:2;13884:18;;;13877:30;13943;13923:18;;;13916:58;13991:18;;40316:58:0;13837:178:1;40316:58:0;-1:-1:-1;;;;;40445:13:0;;;;;;:9;:13;;;;;:18;;40462:1;;40445:13;:18;;40462:1;;40445:18;:::i;:::-;;;;-1:-1:-1;;40474:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40474:21:0;-1:-1:-1;;;;;40474:21:0;;;;;;;;40513:33;;40474:16;;;40513:33;;40474:16;;40513:33;40172:382;;:::o;38488:348::-;38581:4;38283:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38283:16:0;38598:73;;;;-1:-1:-1;;;38598:73:0;;16074:2:1;38598:73:0;;;16056:21:1;16113:2;16093:18;;;16086:30;16152:34;16132:18;;;16125:62;-1:-1:-1;;;16203:18:1;;;16196:42;16255:19;;38598:73:0;16046:234:1;38598:73:0;38682:13;38698:23;38713:7;38698:14;:23::i;:::-;38682:39;;38751:5;-1:-1:-1;;;;;38740:16:0;:7;-1:-1:-1;;;;;38740:16:0;;:51;;;;38784:7;-1:-1:-1;;;;;38760:31:0;:20;38772:7;38760:11;:20::i;:::-;-1:-1:-1;;;;;38760:31:0;;38740:51;:87;;;-1:-1:-1;;;;;;35580:25:0;;;35556:4;35580:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38795:32;38732:96;38488:348;-1:-1:-1;;;;38488:348:0:o;41480:578::-;41639:4;-1:-1:-1;;;;;41612:31:0;:23;41627:7;41612:14;:23::i;:::-;-1:-1:-1;;;;;41612:31:0;;41604:85;;;;-1:-1:-1;;;41604:85:0;;19960:2:1;41604:85:0;;;19942:21:1;19999:2;19979:18;;;19972:30;20038:34;20018:18;;;20011:62;-1:-1:-1;;;20089:18:1;;;20082:39;20138:19;;41604:85:0;19932:231:1;41604:85:0;-1:-1:-1;;;;;41708:16:0;;41700:65;;;;-1:-1:-1;;;41700:65:0;;14912:2:1;41700:65:0;;;14894:21:1;14951:2;14931:18;;;14924:30;14990:34;14970:18;;;14963:62;-1:-1:-1;;;15041:18:1;;;15034:34;15085:19;;41700:65:0;14884:226:1;41700:65:0;41882:29;41899:1;41903:7;41882:8;:29::i;:::-;-1:-1:-1;;;;;41924:15:0;;;;;;:9;:15;;;;;:20;;41943:1;;41924:15;:20;;41943:1;;41924:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41955:13:0;;;;;;:9;:13;;;;;:18;;41972:1;;41955:13;:18;;41972:1;;41955:18;:::i;:::-;;;;-1:-1:-1;;41984:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41984:21:0;-1:-1:-1;;;;;41984:21:0;;;;;;;;;42023:27;;41984:16;;42023:27;;;;;;;41480:578;;;:::o;14380:173::-;14455:6;;;-1:-1:-1;;;;;14472:17:0;;;-1:-1:-1;;;;;;14472:17:0;;;;;;;14505:40;;14455:6;;;14472:17;14455:6;;14505:40;;14436:16;;14505:40;14380:173;;:::o;37566:315::-;37723:28;37733:4;37739:2;37743:7;37723:9;:28::i;:::-;37770:48;37793:4;37799:2;37803:7;37812:5;37770:22;:48::i;:::-;37762:111;;;;-1:-1:-1;;;37762:111:0;;;;;;;:::i;9684:723::-;9740:13;9961:10;9957:53;;-1:-1:-1;;9988:10:0;;;;;;;;;;;;-1:-1:-1;;;9988:10:0;;;;;9684:723::o;9957:53::-;10035:5;10020:12;10076:78;10083:9;;10076:78;;10109:8;;;;:::i;:::-;;-1:-1:-1;10132:10:0;;-1:-1:-1;10140:2:0;10132:10;;:::i;:::-;;;10076:78;;;10164:19;10196:6;10186:17;;;;;;-1:-1:-1;;;10186:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10186:17:0;;10164:39;;10214:154;10221:10;;10214:154;;10248:11;10258:1;10248:11;;:::i;:::-;;-1:-1:-1;10317:10:0;10325:2;10317:5;:10;:::i;:::-;10304:24;;:2;:24;:::i;:::-;10291:39;;10274:6;10281;10274:14;;;;;;-1:-1:-1;;;10274:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;10274:56:0;;;;;;;;-1:-1:-1;10345:11:0;10354:2;10345:11;;:::i;:::-;;;10214:154;;4702:231;4780:7;4801:17;4820:18;4842:27;4853:4;4859:9;4842:10;:27::i;:::-;4800:69;;;;4880:18;4892:5;4880:11;:18::i;42915:799::-;43070:4;-1:-1:-1;;;;;43091:13:0;;15649:20;15697:8;43087:620;;43127:72;;-1:-1:-1;;;43127:72:0;;-1:-1:-1;;;;;43127:36:0;;;;;:72;;12148:10;;43178:4;;43184:7;;43193:5;;43127:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43127:72:0;;;;;;;;-1:-1:-1;;43127:72:0;;;;;;;;;;;;:::i;:::-;;;43123:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43369:13:0;;43365:272;;43412:60;;-1:-1:-1;;;43412:60:0;;;;;;;:::i;43365:272::-;43587:6;43581:13;43572:6;43568:2;43564:15;43557:38;43123:529;-1:-1:-1;;;;;;43250:51:0;-1:-1:-1;;;43250:51:0;;-1:-1:-1;43243:58:0;;43087:620;-1:-1:-1;43691:4:0;42915:799;;;;;;:::o;2592:1308::-;2673:7;2682:12;2907:9;:16;2927:2;2907:22;2903:990;;;3203:4;3188:20;;3182:27;3253:4;3238:20;;3232:27;3311:4;3296:20;;3290:27;2946:9;3282:36;3354:25;3365:4;3282:36;3182:27;3232;3354:10;:25::i;:::-;3347:32;;;;;;;;;2903:990;3401:9;:16;3421:2;3401:22;3397:496;;;3676:4;3661:20;;3655:27;3727:4;3712:20;;3706:27;3769:23;3780:4;3655:27;3706;3769:10;:23::i;:::-;3762:30;;;;;;;;3397:496;-1:-1:-1;3841:1:0;;-1:-1:-1;3845:35:0;3397:496;2592:1308;;;;;:::o;863:643::-;941:20;932:5;:29;;;;;;-1:-1:-1;;;932:29:0;;;;;;;;;;928:571;;;863:643;:::o;928:571::-;1039:29;1030:5;:38;;;;;;-1:-1:-1;;;1030:38:0;;;;;;;;;;1026:473;;;1085:34;;-1:-1:-1;;;1085:34:0;;11632:2:1;1085:34:0;;;11614:21:1;11671:2;11651:18;;;11644:30;11710:26;11690:18;;;11683:54;11754:18;;1085:34:0;11604:174:1;1026:473:0;1150:35;1141:5;:44;;;;;;-1:-1:-1;;;1141:44:0;;;;;;;;;;1137:362;;;1202:41;;-1:-1:-1;;;1202:41:0;;11985:2:1;1202:41:0;;;11967:21:1;12024:2;12004:18;;;11997:30;12063:33;12043:18;;;12036:61;12114:18;;1202:41:0;11957:181:1;1137:362:0;1274:30;1265:5;:39;;;;;;-1:-1:-1;;;1265:39:0;;;;;;;;;;1261:238;;;1321:44;;-1:-1:-1;;;1321:44:0;;15671:2:1;1321:44:0;;;15653:21:1;15710:2;15690:18;;;15683:30;15749:34;15729:18;;;15722:62;-1:-1:-1;;;15800:18:1;;;15793:32;15842:19;;1321:44:0;15643:224:1;1261:238:0;1396:30;1387:5;:39;;;;;;-1:-1:-1;;;1387:39:0;;;;;;;;;;1383:116;;;1443:44;;-1:-1:-1;;;1443:44:0;;18075:2:1;1443:44:0;;;18057:21:1;18114:2;18094:18;;;18087:30;18153:34;18133:18;;;18126:62;-1:-1:-1;;;18204:18:1;;;18197:32;18246:19;;1443:44:0;18047:224:1;6201:1632:0;6332:7;;7266:66;7253:79;;7249:163;;;-1:-1:-1;7365:1:0;;-1:-1:-1;7369:30:0;7349:51;;7249:163;7426:1;:7;;7431:2;7426:7;;:18;;;;;7437:1;:7;;7442:2;7437:7;;7426:18;7422:102;;;-1:-1:-1;7477:1:0;;-1:-1:-1;7481:30:0;7461:51;;7422:102;7638:24;;;7621:14;7638:24;;;;;;;;;11030:25:1;;;11103:4;11091:17;;11071:18;;;11064:45;;;;11125:18;;;11118:34;;;11168:18;;;11161:34;;;7638:24:0;;11002:19:1;;7638:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7638:24:0;;-1:-1:-1;;7638:24:0;;;-1:-1:-1;;;;;;;7677:20:0;;7673:103;;7730:1;7734:29;7714:50;;;;;;;7673:103;7796:6;-1:-1:-1;7804:20:0;;-1:-1:-1;6201:1632:0;;;;;;;;:::o;5196:391::-;5310:7;;-1:-1:-1;;;;;5411:75:0;;5513:3;5509:12;;;5523:2;5505:21;5554:25;5565:4;5505:21;5574:1;5411:75;5554:10;:25::i;:::-;5547:32;;;;;;5196:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:391::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:2;;342:6;334;327:22;286:2;-1:-1:-1;370:20:1;;413:18;402:30;;399:2;;;452:8;442;435:26;399:2;496:4;488:6;484:17;472:29;;556:3;549:4;539:6;536:1;532:14;524:6;520:27;516:38;513:47;510:2;;;573:1;570;563:12;588:375;639:8;649:6;703:3;696:4;688:6;684:17;680:27;670:2;;728:8;718;711:26;670:2;-1:-1:-1;758:20:1;;801:18;790:30;;787:2;;;840:8;830;823:26;787:2;884:4;876:6;872:17;860:29;;936:3;929:4;920:6;912;908:19;904:30;901:39;898:2;;;953:1;950;943:12;968:196;1027:6;1080:2;1068:9;1059:7;1055:23;1051:32;1048:2;;;1101:6;1093;1086:22;1048:2;1129:29;1148:9;1129:29;:::i;:::-;1119:39;1038:126;-1:-1:-1;;;1038:126:1:o;1169:270::-;1237:6;1245;1298:2;1286:9;1277:7;1273:23;1269:32;1266:2;;;1319:6;1311;1304:22;1266:2;1347:29;1366:9;1347:29;:::i;:::-;1337:39;;1395:38;1429:2;1418:9;1414:18;1395:38;:::i;:::-;1385:48;;1256:183;;;;;:::o;1444:338::-;1521:6;1529;1537;1590:2;1578:9;1569:7;1565:23;1561:32;1558:2;;;1611:6;1603;1596:22;1558:2;1639:29;1658:9;1639:29;:::i;:::-;1629:39;;1687:38;1721:2;1710:9;1706:18;1687:38;:::i;:::-;1677:48;;1772:2;1761:9;1757:18;1744:32;1734:42;;1548:234;;;;;:::o;1787:1183::-;1882:6;1890;1898;1906;1959:3;1947:9;1938:7;1934:23;1930:33;1927:2;;;1981:6;1973;1966:22;1927:2;2009:29;2028:9;2009:29;:::i;:::-;1999:39;;2057:38;2091:2;2080:9;2076:18;2057:38;:::i;:::-;2047:48;;2142:2;2131:9;2127:18;2114:32;2104:42;;2197:2;2186:9;2182:18;2169:32;2220:18;2261:2;2253:6;2250:14;2247:2;;;2282:6;2274;2267:22;2247:2;2325:6;2314:9;2310:22;2300:32;;2370:7;2363:4;2359:2;2355:13;2351:27;2341:2;;2397:6;2389;2382:22;2341:2;2438;2425:16;2460:2;2456;2453:10;2450:2;;;2466:18;;:::i;:::-;2541:2;2535:9;2509:2;2595:13;;-1:-1:-1;;2591:22:1;;;2615:2;2587:31;2583:40;2571:53;;;2639:18;;;2659:22;;;2636:46;2633:2;;;2685:18;;:::i;:::-;2725:10;2721:2;2714:22;2760:2;2752:6;2745:18;2800:7;2795:2;2790;2786;2782:11;2778:20;2775:33;2772:2;;;2826:6;2818;2811:22;2772:2;2887;2882;2878;2874:11;2869:2;2861:6;2857:15;2844:46;2910:15;;;2927:2;2906:24;2899:40;;;;1917:1053;;;;-1:-1:-1;1917:1053:1;;-1:-1:-1;;;;1917:1053:1:o;2975:367::-;3040:6;3048;3101:2;3089:9;3080:7;3076:23;3072:32;3069:2;;;3122:6;3114;3107:22;3069:2;3150:29;3169:9;3150:29;:::i;:::-;3140:39;;3229:2;3218:9;3214:18;3201:32;3276:5;3269:13;3262:21;3255:5;3252:32;3242:2;;3303:6;3295;3288:22;3242:2;3331:5;3321:15;;;3059:283;;;;;:::o;3347:264::-;3415:6;3423;3476:2;3464:9;3455:7;3451:23;3447:32;3444:2;;;3497:6;3489;3482:22;3444:2;3525:29;3544:9;3525:29;:::i;:::-;3515:39;3601:2;3586:18;;;;3573:32;;-1:-1:-1;;;3434:177:1:o;3616:457::-;3702:6;3710;3763:2;3751:9;3742:7;3738:23;3734:32;3731:2;;;3784:6;3776;3769:22;3731:2;3829:9;3816:23;3862:18;3854:6;3851:30;3848:2;;;3899:6;3891;3884:22;3848:2;3943:70;4005:7;3996:6;3985:9;3981:22;3943:70;:::i;:::-;4032:8;;3917:96;;-1:-1:-1;3721:352:1;-1:-1:-1;;;;3721:352:1:o;4078:294::-;4163:6;4194:3;4238:2;4226:9;4217:7;4213:23;4209:32;4206:2;;;4259:6;4251;4244:22;4206:2;4303:7;4298:2;4287:9;4283:18;4280:31;4277:2;;;4329:6;4321;4314:22;4277:2;-1:-1:-1;4357:9:1;;4174:198;-1:-1:-1;;4174:198:1:o;4839:255::-;4897:6;4950:2;4938:9;4929:7;4925:23;4921:32;4918:2;;;4971:6;4963;4956:22;4918:2;5015:9;5002:23;5034:30;5058:5;5034:30;:::i;5099:259::-;5168:6;5221:2;5209:9;5200:7;5196:23;5192:32;5189:2;;;5242:6;5234;5227:22;5189:2;5279:9;5273:16;5298:30;5322:5;5298:30;:::i;5363:430::-;5434:6;5442;5495:2;5483:9;5474:7;5470:23;5466:32;5463:2;;;5516:6;5508;5501:22;5463:2;5561:9;5548:23;5594:18;5586:6;5583:30;5580:2;;;5631:6;5623;5616:22;5580:2;5675:58;5725:7;5716:6;5705:9;5701:22;5675:58;:::i;5798:190::-;5857:6;5910:2;5898:9;5889:7;5885:23;5881:32;5878:2;;;5931:6;5923;5916:22;5878:2;-1:-1:-1;5959:23:1;;5868:120;-1:-1:-1;5868:120:1:o;5993:816::-;6093:6;6101;6109;6117;6125;6178:2;6166:9;6157:7;6153:23;6149:32;6146:2;;;6199:6;6191;6184:22;6146:2;6240:9;6227:23;6217:33;;6301:2;6290:9;6286:18;6273:32;6324:18;6365:2;6357:6;6354:14;6351:2;;;6386:6;6378;6371:22;6351:2;6430:58;6480:7;6471:6;6460:9;6456:22;6430:58;:::i;:::-;6507:8;;-1:-1:-1;6404:84:1;-1:-1:-1;6595:2:1;6580:18;;6567:32;;-1:-1:-1;6611:16:1;;;6608:2;;;6645:6;6637;6630:22;6608:2;;6689:60;6741:7;6730:8;6719:9;6715:24;6689:60;:::i;:::-;6136:673;;;;-1:-1:-1;6136:673:1;;-1:-1:-1;6768:8:1;;6663:86;6136:673;-1:-1:-1;;;6136:673:1:o;6814:326::-;6891:6;6899;6907;6960:2;6948:9;6939:7;6935:23;6931:32;6928:2;;;6981:6;6973;6966:22;6928:2;-1:-1:-1;;7009:23:1;;;7079:2;7064:18;;7051:32;;-1:-1:-1;7130:2:1;7115:18;;;7102:32;;6918:222;-1:-1:-1;6918:222:1:o;7145:257::-;7186:3;7224:5;7218:12;7251:6;7246:3;7239:19;7267:63;7323:6;7316:4;7311:3;7307:14;7300:4;7293:5;7289:16;7267:63;:::i;:::-;7384:2;7363:15;-1:-1:-1;;7359:29:1;7350:39;;;;7391:4;7346:50;;7194:208;-1:-1:-1;;7194:208:1:o;7407:185::-;7449:3;7487:5;7481:12;7502:52;7547:6;7542:3;7535:4;7528:5;7524:16;7502:52;:::i;:::-;7570:16;;;;;7457:135;-1:-1:-1;;7457:135:1:o;7597:566::-;7871:26;7867:31;7858:6;7854:2;7850:15;7846:53;7841:3;7834:66;7930:6;7925:2;7920:3;7916:12;7909:28;7981:6;7973;7968:2;7963:3;7959:12;7946:42;8113:14;;8106:22;8101:3;8097:32;8007:16;;8050:2;8042:11;;8086:44;;;;8154:2;8146:11;;;-1:-1:-1;;;7824:339:1:o;8168:275::-;8353:6;8345;8340:3;8327:33;8309:3;8379:16;;8404:15;;;8379:16;8317:126;-1:-1:-1;8317:126:1:o;8448:1178::-;8624:3;8653;8688:6;8682:13;8718:3;8740:1;8768:9;8764:2;8760:18;8750:28;;8828:2;8817:9;8813:18;8850;8840:2;;8894:4;8886:6;8882:17;8872:27;;8840:2;8920;8968;8960:6;8957:14;8937:18;8934:38;8931:2;;;-1:-1:-1;;;8995:33:1;;9051:4;9048:1;9041:15;9081:4;9002:3;9069:17;8931:2;9112:18;9139:104;;;;9257:1;9252:322;;;;9105:469;;9139:104;-1:-1:-1;;9172:24:1;;9160:37;;9217:16;;;;-1:-1:-1;9139:104:1;;9252:322;25151:4;25170:17;;;25220:4;25204:21;;9347:3;9363:165;9377:6;9374:1;9371:13;9363:165;;;9455:14;;9442:11;;;9435:35;9498:16;;;;9392:10;;9363:165;;;9367:3;;9557:6;9552:3;9548:16;9541:23;;9105:469;;;;;;;9590:30;9616:3;9608:6;9590:30;:::i;:::-;9583:37;8632:994;-1:-1:-1;;;;;8632:994:1:o;9839:488::-;-1:-1:-1;;;;;10108:15:1;;;10090:34;;10160:15;;10155:2;10140:18;;10133:43;10207:2;10192:18;;10185:34;;;10255:3;10250:2;10235:18;;10228:31;;;10033:4;;10276:45;;10301:19;;10293:6;10276:45;:::i;:::-;10268:53;10042:285;-1:-1:-1;;;;;;10042:285:1:o;11206:219::-;11355:2;11344:9;11337:21;11318:4;11375:44;11415:2;11404:9;11400:18;11392:6;11375:44;:::i;12487:414::-;12689:2;12671:21;;;12728:2;12708:18;;;12701:30;12767:34;12762:2;12747:18;;12740:62;-1:-1:-1;;;12833:2:1;12818:18;;12811:48;12891:3;12876:19;;12661:240::o;19397:356::-;19599:2;19581:21;;;19618:18;;;19611:30;19677:34;19672:2;19657:18;;19650:62;19744:2;19729:18;;19571:182::o;21993:413::-;22195:2;22177:21;;;22234:2;22214:18;;;22207:30;22273:34;22268:2;22253:18;;22246:62;-1:-1:-1;;;22339:2:1;22324:18;;22317:47;22396:3;22381:19;;22167:239::o;25236:128::-;25276:3;25307:1;25303:6;25300:1;25297:13;25294:2;;;25313:18;;:::i;:::-;-1:-1:-1;25349:9:1;;25284:80::o;25369:120::-;25409:1;25435;25425:2;;25440:18;;:::i;:::-;-1:-1:-1;25474:9:1;;25415:74::o;25494:168::-;25534:7;25600:1;25596;25592:6;25588:14;25585:1;25582:21;25577:1;25570:9;25563:17;25559:45;25556:2;;;25607:18;;:::i;:::-;-1:-1:-1;25647:9:1;;25546:116::o;25667:125::-;25707:4;25735:1;25732;25729:8;25726:2;;;25740:18;;:::i;:::-;-1:-1:-1;25777:9:1;;25716:76::o;25797:258::-;25869:1;25879:113;25893:6;25890:1;25887:13;25879:113;;;25969:11;;;25963:18;25950:11;;;25943:39;25915:2;25908:10;25879:113;;;26010:6;26007:1;26004:13;26001:2;;;-1:-1:-1;;26045:1:1;26027:16;;26020:27;25850:205::o;26060:380::-;26139:1;26135:12;;;;26182;;;26203:2;;26257:4;26249:6;26245:17;26235:27;;26203:2;26310;26302:6;26299:14;26279:18;26276:38;26273:2;;;26356:10;26351:3;26347:20;26344:1;26337:31;26391:4;26388:1;26381:15;26419:4;26416:1;26409:15;26273:2;;26115:325;;;:::o;26445:135::-;26484:3;-1:-1:-1;;26505:17:1;;26502:2;;;26525:18;;:::i;:::-;-1:-1:-1;26572:1:1;26561:13;;26492:88::o;26585:112::-;26617:1;26643;26633:2;;26648:18;;:::i;:::-;-1:-1:-1;26682:9:1;;26623:74::o;26702:127::-;26763:10;26758:3;26754:20;26751:1;26744:31;26794:4;26791:1;26784:15;26818:4;26815:1;26808:15;26834:127;26895:10;26890:3;26886:20;26883:1;26876:31;26926:4;26923:1;26916:15;26950:4;26947:1;26940:15;26966:127;27027:10;27022:3;27018:20;27015:1;27008:31;27058:4;27055:1;27048:15;27082:4;27079:1;27072:15;27098:131;-1:-1:-1;;;;;;27172:32:1;;27162:43;;27152:2;;27219:1;27216;27209:12

Swarm Source

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