ETH Price: $2,689.06 (-3.29%)

Token

ToadzDickbutts (TOD)
 

Overview

Max Total Supply

3,149 TOD

Holders

175

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 TOD
0x32beb617fd520ed1c7feb7b10dcb7a8301e7b34b
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:
ToadzDickbutts

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.4/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
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);

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: contracts/admecon.sol





pragma solidity ^0.8.0;














contract ToadzDickbutts is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {

    using Address for address;

    using Strings for uint256;



    struct TokenOwnership {

        address addr;

        uint64 startTimestamp;

    }



    struct AddressData {

        uint128 balance;

        uint128 numberMinted;

    }



    uint256 internal currentIndex = 0;



    // mint price

    uint256 public _price = 20000000000000000;



    // Token name

    string private _name;



    address private _owner = msg.sender;



    // Token symbol

    string private _symbol;



    // Mapping from token ID to ownership details

    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.

    mapping(uint256 => TokenOwnership) internal _ownerships;



    // Mapping owner address to address data

    mapping(address => AddressData) private _addressData;



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



    constructor(string memory name_, string memory symbol_) {

        _name = name_;

        _symbol = symbol_;

    }



    /**

     * @dev See {IERC721Enumerable-totalSupply}.

     */

    function totalSupply() public view override returns (uint256) {

        return currentIndex;

    }



    /**

     * @dev See {IERC721Enumerable-tokenByIndex}.

     */

    function tokenByIndex(uint256 index) public view override returns (uint256) {

        require(index < totalSupply(), 'ERC721A: global index out of bounds');

        return index;

    }



    /**

     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.

     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.

     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.

     */

    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {

        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');

        uint256 numMintedSoFar = totalSupply();

        uint256 tokenIdsIdx = 0;

        address currOwnershipAddr = address(0);

        for (uint256 i = 0; i < numMintedSoFar; i++) {

            TokenOwnership memory ownership = _ownerships[i];

            if (ownership.addr != address(0)) {

                currOwnershipAddr = ownership.addr;

            }

            if (currOwnershipAddr == owner) {

                if (tokenIdsIdx == index) {

                    return i;

                }

                tokenIdsIdx++;

            }

        }

        revert('ERC721A: unable to get token of owner by index');

    }



    /**

     * @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 ||

            interfaceId == type(IERC721Enumerable).interfaceId ||

            super.supportsInterface(interfaceId);

    }



    /**

     * @dev See {IERC721-balanceOf}.

     */

    function balanceOf(address owner) public view override returns (uint256) {

        require(owner != address(0), 'ERC721A: balance query for the zero address');

        return uint256(_addressData[owner].balance);

    }



    function _numberMinted(address owner) internal view returns (uint256) {

        require(owner != address(0), 'ERC721A: number minted query for the zero address');

        return uint256(_addressData[owner].numberMinted);

    }



    /**

     * Gas spent here starts off proportional to the maximum mint batch size.

     * It gradually moves to O(1) as tokens get transferred around in the collection over time.

     */

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {

        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');



        for (uint256 curr = tokenId; ; curr--) {

            TokenOwnership memory ownership = _ownerships[curr];

            if (ownership.addr != address(0)) {

                return ownership;

            }

        }



        revert('ERC721A: unable to determine the owner of token');

    }



    /**

     * @dev See {IERC721-ownerOf}.

     */

    function ownerOf(uint256 tokenId) public view override returns (address) {

        return ownershipOf(tokenId).addr;

    }



    /**

     * @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(), '.json')) : '';

    }



    /**

     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each

     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty

     * by default, can be overriden in child contracts.

     */

    function _baseURI() internal view virtual returns (string memory) {

        return 'ipfs://QmRkk6Wt8s5giH71f9MS4D3hp9NxoEVui3St4ibnZBXtcy/';

    }



    /**

     * @dev See {IERC721-approve}.

     */

    function approve(address to, uint256 tokenId) public override {

        address owner = ToadzDickbutts.ownerOf(tokenId);

        require(to != owner, 'ERC721A: approval to current owner');



        require(

            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),

            'ERC721A: approve caller is not owner nor approved for all'

        );



        _approve(to, tokenId, owner);

    }



    /**

     * @dev See {IERC721-getApproved}.

     */

    function getApproved(uint256 tokenId) public view override returns (address) {

        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');



        return _tokenApprovals[tokenId];

    }



    /**

     * @dev See {IERC721-setApprovalForAll}.

     */

    function setApprovalForAll(address operator, bool approved) public override {

        require(operator != _msgSender(), 'ERC721A: 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 override {

        _transfer(from, to, tokenId);

    }



    /**

     * @dev See {IERC721-safeTransferFrom}.

     */

    function safeTransferFrom(

        address from,

        address to,

        uint256 tokenId

    ) public override {

        safeTransferFrom(from, to, tokenId, '');

    }



    /**

     * @dev See {IERC721-safeTransferFrom}.

     */

    function safeTransferFrom(

        address from,

        address to,

        uint256 tokenId,

        bytes memory _data

    ) public override {

        _transfer(from, to, tokenId);

        require(

            _checkOnERC721Received(from, to, tokenId, _data),

            'ERC721A: transfer to non ERC721Receiver implementer'

        );

    }



    function setPrice(uint256 newPrice) external {

        require(msg.sender == _owner);

        _price = newPrice;

    }



    /**

     * @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`),

     */

    function _exists(uint256 tokenId) internal view returns (bool) {

        return tokenId < currentIndex;

    }



    function reserveBulk(address[] memory to) external  {

        require(msg.sender == _owner);

        for (uint i = 0; i < to.length;i++) {

            _safeMint(to[i], 1);

        }

    }



    function reserve(address to, uint256 quantity) external  {

        require(msg.sender == _owner);

        require(currentIndex + quantity <= 4646);

        _safeMint(to, quantity);

    }



    function mint(address to, uint256 quantity) external payable {

        require(quantity <= 20 && quantity > 0);

        require(_price * quantity == msg.value);

        require(currentIndex + quantity <= 4646);

        payable(_owner).transfer(msg.value);

        _safeMint(to, quantity);

    }



    function _safeMint(address to, uint256 quantity) internal {

        _safeMint(to, quantity, '');

    }



    /**

     * @dev Safely mints `quantity` tokens and transfers them to `to`.

     *

     * Requirements:

     *

     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.

     * - `quantity` must be greater than 0.

     *

     * Emits a {Transfer} event.

     */

    function _safeMint(

        address to,

        uint256 quantity,

        bytes memory _data

    ) internal {

        _mint(to, quantity, _data, true);

    }



    /**

     * @dev Mints `quantity` tokens and transfers them to `to`.

     *

     * Requirements:

     *

     * - `to` cannot be the zero address.

     * - `quantity` must be greater than 0.

     *

     * Emits a {Transfer} event.

     */

    function _mint(

        address to,

        uint256 quantity,

        bytes memory _data,

        bool safe

    ) internal {

        uint256 startTokenId = currentIndex;

        require(to != address(0), 'ERC721A: mint to the zero address');

        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.

        require(!_exists(startTokenId), 'ERC721A: token already minted');

        require(quantity > 0, 'ERC721A: quantity must be greater than 0');



        _beforeTokenTransfers(address(0), to, startTokenId, quantity);



        _addressData[to].balance += uint128(quantity);

        _addressData[to].numberMinted += uint128(quantity);



        _ownerships[startTokenId].addr = to;

        _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);



        uint256 updatedIndex = startTokenId;



        for (uint256 i = 0; i < quantity; i++) {

            emit Transfer(address(0), to, updatedIndex);

            if (safe) {

                require(

                    _checkOnERC721Received(address(0), to, updatedIndex, _data),

                    'ERC721A: transfer to non ERC721Receiver implementer'

                );

            }

            updatedIndex++;

        }



        currentIndex = updatedIndex;

        _afterTokenTransfers(address(0), to, startTokenId, quantity);

    }



    /**

     * @dev Transfers `tokenId` from `from` to `to`.

     *

     * 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

    ) private {

        TokenOwnership memory prevOwnership = ownershipOf(tokenId);



        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||

            getApproved(tokenId) == _msgSender() ||

            isApprovedForAll(prevOwnership.addr, _msgSender()));



        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');



        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');

        require(to != address(0), 'ERC721A: transfer to the zero address');



        _beforeTokenTransfers(from, to, tokenId, 1);



        // Clear approvals from the previous owner

        _approve(address(0), tokenId, prevOwnership.addr);



        // Underflow of the sender's balance is impossible because we check for

        // ownership above and the recipient's balance can't realistically overflow.

        unchecked {

            _addressData[from].balance -= 1;

            _addressData[to].balance += 1;

        }



        _ownerships[tokenId].addr = to;

        _ownerships[tokenId].startTimestamp = uint64(block.timestamp);



        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.

        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

        uint256 nextTokenId = tokenId + 1;

        if (_ownerships[nextTokenId].addr == address(0)) {

            if (_exists(nextTokenId)) {

                _ownerships[nextTokenId].addr = prevOwnership.addr;

                _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;

            }

        }



        emit Transfer(from, to, tokenId);

        _afterTokenTransfers(from, to, tokenId, 1);

    }



    /**

     * @dev Approve `to` to operate on `tokenId`

     *

     * Emits a {Approval} event.

     */

    function _approve(

        address to,

        uint256 tokenId,

        address owner

    ) private {

        _tokenApprovals[tokenId] = to;

        emit Approval(owner, 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 ownefr 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('ERC721A: transfer to non ERC721Receiver implementer');

                } else {

                    assembly {

                        revert(add(32, reason), mload(reason))

                    }

                }

            }

        } else {

            return true;

        }

    }



    /**

     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.

     *

     * startTokenId - the first token id to be transferred

     * quantity - the amount to be transferred

     *

     * 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`.

     */

    function _beforeTokenTransfers(

        address from,

        address to,

        uint256 startTokenId,

        uint256 quantity

    ) internal virtual {}



    /**

     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes

     * minting.

     *

     * startTokenId - the first token id to be transferred

     * quantity - the amount to be transferred

     *

     * Calling conditions:

     *

     * - when `from` and `to` are both non-zero.

     * - `from` and `to` are never both zero.

     */

    function _afterTokenTransfers(

        address from,

        address to,

        uint256 startTokenId,

        uint256 quantity

    ) internal virtual {}

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","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":"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":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"reserveBulk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[{"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"}]

60806040526000805566470de4df82000060015533600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006157600080fd5b5060405162003957380380620039578339818101604052810190620000879190620001e3565b81600290805190602001906200009f929190620000c1565b508060049080519060200190620000b8929190620000c1565b50505062000387565b828054620000cf90620002f3565b90600052602060002090601f016020900481019282620000f357600085556200013f565b82601f106200010e57805160ff19168380011785556200013f565b828001600101855582156200013f579182015b828111156200013e57825182559160200191906001019062000121565b5b5090506200014e919062000152565b5090565b5b808211156200016d57600081600090555060010162000153565b5090565b60006200018862000182846200028a565b62000256565b905082815260208101848484011115620001a157600080fd5b620001ae848285620002bd565b509392505050565b600082601f830112620001c857600080fd5b8151620001da84826020860162000171565b91505092915050565b60008060408385031215620001f757600080fd5b600083015167ffffffffffffffff8111156200021257600080fd5b6200022085828601620001b6565b925050602083015167ffffffffffffffff8111156200023e57600080fd5b6200024c85828601620001b6565b9150509250929050565b6000604051905081810181811067ffffffffffffffff8211171562000280576200027f62000358565b5b8060405250919050565b600067ffffffffffffffff821115620002a857620002a762000358565b5b601f19601f8301169050602081019050919050565b60005b83811015620002dd578082015181840152602081019050620002c0565b83811115620002ed576000848401525b50505050565b600060028204905060018216806200030c57607f821691505b6020821081141562000323576200032262000329565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135c080620003976000396000f3fe60806040526004361061012a5760003560e01c80634f6ccce7116100ab57806395d89b411161006f57806395d89b4114610407578063a22cb46514610432578063b88d4fde1461045b578063c87b56dd14610484578063cc47a40b146104c1578063e985e9c5146104ea5761012a565b80634f6ccce7146102fe5780636352211e1461033b57806370a08231146103785780637ba5b5fb146103b557806391b7f5ed146103de5761012a565b8063235b6ea1116100f2578063235b6ea11461022857806323b872dd146102535780632f745c591461027c57806340c10f19146102b957806342842e0e146102d55761012a565b806301ffc9a71461012f57806306fdde031461016c578063081812fc14610197578063095ea7b3146101d457806318160ddd146101fd575b600080fd5b34801561013b57600080fd5b5061015660048036038101906101519190612545565b610527565b6040516101639190612de0565b60405180910390f35b34801561017857600080fd5b50610181610671565b60405161018e9190612dfb565b60405180910390f35b3480156101a357600080fd5b506101be60048036038101906101b99190612597565b610703565b6040516101cb9190612d79565b60405180910390f35b3480156101e057600080fd5b506101fb60048036038101906101f691906124c8565b610788565b005b34801561020957600080fd5b506102126108a1565b60405161021f919061303d565b60405180910390f35b34801561023457600080fd5b5061023d6108aa565b60405161024a919061303d565b60405180910390f35b34801561025f57600080fd5b5061027a600480360381019061027591906123c2565b6108b0565b005b34801561028857600080fd5b506102a3600480360381019061029e91906124c8565b6108c0565b6040516102b0919061303d565b60405180910390f35b6102d360048036038101906102ce91906124c8565b610abe565b005b3480156102e157600080fd5b506102fc60048036038101906102f791906123c2565b610b84565b005b34801561030a57600080fd5b5061032560048036038101906103209190612597565b610ba4565b604051610332919061303d565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190612597565b610bf7565b60405161036f9190612d79565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a919061235d565b610c0d565b6040516103ac919061303d565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d79190612504565b610cf6565b005b3480156103ea57600080fd5b5061040560048036038101906104009190612597565b610dbe565b005b34801561041357600080fd5b5061041c610e22565b6040516104299190612dfb565b60405180910390f35b34801561043e57600080fd5b506104596004803603810190610454919061248c565b610eb4565b005b34801561046757600080fd5b50610482600480360381019061047d9190612411565b611035565b005b34801561049057600080fd5b506104ab60048036038101906104a69190612597565b611091565b6040516104b89190612dfb565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e391906124c8565b611138565b005b3480156104f657600080fd5b50610511600480360381019061050c9190612386565b6111bc565b60405161051e9190612de0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105f257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066a575061066982611250565b5b9050919050565b6060600280546106809061337f565b80601f01602080910402602001604051908101604052809291908181526020018280546106ac9061337f565b80156106f95780601f106106ce576101008083540402835291602001916106f9565b820191906000526020600020905b8154815290600101906020018083116106dc57829003601f168201915b5050505050905090565b600061070e826112ba565b61074d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107449061301d565b60405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079382610bf7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fb90612f5d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108236112c7565b73ffffffffffffffffffffffffffffffffffffffff16148061085257506108518161084c6112c7565b6111bc565b5b610891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088890612e9d565b60405180910390fd5b61089c8383836112cf565b505050565b60008054905090565b60015481565b6108bb838383611381565b505050565b60006108cb83610c0d565b821061090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090390612e1d565b60405180910390fd5b60006109166108a1565b905060008060005b83811015610a7c576000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610a1057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a685786841415610a59578195505050505050610ab8565b8380610a64906133b1565b9450505b508080610a74906133b1565b91505061091e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf90612ffd565b60405180910390fd5b92915050565b60148111158015610acf5750600081115b610ad857600080fd5b3481600154610ae791906131f5565b14610af157600080fd5b61122681600054610b02919061316e565b1115610b0d57600080fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610b75573d6000803e3d6000fd5b50610b8082826118ca565b5050565b610b9f83838360405180602001604052806000815250611035565b505050565b6000610bae6108a1565b8210610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690612e5d565b60405180910390fd5b819050919050565b6000610c02826118e8565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590612ebd565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d5057600080fd5b60005b8151811015610dba57610da7828281518110610d98577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160016118ca565b8080610db2906133b1565b915050610d53565b5050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e1857600080fd5b8060018190555050565b606060048054610e319061337f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5d9061337f565b8015610eaa5780601f10610e7f57610100808354040283529160200191610eaa565b820191906000526020600020905b815481529060010190602001808311610e8d57829003601f168201915b5050505050905090565b610ebc6112c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190612f1d565b60405180910390fd5b8060086000610f376112c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fe46112c7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110299190612de0565b60405180910390a35050565b611040848484611381565b61104c84848484611a43565b61108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612f7d565b60405180910390fd5b50505050565b606061109c826112ba565b6110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290612efd565b60405180910390fd5b60006110e5611bda565b905060008151116111055760405180602001604052806000815250611130565b8061110f84611bfa565b604051602001611120929190612d4a565b6040516020818303038152906040525b915050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461119257600080fd5b611226816000546111a3919061316e565b11156111ae57600080fd5b6111b882826118ca565b5050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061138c826118e8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166113b36112c7565b73ffffffffffffffffffffffffffffffffffffffff16148061140f57506113d86112c7565b73ffffffffffffffffffffffffffffffffffffffff166113f784610703565b73ffffffffffffffffffffffffffffffffffffffff16145b8061142b575061142a82600001516114256112c7565b6111bc565b5b90508061146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490612f3d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690612edd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561154f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154690612e7d565b60405180910390fd5b61155c8585856001611da7565b61156c60008484600001516112cf565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184611743919061316e565b9050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561185a576117b9816112ba565b156118595782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118c28686866001611dad565b505050505050565b6118e4828260405180602001604052806000815250611db3565b5050565b6118f06121bc565b6118f9826112ba565b611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90612e3d565b60405180910390fd5b60008290505b6000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a2a578092505050611a3e565b508080611a3690613355565b91505061193e565b919050565b6000611a648473ffffffffffffffffffffffffffffffffffffffff16611dc5565b15611bcd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a8d6112c7565b8786866040518563ffffffff1660e01b8152600401611aaf9493929190612d94565b602060405180830381600087803b158015611ac957600080fd5b505af1925050508015611afa57506040513d601f19601f82011682018060405250810190611af7919061256e565b60015b611b7d573d8060008114611b2a576040519150601f19603f3d011682016040523d82523d6000602084013e611b2f565b606091505b50600081511415611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90612f7d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611bd2565b600190505b949350505050565b606060405180606001604052806036815260200161355560369139905090565b60606000821415611c42576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611da2565b600082905060005b60008214611c74578080611c5d906133b1565b915050600a82611c6d91906131c4565b9150611c4a565b60008167ffffffffffffffff811115611cb6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ce85781602001600182028036833780820191505090505b5090505b60008514611d9b57600182611d01919061324f565b9150600a85611d1091906133fa565b6030611d1c919061316e565b60f81b818381518110611d58577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d9491906131c4565b9450611cec565b8093505050505b919050565b50505050565b50505050565b611dc08383836001611dd8565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4590612fbd565b60405180910390fd5b611e57816112ba565b15611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90612f9d565b60405180910390fd5b60008411611eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed190612fdd565b60405180910390fd5b611ee76000868387611da7565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f549190613128565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff16611ff79190613128565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561219f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561217e5761213e6000888488611a43565b61217d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217490612f7d565b60405180910390fd5b5b8180612189906133b1565b9250508080612197906133b1565b9150506120c7565b50806000819055506121b46000878488611dad565b505050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b600061220961220484613089565b613058565b9050808382526020820190508285602086028201111561222857600080fd5b60005b85811015612258578161223e88826122a0565b84526020840193506020830192505060018101905061222b565b5050509392505050565b6000612275612270846130b5565b613058565b90508281526020810184848401111561228d57600080fd5b612298848285613313565b509392505050565b6000813590506122af816134f8565b92915050565b600082601f8301126122c657600080fd5b81356122d68482602086016121f6565b91505092915050565b6000813590506122ee8161350f565b92915050565b60008135905061230381613526565b92915050565b60008151905061231881613526565b92915050565b600082601f83011261232f57600080fd5b813561233f848260208601612262565b91505092915050565b6000813590506123578161353d565b92915050565b60006020828403121561236f57600080fd5b600061237d848285016122a0565b91505092915050565b6000806040838503121561239957600080fd5b60006123a7858286016122a0565b92505060206123b8858286016122a0565b9150509250929050565b6000806000606084860312156123d757600080fd5b60006123e5868287016122a0565b93505060206123f6868287016122a0565b925050604061240786828701612348565b9150509250925092565b6000806000806080858703121561242757600080fd5b6000612435878288016122a0565b9450506020612446878288016122a0565b935050604061245787828801612348565b925050606085013567ffffffffffffffff81111561247457600080fd5b6124808782880161231e565b91505092959194509250565b6000806040838503121561249f57600080fd5b60006124ad858286016122a0565b92505060206124be858286016122df565b9150509250929050565b600080604083850312156124db57600080fd5b60006124e9858286016122a0565b92505060206124fa85828601612348565b9150509250929050565b60006020828403121561251657600080fd5b600082013567ffffffffffffffff81111561253057600080fd5b61253c848285016122b5565b91505092915050565b60006020828403121561255757600080fd5b6000612565848285016122f4565b91505092915050565b60006020828403121561258057600080fd5b600061258e84828501612309565b91505092915050565b6000602082840312156125a957600080fd5b60006125b784828501612348565b91505092915050565b6125c981613283565b82525050565b6125d881613295565b82525050565b60006125e9826130e5565b6125f381856130fb565b9350612603818560208601613322565b61260c816134e7565b840191505092915050565b6000612622826130f0565b61262c818561310c565b935061263c818560208601613322565b612645816134e7565b840191505092915050565b600061265b826130f0565b612665818561311d565b9350612675818560208601613322565b80840191505092915050565b600061268e60228361310c565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126f4602a8361310c565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b600061275a60238361310c565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127c060258361310c565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061282660398361310c565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b600061288c602b8361310c565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006128f260268361310c565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061295860058361311d565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000612998602f8361310c565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006129fe601a8361310c565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000612a3e60328361310c565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000612aa460228361310c565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b0a60338361310c565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000612b70601d8361310c565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000612bb060218361310c565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c1660288361310c565b91507f455243373231413a207175616e74697479206d7573742062652067726561746560008301527f72207468616e20300000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c7c602e8361310c565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000612ce2602d8361310c565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b612d4481613309565b82525050565b6000612d568285612650565b9150612d628284612650565b9150612d6d8261294b565b91508190509392505050565b6000602082019050612d8e60008301846125c0565b92915050565b6000608082019050612da960008301876125c0565b612db660208301866125c0565b612dc36040830185612d3b565b8181036060830152612dd581846125de565b905095945050505050565b6000602082019050612df560008301846125cf565b92915050565b60006020820190508181036000830152612e158184612617565b905092915050565b60006020820190508181036000830152612e3681612681565b9050919050565b60006020820190508181036000830152612e56816126e7565b9050919050565b60006020820190508181036000830152612e768161274d565b9050919050565b60006020820190508181036000830152612e96816127b3565b9050919050565b60006020820190508181036000830152612eb681612819565b9050919050565b60006020820190508181036000830152612ed68161287f565b9050919050565b60006020820190508181036000830152612ef6816128e5565b9050919050565b60006020820190508181036000830152612f168161298b565b9050919050565b60006020820190508181036000830152612f36816129f1565b9050919050565b60006020820190508181036000830152612f5681612a31565b9050919050565b60006020820190508181036000830152612f7681612a97565b9050919050565b60006020820190508181036000830152612f9681612afd565b9050919050565b60006020820190508181036000830152612fb681612b63565b9050919050565b60006020820190508181036000830152612fd681612ba3565b9050919050565b60006020820190508181036000830152612ff681612c09565b9050919050565b6000602082019050818103600083015261301681612c6f565b9050919050565b6000602082019050818103600083015261303681612cd5565b9050919050565b60006020820190506130526000830184612d3b565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561307f5761307e6134b8565b5b8060405250919050565b600067ffffffffffffffff8211156130a4576130a36134b8565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156130d0576130cf6134b8565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613133826132cd565b915061313e836132cd565b9250826fffffffffffffffffffffffffffffffff038211156131635761316261342b565b5b828201905092915050565b600061317982613309565b915061318483613309565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131b9576131b861342b565b5b828201905092915050565b60006131cf82613309565b91506131da83613309565b9250826131ea576131e961345a565b5b828204905092915050565b600061320082613309565b915061320b83613309565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132445761324361342b565b5b828202905092915050565b600061325a82613309565b915061326583613309565b9250828210156132785761327761342b565b5b828203905092915050565b600061328e826132e9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613340578082015181840152602081019050613325565b8381111561334f576000848401525b50505050565b600061336082613309565b915060008214156133745761337361342b565b5b600182039050919050565b6000600282049050600182168061339757607f821691505b602082108114156133ab576133aa613489565b5b50919050565b60006133bc82613309565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133ef576133ee61342b565b5b600182019050919050565b600061340582613309565b915061341083613309565b9250826134205761341f61345a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61350181613283565b811461350c57600080fd5b50565b61351881613295565b811461352357600080fd5b50565b61352f816132a1565b811461353a57600080fd5b50565b61354681613309565b811461355157600080fd5b5056fe697066733a2f2f516d526b6b365774387335676948373166394d533444336870394e786f455675693353743469626e5a42587463792fa2646970667358221220696600004c246d2c1f3068dac09095d4b780e6b521449fcb5093f3e0d73b670164736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e546f61647a4469636b62757474730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003544f440000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061012a5760003560e01c80634f6ccce7116100ab57806395d89b411161006f57806395d89b4114610407578063a22cb46514610432578063b88d4fde1461045b578063c87b56dd14610484578063cc47a40b146104c1578063e985e9c5146104ea5761012a565b80634f6ccce7146102fe5780636352211e1461033b57806370a08231146103785780637ba5b5fb146103b557806391b7f5ed146103de5761012a565b8063235b6ea1116100f2578063235b6ea11461022857806323b872dd146102535780632f745c591461027c57806340c10f19146102b957806342842e0e146102d55761012a565b806301ffc9a71461012f57806306fdde031461016c578063081812fc14610197578063095ea7b3146101d457806318160ddd146101fd575b600080fd5b34801561013b57600080fd5b5061015660048036038101906101519190612545565b610527565b6040516101639190612de0565b60405180910390f35b34801561017857600080fd5b50610181610671565b60405161018e9190612dfb565b60405180910390f35b3480156101a357600080fd5b506101be60048036038101906101b99190612597565b610703565b6040516101cb9190612d79565b60405180910390f35b3480156101e057600080fd5b506101fb60048036038101906101f691906124c8565b610788565b005b34801561020957600080fd5b506102126108a1565b60405161021f919061303d565b60405180910390f35b34801561023457600080fd5b5061023d6108aa565b60405161024a919061303d565b60405180910390f35b34801561025f57600080fd5b5061027a600480360381019061027591906123c2565b6108b0565b005b34801561028857600080fd5b506102a3600480360381019061029e91906124c8565b6108c0565b6040516102b0919061303d565b60405180910390f35b6102d360048036038101906102ce91906124c8565b610abe565b005b3480156102e157600080fd5b506102fc60048036038101906102f791906123c2565b610b84565b005b34801561030a57600080fd5b5061032560048036038101906103209190612597565b610ba4565b604051610332919061303d565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190612597565b610bf7565b60405161036f9190612d79565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a919061235d565b610c0d565b6040516103ac919061303d565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d79190612504565b610cf6565b005b3480156103ea57600080fd5b5061040560048036038101906104009190612597565b610dbe565b005b34801561041357600080fd5b5061041c610e22565b6040516104299190612dfb565b60405180910390f35b34801561043e57600080fd5b506104596004803603810190610454919061248c565b610eb4565b005b34801561046757600080fd5b50610482600480360381019061047d9190612411565b611035565b005b34801561049057600080fd5b506104ab60048036038101906104a69190612597565b611091565b6040516104b89190612dfb565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e391906124c8565b611138565b005b3480156104f657600080fd5b50610511600480360381019061050c9190612386565b6111bc565b60405161051e9190612de0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105f257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066a575061066982611250565b5b9050919050565b6060600280546106809061337f565b80601f01602080910402602001604051908101604052809291908181526020018280546106ac9061337f565b80156106f95780601f106106ce576101008083540402835291602001916106f9565b820191906000526020600020905b8154815290600101906020018083116106dc57829003601f168201915b5050505050905090565b600061070e826112ba565b61074d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107449061301d565b60405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079382610bf7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fb90612f5d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108236112c7565b73ffffffffffffffffffffffffffffffffffffffff16148061085257506108518161084c6112c7565b6111bc565b5b610891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088890612e9d565b60405180910390fd5b61089c8383836112cf565b505050565b60008054905090565b60015481565b6108bb838383611381565b505050565b60006108cb83610c0d565b821061090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090390612e1d565b60405180910390fd5b60006109166108a1565b905060008060005b83811015610a7c576000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610a1057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a685786841415610a59578195505050505050610ab8565b8380610a64906133b1565b9450505b508080610a74906133b1565b91505061091e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf90612ffd565b60405180910390fd5b92915050565b60148111158015610acf5750600081115b610ad857600080fd5b3481600154610ae791906131f5565b14610af157600080fd5b61122681600054610b02919061316e565b1115610b0d57600080fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610b75573d6000803e3d6000fd5b50610b8082826118ca565b5050565b610b9f83838360405180602001604052806000815250611035565b505050565b6000610bae6108a1565b8210610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be690612e5d565b60405180910390fd5b819050919050565b6000610c02826118e8565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590612ebd565b60405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d5057600080fd5b60005b8151811015610dba57610da7828281518110610d98577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160016118ca565b8080610db2906133b1565b915050610d53565b5050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e1857600080fd5b8060018190555050565b606060048054610e319061337f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5d9061337f565b8015610eaa5780601f10610e7f57610100808354040283529160200191610eaa565b820191906000526020600020905b815481529060010190602001808311610e8d57829003601f168201915b5050505050905090565b610ebc6112c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190612f1d565b60405180910390fd5b8060086000610f376112c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fe46112c7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110299190612de0565b60405180910390a35050565b611040848484611381565b61104c84848484611a43565b61108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290612f7d565b60405180910390fd5b50505050565b606061109c826112ba565b6110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290612efd565b60405180910390fd5b60006110e5611bda565b905060008151116111055760405180602001604052806000815250611130565b8061110f84611bfa565b604051602001611120929190612d4a565b6040516020818303038152906040525b915050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461119257600080fd5b611226816000546111a3919061316e565b11156111ae57600080fd5b6111b882826118ca565b5050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061138c826118e8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166113b36112c7565b73ffffffffffffffffffffffffffffffffffffffff16148061140f57506113d86112c7565b73ffffffffffffffffffffffffffffffffffffffff166113f784610703565b73ffffffffffffffffffffffffffffffffffffffff16145b8061142b575061142a82600001516114256112c7565b6111bc565b5b90508061146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490612f3d565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690612edd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561154f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154690612e7d565b60405180910390fd5b61155c8585856001611da7565b61156c60008484600001516112cf565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184611743919061316e565b9050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561185a576117b9816112ba565b156118595782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118c28686866001611dad565b505050505050565b6118e4828260405180602001604052806000815250611db3565b5050565b6118f06121bc565b6118f9826112ba565b611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90612e3d565b60405180910390fd5b60008290505b6000600560008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a2a578092505050611a3e565b508080611a3690613355565b91505061193e565b919050565b6000611a648473ffffffffffffffffffffffffffffffffffffffff16611dc5565b15611bcd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a8d6112c7565b8786866040518563ffffffff1660e01b8152600401611aaf9493929190612d94565b602060405180830381600087803b158015611ac957600080fd5b505af1925050508015611afa57506040513d601f19601f82011682018060405250810190611af7919061256e565b60015b611b7d573d8060008114611b2a576040519150601f19603f3d011682016040523d82523d6000602084013e611b2f565b606091505b50600081511415611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90612f7d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611bd2565b600190505b949350505050565b606060405180606001604052806036815260200161355560369139905090565b60606000821415611c42576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611da2565b600082905060005b60008214611c74578080611c5d906133b1565b915050600a82611c6d91906131c4565b9150611c4a565b60008167ffffffffffffffff811115611cb6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ce85781602001600182028036833780820191505090505b5090505b60008514611d9b57600182611d01919061324f565b9150600a85611d1091906133fa565b6030611d1c919061316e565b60f81b818381518110611d58577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d9491906131c4565b9450611cec565b8093505050505b919050565b50505050565b50505050565b611dc08383836001611dd8565b505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4590612fbd565b60405180910390fd5b611e57816112ba565b15611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90612f9d565b60405180910390fd5b60008411611eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed190612fdd565b60405180910390fd5b611ee76000868387611da7565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f549190613128565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff16611ff79190613128565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561219f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561217e5761213e6000888488611a43565b61217d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217490612f7d565b60405180910390fd5b5b8180612189906133b1565b9250508080612197906133b1565b9150506120c7565b50806000819055506121b46000878488611dad565b505050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b600061220961220484613089565b613058565b9050808382526020820190508285602086028201111561222857600080fd5b60005b85811015612258578161223e88826122a0565b84526020840193506020830192505060018101905061222b565b5050509392505050565b6000612275612270846130b5565b613058565b90508281526020810184848401111561228d57600080fd5b612298848285613313565b509392505050565b6000813590506122af816134f8565b92915050565b600082601f8301126122c657600080fd5b81356122d68482602086016121f6565b91505092915050565b6000813590506122ee8161350f565b92915050565b60008135905061230381613526565b92915050565b60008151905061231881613526565b92915050565b600082601f83011261232f57600080fd5b813561233f848260208601612262565b91505092915050565b6000813590506123578161353d565b92915050565b60006020828403121561236f57600080fd5b600061237d848285016122a0565b91505092915050565b6000806040838503121561239957600080fd5b60006123a7858286016122a0565b92505060206123b8858286016122a0565b9150509250929050565b6000806000606084860312156123d757600080fd5b60006123e5868287016122a0565b93505060206123f6868287016122a0565b925050604061240786828701612348565b9150509250925092565b6000806000806080858703121561242757600080fd5b6000612435878288016122a0565b9450506020612446878288016122a0565b935050604061245787828801612348565b925050606085013567ffffffffffffffff81111561247457600080fd5b6124808782880161231e565b91505092959194509250565b6000806040838503121561249f57600080fd5b60006124ad858286016122a0565b92505060206124be858286016122df565b9150509250929050565b600080604083850312156124db57600080fd5b60006124e9858286016122a0565b92505060206124fa85828601612348565b9150509250929050565b60006020828403121561251657600080fd5b600082013567ffffffffffffffff81111561253057600080fd5b61253c848285016122b5565b91505092915050565b60006020828403121561255757600080fd5b6000612565848285016122f4565b91505092915050565b60006020828403121561258057600080fd5b600061258e84828501612309565b91505092915050565b6000602082840312156125a957600080fd5b60006125b784828501612348565b91505092915050565b6125c981613283565b82525050565b6125d881613295565b82525050565b60006125e9826130e5565b6125f381856130fb565b9350612603818560208601613322565b61260c816134e7565b840191505092915050565b6000612622826130f0565b61262c818561310c565b935061263c818560208601613322565b612645816134e7565b840191505092915050565b600061265b826130f0565b612665818561311d565b9350612675818560208601613322565b80840191505092915050565b600061268e60228361310c565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126f4602a8361310c565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b600061275a60238361310c565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127c060258361310c565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061282660398361310c565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b600061288c602b8361310c565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006128f260268361310c565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061295860058361311d565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000612998602f8361310c565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006129fe601a8361310c565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b6000612a3e60328361310c565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000612aa460228361310c565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b0a60338361310c565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b6000612b70601d8361310c565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b6000612bb060218361310c565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c1660288361310c565b91507f455243373231413a207175616e74697479206d7573742062652067726561746560008301527f72207468616e20300000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c7c602e8361310c565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b6000612ce2602d8361310c565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b612d4481613309565b82525050565b6000612d568285612650565b9150612d628284612650565b9150612d6d8261294b565b91508190509392505050565b6000602082019050612d8e60008301846125c0565b92915050565b6000608082019050612da960008301876125c0565b612db660208301866125c0565b612dc36040830185612d3b565b8181036060830152612dd581846125de565b905095945050505050565b6000602082019050612df560008301846125cf565b92915050565b60006020820190508181036000830152612e158184612617565b905092915050565b60006020820190508181036000830152612e3681612681565b9050919050565b60006020820190508181036000830152612e56816126e7565b9050919050565b60006020820190508181036000830152612e768161274d565b9050919050565b60006020820190508181036000830152612e96816127b3565b9050919050565b60006020820190508181036000830152612eb681612819565b9050919050565b60006020820190508181036000830152612ed68161287f565b9050919050565b60006020820190508181036000830152612ef6816128e5565b9050919050565b60006020820190508181036000830152612f168161298b565b9050919050565b60006020820190508181036000830152612f36816129f1565b9050919050565b60006020820190508181036000830152612f5681612a31565b9050919050565b60006020820190508181036000830152612f7681612a97565b9050919050565b60006020820190508181036000830152612f9681612afd565b9050919050565b60006020820190508181036000830152612fb681612b63565b9050919050565b60006020820190508181036000830152612fd681612ba3565b9050919050565b60006020820190508181036000830152612ff681612c09565b9050919050565b6000602082019050818103600083015261301681612c6f565b9050919050565b6000602082019050818103600083015261303681612cd5565b9050919050565b60006020820190506130526000830184612d3b565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561307f5761307e6134b8565b5b8060405250919050565b600067ffffffffffffffff8211156130a4576130a36134b8565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156130d0576130cf6134b8565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613133826132cd565b915061313e836132cd565b9250826fffffffffffffffffffffffffffffffff038211156131635761316261342b565b5b828201905092915050565b600061317982613309565b915061318483613309565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131b9576131b861342b565b5b828201905092915050565b60006131cf82613309565b91506131da83613309565b9250826131ea576131e961345a565b5b828204905092915050565b600061320082613309565b915061320b83613309565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132445761324361342b565b5b828202905092915050565b600061325a82613309565b915061326583613309565b9250828210156132785761327761342b565b5b828203905092915050565b600061328e826132e9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613340578082015181840152602081019050613325565b8381111561334f576000848401525b50505050565b600061336082613309565b915060008214156133745761337361342b565b5b600182039050919050565b6000600282049050600182168061339757607f821691505b602082108114156133ab576133aa613489565b5b50919050565b60006133bc82613309565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133ef576133ee61342b565b5b600182019050919050565b600061340582613309565b915061341083613309565b9250826134205761341f61345a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61350181613283565b811461350c57600080fd5b50565b61351881613295565b811461352357600080fd5b50565b61352f816132a1565b811461353a57600080fd5b50565b61354681613309565b811461355157600080fd5b5056fe697066733a2f2f516d526b6b365774387335676948373166394d533444336870394e786f455675693353743469626e5a42587463792fa2646970667358221220696600004c246d2c1f3068dac09095d4b780e6b521449fcb5093f3e0d73b670164736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e546f61647a4469636b62757474730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003544f440000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): ToadzDickbutts
Arg [1] : symbol_ (string): TOD

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 546f61647a4469636b6275747473000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 544f440000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

21486:17603:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24597:384;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26514:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28241:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27725:440;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22958:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21927:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29169:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23656:859;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31034:312;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29424:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23149:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26309:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25055:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30610:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30083:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26697:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28545:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29694:377;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26886:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30824:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28924:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24597:384;24699:4;24755:25;24740:40;;;:11;:40;;;;:107;;;;24814:33;24799:48;;;:11;:48;;;;24740:107;:176;;;;24881:35;24866:50;;;:11;:50;;;;24740:176;:231;;;;24935:36;24959:11;24935:23;:36::i;:::-;24740:231;24718:253;;24597:384;;;:::o;26514:104::-;26568:13;26603:5;26596:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26514:104;:::o;28241:222::-;28309:7;28339:16;28347:7;28339;:16::i;:::-;28331:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28429:15;:24;28445:7;28429:24;;;;;;;;;;;;;;;;;;;;;28422:31;;28241:222;;;:::o;27725:440::-;27800:13;27816:31;27839:7;27816:22;:31::i;:::-;27800:47;;27874:5;27868:11;;:2;:11;;;;27860:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27975:5;27959:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27984:37;28001:5;28008:12;:10;:12::i;:::-;27984:16;:37::i;:::-;27959:62;27935:175;;;;;;;;;;;;:::i;:::-;;;;;;;;;28127:28;28136:2;28140:7;28149:5;28127:8;:28::i;:::-;27725:440;;;:::o;22958:104::-;23011:7;23040:12;;23033:19;;22958:104;:::o;21927:41::-;;;;:::o;29169:174::-;29305:28;29315:4;29321:2;29325:7;29305:9;:28::i;:::-;29169:174;;;:::o;23656:859::-;23745:7;23783:16;23793:5;23783:9;:16::i;:::-;23775:5;:24;23767:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23851:22;23876:13;:11;:13::i;:::-;23851:38;;23902:19;23938:25;23994:9;23989:448;24013:14;24009:1;:18;23989:448;;;24051:31;24085:11;:14;24097:1;24085:14;;;;;;;;;;;24051:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24146:1;24120:28;;:9;:14;;;:28;;;24116:107;;24191:9;:14;;;24171:34;;24116:107;24264:5;24243:26;;:17;:26;;;24239:185;;;24311:5;24296:11;:20;24292:81;;;24350:1;24343:8;;;;;;;;;24292:81;24393:13;;;;;:::i;:::-;;;;24239:185;23989:448;24029:3;;;;;:::i;:::-;;;;23989:448;;;;24449:56;;;;;;;;;;:::i;:::-;;;;;;;;23656:859;;;;;:::o;31034:312::-;31128:2;31116:8;:14;;:30;;;;;31145:1;31134:8;:12;31116:30;31108:39;;;;;;31189:9;31177:8;31168:6;;:17;;;;:::i;:::-;:30;31160:39;;;;;;31247:4;31235:8;31220:12;;:23;;;;:::i;:::-;:31;;31212:40;;;;;;31273:6;;;;;;;;;;;31265:24;;:35;31290:9;31265:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31313:23;31323:2;31327:8;31313:9;:23::i;:::-;31034:312;;:::o;29424:189::-;29564:39;29581:4;29587:2;29591:7;29564:39;;;;;;;;;;;;:16;:39::i;:::-;29424:189;;;:::o;23149:193::-;23216:7;23254:13;:11;:13::i;:::-;23246:5;:21;23238:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23327:5;23320:12;;23149:193;;;:::o;26309:128::-;26373:7;26402:20;26414:7;26402:11;:20::i;:::-;:25;;;26395:32;;26309:128;;;:::o;25055:227::-;25119:7;25166:1;25149:19;;:5;:19;;;;25141:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25244:12;:19;25257:5;25244:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25236:36;;25229:43;;25055:227;;;:::o;30610:202::-;30697:6;;;;;;;;;;;30683:20;;:10;:20;;;30675:29;;;;;;30722:6;30717:86;30738:2;:9;30734:1;:13;30717:86;;;30770:19;30780:2;30783:1;30780:5;;;;;;;;;;;;;;;;;;;;;;30787:1;30770:9;:19::i;:::-;30748:3;;;;;:::i;:::-;;;;30717:86;;;;30610:202;:::o;30083:127::-;30163:6;;;;;;;;;;;30149:20;;:10;:20;;;30141:29;;;;;;30192:8;30183:6;:17;;;;30083:127;:::o;26697:108::-;26753:13;26788:7;26781:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26697:108;:::o;28545:298::-;28654:12;:10;:12::i;:::-;28642:24;;:8;:24;;;;28634:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28759:8;28714:18;:32;28733:12;:10;:12::i;:::-;28714:32;;;;;;;;;;;;;;;:42;28747:8;28714:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28814:8;28785:48;;28800:12;:10;:12::i;:::-;28785:48;;;28824:8;28785:48;;;;;;:::i;:::-;;;;;;;;28545:298;;:::o;29694:377::-;29865:28;29875:4;29881:2;29885:7;29865:9;:28::i;:::-;29930:48;29953:4;29959:2;29963:7;29972:5;29930:22;:48::i;:::-;29906:155;;;;;;;;;;;;:::i;:::-;;;;;;;;;29694:377;;;;:::o;26886:353::-;26959:13;26995:16;27003:7;26995;:16::i;:::-;26987:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;27080:21;27104:10;:8;:10::i;:::-;27080:34;;27158:1;27140:7;27134:21;:25;:95;;;;;;;;;;;;;;;;;27186:7;27195:18;:7;:16;:18::i;:::-;27169:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27134:95;27127:102;;;26886:353;;;:::o;30824:198::-;30916:6;;;;;;;;;;;30902:20;;:10;:20;;;30894:29;;;;;;30971:4;30959:8;30944:12;;:23;;;;:::i;:::-;:31;;30936:40;;;;;;30989:23;30999:2;31003:8;30989:9;:23::i;:::-;30824:198;;:::o;28924:168::-;29021:4;29047:18;:25;29066:5;29047:25;;;;;;;;;;;;;;;:35;29073:8;29047:35;;;;;;;;;;;;;;;;;;;;;;;;;29040:42;;28924:168;;;;:::o;14313:157::-;14398:4;14437:25;14422:40;;;:11;:40;;;;14415:47;;14313:157;;;:::o;30483:115::-;30540:4;30576:12;;30566:7;:22;30559:29;;30483:115;;;:::o;2909:98::-;2962:7;2989:10;2982:17;;2909:98;:::o;36145:210::-;36297:2;36270:15;:24;36286:7;36270:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36337:7;36333:2;36317:28;;36326:5;36317:28;;;;;;;;;;;;36145:210;;;:::o;34060:1953::-;34185:35;34223:20;34235:7;34223:11;:20::i;:::-;34185:58;;34260:22;34302:13;:18;;;34286:34;;:12;:10;:12::i;:::-;:34;;;:89;;;;34363:12;:10;:12::i;:::-;34339:36;;:20;34351:7;34339:11;:20::i;:::-;:36;;;34286:89;:158;;;;34394:50;34411:13;:18;;;34431:12;:10;:12::i;:::-;34394:16;:50::i;:::-;34286:158;34260:185;;34470:17;34462:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;34589:4;34567:26;;:13;:18;;;:26;;;34559:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;34671:1;34657:16;;:2;:16;;;;34649:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34732:43;34754:4;34760:2;34764:7;34773:1;34732:21;:43::i;:::-;34846:49;34863:1;34867:7;34876:13;:18;;;34846:8;:49::i;:::-;35140:1;35110:12;:18;35123:4;35110:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35186:1;35158:12;:16;35171:2;35158:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35245:2;35217:11;:20;35229:7;35217:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;35305:15;35260:11;:20;35272:7;35260:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;35569:19;35601:1;35591:7;:11;;;;:::i;:::-;35569:33;;35660:1;35619:43;;:11;:24;35631:11;35619:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35615:285;;;35685:20;35693:11;35685:7;:20::i;:::-;35681:206;;;35760:13;:18;;;35728:11;:24;35740:11;35728:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;35841:13;:28;;;35799:11;:24;35811:11;35799:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;35681:206;35615:285;35940:7;35936:2;35921:27;;35930:4;35921:27;;;;;;;;;;;;35961:42;35982:4;35988:2;35992:7;36001:1;35961:20;:42::i;:::-;34060:1953;;;;;;:::o;31358:108::-;31429:27;31439:2;31443:8;31429:27;;;;;;;;;;;;:9;:27::i;:::-;31358:108;;:::o;25743:494::-;25804:21;;:::i;:::-;25848:16;25856:7;25848;:16::i;:::-;25840:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25933:12;25948:7;25933:22;;25928:226;25984:31;26018:11;:17;26030:4;26018:17;;;;;;;;;;;25984:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26082:1;26056:28;;:9;:14;;;:28;;;26052:89;;26114:9;26107:16;;;;;;26052:89;25928:226;25959:6;;;;;:::i;:::-;;;;25928:226;;25743:494;;;;:::o;36945:846::-;37110:4;37133:15;:2;:13;;;:15::i;:::-;37129:653;;;37187:2;37171:36;;;37208:12;:10;:12::i;:::-;37222:4;37228:7;37237:5;37171:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37167:554;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37440:1;37423:6;:13;:18;37419:285;;;37468:61;;;;;;;;;;:::i;:::-;;;;;;;;37419:285;37650:6;37644:13;37635:6;37631:2;37627:15;37620:38;37167:554;37306:45;;;37296:55;;;:6;:55;;;;37289:62;;;;;37129:653;37764:4;37757:11;;36945:846;;;;;;;:::o;27501:152::-;27552:13;27580:63;;;;;;;;;;;;;;;;;;;27501:152;:::o;418:723::-;474:13;704:1;695:5;:10;691:53;;;722:10;;;;;;;;;;;;;;;;;;;;;691:53;754:12;769:5;754:20;;785:14;810:78;825:1;817:4;:9;810:78;;843:8;;;;;:::i;:::-;;;;874:2;866:10;;;;;:::i;:::-;;;810:78;;;898:19;930:6;920:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;898:39;;948:154;964:1;955:5;:10;948:154;;992:1;982:11;;;;;:::i;:::-;;;1059:2;1051:5;:10;;;;:::i;:::-;1038:2;:24;;;;:::i;:::-;1025:39;;1008:6;1015;1008:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1088:2;1079:11;;;;;:::i;:::-;;;948:154;;;1126:6;1112:21;;;;;418:723;;;;:::o;38307:169::-;;;;;:::o;38916:168::-;;;;;:::o;31853:175::-;31986:32;31992:2;31996:8;32006:5;32013:4;31986:5;:32::i;:::-;31853:175;;;:::o;4002:387::-;4062:4;4270:12;4337:7;4325:20;4317:28;;4380:1;4373:4;:8;4366:15;;;4002:387;;;:::o;32311:1471::-;32462:20;32485:12;;32462:35;;32532:1;32518:16;;:2;:16;;;;32510:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32721:21;32729:12;32721:7;:21::i;:::-;32720:22;32712:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;32808:1;32797:8;:12;32789:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32871:61;32901:1;32905:2;32909:12;32923:8;32871:21;:61::i;:::-;32985:8;32949:12;:16;32962:2;32949:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33048:8;33007:12;:16;33020:2;33007:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33107:2;33074:11;:25;33086:12;33074:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33172:15;33122:11;:25;33134:12;33122:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33205:20;33228:12;33205:35;;33262:9;33257:399;33281:8;33277:1;:12;33257:399;;;33343:12;33339:2;33318:38;;33335:1;33318:38;;;;;;;;;;;;33377:4;33373:239;;;33436:59;33467:1;33471:2;33475:12;33489:5;33436:22;:59::i;:::-;33404:190;;;;;;;;;;;;:::i;:::-;;;;;;;;;33373:239;33628:14;;;;;:::i;:::-;;;;33291:3;;;;;:::i;:::-;;;;33257:399;;;;33687:12;33672;:27;;;;33712:60;33741:1;33745:2;33749:12;33763:8;33712:20;:60::i;:::-;32311:1471;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:139::-;;1084:6;1071:20;1062:29;;1100:33;1127:5;1100:33;:::i;:::-;1052:87;;;;:::o;1162:303::-;;1282:3;1275:4;1267:6;1263:17;1259:27;1249:2;;1300:1;1297;1290:12;1249:2;1340:6;1327:20;1365:94;1455:3;1447:6;1440:4;1432:6;1428:17;1365:94;:::i;:::-;1356:103;;1239:226;;;;;:::o;1471:133::-;;1552:6;1539:20;1530:29;;1568:30;1592:5;1568:30;:::i;:::-;1520:84;;;;:::o;1610:137::-;;1693:6;1680:20;1671:29;;1709:32;1735:5;1709:32;:::i;:::-;1661:86;;;;:::o;1753:141::-;;1840:6;1834:13;1825:22;;1856:32;1882:5;1856:32;:::i;:::-;1815:79;;;;:::o;1913:271::-;;2017:3;2010:4;2002:6;1998:17;1994:27;1984:2;;2035:1;2032;2025:12;1984:2;2075:6;2062:20;2100:78;2174:3;2166:6;2159:4;2151:6;2147:17;2100:78;:::i;:::-;2091:87;;1974:210;;;;;:::o;2190:139::-;;2274:6;2261:20;2252:29;;2290:33;2317:5;2290:33;:::i;:::-;2242:87;;;;:::o;2335:262::-;;2443:2;2431:9;2422:7;2418:23;2414:32;2411:2;;;2459:1;2456;2449:12;2411:2;2502:1;2527:53;2572:7;2563:6;2552:9;2548:22;2527:53;:::i;:::-;2517:63;;2473:117;2401:196;;;;:::o;2603:407::-;;;2728:2;2716:9;2707:7;2703:23;2699:32;2696:2;;;2744:1;2741;2734:12;2696:2;2787:1;2812:53;2857:7;2848:6;2837:9;2833:22;2812:53;:::i;:::-;2802:63;;2758:117;2914:2;2940:53;2985:7;2976:6;2965:9;2961:22;2940:53;:::i;:::-;2930:63;;2885:118;2686:324;;;;;:::o;3016:552::-;;;;3158:2;3146:9;3137:7;3133:23;3129:32;3126:2;;;3174:1;3171;3164:12;3126:2;3217:1;3242:53;3287:7;3278:6;3267:9;3263:22;3242:53;:::i;:::-;3232:63;;3188:117;3344:2;3370:53;3415:7;3406:6;3395:9;3391:22;3370:53;:::i;:::-;3360:63;;3315:118;3472:2;3498:53;3543:7;3534:6;3523:9;3519:22;3498:53;:::i;:::-;3488:63;;3443:118;3116:452;;;;;:::o;3574:809::-;;;;;3742:3;3730:9;3721:7;3717:23;3713:33;3710:2;;;3759:1;3756;3749:12;3710:2;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3929:2;3955:53;4000:7;3991:6;3980:9;3976:22;3955:53;:::i;:::-;3945:63;;3900:118;4057:2;4083:53;4128:7;4119:6;4108:9;4104:22;4083:53;:::i;:::-;4073:63;;4028:118;4213:2;4202:9;4198:18;4185:32;4244:18;4236:6;4233:30;4230:2;;;4276:1;4273;4266:12;4230:2;4304:62;4358:7;4349:6;4338:9;4334:22;4304:62;:::i;:::-;4294:72;;4156:220;3700:683;;;;;;;:::o;4389:401::-;;;4511:2;4499:9;4490:7;4486:23;4482:32;4479:2;;;4527:1;4524;4517:12;4479:2;4570:1;4595:53;4640:7;4631:6;4620:9;4616:22;4595:53;:::i;:::-;4585:63;;4541:117;4697:2;4723:50;4765:7;4756:6;4745:9;4741:22;4723:50;:::i;:::-;4713:60;;4668:115;4469:321;;;;;:::o;4796:407::-;;;4921:2;4909:9;4900:7;4896:23;4892:32;4889:2;;;4937:1;4934;4927:12;4889:2;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;5107:2;5133:53;5178:7;5169:6;5158:9;5154:22;5133:53;:::i;:::-;5123:63;;5078:118;4879:324;;;;;:::o;5209:405::-;;5342:2;5330:9;5321:7;5317:23;5313:32;5310:2;;;5358:1;5355;5348:12;5310:2;5429:1;5418:9;5414:17;5401:31;5459:18;5451:6;5448:30;5445:2;;;5491:1;5488;5481:12;5445:2;5519:78;5589:7;5580:6;5569:9;5565:22;5519:78;:::i;:::-;5509:88;;5372:235;5300:314;;;;:::o;5620:260::-;;5727:2;5715:9;5706:7;5702:23;5698:32;5695:2;;;5743:1;5740;5733:12;5695:2;5786:1;5811:52;5855:7;5846:6;5835:9;5831:22;5811:52;:::i;:::-;5801:62;;5757:116;5685:195;;;;:::o;5886:282::-;;6004:2;5992:9;5983:7;5979:23;5975:32;5972:2;;;6020:1;6017;6010:12;5972:2;6063:1;6088:63;6143:7;6134:6;6123:9;6119:22;6088:63;:::i;:::-;6078:73;;6034:127;5962:206;;;;:::o;6174:262::-;;6282:2;6270:9;6261:7;6257:23;6253:32;6250:2;;;6298:1;6295;6288:12;6250:2;6341:1;6366:53;6411:7;6402:6;6391:9;6387:22;6366:53;:::i;:::-;6356:63;;6312:117;6240:196;;;;:::o;6442:118::-;6529:24;6547:5;6529:24;:::i;:::-;6524:3;6517:37;6507:53;;:::o;6566:109::-;6647:21;6662:5;6647:21;:::i;:::-;6642:3;6635:34;6625:50;;:::o;6681:360::-;;6795:38;6827:5;6795:38;:::i;:::-;6849:70;6912:6;6907:3;6849:70;:::i;:::-;6842:77;;6928:52;6973:6;6968:3;6961:4;6954:5;6950:16;6928:52;:::i;:::-;7005:29;7027:6;7005:29;:::i;:::-;7000:3;6996:39;6989:46;;6771:270;;;;;:::o;7047:364::-;;7163:39;7196:5;7163:39;:::i;:::-;7218:71;7282:6;7277:3;7218:71;:::i;:::-;7211:78;;7298:52;7343:6;7338:3;7331:4;7324:5;7320:16;7298:52;:::i;:::-;7375:29;7397:6;7375:29;:::i;:::-;7370:3;7366:39;7359:46;;7139:272;;;;;:::o;7417:377::-;;7551:39;7584:5;7551:39;:::i;:::-;7606:89;7688:6;7683:3;7606:89;:::i;:::-;7599:96;;7704:52;7749:6;7744:3;7737:4;7730:5;7726:16;7704:52;:::i;:::-;7781:6;7776:3;7772:16;7765:23;;7527:267;;;;;:::o;7800:366::-;;7963:67;8027:2;8022:3;7963:67;:::i;:::-;7956:74;;8060:34;8056:1;8051:3;8047:11;8040:55;8126:4;8121:2;8116:3;8112:12;8105:26;8157:2;8152:3;8148:12;8141:19;;7946:220;;;:::o;8172:374::-;;8335:67;8399:2;8394:3;8335:67;:::i;:::-;8328:74;;8432:34;8428:1;8423:3;8419:11;8412:55;8498:12;8493:2;8488:3;8484:12;8477:34;8537:2;8532:3;8528:12;8521:19;;8318:228;;;:::o;8552:367::-;;8715:67;8779:2;8774:3;8715:67;:::i;:::-;8708:74;;8812:34;8808:1;8803:3;8799:11;8792:55;8878:5;8873:2;8868:3;8864:12;8857:27;8910:2;8905:3;8901:12;8894:19;;8698:221;;;:::o;8925:369::-;;9088:67;9152:2;9147:3;9088:67;:::i;:::-;9081:74;;9185:34;9181:1;9176:3;9172:11;9165:55;9251:7;9246:2;9241:3;9237:12;9230:29;9285:2;9280:3;9276:12;9269:19;;9071:223;;;:::o;9300:389::-;;9463:67;9527:2;9522:3;9463:67;:::i;:::-;9456:74;;9560:34;9556:1;9551:3;9547:11;9540:55;9626:27;9621:2;9616:3;9612:12;9605:49;9680:2;9675:3;9671:12;9664:19;;9446:243;;;:::o;9695:375::-;;9858:67;9922:2;9917:3;9858:67;:::i;:::-;9851:74;;9955:34;9951:1;9946:3;9942:11;9935:55;10021:13;10016:2;10011:3;10007:12;10000:35;10061:2;10056:3;10052:12;10045:19;;9841:229;;;:::o;10076:370::-;;10239:67;10303:2;10298:3;10239:67;:::i;:::-;10232:74;;10336:34;10332:1;10327:3;10323:11;10316:55;10402:8;10397:2;10392:3;10388:12;10381:30;10437:2;10432:3;10428:12;10421:19;;10222:224;;;:::o;10452:337::-;;10633:84;10715:1;10710:3;10633:84;:::i;:::-;10626:91;;10747:7;10743:1;10738:3;10734:11;10727:28;10781:1;10776:3;10772:11;10765:18;;10616:173;;;:::o;10795:379::-;;10958:67;11022:2;11017:3;10958:67;:::i;:::-;10951:74;;11055:34;11051:1;11046:3;11042:11;11035:55;11121:17;11116:2;11111:3;11107:12;11100:39;11165:2;11160:3;11156:12;11149:19;;10941:233;;;:::o;11180:324::-;;11343:67;11407:2;11402:3;11343:67;:::i;:::-;11336:74;;11440:28;11436:1;11431:3;11427:11;11420:49;11495:2;11490:3;11486:12;11479:19;;11326:178;;;:::o;11510:382::-;;11673:67;11737:2;11732:3;11673:67;:::i;:::-;11666:74;;11770:34;11766:1;11761:3;11757:11;11750:55;11836:20;11831:2;11826:3;11822:12;11815:42;11883:2;11878:3;11874:12;11867:19;;11656:236;;;:::o;11898:366::-;;12061:67;12125:2;12120:3;12061:67;:::i;:::-;12054:74;;12158:34;12154:1;12149:3;12145:11;12138:55;12224:4;12219:2;12214:3;12210:12;12203:26;12255:2;12250:3;12246:12;12239:19;;12044:220;;;:::o;12270:383::-;;12433:67;12497:2;12492:3;12433:67;:::i;:::-;12426:74;;12530:34;12526:1;12521:3;12517:11;12510:55;12596:21;12591:2;12586:3;12582:12;12575:43;12644:2;12639:3;12635:12;12628:19;;12416:237;;;:::o;12659:327::-;;12822:67;12886:2;12881:3;12822:67;:::i;:::-;12815:74;;12919:31;12915:1;12910:3;12906:11;12899:52;12977:2;12972:3;12968:12;12961:19;;12805:181;;;:::o;12992:365::-;;13155:67;13219:2;13214:3;13155:67;:::i;:::-;13148:74;;13252:34;13248:1;13243:3;13239:11;13232:55;13318:3;13313:2;13308:3;13304:12;13297:25;13348:2;13343:3;13339:12;13332:19;;13138:219;;;:::o;13363:372::-;;13526:67;13590:2;13585:3;13526:67;:::i;:::-;13519:74;;13623:34;13619:1;13614:3;13610:11;13603:55;13689:10;13684:2;13679:3;13675:12;13668:32;13726:2;13721:3;13717:12;13710:19;;13509:226;;;:::o;13741:378::-;;13904:67;13968:2;13963:3;13904:67;:::i;:::-;13897:74;;14001:34;13997:1;13992:3;13988:11;13981:55;14067:16;14062:2;14057:3;14053:12;14046:38;14110:2;14105:3;14101:12;14094:19;;13887:232;;;:::o;14510:377::-;;14673:67;14737:2;14732:3;14673:67;:::i;:::-;14666:74;;14770:34;14766:1;14761:3;14757:11;14750:55;14836:15;14831:2;14826:3;14822:12;14815:37;14878:2;14873:3;14869:12;14862:19;;14656:231;;;:::o;14893:118::-;14980:24;14998:5;14980:24;:::i;:::-;14975:3;14968:37;14958:53;;:::o;15017:701::-;;15320:95;15411:3;15402:6;15320:95;:::i;:::-;15313:102;;15432:95;15523:3;15514:6;15432:95;:::i;:::-;15425:102;;15544:148;15688:3;15544:148;:::i;:::-;15537:155;;15709:3;15702:10;;15302:416;;;;;:::o;15724:222::-;;15855:2;15844:9;15840:18;15832:26;;15868:71;15936:1;15925:9;15921:17;15912:6;15868:71;:::i;:::-;15822:124;;;;:::o;15952:640::-;;16185:3;16174:9;16170:19;16162:27;;16199:71;16267:1;16256:9;16252:17;16243:6;16199:71;:::i;:::-;16280:72;16348:2;16337:9;16333:18;16324:6;16280:72;:::i;:::-;16362;16430:2;16419:9;16415:18;16406:6;16362:72;:::i;:::-;16481:9;16475:4;16471:20;16466:2;16455:9;16451:18;16444:48;16509:76;16580:4;16571:6;16509:76;:::i;:::-;16501:84;;16152:440;;;;;;;:::o;16598:210::-;;16723:2;16712:9;16708:18;16700:26;;16736:65;16798:1;16787:9;16783:17;16774:6;16736:65;:::i;:::-;16690:118;;;;:::o;16814:313::-;;16965:2;16954:9;16950:18;16942:26;;17014:9;17008:4;17004:20;17000:1;16989:9;16985:17;16978:47;17042:78;17115:4;17106:6;17042:78;:::i;:::-;17034:86;;16932:195;;;;:::o;17133:419::-;;17337:2;17326:9;17322:18;17314:26;;17386:9;17380:4;17376:20;17372:1;17361:9;17357:17;17350:47;17414:131;17540:4;17414:131;:::i;:::-;17406:139;;17304:248;;;:::o;17558:419::-;;17762:2;17751:9;17747:18;17739:26;;17811:9;17805:4;17801:20;17797:1;17786:9;17782:17;17775:47;17839:131;17965:4;17839:131;:::i;:::-;17831:139;;17729:248;;;:::o;17983:419::-;;18187:2;18176:9;18172:18;18164:26;;18236:9;18230:4;18226:20;18222:1;18211:9;18207:17;18200:47;18264:131;18390:4;18264:131;:::i;:::-;18256:139;;18154:248;;;:::o;18408:419::-;;18612:2;18601:9;18597:18;18589:26;;18661:9;18655:4;18651:20;18647:1;18636:9;18632:17;18625:47;18689:131;18815:4;18689:131;:::i;:::-;18681:139;;18579:248;;;:::o;18833:419::-;;19037:2;19026:9;19022:18;19014:26;;19086:9;19080:4;19076:20;19072:1;19061:9;19057:17;19050:47;19114:131;19240:4;19114:131;:::i;:::-;19106:139;;19004:248;;;:::o;19258:419::-;;19462:2;19451:9;19447:18;19439:26;;19511:9;19505:4;19501:20;19497:1;19486:9;19482:17;19475:47;19539:131;19665:4;19539:131;:::i;:::-;19531:139;;19429:248;;;:::o;19683:419::-;;19887:2;19876:9;19872:18;19864:26;;19936:9;19930:4;19926:20;19922:1;19911:9;19907:17;19900:47;19964:131;20090:4;19964:131;:::i;:::-;19956:139;;19854:248;;;:::o;20108:419::-;;20312:2;20301:9;20297:18;20289:26;;20361:9;20355:4;20351:20;20347:1;20336:9;20332:17;20325:47;20389:131;20515:4;20389:131;:::i;:::-;20381:139;;20279:248;;;:::o;20533:419::-;;20737:2;20726:9;20722:18;20714:26;;20786:9;20780:4;20776:20;20772:1;20761:9;20757:17;20750:47;20814:131;20940:4;20814:131;:::i;:::-;20806:139;;20704:248;;;:::o;20958:419::-;;21162:2;21151:9;21147:18;21139:26;;21211:9;21205:4;21201:20;21197:1;21186:9;21182:17;21175:47;21239:131;21365:4;21239:131;:::i;:::-;21231:139;;21129:248;;;:::o;21383:419::-;;21587:2;21576:9;21572:18;21564:26;;21636:9;21630:4;21626:20;21622:1;21611:9;21607:17;21600:47;21664:131;21790:4;21664:131;:::i;:::-;21656:139;;21554:248;;;:::o;21808:419::-;;22012:2;22001:9;21997:18;21989:26;;22061:9;22055:4;22051:20;22047:1;22036:9;22032:17;22025:47;22089:131;22215:4;22089:131;:::i;:::-;22081:139;;21979:248;;;:::o;22233:419::-;;22437:2;22426:9;22422:18;22414:26;;22486:9;22480:4;22476:20;22472:1;22461:9;22457:17;22450:47;22514:131;22640:4;22514:131;:::i;:::-;22506:139;;22404:248;;;:::o;22658:419::-;;22862:2;22851:9;22847:18;22839:26;;22911:9;22905:4;22901:20;22897:1;22886:9;22882:17;22875:47;22939:131;23065:4;22939:131;:::i;:::-;22931:139;;22829:248;;;:::o;23083:419::-;;23287:2;23276:9;23272:18;23264:26;;23336:9;23330:4;23326:20;23322:1;23311:9;23307:17;23300:47;23364:131;23490:4;23364:131;:::i;:::-;23356:139;;23254:248;;;:::o;23508:419::-;;23712:2;23701:9;23697:18;23689:26;;23761:9;23755:4;23751:20;23747:1;23736:9;23732:17;23725:47;23789:131;23915:4;23789:131;:::i;:::-;23781:139;;23679:248;;;:::o;24358:419::-;;24562:2;24551:9;24547:18;24539:26;;24611:9;24605:4;24601:20;24597:1;24586:9;24582:17;24575:47;24639:131;24765:4;24639:131;:::i;:::-;24631:139;;24529:248;;;:::o;24783:222::-;;24914:2;24903:9;24899:18;24891:26;;24927:71;24995:1;24984:9;24980:17;24971:6;24927:71;:::i;:::-;24881:124;;;;:::o;25011:283::-;;25077:2;25071:9;25061:19;;25119:4;25111:6;25107:17;25226:6;25214:10;25211:22;25190:18;25178:10;25175:34;25172:62;25169:2;;;25237:18;;:::i;:::-;25169:2;25277:10;25273:2;25266:22;25051:243;;;;:::o;25300:311::-;;25467:18;25459:6;25456:30;25453:2;;;25489:18;;:::i;:::-;25453:2;25539:4;25531:6;25527:17;25519:25;;25599:4;25593;25589:15;25581:23;;25382:229;;;:::o;25617:331::-;;25768:18;25760:6;25757:30;25754:2;;;25790:18;;:::i;:::-;25754:2;25875:4;25871:9;25864:4;25856:6;25852:17;25848:33;25840:41;;25936:4;25930;25926:15;25918:23;;25683:265;;;:::o;25954:98::-;;26039:5;26033:12;26023:22;;26012:40;;;:::o;26058:99::-;;26144:5;26138:12;26128:22;;26117:40;;;:::o;26163:168::-;;26280:6;26275:3;26268:19;26320:4;26315:3;26311:14;26296:29;;26258:73;;;;:::o;26337:169::-;;26455:6;26450:3;26443:19;26495:4;26490:3;26486:14;26471:29;;26433:73;;;;:::o;26512:148::-;;26651:3;26636:18;;26626:34;;;;:::o;26666:273::-;;26725:20;26743:1;26725:20;:::i;:::-;26720:25;;26759:20;26777:1;26759:20;:::i;:::-;26754:25;;26881:1;26845:34;26841:42;26838:1;26835:49;26832:2;;;26887:18;;:::i;:::-;26832:2;26931:1;26928;26924:9;26917:16;;26710:229;;;;:::o;26945:305::-;;27004:20;27022:1;27004:20;:::i;:::-;26999:25;;27038:20;27056:1;27038:20;:::i;:::-;27033:25;;27192:1;27124:66;27120:74;27117:1;27114:81;27111:2;;;27198:18;;:::i;:::-;27111:2;27242:1;27239;27235:9;27228:16;;26989:261;;;;:::o;27256:185::-;;27313:20;27331:1;27313:20;:::i;:::-;27308:25;;27347:20;27365:1;27347:20;:::i;:::-;27342:25;;27386:1;27376:2;;27391:18;;:::i;:::-;27376:2;27433:1;27430;27426:9;27421:14;;27298:143;;;;:::o;27447:348::-;;27510:20;27528:1;27510:20;:::i;:::-;27505:25;;27544:20;27562:1;27544:20;:::i;:::-;27539:25;;27732:1;27664:66;27660:74;27657:1;27654:81;27649:1;27642:9;27635:17;27631:105;27628:2;;;27739:18;;:::i;:::-;27628:2;27787:1;27784;27780:9;27769:20;;27495:300;;;;:::o;27801:191::-;;27861:20;27879:1;27861:20;:::i;:::-;27856:25;;27895:20;27913:1;27895:20;:::i;:::-;27890:25;;27934:1;27931;27928:8;27925:2;;;27939:18;;:::i;:::-;27925:2;27984:1;27981;27977:9;27969:17;;27846:146;;;;:::o;27998:96::-;;28064:24;28082:5;28064:24;:::i;:::-;28053:35;;28043:51;;;:::o;28100:90::-;;28177:5;28170:13;28163:21;28152:32;;28142:48;;;:::o;28196:149::-;;28272:66;28265:5;28261:78;28250:89;;28240:105;;;:::o;28351:118::-;;28428:34;28421:5;28417:46;28406:57;;28396:73;;;:::o;28475:126::-;;28552:42;28545:5;28541:54;28530:65;;28520:81;;;:::o;28607:77::-;;28673:5;28662:16;;28652:32;;;:::o;28690:154::-;28774:6;28769:3;28764;28751:30;28836:1;28827:6;28822:3;28818:16;28811:27;28741:103;;;:::o;28850:307::-;28918:1;28928:113;28942:6;28939:1;28936:13;28928:113;;;29027:1;29022:3;29018:11;29012:18;29008:1;29003:3;28999:11;28992:39;28964:2;28961:1;28957:10;28952:15;;28928:113;;;29059:6;29056:1;29053:13;29050:2;;;29139:1;29130:6;29125:3;29121:16;29114:27;29050:2;28899:258;;;;:::o;29163:171::-;;29225:24;29243:5;29225:24;:::i;:::-;29216:33;;29271:4;29264:5;29261:15;29258:2;;;29279:18;;:::i;:::-;29258:2;29326:1;29319:5;29315:13;29308:20;;29206:128;;;:::o;29340:320::-;;29421:1;29415:4;29411:12;29401:22;;29468:1;29462:4;29458:12;29489:18;29479:2;;29545:4;29537:6;29533:17;29523:27;;29479:2;29607;29599:6;29596:14;29576:18;29573:38;29570:2;;;29626:18;;:::i;:::-;29570:2;29391:269;;;;:::o;29666:233::-;;29728:24;29746:5;29728:24;:::i;:::-;29719:33;;29774:66;29767:5;29764:77;29761:2;;;29844:18;;:::i;:::-;29761:2;29891:1;29884:5;29880:13;29873:20;;29709:190;;;:::o;29905:176::-;;29954:20;29972:1;29954:20;:::i;:::-;29949:25;;29988:20;30006:1;29988:20;:::i;:::-;29983:25;;30027:1;30017:2;;30032:18;;:::i;:::-;30017:2;30073:1;30070;30066:9;30061:14;;29939:142;;;;:::o;30087:180::-;30135:77;30132:1;30125:88;30232:4;30229:1;30222:15;30256:4;30253:1;30246:15;30273:180;30321:77;30318:1;30311:88;30418:4;30415:1;30408:15;30442:4;30439:1;30432:15;30459:180;30507:77;30504:1;30497:88;30604:4;30601:1;30594:15;30628:4;30625:1;30618:15;30645:180;30693:77;30690:1;30683:88;30790:4;30787:1;30780:15;30814:4;30811:1;30804:15;30831:102;;30923:2;30919:7;30914:2;30907:5;30903:14;30899:28;30889:38;;30879:54;;;:::o;30939:122::-;31012:24;31030:5;31012:24;:::i;:::-;31005:5;31002:35;30992:2;;31051:1;31048;31041:12;30992:2;30982:79;:::o;31067:116::-;31137:21;31152:5;31137:21;:::i;:::-;31130:5;31127:32;31117:2;;31173:1;31170;31163:12;31117:2;31107:76;:::o;31189:120::-;31261:23;31278:5;31261:23;:::i;:::-;31254:5;31251:34;31241:2;;31299:1;31296;31289:12;31241:2;31231:78;:::o;31315:122::-;31388:24;31406:5;31388:24;:::i;:::-;31381:5;31378:35;31368:2;;31427:1;31424;31417:12;31368:2;31358:79;:::o

Swarm Source

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