ETH Price: $3,096.69 (+1.22%)
Gas: 2 Gwei

Token

Toadkens (TOAD)
 

Overview

Max Total Supply

3,433 TOAD

Holders

1,233

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
craigw.eth
Balance
3 TOAD
0x1b7c38ed20337eb5107e4d2324d6fb7485b0828b
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:
Toadkens

Compiler Version
v0.8.10+commit.fc410830

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-07
*/

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

library ECDSA {
    /**
     * @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.
     *
     * 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]
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // 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 recover(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 recover(hash, r, vs);
        } else {
            revert("ECDSA: invalid signature length");
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} 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.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return recover(hash, v, r, s);
    }

    /**
     * @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) {
        // 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 (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): 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.
        require(
            uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,
            "ECDSA: invalid signature 's' value"
        );
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @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));
    }
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IERC721Enumerable is IERC721 {

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

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

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

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

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}. 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 { }
}

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

contract Toadkens is ERC721Enumerable, Ownable {
    using SafeMath for uint256;
    using Address for address;
    using ECDSA for bytes32;

    string private baseURI;
    ILilyPass public LilyPass;
    ICroak public Croak;

    uint256 public publicSupply = 3844;
    uint256 public passReserve = 600;
    uint256 public maxSupply = publicSupply + passReserve;
    uint256 public maxPreMint = 2;
    uint256 public prePrice = 0.02 ether;
    uint256 public price = 0.06 ether;

    bool public presaleActive = false;
    bool public saleActive = false;
    bool public mintIncludeReservedActive = false;
    bool public mintPassActive = false;

    mapping (address => uint256) public balanceGenesis;
    mapping (uint256 => uint256) private _passListClaimed;
    mapping (address => uint256) private _presaleListClaimed;

    constructor(string memory name, string memory symbol, string memory uri) ERC721(name, symbol) {
        baseURI = uri;
    }    

    function _hash(address _address) internal pure returns (bytes32)
    {
        return keccak256(abi.encodePacked(_address));
    }

    function _verify(bytes32 hash, bytes memory signature) internal pure returns (bool) {
        return (_recover(hash, signature) == 0x8f20d89bEe77ea2AbBaF46b5DEF3Ef109ab9d358);
    }

    function _recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        return hash.recover(signature);
    }

    function airdrop(uint256 numberOfMints) external onlyOwner {
        uint256 supply = totalSupply();
        require(supply.add(numberOfMints) <= maxSupply,   "Purchase would exceed max supply of Toadkens");
        
        for(uint256 i; i < numberOfMints; i++){
            _safeMint(msg.sender, supply + i);
            balanceGenesis[msg.sender]++;
        }
    }    

    function mintPass(uint256 passId, uint256 numberOfMints) public payable {
        uint256 supply = totalSupply();
        uint256 amount = LilyPass.balanceOf(msg.sender);
        require(amount > 0,                                                     "You do not own a Lily Pass");
        require(LilyPass.ownerOf(passId) == msg.sender,                         "You do not own that Lily Pass");
        require(mintPassActive,                                                 "Sale must be active to mint");
        require(numberOfMints > 0 && numberOfMints <= 3,                        "Invalid purchase amount");
        require(_passListClaimed[passId] + numberOfMints <= 3,                  "You cannot mint any more Lily Pass Toadkens.");
        require(supply.add(numberOfMints) <= passReserve,                       "Purchase would exceed max supply of Reserved Toadkens");
        require(supply.add(numberOfMints) <= maxSupply,                         "Purchase would exceed max supply of Toadkens");
        require(prePrice.mul(numberOfMints) == msg.value,                       "Ether value sent is not correct");
        _passListClaimed[passId] += numberOfMints;

        for(uint256 i; i < numberOfMints; i++){
            _safeMint(msg.sender, supply + i);
            balanceGenesis[msg.sender]++;
        }
    }

    function mintPresale(bytes memory signature, uint256 numberOfMints) public payable {
        uint256 supply = totalSupply();
        require(_verify(_hash(msg.sender), signature),                          "This hash's signature is invalid.");
        require(presaleActive,                                                  "Presale must be active to mint");
        require(numberOfMints > 0 && numberOfMints <= 2,                        "Invalid purchase amount");
        require(_presaleListClaimed[msg.sender] + numberOfMints <= maxPreMint,  "You cannot mint any more presale Toadkens.");
        require(supply.add(numberOfMints) <= publicSupply,                      "Purchase would exceed max supply of Toadkens");
        require(price.mul(numberOfMints) == msg.value,                          "Ether value sent is not correct");
        _presaleListClaimed[msg.sender] += numberOfMints;

        for(uint256 i; i < numberOfMints; i++){
            _safeMint(msg.sender, supply + i);
            balanceGenesis[msg.sender]++;
        }
    }

   function mint(uint256 numberOfMints) public payable {
        uint256 supply = totalSupply();
        require(msg.sender == tx.origin,                    "Cannot use a contract to mint");
        require(saleActive,                                 "Sale must be active to mint");
        require(numberOfMints > 0 && numberOfMints <= 5,    "Invalid purchase amount");
        require(supply.add(numberOfMints) <= publicSupply,  "Purchase would exceed max supply of Toadkens");
        require(price.mul(numberOfMints) == msg.value,      "Ether value sent is not correct");
        
        for(uint256 i; i < numberOfMints; i++) {
            _safeMint(msg.sender, supply + i);
            balanceGenesis[msg.sender]++;
        }
    }

   function mintIncludeReserved(uint256 numberOfMints) public payable {
        uint256 supply = totalSupply();
        require(msg.sender == tx.origin,                                 "Cannot use a contract to mint");
        require(mintIncludeReservedActive,                               "Sale must be active to mint");
        require(numberOfMints > 0 && numberOfMints <= 5,                 "Invalid purchase amount");
        require(supply.add(numberOfMints) <= publicSupply + passReserve, "Purchase would exceed max supply of Toadkens");
        require(price.mul(numberOfMints) == msg.value,                   "Ether value sent is not correct");
        
        for(uint256 i; i < numberOfMints; i++) {
            _safeMint(msg.sender, supply + i);
            balanceGenesis[msg.sender]++;
        }
    }

    modifier toadkensOwner(uint256 toadkensId) {
        require(ownerOf(toadkensId) == msg.sender, "Cannot interact with a Toadkens you do not own");
        _;
    }

    function setCroak(address CroakAddress) external onlyOwner {
        Croak = ICroak(CroakAddress);
    }
    
    function transferFrom(address from, address to, uint256 tokenId) public override {
        if (tokenId < maxSupply) {
            Croak.updateToadkensReward(from, to);
            balanceGenesis[from]--;
            balanceGenesis[to]++;
        }
        ERC721.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override {
        if (tokenId < maxSupply) {
            Croak.updateToadkensReward(from, to);
            balanceGenesis[from]--;
            balanceGenesis[to]++;
        }
        ERC721.safeTransferFrom(from, to, tokenId, data);
    }

    function walletOfOwner(address owner) external view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokensId;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function toggleMintPass() public onlyOwner {
        mintPassActive = !mintPassActive;
    }

    function togglePresale() public onlyOwner {
        presaleActive = !presaleActive;
    }

    function toggleSale() public onlyOwner {
        saleActive = !saleActive;
    }

    function toggleMintIncludeReservedActive() public onlyOwner {
        mintIncludeReservedActive = !mintIncludeReservedActive;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function setPrePrice(uint256 newPrice) public onlyOwner {
        prePrice = newPrice;
    }

    function setLilyPass(address LilyPassAddress) external onlyOwner {
        LilyPass = ILilyPass(LilyPassAddress);
    }
    
    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
}

interface ICroak {
    function burn(address _from, uint256 _amount) external;
    function updateToadkensReward(address _from, address _to) external;
} 

interface ILilyPass {
    function balanceOf(address owner) external view returns (uint256 balance);
    function ownerOf(uint256 tokenId) external view returns (address owner);
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"uri","type":"string"}],"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":"Croak","outputs":[{"internalType":"contract ICroak","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LilyPass","outputs":[{"internalType":"contract ILilyPass","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mintIncludeReserved","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIncludeReservedActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"passId","type":"uint256"},{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mintPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPassActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"passReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","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":"address","name":"CroakAddress","type":"address"}],"name":"setCroak","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"LilyPassAddress","type":"address"}],"name":"setLilyPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":"toggleMintIncludeReservedActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMintPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610f04600e819055610258600f8190556200001f91620001d5565b601055600260115566470de4df82000060125566d529ae9e8600006013556014805463ffffffff191690553480156200005757600080fd5b5060405162003734380380620037348339810160408190526200007a91620002c9565b825183908390620000939060009060208501906200012f565b508051620000a99060019060208401906200012f565b5050506000620000be6200012b60201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35080516200012190600b9060208401906200012f565b5050505062000397565b3390565b8280546200013d906200035a565b90600052602060002090601f016020900481019282620001615760008555620001ac565b82601f106200017c57805160ff1916838001178555620001ac565b82800160010185558215620001ac579182015b82811115620001ac5782518255916020019190600101906200018f565b50620001ba929150620001be565b5090565b5b80821115620001ba5760008155600101620001bf565b60008219821115620001f757634e487b7160e01b600052601160045260246000fd5b500190565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200022457600080fd5b81516001600160401b0380821115620002415762000241620001fc565b604051601f8301601f19908116603f011681019082821181831017156200026c576200026c620001fc565b816040528381526020925086838588010111156200028957600080fd5b600091505b83821015620002ad57858201830151818301840152908201906200028e565b83821115620002bf5760008385830101525b9695505050505050565b600080600060608486031215620002df57600080fd5b83516001600160401b0380821115620002f757600080fd5b620003058783880162000212565b945060208601519150808211156200031c57600080fd5b6200032a8783880162000212565b935060408601519150808211156200034157600080fd5b50620003508682870162000212565b9150509250925092565b600181811c908216806200036f57607f821691505b602082108114156200039157634e487b7160e01b600052602260045260246000fd5b50919050565b61338d80620003a76000396000f3fe6080604052600436106102935760003560e01c806379a349121161015a578063a7ee066d116100c1578063e2b26b151161007a578063e2b26b151461075a578063e567cad614610787578063e985e9c51461079d578063f0999af4146107e6578063f2fde38b14610806578063f3cfa9b51461082657600080fd5b8063a7ee066d146106bb578063b88d4fde146106d1578063c835990e146106f1578063c87b56dd14610711578063d0561a2914610731578063d5abeb011461074457600080fd5b8063a035b1fe11610113578063a035b1fe1461062a578063a0712d6814610640578063a07f091114610653578063a22cb46514610666578063a398958514610686578063a778a9fd1461069b57600080fd5b806379a34912146105815780637d8966e4146105a25780638da5cb5b146105b757806391b7f5ed146105d557806395d89b41146105f557806397dc4a131461060a57600080fd5b8063438b6300116101fe5780636352211e116101b75780636352211e146104e45780636464eb641461050457806368428a1b1461051757806370a0823114610536578063715018a61461055657806375db01231461056b57600080fd5b8063438b63001461042757806346417f94146104545780634f6ccce71461047457806353135ca01461049457806355f804b3146104ae5780635e84d723146104ce57600080fd5b806323b872dd1161025057806323b872dd1461037d5780632f745c591461039d57806334393743146103bd5780633ccfd60b146103d257806340f284f4146103e757806342842e0e1461040757600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b31461032757806318160ddd146103495780631b98d18814610368575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612be6565b610846565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610871565b6040516102c49190612c5b565b3480156102fb57600080fd5b5061030f61030a366004612c6e565b610903565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004612c9c565b61099d565b005b34801561035557600080fd5b506008545b6040519081526020016102c4565b34801561037457600080fd5b50610347610ab3565b34801561038957600080fd5b50610347610398366004612cc8565b610afc565b3480156103a957600080fd5b5061035a6103b8366004612c9c565b610bcb565b3480156103c957600080fd5b50610347610c61565b3480156103de57600080fd5b50610347610c9f565b3480156103f357600080fd5b50600d5461030f906001600160a01b031681565b34801561041357600080fd5b50610347610422366004612cc8565b610cfc565b34801561043357600080fd5b50610447610442366004612d09565b610d17565b6040516102c49190612d26565b34801561046057600080fd5b50600c5461030f906001600160a01b031681565b34801561048057600080fd5b5061035a61048f366004612c6e565b610db9565b3480156104a057600080fd5b506014546102b89060ff1681565b3480156104ba57600080fd5b506103476104c9366004612df6565b610e4c565b3480156104da57600080fd5b5061035a600e5481565b3480156104f057600080fd5b5061030f6104ff366004612c6e565b610e89565b610347610512366004612e5f565b610f00565b34801561052357600080fd5b506014546102b890610100900460ff1681565b34801561054257600080fd5b5061035a610551366004612d09565b611176565b34801561056257600080fd5b506103476111fd565b34801561057757600080fd5b5061035a600f5481565b34801561058d57600080fd5b506014546102b8906301000000900460ff1681565b3480156105ae57600080fd5b50610347611271565b3480156105c357600080fd5b50600a546001600160a01b031661030f565b3480156105e157600080fd5b506103476105f0366004612c6e565b6112b8565b34801561060157600080fd5b506102e26112e7565b34801561061657600080fd5b50610347610625366004612c6e565b6112f6565b34801561063657600080fd5b5061035a60135481565b61034761064e366004612c6e565b6113a5565b610347610661366004612c6e565b6114f8565b34801561067257600080fd5b50610347610681366004612ea4565b611659565b34801561069257600080fd5b5061034761171e565b3480156106a757600080fd5b506103476106b6366004612d09565b611769565b3480156106c757600080fd5b5061035a60115481565b3480156106dd57600080fd5b506103476106ec366004612ee2565b6117b5565b3480156106fd57600080fd5b5061034761070c366004612c6e565b611885565b34801561071d57600080fd5b506102e261072c366004612c6e565b6118b4565b61034761073f366004612f4e565b61198f565b34801561075057600080fd5b5061035a60105481565b34801561076657600080fd5b5061035a610775366004612d09565b60156020526000908152604090205481565b34801561079357600080fd5b5061035a60125481565b3480156107a957600080fd5b506102b86107b8366004612f70565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f257600080fd5b50610347610801366004612d09565b611d3e565b34801561081257600080fd5b50610347610821366004612d09565b611d8a565b34801561083257600080fd5b506014546102b89062010000900460ff1681565b60006001600160e01b0319821663780e9d6360e01b148061086b575061086b82611e75565b92915050565b60606000805461088090612f9e565b80601f01602080910402602001604051908101604052809291908181526020018280546108ac90612f9e565b80156108f95780601f106108ce576101008083540402835291602001916108f9565b820191906000526020600020905b8154815290600101906020018083116108dc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109815760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109a882610e89565b9050806001600160a01b0316836001600160a01b03161415610a165760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610978565b336001600160a01b0382161480610a325750610a3281336107b8565b610aa45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610978565b610aae8383611ec5565b505050565b600a546001600160a01b03163314610add5760405162461bcd60e51b815260040161097890612fd9565b6014805462ff0000198116620100009182900460ff1615909102179055565b601054811015610bc057600d54604051630de39a7b60e31b81526001600160a01b038581166004830152848116602483015290911690636f1cd3d890604401600060405180830381600087803b158015610b5557600080fd5b505af1158015610b69573d6000803e3d6000fd5b505050506001600160a01b0383166000908152601560205260408120805491610b9183613024565b90915550506001600160a01b0382166000908152601560205260408120805491610bba8361303b565b91905055505b610aae838383611f33565b6000610bd683611176565b8210610c385760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610978565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c8b5760405162461bcd60e51b815260040161097890612fd9565b6014805460ff19811660ff90911615179055565b600a546001600160a01b03163314610cc95760405162461bcd60e51b815260040161097890612fd9565b6040514790339082156108fc029083906000818181858888f19350505050158015610cf8573d6000803e3d6000fd5b5050565b610aae838383604051806020016040528060008152506117b5565b60606000610d2483611176565b905060008167ffffffffffffffff811115610d4157610d41612d6a565b604051908082528060200260200182016040528015610d6a578160200160208202803683370190505b50905060005b82811015610db157610d828582610bcb565b828281518110610d9457610d94613056565b602090810291909101015280610da98161303b565b915050610d70565b509392505050565b6000610dc460085490565b8210610e275760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610978565b60088281548110610e3a57610e3a613056565b90600052602060002001549050919050565b600a546001600160a01b03163314610e765760405162461bcd60e51b815260040161097890612fd9565b8051610cf890600b906020840190612b34565b6000818152600260205260408120546001600160a01b03168061086b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610978565b6000610f0b60085490565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120909150610f4f9084611f64565b610fa55760405162461bcd60e51b815260206004820152602160248201527f5468697320686173682773207369676e617475726520697320696e76616c69646044820152601760f91b6064820152608401610978565b60145460ff16610ff75760405162461bcd60e51b815260206004820152601e60248201527f50726573616c65206d7573742062652061637469766520746f206d696e7400006044820152606401610978565b600082118015611008575060028211155b6110245760405162461bcd60e51b81526004016109789061306c565b601154336000908152601760205260409020546110429084906130a3565b11156110a35760405162461bcd60e51b815260206004820152602a60248201527f596f752063616e6e6f74206d696e7420616e79206d6f72652070726573616c65604482015269102a37b0b235b2b7399760b11b6064820152608401610978565b600e546110b08284611fa0565b11156110ce5760405162461bcd60e51b8152600401610978906130bb565b60135434906110dd9084611fac565b146110fa5760405162461bcd60e51b815260040161097890613107565b33600090815260176020526040812080548492906111199084906130a3565b90915550600090505b828110156111705761113d3361113883856130a3565b611fb8565b3360009081526015602052604081208054916111588361303b565b919050555080806111689061303b565b915050611122565b50505050565b60006001600160a01b0382166111e15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610978565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112275760405162461bcd60e51b815260040161097890612fd9565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331461129b5760405162461bcd60e51b815260040161097890612fd9565b6014805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146112e25760405162461bcd60e51b815260040161097890612fd9565b601355565b60606001805461088090612f9e565b600a546001600160a01b031633146113205760405162461bcd60e51b815260040161097890612fd9565b600061132b60085490565b60105490915061133b8284611fa0565b11156113595760405162461bcd60e51b8152600401610978906130bb565b60005b82811015610aae576113723361113883856130a3565b33600090815260156020526040812080549161138d8361303b565b9190505550808061139d9061303b565b91505061135c565b60006113b060085490565b90503332146114015760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f7420757365206120636f6e747261637420746f206d696e740000006044820152606401610978565b601454610100900460ff166114285760405162461bcd60e51b81526004016109789061313e565b600082118015611439575060058211155b6114555760405162461bcd60e51b81526004016109789061306c565b600e546114628284611fa0565b11156114805760405162461bcd60e51b8152600401610978906130bb565b601354349061148f9084611fac565b146114ac5760405162461bcd60e51b815260040161097890613107565b60005b82811015610aae576114c53361113883856130a3565b3360009081526015602052604081208054916114e08361303b565b919050555080806114f09061303b565b9150506114af565b600061150360085490565b90503332146115545760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f7420757365206120636f6e747261637420746f206d696e740000006044820152606401610978565b60145462010000900460ff1661157c5760405162461bcd60e51b81526004016109789061313e565b60008211801561158d575060058211155b6115a95760405162461bcd60e51b81526004016109789061306c565b600f54600e546115b991906130a3565b6115c38284611fa0565b11156115e15760405162461bcd60e51b8152600401610978906130bb565b60135434906115f09084611fac565b1461160d5760405162461bcd60e51b815260040161097890613107565b60005b82811015610aae576116263361113883856130a3565b3360009081526015602052604081208054916116418361303b565b919050555080806116519061303b565b915050611610565b6001600160a01b0382163314156116b25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610978565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117485760405162461bcd60e51b815260040161097890612fd9565b6014805463ff00000019811663010000009182900460ff1615909102179055565b600a546001600160a01b031633146117935760405162461bcd60e51b815260040161097890612fd9565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60105482101561187957600d54604051630de39a7b60e31b81526001600160a01b038681166004830152858116602483015290911690636f1cd3d890604401600060405180830381600087803b15801561180e57600080fd5b505af1158015611822573d6000803e3d6000fd5b505050506001600160a01b038416600090815260156020526040812080549161184a83613024565b90915550506001600160a01b03831660009081526015602052604081208054916118738361303b565b91905055505b61117084848484611fd2565b600a546001600160a01b031633146118af5760405162461bcd60e51b815260040161097890612fd9565b601255565b6000818152600260205260409020546060906001600160a01b03166119335760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610978565b600061193d612004565b9050600081511161195d5760405180602001604052806000815250611988565b8061196784612013565b604051602001611978929190613175565b6040516020818303038152906040525b9392505050565b600061199a60085490565b600c546040516370a0823160e01b81523360048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa1580156119e8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0c91906131a4565b905060008111611a5e5760405162461bcd60e51b815260206004820152601a60248201527f596f7520646f206e6f74206f776e2061204c696c7920506173730000000000006044820152606401610978565b600c546040516331a9108f60e11b81526004810186905233916001600160a01b031690636352211e90602401602060405180830381865afa158015611aa7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611acb91906131bd565b6001600160a01b031614611b215760405162461bcd60e51b815260206004820152601d60248201527f596f7520646f206e6f74206f776e2074686174204c696c7920506173730000006044820152606401610978565b6014546301000000900460ff16611b4a5760405162461bcd60e51b81526004016109789061313e565b600083118015611b5b575060038311155b611b775760405162461bcd60e51b81526004016109789061306c565b600084815260166020526040902054600390611b949085906130a3565b1115611bf75760405162461bcd60e51b815260206004820152602c60248201527f596f752063616e6e6f74206d696e7420616e79206d6f7265204c696c7920506160448201526b39b9902a37b0b235b2b7399760a11b6064820152608401610978565b600f54611c048385611fa0565b1115611c705760405162461bcd60e51b815260206004820152603560248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015274206f6620526573657276656420546f61646b656e7360581b6064820152608401610978565b601054611c7d8385611fa0565b1115611c9b5760405162461bcd60e51b8152600401610978906130bb565b6012543490611caa9085611fac565b14611cc75760405162461bcd60e51b815260040161097890613107565b60008481526016602052604081208054859290611ce59084906130a3565b90915550600090505b83811015611d3757611d043361113883866130a3565b336000908152601560205260408120805491611d1f8361303b565b91905055508080611d2f9061303b565b915050611cee565b5050505050565b600a546001600160a01b03163314611d685760405162461bcd60e51b815260040161097890612fd9565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314611db45760405162461bcd60e51b815260040161097890612fd9565b6001600160a01b038116611e195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610978565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480611ea657506001600160e01b03198216635b5e139f60e01b145b8061086b57506301ffc9a760e01b6001600160e01b031983161461086b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611efa82610e89565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611f3d3382612119565b611f595760405162461bcd60e51b8152600401610978906131da565b610aae83838361220c565b6000611f7083836123b7565b6001600160a01b0316738f20d89bee77ea2abbaf46b5def3ef109ab9d3586001600160a01b031614905092915050565b600061198882846130a3565b6000611988828461322b565b610cf88282604051806020016040528060008152506123c3565b611fdc3383612119565b611ff85760405162461bcd60e51b8152600401610978906131da565b611170848484846123f6565b6060600b805461088090612f9e565b6060816120375750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612061578061204b8161303b565b915061205a9050600a83613260565b915061203b565b60008167ffffffffffffffff81111561207c5761207c612d6a565b6040519080825280601f01601f1916602001820160405280156120a6576020820181803683370190505b5090505b8415612111576120bb600183613274565b91506120c8600a8661328b565b6120d39060306130a3565b60f81b8183815181106120e8576120e8613056565b60200101906001600160f81b031916908160001a90535061210a600a86613260565b94506120aa565b949350505050565b6000818152600260205260408120546001600160a01b03166121925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610978565b600061219d83610e89565b9050806001600160a01b0316846001600160a01b031614806121d85750836001600160a01b03166121cd84610903565b6001600160a01b0316145b8061211157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16612111565b826001600160a01b031661221f82610e89565b6001600160a01b0316146122875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610978565b6001600160a01b0382166122e95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610978565b6122f4838383612429565b6122ff600082611ec5565b6001600160a01b0383166000908152600360205260408120805460019290612328908490613274565b90915550506001600160a01b03821660009081526003602052604081208054600192906123569084906130a3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061198883836124e1565b6123cd8383612585565b6123da60008484846126d3565b610aae5760405162461bcd60e51b81526004016109789061329f565b61240184848461220c565b61240d848484846126d3565b6111705760405162461bcd60e51b81526004016109789061329f565b6001600160a01b0383166124845761247f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124a7565b816001600160a01b0316836001600160a01b0316146124a7576124a783826127d1565b6001600160a01b0382166124be57610aae8161286e565b826001600160a01b0316826001600160a01b031614610aae57610aae828261291d565b60008151604114156125155760208201516040830151606084015160001a61250b86828585612961565b935050505061086b565b81516040141561253d5760208201516040830151612534858383612b0a565b9250505061086b565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610978565b6001600160a01b0382166125db5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610978565b6000818152600260205260409020546001600160a01b0316156126405760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610978565b61264c60008383612429565b6001600160a01b03821660009081526003602052604081208054600192906126759084906130a3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156127c657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127179033908990889088906004016132f1565b6020604051808303816000875af1925050508015612752575060408051601f3d908101601f1916820190925261274f91810190613324565b60015b6127ac573d808015612780576040519150601f19603f3d011682016040523d82523d6000602084013e612785565b606091505b5080516127a45760405162461bcd60e51b81526004016109789061329f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612111565b506001949350505050565b600060016127de84611176565b6127e89190613274565b60008381526007602052604090205490915080821461283b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061288090600190613274565b600083815260096020526040812054600880549394509092849081106128a8576128a8613056565b9060005260206000200154905080600883815481106128c9576128c9613056565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061290157612901613341565b6001900381819060005260206000200160009055905550505050565b600061292883611176565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156129de5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610978565b8360ff16601b14806129f357508360ff16601c145b612a4a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610978565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015612a9e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612b015760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610978565b95945050505050565b60006001600160ff1b03821660ff83901c601b01612b2a86828785612961565b9695505050505050565b828054612b4090612f9e565b90600052602060002090601f016020900481019282612b625760008555612ba8565b82601f10612b7b57805160ff1916838001178555612ba8565b82800160010185558215612ba8579182015b82811115612ba8578251825591602001919060010190612b8d565b50612bb4929150612bb8565b5090565b5b80821115612bb45760008155600101612bb9565b6001600160e01b031981168114612be357600080fd5b50565b600060208284031215612bf857600080fd5b813561198881612bcd565b60005b83811015612c1e578181015183820152602001612c06565b838111156111705750506000910152565b60008151808452612c47816020860160208601612c03565b601f01601f19169290920160200192915050565b6020815260006119886020830184612c2f565b600060208284031215612c8057600080fd5b5035919050565b6001600160a01b0381168114612be357600080fd5b60008060408385031215612caf57600080fd5b8235612cba81612c87565b946020939093013593505050565b600080600060608486031215612cdd57600080fd5b8335612ce881612c87565b92506020840135612cf881612c87565b929592945050506040919091013590565b600060208284031215612d1b57600080fd5b813561198881612c87565b6020808252825182820181905260009190848201906040850190845b81811015612d5e57835183529284019291840191600101612d42565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612d9b57612d9b612d6a565b604051601f8501601f19908116603f01168101908282118183101715612dc357612dc3612d6a565b81604052809350858152868686011115612ddc57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612e0857600080fd5b813567ffffffffffffffff811115612e1f57600080fd5b8201601f81018413612e3057600080fd5b61211184823560208401612d80565b600082601f830112612e5057600080fd5b61198883833560208501612d80565b60008060408385031215612e7257600080fd5b823567ffffffffffffffff811115612e8957600080fd5b612e9585828601612e3f565b95602094909401359450505050565b60008060408385031215612eb757600080fd5b8235612ec281612c87565b915060208301358015158114612ed757600080fd5b809150509250929050565b60008060008060808587031215612ef857600080fd5b8435612f0381612c87565b93506020850135612f1381612c87565b925060408501359150606085013567ffffffffffffffff811115612f3657600080fd5b612f4287828801612e3f565b91505092959194509250565b60008060408385031215612f6157600080fd5b50508035926020909101359150565b60008060408385031215612f8357600080fd5b8235612f8e81612c87565b91506020830135612ed781612c87565b600181811c90821680612fb257607f821691505b60208210811415612fd357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816130335761303361300e565b506000190190565b600060001982141561304f5761304f61300e565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526017908201527f496e76616c696420707572636861736520616d6f756e74000000000000000000604082015260600190565b600082198211156130b6576130b661300e565b500190565b6020808252602c908201527f507572636861736520776f756c6420657863656564206d617820737570706c7960408201526b206f6620546f61646b656e7360a01b606082015260800190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b60008351613187818460208801612c03565b83519083019061319b818360208801612c03565b01949350505050565b6000602082840312156131b657600080fd5b5051919050565b6000602082840312156131cf57600080fd5b815161198881612c87565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008160001904831182151516156132455761324561300e565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261326f5761326f61324a565b500490565b6000828210156132865761328661300e565b500390565b60008261329a5761329a61324a565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b2a90830184612c2f565b60006020828403121561333657600080fd5b815161198881612bcd565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220064cfe5e2343a8220b027bdfd781bd4f8aeda0b99c237200332b88fb36dd435864736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008546f61646b656e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004544f4144000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e6f73697132504b4e59525831566f79567044506271514b72686e4a394a44366758706e3632427a366855422f00000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c806379a349121161015a578063a7ee066d116100c1578063e2b26b151161007a578063e2b26b151461075a578063e567cad614610787578063e985e9c51461079d578063f0999af4146107e6578063f2fde38b14610806578063f3cfa9b51461082657600080fd5b8063a7ee066d146106bb578063b88d4fde146106d1578063c835990e146106f1578063c87b56dd14610711578063d0561a2914610731578063d5abeb011461074457600080fd5b8063a035b1fe11610113578063a035b1fe1461062a578063a0712d6814610640578063a07f091114610653578063a22cb46514610666578063a398958514610686578063a778a9fd1461069b57600080fd5b806379a34912146105815780637d8966e4146105a25780638da5cb5b146105b757806391b7f5ed146105d557806395d89b41146105f557806397dc4a131461060a57600080fd5b8063438b6300116101fe5780636352211e116101b75780636352211e146104e45780636464eb641461050457806368428a1b1461051757806370a0823114610536578063715018a61461055657806375db01231461056b57600080fd5b8063438b63001461042757806346417f94146104545780634f6ccce71461047457806353135ca01461049457806355f804b3146104ae5780635e84d723146104ce57600080fd5b806323b872dd1161025057806323b872dd1461037d5780632f745c591461039d57806334393743146103bd5780633ccfd60b146103d257806340f284f4146103e757806342842e0e1461040757600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063095ea7b31461032757806318160ddd146103495780631b98d18814610368575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612be6565b610846565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e2610871565b6040516102c49190612c5b565b3480156102fb57600080fd5b5061030f61030a366004612c6e565b610903565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b50610347610342366004612c9c565b61099d565b005b34801561035557600080fd5b506008545b6040519081526020016102c4565b34801561037457600080fd5b50610347610ab3565b34801561038957600080fd5b50610347610398366004612cc8565b610afc565b3480156103a957600080fd5b5061035a6103b8366004612c9c565b610bcb565b3480156103c957600080fd5b50610347610c61565b3480156103de57600080fd5b50610347610c9f565b3480156103f357600080fd5b50600d5461030f906001600160a01b031681565b34801561041357600080fd5b50610347610422366004612cc8565b610cfc565b34801561043357600080fd5b50610447610442366004612d09565b610d17565b6040516102c49190612d26565b34801561046057600080fd5b50600c5461030f906001600160a01b031681565b34801561048057600080fd5b5061035a61048f366004612c6e565b610db9565b3480156104a057600080fd5b506014546102b89060ff1681565b3480156104ba57600080fd5b506103476104c9366004612df6565b610e4c565b3480156104da57600080fd5b5061035a600e5481565b3480156104f057600080fd5b5061030f6104ff366004612c6e565b610e89565b610347610512366004612e5f565b610f00565b34801561052357600080fd5b506014546102b890610100900460ff1681565b34801561054257600080fd5b5061035a610551366004612d09565b611176565b34801561056257600080fd5b506103476111fd565b34801561057757600080fd5b5061035a600f5481565b34801561058d57600080fd5b506014546102b8906301000000900460ff1681565b3480156105ae57600080fd5b50610347611271565b3480156105c357600080fd5b50600a546001600160a01b031661030f565b3480156105e157600080fd5b506103476105f0366004612c6e565b6112b8565b34801561060157600080fd5b506102e26112e7565b34801561061657600080fd5b50610347610625366004612c6e565b6112f6565b34801561063657600080fd5b5061035a60135481565b61034761064e366004612c6e565b6113a5565b610347610661366004612c6e565b6114f8565b34801561067257600080fd5b50610347610681366004612ea4565b611659565b34801561069257600080fd5b5061034761171e565b3480156106a757600080fd5b506103476106b6366004612d09565b611769565b3480156106c757600080fd5b5061035a60115481565b3480156106dd57600080fd5b506103476106ec366004612ee2565b6117b5565b3480156106fd57600080fd5b5061034761070c366004612c6e565b611885565b34801561071d57600080fd5b506102e261072c366004612c6e565b6118b4565b61034761073f366004612f4e565b61198f565b34801561075057600080fd5b5061035a60105481565b34801561076657600080fd5b5061035a610775366004612d09565b60156020526000908152604090205481565b34801561079357600080fd5b5061035a60125481565b3480156107a957600080fd5b506102b86107b8366004612f70565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f257600080fd5b50610347610801366004612d09565b611d3e565b34801561081257600080fd5b50610347610821366004612d09565b611d8a565b34801561083257600080fd5b506014546102b89062010000900460ff1681565b60006001600160e01b0319821663780e9d6360e01b148061086b575061086b82611e75565b92915050565b60606000805461088090612f9e565b80601f01602080910402602001604051908101604052809291908181526020018280546108ac90612f9e565b80156108f95780601f106108ce576101008083540402835291602001916108f9565b820191906000526020600020905b8154815290600101906020018083116108dc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109815760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109a882610e89565b9050806001600160a01b0316836001600160a01b03161415610a165760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610978565b336001600160a01b0382161480610a325750610a3281336107b8565b610aa45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610978565b610aae8383611ec5565b505050565b600a546001600160a01b03163314610add5760405162461bcd60e51b815260040161097890612fd9565b6014805462ff0000198116620100009182900460ff1615909102179055565b601054811015610bc057600d54604051630de39a7b60e31b81526001600160a01b038581166004830152848116602483015290911690636f1cd3d890604401600060405180830381600087803b158015610b5557600080fd5b505af1158015610b69573d6000803e3d6000fd5b505050506001600160a01b0383166000908152601560205260408120805491610b9183613024565b90915550506001600160a01b0382166000908152601560205260408120805491610bba8361303b565b91905055505b610aae838383611f33565b6000610bd683611176565b8210610c385760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610978565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c8b5760405162461bcd60e51b815260040161097890612fd9565b6014805460ff19811660ff90911615179055565b600a546001600160a01b03163314610cc95760405162461bcd60e51b815260040161097890612fd9565b6040514790339082156108fc029083906000818181858888f19350505050158015610cf8573d6000803e3d6000fd5b5050565b610aae838383604051806020016040528060008152506117b5565b60606000610d2483611176565b905060008167ffffffffffffffff811115610d4157610d41612d6a565b604051908082528060200260200182016040528015610d6a578160200160208202803683370190505b50905060005b82811015610db157610d828582610bcb565b828281518110610d9457610d94613056565b602090810291909101015280610da98161303b565b915050610d70565b509392505050565b6000610dc460085490565b8210610e275760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610978565b60088281548110610e3a57610e3a613056565b90600052602060002001549050919050565b600a546001600160a01b03163314610e765760405162461bcd60e51b815260040161097890612fd9565b8051610cf890600b906020840190612b34565b6000818152600260205260408120546001600160a01b03168061086b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610978565b6000610f0b60085490565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120909150610f4f9084611f64565b610fa55760405162461bcd60e51b815260206004820152602160248201527f5468697320686173682773207369676e617475726520697320696e76616c69646044820152601760f91b6064820152608401610978565b60145460ff16610ff75760405162461bcd60e51b815260206004820152601e60248201527f50726573616c65206d7573742062652061637469766520746f206d696e7400006044820152606401610978565b600082118015611008575060028211155b6110245760405162461bcd60e51b81526004016109789061306c565b601154336000908152601760205260409020546110429084906130a3565b11156110a35760405162461bcd60e51b815260206004820152602a60248201527f596f752063616e6e6f74206d696e7420616e79206d6f72652070726573616c65604482015269102a37b0b235b2b7399760b11b6064820152608401610978565b600e546110b08284611fa0565b11156110ce5760405162461bcd60e51b8152600401610978906130bb565b60135434906110dd9084611fac565b146110fa5760405162461bcd60e51b815260040161097890613107565b33600090815260176020526040812080548492906111199084906130a3565b90915550600090505b828110156111705761113d3361113883856130a3565b611fb8565b3360009081526015602052604081208054916111588361303b565b919050555080806111689061303b565b915050611122565b50505050565b60006001600160a01b0382166111e15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610978565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112275760405162461bcd60e51b815260040161097890612fd9565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331461129b5760405162461bcd60e51b815260040161097890612fd9565b6014805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146112e25760405162461bcd60e51b815260040161097890612fd9565b601355565b60606001805461088090612f9e565b600a546001600160a01b031633146113205760405162461bcd60e51b815260040161097890612fd9565b600061132b60085490565b60105490915061133b8284611fa0565b11156113595760405162461bcd60e51b8152600401610978906130bb565b60005b82811015610aae576113723361113883856130a3565b33600090815260156020526040812080549161138d8361303b565b9190505550808061139d9061303b565b91505061135c565b60006113b060085490565b90503332146114015760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f7420757365206120636f6e747261637420746f206d696e740000006044820152606401610978565b601454610100900460ff166114285760405162461bcd60e51b81526004016109789061313e565b600082118015611439575060058211155b6114555760405162461bcd60e51b81526004016109789061306c565b600e546114628284611fa0565b11156114805760405162461bcd60e51b8152600401610978906130bb565b601354349061148f9084611fac565b146114ac5760405162461bcd60e51b815260040161097890613107565b60005b82811015610aae576114c53361113883856130a3565b3360009081526015602052604081208054916114e08361303b565b919050555080806114f09061303b565b9150506114af565b600061150360085490565b90503332146115545760405162461bcd60e51b815260206004820152601d60248201527f43616e6e6f7420757365206120636f6e747261637420746f206d696e740000006044820152606401610978565b60145462010000900460ff1661157c5760405162461bcd60e51b81526004016109789061313e565b60008211801561158d575060058211155b6115a95760405162461bcd60e51b81526004016109789061306c565b600f54600e546115b991906130a3565b6115c38284611fa0565b11156115e15760405162461bcd60e51b8152600401610978906130bb565b60135434906115f09084611fac565b1461160d5760405162461bcd60e51b815260040161097890613107565b60005b82811015610aae576116263361113883856130a3565b3360009081526015602052604081208054916116418361303b565b919050555080806116519061303b565b915050611610565b6001600160a01b0382163314156116b25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610978565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146117485760405162461bcd60e51b815260040161097890612fd9565b6014805463ff00000019811663010000009182900460ff1615909102179055565b600a546001600160a01b031633146117935760405162461bcd60e51b815260040161097890612fd9565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60105482101561187957600d54604051630de39a7b60e31b81526001600160a01b038681166004830152858116602483015290911690636f1cd3d890604401600060405180830381600087803b15801561180e57600080fd5b505af1158015611822573d6000803e3d6000fd5b505050506001600160a01b038416600090815260156020526040812080549161184a83613024565b90915550506001600160a01b03831660009081526015602052604081208054916118738361303b565b91905055505b61117084848484611fd2565b600a546001600160a01b031633146118af5760405162461bcd60e51b815260040161097890612fd9565b601255565b6000818152600260205260409020546060906001600160a01b03166119335760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610978565b600061193d612004565b9050600081511161195d5760405180602001604052806000815250611988565b8061196784612013565b604051602001611978929190613175565b6040516020818303038152906040525b9392505050565b600061199a60085490565b600c546040516370a0823160e01b81523360048201529192506000916001600160a01b03909116906370a0823190602401602060405180830381865afa1580156119e8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0c91906131a4565b905060008111611a5e5760405162461bcd60e51b815260206004820152601a60248201527f596f7520646f206e6f74206f776e2061204c696c7920506173730000000000006044820152606401610978565b600c546040516331a9108f60e11b81526004810186905233916001600160a01b031690636352211e90602401602060405180830381865afa158015611aa7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611acb91906131bd565b6001600160a01b031614611b215760405162461bcd60e51b815260206004820152601d60248201527f596f7520646f206e6f74206f776e2074686174204c696c7920506173730000006044820152606401610978565b6014546301000000900460ff16611b4a5760405162461bcd60e51b81526004016109789061313e565b600083118015611b5b575060038311155b611b775760405162461bcd60e51b81526004016109789061306c565b600084815260166020526040902054600390611b949085906130a3565b1115611bf75760405162461bcd60e51b815260206004820152602c60248201527f596f752063616e6e6f74206d696e7420616e79206d6f7265204c696c7920506160448201526b39b9902a37b0b235b2b7399760a11b6064820152608401610978565b600f54611c048385611fa0565b1115611c705760405162461bcd60e51b815260206004820152603560248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015274206f6620526573657276656420546f61646b656e7360581b6064820152608401610978565b601054611c7d8385611fa0565b1115611c9b5760405162461bcd60e51b8152600401610978906130bb565b6012543490611caa9085611fac565b14611cc75760405162461bcd60e51b815260040161097890613107565b60008481526016602052604081208054859290611ce59084906130a3565b90915550600090505b83811015611d3757611d043361113883866130a3565b336000908152601560205260408120805491611d1f8361303b565b91905055508080611d2f9061303b565b915050611cee565b5050505050565b600a546001600160a01b03163314611d685760405162461bcd60e51b815260040161097890612fd9565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314611db45760405162461bcd60e51b815260040161097890612fd9565b6001600160a01b038116611e195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610978565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480611ea657506001600160e01b03198216635b5e139f60e01b145b8061086b57506301ffc9a760e01b6001600160e01b031983161461086b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611efa82610e89565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611f3d3382612119565b611f595760405162461bcd60e51b8152600401610978906131da565b610aae83838361220c565b6000611f7083836123b7565b6001600160a01b0316738f20d89bee77ea2abbaf46b5def3ef109ab9d3586001600160a01b031614905092915050565b600061198882846130a3565b6000611988828461322b565b610cf88282604051806020016040528060008152506123c3565b611fdc3383612119565b611ff85760405162461bcd60e51b8152600401610978906131da565b611170848484846123f6565b6060600b805461088090612f9e565b6060816120375750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612061578061204b8161303b565b915061205a9050600a83613260565b915061203b565b60008167ffffffffffffffff81111561207c5761207c612d6a565b6040519080825280601f01601f1916602001820160405280156120a6576020820181803683370190505b5090505b8415612111576120bb600183613274565b91506120c8600a8661328b565b6120d39060306130a3565b60f81b8183815181106120e8576120e8613056565b60200101906001600160f81b031916908160001a90535061210a600a86613260565b94506120aa565b949350505050565b6000818152600260205260408120546001600160a01b03166121925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610978565b600061219d83610e89565b9050806001600160a01b0316846001600160a01b031614806121d85750836001600160a01b03166121cd84610903565b6001600160a01b0316145b8061211157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16612111565b826001600160a01b031661221f82610e89565b6001600160a01b0316146122875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610978565b6001600160a01b0382166122e95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610978565b6122f4838383612429565b6122ff600082611ec5565b6001600160a01b0383166000908152600360205260408120805460019290612328908490613274565b90915550506001600160a01b03821660009081526003602052604081208054600192906123569084906130a3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061198883836124e1565b6123cd8383612585565b6123da60008484846126d3565b610aae5760405162461bcd60e51b81526004016109789061329f565b61240184848461220c565b61240d848484846126d3565b6111705760405162461bcd60e51b81526004016109789061329f565b6001600160a01b0383166124845761247f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6124a7565b816001600160a01b0316836001600160a01b0316146124a7576124a783826127d1565b6001600160a01b0382166124be57610aae8161286e565b826001600160a01b0316826001600160a01b031614610aae57610aae828261291d565b60008151604114156125155760208201516040830151606084015160001a61250b86828585612961565b935050505061086b565b81516040141561253d5760208201516040830151612534858383612b0a565b9250505061086b565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610978565b6001600160a01b0382166125db5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610978565b6000818152600260205260409020546001600160a01b0316156126405760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610978565b61264c60008383612429565b6001600160a01b03821660009081526003602052604081208054600192906126759084906130a3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156127c657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127179033908990889088906004016132f1565b6020604051808303816000875af1925050508015612752575060408051601f3d908101601f1916820190925261274f91810190613324565b60015b6127ac573d808015612780576040519150601f19603f3d011682016040523d82523d6000602084013e612785565b606091505b5080516127a45760405162461bcd60e51b81526004016109789061329f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612111565b506001949350505050565b600060016127de84611176565b6127e89190613274565b60008381526007602052604090205490915080821461283b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061288090600190613274565b600083815260096020526040812054600880549394509092849081106128a8576128a8613056565b9060005260206000200154905080600883815481106128c9576128c9613056565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061290157612901613341565b6001900381819060005260206000200160009055905550505050565b600061292883611176565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156129de5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610978565b8360ff16601b14806129f357508360ff16601c145b612a4a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610978565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015612a9e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612b015760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610978565b95945050505050565b60006001600160ff1b03821660ff83901c601b01612b2a86828785612961565b9695505050505050565b828054612b4090612f9e565b90600052602060002090601f016020900481019282612b625760008555612ba8565b82601f10612b7b57805160ff1916838001178555612ba8565b82800160010185558215612ba8579182015b82811115612ba8578251825591602001919060010190612b8d565b50612bb4929150612bb8565b5090565b5b80821115612bb45760008155600101612bb9565b6001600160e01b031981168114612be357600080fd5b50565b600060208284031215612bf857600080fd5b813561198881612bcd565b60005b83811015612c1e578181015183820152602001612c06565b838111156111705750506000910152565b60008151808452612c47816020860160208601612c03565b601f01601f19169290920160200192915050565b6020815260006119886020830184612c2f565b600060208284031215612c8057600080fd5b5035919050565b6001600160a01b0381168114612be357600080fd5b60008060408385031215612caf57600080fd5b8235612cba81612c87565b946020939093013593505050565b600080600060608486031215612cdd57600080fd5b8335612ce881612c87565b92506020840135612cf881612c87565b929592945050506040919091013590565b600060208284031215612d1b57600080fd5b813561198881612c87565b6020808252825182820181905260009190848201906040850190845b81811015612d5e57835183529284019291840191600101612d42565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612d9b57612d9b612d6a565b604051601f8501601f19908116603f01168101908282118183101715612dc357612dc3612d6a565b81604052809350858152868686011115612ddc57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612e0857600080fd5b813567ffffffffffffffff811115612e1f57600080fd5b8201601f81018413612e3057600080fd5b61211184823560208401612d80565b600082601f830112612e5057600080fd5b61198883833560208501612d80565b60008060408385031215612e7257600080fd5b823567ffffffffffffffff811115612e8957600080fd5b612e9585828601612e3f565b95602094909401359450505050565b60008060408385031215612eb757600080fd5b8235612ec281612c87565b915060208301358015158114612ed757600080fd5b809150509250929050565b60008060008060808587031215612ef857600080fd5b8435612f0381612c87565b93506020850135612f1381612c87565b925060408501359150606085013567ffffffffffffffff811115612f3657600080fd5b612f4287828801612e3f565b91505092959194509250565b60008060408385031215612f6157600080fd5b50508035926020909101359150565b60008060408385031215612f8357600080fd5b8235612f8e81612c87565b91506020830135612ed781612c87565b600181811c90821680612fb257607f821691505b60208210811415612fd357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816130335761303361300e565b506000190190565b600060001982141561304f5761304f61300e565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526017908201527f496e76616c696420707572636861736520616d6f756e74000000000000000000604082015260600190565b600082198211156130b6576130b661300e565b500190565b6020808252602c908201527f507572636861736520776f756c6420657863656564206d617820737570706c7960408201526b206f6620546f61646b656e7360a01b606082015260800190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b60008351613187818460208801612c03565b83519083019061319b818360208801612c03565b01949350505050565b6000602082840312156131b657600080fd5b5051919050565b6000602082840312156131cf57600080fd5b815161198881612c87565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008160001904831182151516156132455761324561300e565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261326f5761326f61324a565b500490565b6000828210156132865761328661300e565b500390565b60008261329a5761329a61324a565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b2a90830184612c2f565b60006020828403121561333657600080fd5b815161198881612bcd565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220064cfe5e2343a8220b027bdfd781bd4f8aeda0b99c237200332b88fb36dd435864736f6c634300080a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008546f61646b656e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004544f4144000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e6f73697132504b4e59525831566f79567044506271514b72686e4a394a44366758706e3632427a366855422f00000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Toadkens
Arg [1] : symbol (string): TOAD
Arg [2] : uri (string): ipfs://QmNosiq2PKNYRX1VoyVpDPbqQKrhnJ9JD6gXpn62Bz6hUB/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 546f61646b656e73000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 544f414400000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d4e6f73697132504b4e59525831566f7956704450627151
Arg [9] : 4b72686e4a394a44366758706e3632427a366855422f00000000000000000000


Deployed Bytecode Sourcemap

50979:8298:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44852:237;;;;;;;;;;-1:-1:-1;44852:237:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;44852:237:0;;;;;;;;33371:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34831:221::-;;;;;;;;;;-1:-1:-1;34831:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;34831:221:0;1528:203:1;34368:397:0;;;;;;;;;;-1:-1:-1;34368:397:0;;;;;:::i;:::-;;:::i;:::-;;45505:113;;;;;;;;;;-1:-1:-1;45593:10:0;:17;45505:113;;;2338:25:1;;;2326:2;2311:18;45505:113:0;2192:177:1;58602:133:0;;;;;;;;;;;;;:::i;57146:308::-;;;;;;;;;;-1:-1:-1;57146:308:0;;;;;:::i;:::-;;:::i;45173:256::-;;;;;;;;;;-1:-1:-1;45173:256:0;;;;;:::i;:::-;;:::i;58413:91::-;;;;;;;;;;;;;:::i;58160:143::-;;;;;;;;;;;;;:::i;51191:19::-;;;;;;;;;;-1:-1:-1;51191:19:0;;;;-1:-1:-1;;;;;51191:19:0;;;36097:151;;;;;;;;;;-1:-1:-1;36097:151:0;;;;;:::i;:::-;;:::i;57811:341::-;;;;;;;;;;-1:-1:-1;57811:341:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51159:25::-;;;;;;;;;;-1:-1:-1;51159:25:0;;;;-1:-1:-1;;;;;51159:25:0;;;45695:233;;;;;;;;;;-1:-1:-1;45695:233:0;;;;;:::i;:::-;;:::i;51480:33::-;;;;;;;;;;-1:-1:-1;51480:33:0;;;;;;;;59074:88;;;;;;;;;;-1:-1:-1;59074:88:0;;;;;:::i;:::-;;:::i;51219:34::-;;;;;;;;;;;;;;;;33065:239;;;;;;;;;;-1:-1:-1;33065:239:0;;;;;:::i;:::-;;:::i;54195:1063::-;;;;;;:::i;:::-;;:::i;51520:30::-;;;;;;;;;;-1:-1:-1;51520:30:0;;;;;;;;;;;32795:208;;;;;;;;;;-1:-1:-1;32795:208:0;;;;;:::i;:::-;;:::i;15884:148::-;;;;;;;;;;;;;:::i;51260:32::-;;;;;;;;;;;;;;;;51609:34;;;;;;;;;;-1:-1:-1;51609:34:0;;;;;;;;;;;58512:82;;;;;;;;;;;;;:::i;15233:87::-;;;;;;;;;;-1:-1:-1;15306:6:0;;-1:-1:-1;;;;;15306:6:0;15233:87;;58743:88;;;;;;;;;;-1:-1:-1;58743:88:0;;;;;:::i;:::-;;:::i;33540:104::-;;;;;;;;;;;;;:::i;52449:377::-;;;;;;;;;;-1:-1:-1;52449:377:0;;;;;:::i;:::-;;:::i;51438:33::-;;;;;;;;;;;;;;;;55265:747;;;;;;:::i;:::-;;:::i;56019:827::-;;;;;;:::i;:::-;;:::i;35124:295::-;;;;;;;;;;-1:-1:-1;35124:295:0;;;;;:::i;:::-;;:::i;58311:94::-;;;;;;;;;;;;;:::i;58941:121::-;;;;;;;;;;-1:-1:-1;58941:121:0;;;;;:::i;:::-;;:::i;51359:29::-;;;;;;;;;;;;;;;;57462:341;;;;;;;;;;-1:-1:-1;57462:341:0;;;;;:::i;:::-;;:::i;58839:94::-;;;;;;;;;;-1:-1:-1;58839:94:0;;;;;:::i;:::-;;:::i;33715:360::-;;;;;;;;;;-1:-1:-1;33715:360:0;;;;;:::i;:::-;;:::i;52838:1349::-;;;;;;:::i;:::-;;:::i;51299:53::-;;;;;;;;;;;;;;;;51652:50;;;;;;;;;;-1:-1:-1;51652:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;51395:36;;;;;;;;;;;;;;;;35490:164;;;;;;;;;;-1:-1:-1;35490:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35611:25:0;;;35587:4;35611:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35490:164;57028:106;;;;;;;;;;-1:-1:-1;57028:106:0;;;;;:::i;:::-;;:::i;16187:244::-;;;;;;;;;;-1:-1:-1;16187:244:0;;;;;:::i;:::-;;:::i;51557:45::-;;;;;;;;;;-1:-1:-1;51557:45:0;;;;;;;;;;;44852:237;44954:4;-1:-1:-1;;;;;;44978:50:0;;-1:-1:-1;;;44978:50:0;;:103;;;45045:36;45069:11;45045:23;:36::i;:::-;44971:110;44852:237;-1:-1:-1;;44852:237:0:o;33371:100::-;33425:13;33458:5;33451:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33371:100;:::o;34831:221::-;34907:7;38160:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38160:16:0;34927:73;;;;-1:-1:-1;;;34927:73:0;;8341:2:1;34927:73:0;;;8323:21:1;8380:2;8360:18;;;8353:30;8419:34;8399:18;;;8392:62;-1:-1:-1;;;8470:18:1;;;8463:42;8522:19;;34927:73:0;;;;;;;;;-1:-1:-1;35020:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35020:24:0;;34831:221::o;34368:397::-;34449:13;34465:23;34480:7;34465:14;:23::i;:::-;34449:39;;34513:5;-1:-1:-1;;;;;34507:11:0;:2;-1:-1:-1;;;;;34507:11:0;;;34499:57;;;;-1:-1:-1;;;34499:57:0;;8754:2:1;34499:57:0;;;8736:21:1;8793:2;8773:18;;;8766:30;8832:34;8812:18;;;8805:62;-1:-1:-1;;;8883:18:1;;;8876:31;8924:19;;34499:57:0;8552:397:1;34499:57:0;14464:10;-1:-1:-1;;;;;34577:21:0;;;;:62;;-1:-1:-1;34602:37:0;34619:5;14464:10;35490:164;:::i;34602:37::-;34569:154;;;;-1:-1:-1;;;34569:154:0;;9156:2:1;34569:154:0;;;9138:21:1;9195:2;9175:18;;;9168:30;9234:34;9214:18;;;9207:62;9305:26;9285:18;;;9278:54;9349:19;;34569:154:0;8954:420:1;34569:154:0;34736:21;34745:2;34749:7;34736:8;:21::i;:::-;34438:327;34368:397;;:::o;58602:133::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;58702:25:::1;::::0;;-1:-1:-1;;58673:54:0;::::1;58702:25:::0;;;;::::1;;;58701:26;58673:54:::0;;::::1;;::::0;;58602:133::o;57146:308::-;57252:9;;57242:7;:19;57238:160;;;57278:5;;:36;;-1:-1:-1;;;57278:36:0;;-1:-1:-1;;;;;9970:15:1;;;57278:36:0;;;9952:34:1;10022:15;;;10002:18;;;9995:43;57278:5:0;;;;:26;;9887:18:1;;57278:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;57329:20:0;;;;;;:14;:20;;;;;:22;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;57366:18:0;;;;;;:14;:18;;;;;:20;;;;;;:::i;:::-;;;;;;57238:160;57408:38;57428:4;57434:2;57438:7;57408:19;:38::i;45173:256::-;45270:7;45306:23;45323:5;45306:16;:23::i;:::-;45298:5;:31;45290:87;;;;-1:-1:-1;;;45290:87:0;;10664:2:1;45290:87:0;;;10646:21:1;10703:2;10683:18;;;10676:30;10742:34;10722:18;;;10715:62;-1:-1:-1;;;10793:18:1;;;10786:41;10844:19;;45290:87:0;10462:407:1;45290:87:0;-1:-1:-1;;;;;;45395:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45173:256::o;58413:91::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;58483:13:::1;::::0;;-1:-1:-1;;58466:30:0;::::1;58483:13;::::0;;::::1;58482:14;58466:30;::::0;;58413:91::o;58160:143::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;58258:37:::1;::::0;58226:21:::1;::::0;58266:10:::1;::::0;58258:37;::::1;;;::::0;58226:21;;58208:15:::1;58258:37:::0;58208:15;58258:37;58226:21;58266:10;58258:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;58197:106;58160:143::o:0;36097:151::-;36201:39;36218:4;36224:2;36228:7;36201:39;;;;;;;;;;;;:16;:39::i;57811:341::-;57871:16;57900:18;57921:16;57931:5;57921:9;:16::i;:::-;57900:37;;57950:25;57992:10;57978:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57978:25:0;;57950:53;;58018:9;58014:105;58033:10;58029:1;:14;58014:105;;;58078:29;58098:5;58105:1;58078:19;:29::i;:::-;58064:8;58073:1;58064:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;58045:3;;;;:::i;:::-;;;;58014:105;;;-1:-1:-1;58136:8:0;57811:341;-1:-1:-1;;;57811:341:0:o;45695:233::-;45770:7;45806:30;45593:10;:17;;45505:113;45806:30;45798:5;:38;45790:95;;;;-1:-1:-1;;;45790:95:0;;11208:2:1;45790:95:0;;;11190:21:1;11247:2;11227:18;;;11220:30;11286:34;11266:18;;;11259:62;-1:-1:-1;;;11337:18:1;;;11330:42;11389:19;;45790:95:0;11006:408:1;45790:95:0;45903:10;45914:5;45903:17;;;;;;;;:::i;:::-;;;;;;;;;45896:24;;45695:233;;;:::o;59074:88::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;59141:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;33065:239::-:0;33137:7;33173:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33173:16:0;33208:19;33200:73;;;;-1:-1:-1;;;33200:73:0;;11621:2:1;33200:73:0;;;11603:21:1;11660:2;11640:18;;;11633:30;11699:34;11679:18;;;11672:62;-1:-1:-1;;;11750:18:1;;;11743:39;11799:19;;33200:73:0;11419:405:1;54195:1063:0;54289:14;54306:13;45593:10;:17;;45505:113;54306:13;52070:26;;;54352:10;19596:2:1;19592:15;-1:-1:-1;;19588:53:1;52070:26:0;;;;19576:66:1;;;;52070:26:0;;;;;;;;;19658:12:1;;;;52070:26:0;;;52060:37;;;;;54289:30;;-1:-1:-1;54338:37:0;;54365:9;54338:7;:37::i;:::-;54330:108;;;;-1:-1:-1;;;54330:108:0;;12031:2:1;54330:108:0;;;12013:21:1;12070:2;12050:18;;;12043:30;12109:34;12089:18;;;12082:62;-1:-1:-1;;;12160:18:1;;;12153:31;12201:19;;54330:108:0;11829:397:1;54330:108:0;54457:13;;;;54449:105;;;;-1:-1:-1;;;54449:105:0;;12433:2:1;54449:105:0;;;12415:21:1;12472:2;12452:18;;;12445:30;12511:32;12491:18;;;12484:60;12561:18;;54449:105:0;12231:354:1;54449:105:0;54589:1;54573:13;:17;:39;;;;;54611:1;54594:13;:18;;54573:39;54565:98;;;;-1:-1:-1;;;54565:98:0;;;;;;;:::i;:::-;54733:10;;54702;54682:31;;;;:19;:31;;;;;;:47;;54716:13;;54682:47;:::i;:::-;:61;;54674:117;;;;-1:-1:-1;;;54674:117:0;;13277:2:1;54674:117:0;;;13259:21:1;13316:2;13296:18;;;13289:30;13355:34;13335:18;;;13328:62;-1:-1:-1;;;13406:18:1;;;13399:40;13456:19;;54674:117:0;13075:406:1;54674:117:0;54839:12;;54810:25;:6;54821:13;54810:10;:25::i;:::-;:41;;54802:119;;;;-1:-1:-1;;;54802:119:0;;;;;;;:::i;:::-;54940:5;;54968:9;;54940:24;;54950:13;54940:9;:24::i;:::-;:37;54932:106;;;;-1:-1:-1;;;54932:106:0;;;;;;;:::i;:::-;55069:10;55049:31;;;;:19;:31;;;;;:48;;55084:13;;55049:31;:48;;55084:13;;55049:48;:::i;:::-;;;;-1:-1:-1;55114:9:0;;-1:-1:-1;55110:141:0;55129:13;55125:1;:17;55110:141;;;55163:33;55173:10;55185;55194:1;55185:6;:10;:::i;:::-;55163:9;:33::i;:::-;55226:10;55211:26;;;;:14;:26;;;;;:28;;;;;;:::i;:::-;;;;;;55144:3;;;;;:::i;:::-;;;;55110:141;;;;54278:980;54195:1063;;:::o;32795:208::-;32867:7;-1:-1:-1;;;;;32895:19:0;;32887:74;;;;-1:-1:-1;;;32887:74:0;;14461:2:1;32887:74:0;;;14443:21:1;14500:2;14480:18;;;14473:30;14539:34;14519:18;;;14512:62;-1:-1:-1;;;14590:18:1;;;14583:40;14640:19;;32887:74:0;14259:406:1;32887:74:0;-1:-1:-1;;;;;;32979:16:0;;;;;:9;:16;;;;;;;32795:208::o;15884:148::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;15975:6:::1;::::0;15954:40:::1;::::0;15991:1:::1;::::0;-1:-1:-1;;;;;15975:6:0::1;::::0;15954:40:::1;::::0;15991:1;;15954:40:::1;16005:6;:19:::0;;-1:-1:-1;;;;;;16005:19:0::1;::::0;;15884:148::o;58512:82::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;58576:10:::1;::::0;;-1:-1:-1;;58562:24:0;::::1;58576:10;::::0;;;::::1;;;58575:11;58562:24:::0;;::::1;;::::0;;58512:82::o;58743:88::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;58807:5:::1;:16:::0;58743:88::o;33540:104::-;33596:13;33629:7;33622:14;;;;;:::i;52449:377::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;52519:14:::1;52536:13;45593:10:::0;:17;;45505:113;52536:13:::1;52597:9;::::0;52519:30;;-1:-1:-1;52568:25:0::1;52519:30:::0;52579:13;52568:10:::1;:25::i;:::-;:38;;52560:97;;;;-1:-1:-1::0;;;52560:97:0::1;;;;;;;:::i;:::-;52682:9;52678:141;52697:13;52693:1;:17;52678:141;;;52731:33;52741:10;52753;52762:1:::0;52753:6;:10:::1;:::i;52731:33::-;52794:10;52779:26;::::0;;;:14:::1;:26;::::0;;;;:28;;;::::1;::::0;::::1;:::i;:::-;;;;;;52712:3;;;;;:::i;:::-;;;;52678:141;;55265:747:::0;55328:14;55345:13;45593:10;:17;;45505:113;55345:13;55328:30;-1:-1:-1;55377:10:0;55391:9;55377:23;55369:84;;;;-1:-1:-1;;;55369:84:0;;14872:2:1;55369:84:0;;;14854:21:1;14911:2;14891:18;;;14884:30;14950:31;14930:18;;;14923:59;14999:18;;55369:84:0;14670:353:1;55369:84:0;55472:10;;;;;;;55464:82;;;;-1:-1:-1;;;55464:82:0;;;;;;;:::i;:::-;55581:1;55565:13;:17;:39;;;;;55603:1;55586:13;:18;;55565:39;55557:78;;;;-1:-1:-1;;;55557:78:0;;;;;;;:::i;:::-;55683:12;;55654:25;:6;55665:13;55654:10;:25::i;:::-;:41;;55646:99;;;;-1:-1:-1;;;55646:99:0;;;;;;;:::i;:::-;55764:5;;55792:9;;55764:24;;55774:13;55764:9;:24::i;:::-;:37;55756:86;;;;-1:-1:-1;;;55756:86:0;;;;;;;:::i;:::-;55867:9;55863:142;55882:13;55878:1;:17;55863:142;;;55917:33;55927:10;55939;55948:1;55939:6;:10;:::i;55917:33::-;55980:10;55965:26;;;;:14;:26;;;;;:28;;;;;;:::i;:::-;;;;;;55897:3;;;;;:::i;:::-;;;;55863:142;;56019:827;56097:14;56114:13;45593:10;:17;;45505:113;56114:13;56097:30;-1:-1:-1;56146:10:0;56160:9;56146:23;56138:97;;;;-1:-1:-1;;;56138:97:0;;14872:2:1;56138:97:0;;;14854:21:1;14911:2;14891:18;;;14884:30;14950:31;14930:18;;;14923:59;14999:18;;56138:97:0;14670:353:1;56138:97:0;56254:25;;;;;;;56246:95;;;;-1:-1:-1;;;56246:95:0;;;;;;;:::i;:::-;56376:1;56360:13;:17;:39;;;;;56398:1;56381:13;:18;;56360:39;56352:91;;;;-1:-1:-1;;;56352:91:0;;;;;;;:::i;:::-;56506:11;;56491:12;;:26;;;;:::i;:::-;56462:25;:6;56473:13;56462:10;:25::i;:::-;:55;;56454:112;;;;-1:-1:-1;;;56454:112:0;;;;;;;:::i;:::-;56585:5;;56613:9;;56585:24;;56595:13;56585:9;:24::i;:::-;:37;56577:99;;;;-1:-1:-1;;;56577:99:0;;;;;;;:::i;:::-;56701:9;56697:142;56716:13;56712:1;:17;56697:142;;;56751:33;56761:10;56773;56782:1;56773:6;:10;:::i;56751:33::-;56814:10;56799:26;;;;:14;:26;;;;;:28;;;;;;:::i;:::-;;;;;;56731:3;;;;;:::i;:::-;;;;56697:142;;35124:295;-1:-1:-1;;;;;35227:24:0;;14464:10;35227:24;;35219:62;;;;-1:-1:-1;;;35219:62:0;;15586:2:1;35219:62:0;;;15568:21:1;15625:2;15605:18;;;15598:30;15664:27;15644:18;;;15637:55;15709:18;;35219:62:0;15384:349:1;35219:62:0;14464:10;35294:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35294:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35294:53:0;;;;;;;;;;35363:48;;540:41:1;;;35294:42:0;;14464:10;35363:48;;513:18:1;35363:48:0;;;;;;;35124:295;;:::o;58311:94::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;58383:14:::1;::::0;;-1:-1:-1;;58365:32:0;::::1;58383:14:::0;;;;::::1;;;58382:15;58365:32:::0;;::::1;;::::0;;58311:94::o;58941:121::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;59017:8:::1;:37:::0;;-1:-1:-1;;;;;;59017:37:0::1;-1:-1:-1::0;;;;;59017:37:0;;;::::1;::::0;;;::::1;::::0;;58941:121::o;57462:341::-;57591:9;;57581:7;:19;57577:160;;;57617:5;;:36;;-1:-1:-1;;;57617:36:0;;-1:-1:-1;;;;;9970:15:1;;;57617:36:0;;;9952:34:1;10022:15;;;10002:18;;;9995:43;57617:5:0;;;;:26;;9887:18:1;;57617:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;57668:20:0;;;;;;:14;:20;;;;;:22;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;57705:18:0;;;;;;:14;:18;;;;;:20;;;;;;:::i;:::-;;;;;;57577:160;57747:48;57771:4;57777:2;57781:7;57790:4;57747:23;:48::i;58839:94::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;58906:8:::1;:19:::0;58839:94::o;33715:360::-;38136:4;38160:16;;;:7;:16;;;;;;33788:13;;-1:-1:-1;;;;;38160:16:0;33814:76;;;;-1:-1:-1;;;33814:76:0;;15940:2:1;33814:76:0;;;15922:21:1;15979:2;15959:18;;;15952:30;16018:34;15998:18;;;15991:62;-1:-1:-1;;;16069:18:1;;;16062:45;16124:19;;33814:76:0;15738:411:1;33814:76:0;33903:21;33927:10;:8;:10::i;:::-;33903:34;;33979:1;33961:7;33955:21;:25;:112;;;;;;;;;;;;;;;;;34020:7;34029:18;:7;:16;:18::i;:::-;34003:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33955:112;33948:119;33715:360;-1:-1:-1;;;33715:360:0:o;52838:1349::-;52921:14;52938:13;45593:10;:17;;45505:113;52938:13;52979:8;;:30;;-1:-1:-1;;;52979:30:0;;52998:10;52979:30;;;1674:51:1;52921:30:0;;-1:-1:-1;52962:14:0;;-1:-1:-1;;;;;52979:8:0;;;;:18;;1647::1;;52979:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52962:47;;53037:1;53028:6;:10;53020:101;;;;-1:-1:-1;;;53020:101:0;;17020:2:1;53020:101:0;;;17002:21:1;17059:2;17039:18;;;17032:30;17098:28;17078:18;;;17071:56;17144:18;;53020:101:0;16818:350:1;53020:101:0;53140:8;;:24;;-1:-1:-1;;;53140:24:0;;;;;2338:25:1;;;53168:10:0;;-1:-1:-1;;;;;53140:8:0;;:16;;2311:18:1;;53140:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;53140:38:0;;53132:104;;;;-1:-1:-1;;;53132:104:0;;17631:2:1;53132:104:0;;;17613:21:1;17670:2;17650:18;;;17643:30;17709:31;17689:18;;;17682:59;17758:18;;53132:104:0;17429:353:1;53132:104:0;53255:14;;;;;;;53247:102;;;;-1:-1:-1;;;53247:102:0;;;;;;;:::i;:::-;53384:1;53368:13;:17;:39;;;;;53406:1;53389:13;:18;;53368:39;53360:98;;;;-1:-1:-1;;;53360:98:0;;;;;;;:::i;:::-;53477:24;;;;:16;:24;;;;;;53521:1;;53477:40;;53504:13;;53477:40;:::i;:::-;:45;;53469:119;;;;-1:-1:-1;;;53469:119:0;;17989:2:1;53469:119:0;;;17971:21:1;18028:2;18008:18;;;18001:30;18067:34;18047:18;;;18040:62;-1:-1:-1;;;18118:18:1;;;18111:42;18170:19;;53469:119:0;17787:408:1;53469:119:0;53636:11;;53607:25;:6;53618:13;53607:10;:25::i;:::-;:40;;53599:128;;;;-1:-1:-1;;;53599:128:0;;18402:2:1;53599:128:0;;;18384:21:1;18441:2;18421:18;;;18414:30;18480:34;18460:18;;;18453:62;-1:-1:-1;;;18531:18:1;;;18524:51;18592:19;;53599:128:0;18200:417:1;53599:128:0;53775:9;;53746:25;:6;53757:13;53746:10;:25::i;:::-;:38;;53738:119;;;;-1:-1:-1;;;53738:119:0;;;;;;;:::i;:::-;53876:8;;53907:9;;53876:27;;53889:13;53876:12;:27::i;:::-;:40;53868:106;;;;-1:-1:-1;;;53868:106:0;;;;;;;:::i;:::-;53985:24;;;;:16;:24;;;;;:41;;54013:13;;53985:24;:41;;54013:13;;53985:41;:::i;:::-;;;;-1:-1:-1;54043:9:0;;-1:-1:-1;54039:141:0;54058:13;54054:1;:17;54039:141;;;54092:33;54102:10;54114;54123:1;54114:6;:10;:::i;54092:33::-;54155:10;54140:26;;;;:14;:26;;;;;:28;;;;;;:::i;:::-;;;;;;54073:3;;;;;:::i;:::-;;;;54039:141;;;;52910:1277;;52838:1349;;:::o;57028:106::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;57098:5:::1;:28:::0;;-1:-1:-1;;;;;;57098:28:0::1;-1:-1:-1::0;;;;;57098:28:0;;;::::1;::::0;;;::::1;::::0;;57028:106::o;16187:244::-;15306:6;;-1:-1:-1;;;;;15306:6:0;14464:10;15453:23;15445:68;;;;-1:-1:-1;;;15445:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16276:22:0;::::1;16268:73;;;::::0;-1:-1:-1;;;16268:73:0;;18824:2:1;16268:73:0::1;::::0;::::1;18806:21:1::0;18863:2;18843:18;;;18836:30;18902:34;18882:18;;;18875:62;-1:-1:-1;;;18953:18:1;;;18946:36;18999:19;;16268:73:0::1;18622:402:1::0;16268:73:0::1;16378:6;::::0;16357:38:::1;::::0;-1:-1:-1;;;;;16357:38:0;;::::1;::::0;16378:6:::1;::::0;16357:38:::1;::::0;16378:6:::1;::::0;16357:38:::1;16406:6;:17:::0;;-1:-1:-1;;;;;;16406:17:0::1;-1:-1:-1::0;;;;;16406:17:0;;;::::1;::::0;;;::::1;::::0;;16187:244::o;32439:292::-;32541:4;-1:-1:-1;;;;;;32565:40:0;;-1:-1:-1;;;32565:40:0;;:105;;-1:-1:-1;;;;;;;32622:48:0;;-1:-1:-1;;;32622:48:0;32565:105;:158;;;-1:-1:-1;;;;;;;;;;25645:40:0;;;32687:36;25536:157;41948:174;42023:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42023:29:0;-1:-1:-1;;;;;42023:29:0;;;;;;;;:24;;42077:23;42023:24;42077:14;:23::i;:::-;-1:-1:-1;;;;;42068:46:0;;;;;;;;;;;41948:174;;:::o;35721:305::-;35882:41;14464:10;35915:7;35882:18;:41::i;:::-;35874:103;;;;-1:-1:-1;;;35874:103:0;;;;;;;:::i;:::-;35990:28;36000:4;36006:2;36010:7;35990:9;:28::i;52113:183::-;52191:4;52216:25;52225:4;52231:9;52216:8;:25::i;:::-;-1:-1:-1;;;;;52216:71:0;52245:42;-1:-1:-1;;;;;52216:71:0;;52208:80;;52113:183;;;;:::o;8120:98::-;8178:7;8205:5;8209:1;8205;:5;:::i;8858:98::-;8916:7;8943:5;8947:1;8943;:5;:::i;39055:110::-;39131:26;39141:2;39145:7;39131:26;;;;;;;;;;;;:9;:26::i;36319:285::-;36451:41;14464:10;36484:7;36451:18;:41::i;:::-;36443:103;;;;-1:-1:-1;;;36443:103:0;;;;;;;:::i;:::-;36557:39;36571:4;36577:2;36581:7;36590:5;36557:13;:39::i;59174:100::-;59226:13;59259:7;59252:14;;;;;:::i;12594:723::-;12650:13;12871:10;12867:53;;-1:-1:-1;;12898:10:0;;;;;;;;;;;;-1:-1:-1;;;12898:10:0;;;;;12594:723::o;12867:53::-;12945:5;12930:12;12986:78;12993:9;;12986:78;;13019:8;;;;:::i;:::-;;-1:-1:-1;13042:10:0;;-1:-1:-1;13050:2:0;13042:10;;:::i;:::-;;;12986:78;;;13074:19;13106:6;13096:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13096:17:0;;13074:39;;13124:154;13131:10;;13124:154;;13158:11;13168:1;13158:11;;:::i;:::-;;-1:-1:-1;13227:10:0;13235:2;13227:5;:10;:::i;:::-;13214:24;;:2;:24;:::i;:::-;13201:39;;13184:6;13191;13184:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;13184:56:0;;;;;;;;-1:-1:-1;13255:11:0;13264:2;13255:11;;:::i;:::-;;;13124:154;;;13302:6;12594:723;-1:-1:-1;;;;12594:723:0:o;38365:348::-;38458:4;38160:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38160:16:0;38475:73;;;;-1:-1:-1;;;38475:73:0;;20560:2:1;38475:73:0;;;20542:21:1;20599:2;20579:18;;;20572:30;20638:34;20618:18;;;20611:62;-1:-1:-1;;;20689:18:1;;;20682:42;20741:19;;38475:73:0;20358:408:1;38475:73:0;38559:13;38575:23;38590:7;38575:14;:23::i;:::-;38559:39;;38628:5;-1:-1:-1;;;;;38617:16:0;:7;-1:-1:-1;;;;;38617:16:0;;:51;;;;38661:7;-1:-1:-1;;;;;38637:31:0;:20;38649:7;38637:11;:20::i;:::-;-1:-1:-1;;;;;38637:31:0;;38617:51;:87;;;-1:-1:-1;;;;;;35611:25:0;;;35587:4;35611:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38672:32;35490:164;41286:544;41411:4;-1:-1:-1;;;;;41384:31:0;:23;41399:7;41384:14;:23::i;:::-;-1:-1:-1;;;;;41384:31:0;;41376:85;;;;-1:-1:-1;;;41376:85:0;;20973:2:1;41376:85:0;;;20955:21:1;21012:2;20992:18;;;20985:30;21051:34;21031:18;;;21024:62;-1:-1:-1;;;21102:18:1;;;21095:39;21151:19;;41376:85:0;20771:405:1;41376:85:0;-1:-1:-1;;;;;41480:16:0;;41472:65;;;;-1:-1:-1;;;41472:65:0;;21383:2:1;41472:65:0;;;21365:21:1;21422:2;21402:18;;;21395:30;21461:34;21441:18;;;21434:62;-1:-1:-1;;;21512:18:1;;;21505:34;21556:19;;41472:65:0;21181:400:1;41472:65:0;41550:39;41571:4;41577:2;41581:7;41550:20;:39::i;:::-;41654:29;41671:1;41675:7;41654:8;:29::i;:::-;-1:-1:-1;;;;;41696:15:0;;;;;;:9;:15;;;;;:20;;41715:1;;41696:15;:20;;41715:1;;41696:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41727:13:0;;;;;;:9;:13;;;;;:18;;41744:1;;41727:13;:18;;41744:1;;41727:18;:::i;:::-;;;;-1:-1:-1;;41756:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41756:21:0;-1:-1:-1;;;;;41756:21:0;;;;;;;;;41795:27;;41756:16;;41795:27;;;;;;;41286:544;;;:::o;52304:137::-;52383:7;52410:23;:4;52423:9;52410:12;:23::i;39392:250::-;39488:18;39494:2;39498:7;39488:5;:18::i;:::-;39525:54;39556:1;39560:2;39564:7;39573:5;39525:22;:54::i;:::-;39517:117;;;;-1:-1:-1;;;39517:117:0;;;;;;;:::i;37486:272::-;37600:28;37610:4;37616:2;37620:7;37600:9;:28::i;:::-;37647:48;37670:4;37676:2;37680:7;37689:5;37647:22;:48::i;:::-;37639:111;;;;-1:-1:-1;;;37639:111:0;;;;;;;:::i;46541:555::-;-1:-1:-1;;;;;46713:18:0;;46709:187;;46748:40;46780:7;47923:10;:17;;47896:24;;;;:15;:24;;;;;:44;;;47951:24;;;;;;;;;;;;47819:164;46748:40;46709:187;;;46818:2;-1:-1:-1;;;;;46810:10:0;:4;-1:-1:-1;;;;;46810:10:0;;46806:90;;46837:47;46870:4;46876:7;46837:32;:47::i;:::-;-1:-1:-1;;;;;46910:16:0;;46906:183;;46943:45;46980:7;46943:36;:45::i;46906:183::-;47016:4;-1:-1:-1;;;;;47010:10:0;:2;-1:-1:-1;;;;;47010:10:0;;47006:83;;47037:40;47065:2;47069:7;47037:27;:40::i;1103:1270::-;1181:7;1401:9;:16;1421:2;1401:22;1397:969;;;1697:4;1682:20;;1676:27;1747:4;1732:20;;1726:27;1805:4;1790:20;;1784:27;1440:9;1776:36;1848:22;1856:4;1776:36;1676:27;1726;1848:7;:22::i;:::-;1841:29;;;;;;;1397:969;1892:9;:16;1912:2;1892:22;1888:478;;;2167:4;2152:20;;2146:27;2218:4;2203:20;;2197:27;2260:20;2268:4;2146:27;2197;2260:7;:20::i;:::-;2253:27;;;;;;1888:478;2313:41;;-1:-1:-1;;;2313:41:0;;22207:2:1;2313:41:0;;;22189:21:1;22246:2;22226:18;;;22219:30;22285:33;22265:18;;;22258:61;22336:18;;2313:41:0;22005:355:1;39978:382:0;-1:-1:-1;;;;;40058:16:0;;40050:61;;;;-1:-1:-1;;;40050:61:0;;22567:2:1;40050:61:0;;;22549:21:1;;;22586:18;;;22579:30;22645:34;22625:18;;;22618:62;22697:18;;40050:61:0;22365:356:1;40050:61:0;38136:4;38160:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38160:16:0;:30;40122:58;;;;-1:-1:-1;;;40122:58:0;;22928:2:1;40122:58:0;;;22910:21:1;22967:2;22947:18;;;22940:30;23006;22986:18;;;22979:58;23054:18;;40122:58:0;22726:352:1;40122:58:0;40193:45;40222:1;40226:2;40230:7;40193:20;:45::i;:::-;-1:-1:-1;;;;;40251:13:0;;;;;;:9;:13;;;;;:18;;40268:1;;40251:13;:18;;40268:1;;40251:18;:::i;:::-;;;;-1:-1:-1;;40280:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40280:21:0;-1:-1:-1;;;;;40280:21:0;;;;;;;;40319:33;;40280:16;;;40319:33;;40280:16;;40319:33;39978:382;;:::o;42687:843::-;42808:4;-1:-1:-1;;;;;42834:13:0;;17415:20;17454:8;42830:693;;42870:72;;-1:-1:-1;;;42870:72:0;;-1:-1:-1;;;;;42870:36:0;;;;;:72;;14464:10;;42921:4;;42927:7;;42936:5;;42870:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42870:72:0;;;;;;;;-1:-1:-1;;42870:72:0;;;;;;;;;;;;:::i;:::-;;;42866:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43116:13:0;;43112:341;;43159:60;;-1:-1:-1;;;43159:60:0;;;;;;;:::i;43112:341::-;43403:6;43397:13;43388:6;43384:2;43380:15;43373:38;42866:602;-1:-1:-1;;;;;;42993:55:0;-1:-1:-1;;;42993:55:0;;-1:-1:-1;42986:62:0;;42830:693;-1:-1:-1;43507:4:0;42687:843;;;;;;:::o;48610:988::-;48876:22;48926:1;48901:22;48918:4;48901:16;:22::i;:::-;:26;;;;:::i;:::-;48938:18;48959:26;;;:17;:26;;;;;;48876:51;;-1:-1:-1;49092:28:0;;;49088:328;;-1:-1:-1;;;;;49159:18:0;;49137:19;49159:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49210:30;;;;;;:44;;;49327:30;;:17;:30;;;;;:43;;;49088:328;-1:-1:-1;49512:26:0;;;;:17;:26;;;;;;;;49505:33;;;-1:-1:-1;;;;;49556:18:0;;;;;:12;:18;;;;;:34;;;;;;;49549:41;48610:988::o;49893:1079::-;50171:10;:17;50146:22;;50171:21;;50191:1;;50171:21;:::i;:::-;50203:18;50224:24;;;:15;:24;;;;;;50597:10;:26;;50146:46;;-1:-1:-1;50224:24:0;;50146:46;;50597:26;;;;;;:::i;:::-;;;;;;;;;50575:48;;50661:11;50636:10;50647;50636:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;50741:28;;;:15;:28;;;;;;;:41;;;50913:24;;;;;50906:31;50948:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;49964:1008;;;49893:1079;:::o;47397:221::-;47482:14;47499:20;47516:2;47499:16;:20::i;:::-;-1:-1:-1;;;;;47530:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;47575:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47397:221:0:o;3135:1512::-;3263:7;4202:66;4188:80;;;4166:164;;;;-1:-1:-1;;;4166:164:0;;24165:2:1;4166:164:0;;;24147:21:1;24204:2;24184:18;;;24177:30;24243:34;24223:18;;;24216:62;-1:-1:-1;;;24294:18:1;;;24287:32;24336:19;;4166:164:0;23963:398:1;4166:164:0;4349:1;:7;;4354:2;4349:7;:18;;;;4360:1;:7;;4365:2;4360:7;4349:18;4341:65;;;;-1:-1:-1;;;4341:65:0;;24568:2:1;4341:65:0;;;24550:21:1;24607:2;24587:18;;;24580:30;24646:34;24626:18;;;24619:62;-1:-1:-1;;;24697:18:1;;;24690:32;24739:19;;4341:65:0;24366:398:1;4341:65:0;4521:24;;;4504:14;4521:24;;;;;;;;;24996:25:1;;;25069:4;25057:17;;25037:18;;;25030:45;;;;25091:18;;;25084:34;;;25134:18;;;25127:34;;;4521:24:0;;24968:19:1;;4521:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4521:24:0;;-1:-1:-1;;4521:24:0;;;-1:-1:-1;;;;;;;4564:20:0;;4556:57;;;;-1:-1:-1;;;4556:57:0;;25374:2:1;4556:57:0;;;25356:21:1;25413:2;25393:18;;;25386:30;25452:26;25432:18;;;25425:54;25496:18;;4556:57:0;25172:348:1;4556:57:0;4633:6;3135:1512;-1:-1:-1;;;;;3135:1512:0:o;2633:371::-;2744:7;-1:-1:-1;;;;;2831:75:0;;2933:3;2929:12;;;2943:2;2925:21;2974:22;2982:4;2925:21;2991:1;2831:75;2974:7;:22::i;:::-;2967:29;2633:371;-1:-1:-1;;;;;;2633:371:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;68:71;14:131;:::o;150:245::-;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;3058:247::-;3117:6;3170:2;3158:9;3149:7;3145:23;3141:32;3138:52;;;3186:1;3183;3176:12;3138:52;3225:9;3212:23;3244:31;3269:5;3244:31;:::i;3310:632::-;3481:2;3533:21;;;3603:13;;3506:18;;;3625:22;;;3452:4;;3481:2;3704:15;;;;3678:2;3663:18;;;3452:4;3747:169;3761:6;3758:1;3755:13;3747:169;;;3822:13;;3810:26;;3891:15;;;;3856:12;;;;3783:1;3776:9;3747:169;;;-1:-1:-1;3933:3:1;;3310:632;-1:-1:-1;;;;;;3310:632:1:o;4173:127::-;4234:10;4229:3;4225:20;4222:1;4215:31;4265:4;4262:1;4255:15;4289:4;4286:1;4279:15;4305:632;4370:5;4400:18;4441:2;4433:6;4430:14;4427:40;;;4447:18;;:::i;:::-;4522:2;4516:9;4490:2;4576:15;;-1:-1:-1;;4572:24:1;;;4598:2;4568:33;4564:42;4552:55;;;4622:18;;;4642:22;;;4619:46;4616:72;;;4668:18;;:::i;:::-;4708:10;4704:2;4697:22;4737:6;4728:15;;4767:6;4759;4752:22;4807:3;4798:6;4793:3;4789:16;4786:25;4783:45;;;4824:1;4821;4814:12;4783:45;4874:6;4869:3;4862:4;4854:6;4850:17;4837:44;4929:1;4922:4;4913:6;4905;4901:19;4897:30;4890:41;;;;4305:632;;;;;:::o;4942:451::-;5011:6;5064:2;5052:9;5043:7;5039:23;5035:32;5032:52;;;5080:1;5077;5070:12;5032:52;5120:9;5107:23;5153:18;5145:6;5142:30;5139:50;;;5185:1;5182;5175:12;5139:50;5208:22;;5261:4;5253:13;;5249:27;-1:-1:-1;5239:55:1;;5290:1;5287;5280:12;5239:55;5313:74;5379:7;5374:2;5361:16;5356:2;5352;5348:11;5313:74;:::i;5398:221::-;5440:5;5493:3;5486:4;5478:6;5474:17;5470:27;5460:55;;5511:1;5508;5501:12;5460:55;5533:80;5609:3;5600:6;5587:20;5580:4;5572:6;5568:17;5533:80;:::i;5624:388::-;5701:6;5709;5762:2;5750:9;5741:7;5737:23;5733:32;5730:52;;;5778:1;5775;5768:12;5730:52;5818:9;5805:23;5851:18;5843:6;5840:30;5837:50;;;5883:1;5880;5873:12;5837:50;5906:49;5947:7;5938:6;5927:9;5923:22;5906:49;:::i;:::-;5896:59;6002:2;5987:18;;;;5974:32;;-1:-1:-1;;;;5624:388:1:o;6017:416::-;6082:6;6090;6143:2;6131:9;6122:7;6118:23;6114:32;6111:52;;;6159:1;6156;6149:12;6111:52;6198:9;6185:23;6217:31;6242:5;6217:31;:::i;:::-;6267:5;-1:-1:-1;6324:2:1;6309:18;;6296:32;6366:15;;6359:23;6347:36;;6337:64;;6397:1;6394;6387:12;6337:64;6420:7;6410:17;;;6017:416;;;;;:::o;6438:665::-;6533:6;6541;6549;6557;6610:3;6598:9;6589:7;6585:23;6581:33;6578:53;;;6627:1;6624;6617:12;6578:53;6666:9;6653:23;6685:31;6710:5;6685:31;:::i;:::-;6735:5;-1:-1:-1;6792:2:1;6777:18;;6764:32;6805:33;6764:32;6805:33;:::i;:::-;6857:7;-1:-1:-1;6911:2:1;6896:18;;6883:32;;-1:-1:-1;6966:2:1;6951:18;;6938:32;6993:18;6982:30;;6979:50;;;7025:1;7022;7015:12;6979:50;7048:49;7089:7;7080:6;7069:9;7065:22;7048:49;:::i;:::-;7038:59;;;6438:665;;;;;;;:::o;7108:248::-;7176:6;7184;7237:2;7225:9;7216:7;7212:23;7208:32;7205:52;;;7253:1;7250;7243:12;7205:52;-1:-1:-1;;7276:23:1;;;7346:2;7331:18;;;7318:32;;-1:-1:-1;7108:248:1:o;7361:388::-;7429:6;7437;7490:2;7478:9;7469:7;7465:23;7461:32;7458:52;;;7506:1;7503;7496:12;7458:52;7545:9;7532:23;7564:31;7589:5;7564:31;:::i;:::-;7614:5;-1:-1:-1;7671:2:1;7656:18;;7643:32;7684:33;7643:32;7684:33;:::i;7754:380::-;7833:1;7829:12;;;;7876;;;7897:61;;7951:4;7943:6;7939:17;7929:27;;7897:61;8004:2;7996:6;7993:14;7973:18;7970:38;7967:161;;;8050:10;8045:3;8041:20;8038:1;8031:31;8085:4;8082:1;8075:15;8113:4;8110:1;8103:15;7967:161;;7754:380;;;:::o;9379:356::-;9581:2;9563:21;;;9600:18;;;9593:30;9659:34;9654:2;9639:18;;9632:62;9726:2;9711:18;;9379:356::o;10049:127::-;10110:10;10105:3;10101:20;10098:1;10091:31;10141:4;10138:1;10131:15;10165:4;10162:1;10155:15;10181:136;10220:3;10248:5;10238:39;;10257:18;;:::i;:::-;-1:-1:-1;;;10293:18:1;;10181:136::o;10322:135::-;10361:3;-1:-1:-1;;10382:17:1;;10379:43;;;10402:18;;:::i;:::-;-1:-1:-1;10449:1:1;10438:13;;10322:135::o;10874:127::-;10935:10;10930:3;10926:20;10923:1;10916:31;10966:4;10963:1;10956:15;10990:4;10987:1;10980:15;12590:347;12792:2;12774:21;;;12831:2;12811:18;;;12804:30;12870:25;12865:2;12850:18;;12843:53;12928:2;12913:18;;12590:347::o;12942:128::-;12982:3;13013:1;13009:6;13006:1;13003:13;13000:39;;;13019:18;;:::i;:::-;-1:-1:-1;13055:9:1;;12942:128::o;13486:408::-;13688:2;13670:21;;;13727:2;13707:18;;;13700:30;13766:34;13761:2;13746:18;;13739:62;-1:-1:-1;;;13832:2:1;13817:18;;13810:42;13884:3;13869:19;;13486:408::o;13899:355::-;14101:2;14083:21;;;14140:2;14120:18;;;14113:30;14179:33;14174:2;14159:18;;14152:61;14245:2;14230:18;;13899:355::o;15028:351::-;15230:2;15212:21;;;15269:2;15249:18;;;15242:30;15308:29;15303:2;15288:18;;15281:57;15370:2;15355:18;;15028:351::o;16154:470::-;16333:3;16371:6;16365:13;16387:53;16433:6;16428:3;16421:4;16413:6;16409:17;16387:53;:::i;:::-;16503:13;;16462:16;;;;16525:57;16503:13;16462:16;16559:4;16547:17;;16525:57;:::i;:::-;16598:20;;16154:470;-1:-1:-1;;;;16154:470:1:o;16629:184::-;16699:6;16752:2;16740:9;16731:7;16727:23;16723:32;16720:52;;;16768:1;16765;16758:12;16720:52;-1:-1:-1;16791:16:1;;16629:184;-1:-1:-1;16629:184:1:o;17173:251::-;17243:6;17296:2;17284:9;17275:7;17271:23;17267:32;17264:52;;;17312:1;17309;17302:12;17264:52;17344:9;17338:16;17363:31;17388:5;17363:31;:::i;19029:413::-;19231:2;19213:21;;;19270:2;19250:18;;;19243:30;19309:34;19304:2;19289:18;;19282:62;-1:-1:-1;;;19375:2:1;19360:18;;19353:47;19432:3;19417:19;;19029:413::o;19681:168::-;19721:7;19787:1;19783;19779:6;19775:14;19772:1;19769:21;19764:1;19757:9;19750:17;19746:45;19743:71;;;19794:18;;:::i;:::-;-1:-1:-1;19834:9:1;;19681:168::o;19854:127::-;19915:10;19910:3;19906:20;19903:1;19896:31;19946:4;19943:1;19936:15;19970:4;19967:1;19960:15;19986:120;20026:1;20052;20042:35;;20057:18;;:::i;:::-;-1:-1:-1;20091:9:1;;19986:120::o;20111:125::-;20151:4;20179:1;20176;20173:8;20170:34;;;20184:18;;:::i;:::-;-1:-1:-1;20221:9:1;;20111:125::o;20241:112::-;20273:1;20299;20289:35;;20304:18;;:::i;:::-;-1:-1:-1;20338:9:1;;20241:112::o;21586:414::-;21788:2;21770:21;;;21827:2;21807:18;;;21800:30;21866:34;21861:2;21846:18;;21839:62;-1:-1:-1;;;21932:2:1;21917:18;;21910:48;21990:3;21975:19;;21586:414::o;23083:489::-;-1:-1:-1;;;;;23352:15:1;;;23334:34;;23404:15;;23399:2;23384:18;;23377:43;23451:2;23436:18;;23429:34;;;23499:3;23494:2;23479:18;;23472:31;;;23277:4;;23520:46;;23546:19;;23538:6;23520:46;:::i;23577:249::-;23646:6;23699:2;23687:9;23678:7;23674:23;23670:32;23667:52;;;23715:1;23712;23705:12;23667:52;23747:9;23741:16;23766:30;23790:5;23766:30;:::i;23831:127::-;23892:10;23887:3;23883:20;23880:1;23873:31;23923:4;23920:1;23913:15;23947:4;23944:1;23937:15

Swarm Source

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