ETH Price: $3,317.53 (-1.48%)
Gas: 1 Gwei

Token

Vitalik's Bulge (BLGE)
 

Overview

Max Total Supply

84 BLGE

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BLGE
0xde751313e2c79e9d41ba4399f7f32eca1afb1aa5
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:
Bulge

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-22
*/

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (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: @openzeppelin/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: @openzeppelin/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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// File: @openzeppelin/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: @openzeppelin/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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Bulge.sol



pragma solidity 0.8.17;






contract Bulge is 
    ERC721Enumerable,
    Ownable
{
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdTracker;

    uint constant NUMBER_OF_TOKENS = 10000;
    mapping(uint => uint) private _bulgePower;

    string private _uri;    

    constructor() ERC721("Vitalik's Bulge", "BLGE")
    {        
    }

    function mint() public 
    {
        require(_tokenIdTracker.current() < NUMBER_OF_TOKENS, "NO MORE");
        
        _tokenIdTracker.increment();

        _mint(msg.sender, _tokenIdTracker.current());

        _bulgePower[_tokenIdTracker.current()] = 1;
    }

    function getBulgePower(uint tokenId) public view returns (uint power)
    {
        power = _bulgePower[tokenId];
    }   

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721)
    {
        if (from != address(0x0) && balanceOf(to) > 0)
        {            
             uint power = _bulgePower[tokenId];            
            
            _burn(tokenId);

            uint bulge = tokenOfOwnerByIndex(to, 0);                    

            _bulgePower[bulge] += power;
        }
        else
        {
            super._transfer(from, to, tokenId);
        }        
    }

    function setBaseURI(string memory uri) public onlyOwner
    {
        _uri = uri;
    }

    function _baseURI() internal view override(ERC721) returns (string memory) 
    {
        return _uri;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getBulgePower","outputs":[{"internalType":"uint256","name":"power","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600f81526020017f566974616c696b27732042756c676500000000000000000000000000000000008152506040518060400160405280600481526020017f424c47450000000000000000000000000000000000000000000000000000000081525081600090816200008f919062000412565b508060019081620000a1919062000412565b505050620000c4620000b8620000ca60201b60201c565b620000d260201b60201c565b620004f9565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021a57607f821691505b60208210810362000230576200022f620001d2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025b565b620002a686836200025b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f3620002ed620002e784620002be565b620002c8565b620002be565b9050919050565b6000819050919050565b6200030f83620002d2565b620003276200031e82620002fa565b84845462000268565b825550505050565b600090565b6200033e6200032f565b6200034b81848462000304565b505050565b5b8181101562000373576200036760008262000334565b60018101905062000351565b5050565b601f821115620003c2576200038c8162000236565b62000397846200024b565b81016020851015620003a7578190505b620003bf620003b6856200024b565b83018262000350565b50505b505050565b600082821c905092915050565b6000620003e760001984600802620003c7565b1980831691505092915050565b6000620004028383620003d4565b9150826002028217905092915050565b6200041d8262000198565b67ffffffffffffffff811115620004395762000438620001a3565b5b62000445825462000201565b6200045282828562000377565b600060209050601f8311600181146200048a576000841562000475578287015190505b620004818582620003f4565b865550620004f1565b601f1984166200049a8662000236565b60005b82811015620004c4578489015182556001820191506020850194506020810190506200049d565b86831015620004e45784890151620004e0601f891682620003d4565b8355505b6001600288020188555050505b505050505050565b6136ac80620005096000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806355f804b3116100b857806395d89b411161007c57806395d89b4114610375578063a22cb46514610393578063b88d4fde146103af578063c87b56dd146103cb578063e985e9c5146103fb578063f2fde38b1461042b57610142565b806355f804b3146102d15780636352211e146102ed57806370a082311461031d578063715018a61461034d5780638da5cb5b1461035757610142565b806318160ddd1161010a57806318160ddd146101eb57806323b872dd146102095780632f745c59146102255780634171c9fa1461025557806342842e0e146102855780634f6ccce7146102a157610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c55780631249c58b146101e1575b600080fd5b610161600480360381019061015c9190612213565b610447565b60405161016e919061225b565b60405180910390f35b61017f6104c1565b60405161018c9190612306565b60405180910390f35b6101af60048036038101906101aa919061235e565b610553565b6040516101bc91906123cc565b60405180910390f35b6101df60048036038101906101da9190612413565b610599565b005b6101e96106b0565b005b6101f361073e565b6040516102009190612462565b60405180910390f35b610223600480360381019061021e919061247d565b61074b565b005b61023f600480360381019061023a9190612413565b6107ab565b60405161024c9190612462565b60405180910390f35b61026f600480360381019061026a919061235e565b610850565b60405161027c9190612462565b60405180910390f35b61029f600480360381019061029a919061247d565b61086d565b005b6102bb60048036038101906102b6919061235e565b61088d565b6040516102c89190612462565b60405180910390f35b6102eb60048036038101906102e69190612605565b6108fe565b005b6103076004803603810190610302919061235e565b610919565b60405161031491906123cc565b60405180910390f35b6103376004803603810190610332919061264e565b6109ca565b6040516103449190612462565b60405180910390f35b610355610a81565b005b61035f610a95565b60405161036c91906123cc565b60405180910390f35b61037d610abf565b60405161038a9190612306565b60405180910390f35b6103ad60048036038101906103a891906126a7565b610b51565b005b6103c960048036038101906103c49190612788565b610b67565b005b6103e560048036038101906103e0919061235e565b610bc9565b6040516103f29190612306565b60405180910390f35b6104156004803603810190610410919061280b565b610c31565b604051610422919061225b565b60405180910390f35b6104456004803603810190610440919061264e565b610cc5565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ba57506104b982610d48565b5b9050919050565b6060600080546104d09061287a565b80601f01602080910402602001604051908101604052809291908181526020018280546104fc9061287a565b80156105495780601f1061051e57610100808354040283529160200191610549565b820191906000526020600020905b81548152906001019060200180831161052c57829003601f168201915b5050505050905090565b600061055e82610e2a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105a482610919565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060b9061291d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610633610e75565b73ffffffffffffffffffffffffffffffffffffffff16148061066257506106618161065c610e75565b610c31565b5b6106a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610698906129af565b60405180910390fd5b6106ab8383610e7d565b505050565b6127106106bd600b610f36565b106106fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f490612a1b565b60405180910390fd5b610707600b610f44565b61071a33610715600b610f36565b610f5a565b6001600c600061072a600b610f36565b815260200190815260200160002081905550565b6000600880549050905090565b61075c610756610e75565b82611133565b61079b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079290612aad565b60405180910390fd5b6107a68383836111c8565b505050565b60006107b6836109ca565b82106107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee90612b3f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000600c6000838152602001908152602001600020549050919050565b61088883838360405180602001604052806000815250610b67565b505050565b600061089761073e565b82106108d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cf90612bd1565b60405180910390fd5b600882815481106108ec576108eb612bf1565b5b90600052602060002001549050919050565b610906611284565b80600d90816109159190612dcc565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890612eea565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190612f7c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a89611284565b610a936000611302565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ace9061287a565b80601f0160208091040260200160405190810160405280929190818152602001828054610afa9061287a565b8015610b475780601f10610b1c57610100808354040283529160200191610b47565b820191906000526020600020905b815481529060010190602001808311610b2a57829003601f168201915b5050505050905090565b610b63610b5c610e75565b83836113c8565b5050565b610b78610b72610e75565b83611133565b610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90612aad565b60405180910390fd5b610bc384848484611534565b50505050565b6060610bd482610e2a565b6000610bde611590565b90506000815111610bfe5760405180602001604052806000815250610c29565b80610c0884611622565b604051602001610c19929190612fd8565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ccd611284565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d339061306e565b60405180910390fd5b610d4581611302565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e1357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e235750610e2282611782565b5b9050919050565b610e33816117ec565b610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990612eea565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610ef083610919565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc0906130da565b60405180910390fd5b610fd2816117ec565b15611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990613146565b60405180910390fd5b61101e60008383611858565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461106e9190613195565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461112f6000838361196a565b5050565b60008061113f83610919565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061118157506111808185610c31565b5b806111bf57508373ffffffffffffffffffffffffffffffffffffffff166111a784610553565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561120d5750600061120b836109ca565b115b15611273576000600c60008381526020019081526020016000205490506112338261196f565b60006112408460006107ab565b905081600c600083815260200190815260200160002060008282546112659190613195565b92505081905550505061127f565b61127e838383611a8c565b5b505050565b61128c610e75565b73ffffffffffffffffffffffffffffffffffffffff166112aa610a95565b73ffffffffffffffffffffffffffffffffffffffff1614611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613215565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90613281565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611527919061225b565b60405180910390a3505050565b61153f8484846111c8565b61154b84848484611cf2565b61158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190613313565b60405180910390fd5b50505050565b6060600d805461159f9061287a565b80601f01602080910402602001604051908101604052809291908181526020018280546115cb9061287a565b80156116185780601f106115ed57610100808354040283529160200191611618565b820191906000526020600020905b8154815290600101906020018083116115fb57829003601f168201915b5050505050905090565b606060008203611669576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061177d565b600082905060005b6000821461169b57808061168490613333565b915050600a8261169491906133aa565b9150611671565b60008167ffffffffffffffff8111156116b7576116b66124da565b5b6040519080825280601f01601f1916602001820160405280156116e95781602001600182028036833780820191505090505b5090505b600085146117765760018261170291906133db565b9150600a85611711919061340f565b603061171d9190613195565b60f81b81838151811061173357611732612bf1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561176f91906133aa565b94506116ed565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611863838383611e79565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118a5576118a081611e7e565b6118e4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146118e3576118e28382611ec7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119265761192181612034565b611965565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611964576119638282612105565b5b5b505050565b505050565b600061197a82610919565b905061198881600084611858565b611993600083610e7d565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119e391906133db565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a888160008461196a565b5050565b8273ffffffffffffffffffffffffffffffffffffffff16611aac82610919565b73ffffffffffffffffffffffffffffffffffffffff1614611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af9906134b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890613544565b60405180910390fd5b611b7c838383611858565b611b87600082610e7d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bd791906133db565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2e9190613195565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ced83838361196a565b505050565b6000611d138473ffffffffffffffffffffffffffffffffffffffff16612184565b15611e6c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d3c610e75565b8786866040518563ffffffff1660e01b8152600401611d5e94939291906135b9565b6020604051808303816000875af1925050508015611d9a57506040513d601f19601f82011682018060405250810190611d97919061361a565b60015b611e1c573d8060008114611dca576040519150601f19603f3d011682016040523d82523d6000602084013e611dcf565b606091505b506000815103611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b90613313565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e71565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611ed4846109ca565b611ede91906133db565b9050600060076000848152602001908152602001600020549050818114611fc3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061204891906133db565b905060006009600084815260200190815260200160002054905060006008838154811061207857612077612bf1565b5b90600052602060002001549050806008838154811061209a57612099612bf1565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806120e9576120e8613647565b5b6001900381819060005260206000200160009055905550505050565b6000612110836109ca565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121f0816121bb565b81146121fb57600080fd5b50565b60008135905061220d816121e7565b92915050565b600060208284031215612229576122286121b1565b5b6000612237848285016121fe565b91505092915050565b60008115159050919050565b61225581612240565b82525050565b6000602082019050612270600083018461224c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122b0578082015181840152602081019050612295565b60008484015250505050565b6000601f19601f8301169050919050565b60006122d882612276565b6122e28185612281565b93506122f2818560208601612292565b6122fb816122bc565b840191505092915050565b6000602082019050818103600083015261232081846122cd565b905092915050565b6000819050919050565b61233b81612328565b811461234657600080fd5b50565b60008135905061235881612332565b92915050565b600060208284031215612374576123736121b1565b5b600061238284828501612349565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123b68261238b565b9050919050565b6123c6816123ab565b82525050565b60006020820190506123e160008301846123bd565b92915050565b6123f0816123ab565b81146123fb57600080fd5b50565b60008135905061240d816123e7565b92915050565b6000806040838503121561242a576124296121b1565b5b6000612438858286016123fe565b925050602061244985828601612349565b9150509250929050565b61245c81612328565b82525050565b60006020820190506124776000830184612453565b92915050565b600080600060608486031215612496576124956121b1565b5b60006124a4868287016123fe565b93505060206124b5868287016123fe565b92505060406124c686828701612349565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612512826122bc565b810181811067ffffffffffffffff82111715612531576125306124da565b5b80604052505050565b60006125446121a7565b90506125508282612509565b919050565b600067ffffffffffffffff8211156125705761256f6124da565b5b612579826122bc565b9050602081019050919050565b82818337600083830152505050565b60006125a86125a384612555565b61253a565b9050828152602081018484840111156125c4576125c36124d5565b5b6125cf848285612586565b509392505050565b600082601f8301126125ec576125eb6124d0565b5b81356125fc848260208601612595565b91505092915050565b60006020828403121561261b5761261a6121b1565b5b600082013567ffffffffffffffff811115612639576126386121b6565b5b612645848285016125d7565b91505092915050565b600060208284031215612664576126636121b1565b5b6000612672848285016123fe565b91505092915050565b61268481612240565b811461268f57600080fd5b50565b6000813590506126a18161267b565b92915050565b600080604083850312156126be576126bd6121b1565b5b60006126cc858286016123fe565b92505060206126dd85828601612692565b9150509250929050565b600067ffffffffffffffff821115612702576127016124da565b5b61270b826122bc565b9050602081019050919050565b600061272b612726846126e7565b61253a565b905082815260208101848484011115612747576127466124d5565b5b612752848285612586565b509392505050565b600082601f83011261276f5761276e6124d0565b5b813561277f848260208601612718565b91505092915050565b600080600080608085870312156127a2576127a16121b1565b5b60006127b0878288016123fe565b94505060206127c1878288016123fe565b93505060406127d287828801612349565b925050606085013567ffffffffffffffff8111156127f3576127f26121b6565b5b6127ff8782880161275a565b91505092959194509250565b60008060408385031215612822576128216121b1565b5b6000612830858286016123fe565b9250506020612841858286016123fe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061289257607f821691505b6020821081036128a5576128a461284b565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612907602183612281565b9150612912826128ab565b604082019050919050565b60006020820190508181036000830152612936816128fa565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612999603e83612281565b91506129a48261293d565b604082019050919050565b600060208201905081810360008301526129c88161298c565b9050919050565b7f4e4f204d4f524500000000000000000000000000000000000000000000000000600082015250565b6000612a05600783612281565b9150612a10826129cf565b602082019050919050565b60006020820190508181036000830152612a34816129f8565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612a97602e83612281565b9150612aa282612a3b565b604082019050919050565b60006020820190508181036000830152612ac681612a8a565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612b29602b83612281565b9150612b3482612acd565b604082019050919050565b60006020820190508181036000830152612b5881612b1c565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612bbb602c83612281565b9150612bc682612b5f565b604082019050919050565b60006020820190508181036000830152612bea81612bae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612c45565b612c8c8683612c45565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612cc9612cc4612cbf84612328565b612ca4565b612328565b9050919050565b6000819050919050565b612ce383612cae565b612cf7612cef82612cd0565b848454612c52565b825550505050565b600090565b612d0c612cff565b612d17818484612cda565b505050565b5b81811015612d3b57612d30600082612d04565b600181019050612d1d565b5050565b601f821115612d8057612d5181612c20565b612d5a84612c35565b81016020851015612d69578190505b612d7d612d7585612c35565b830182612d1c565b50505b505050565b600082821c905092915050565b6000612da360001984600802612d85565b1980831691505092915050565b6000612dbc8383612d92565b9150826002028217905092915050565b612dd582612276565b67ffffffffffffffff811115612dee57612ded6124da565b5b612df8825461287a565b612e03828285612d3f565b600060209050601f831160018114612e365760008415612e24578287015190505b612e2e8582612db0565b865550612e96565b601f198416612e4486612c20565b60005b82811015612e6c57848901518255600182019150602085019450602081019050612e47565b86831015612e895784890151612e85601f891682612d92565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612ed4601883612281565b9150612edf82612e9e565b602082019050919050565b60006020820190508181036000830152612f0381612ec7565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612f66602983612281565b9150612f7182612f0a565b604082019050919050565b60006020820190508181036000830152612f9581612f59565b9050919050565b600081905092915050565b6000612fb282612276565b612fbc8185612f9c565b9350612fcc818560208601612292565b80840191505092915050565b6000612fe48285612fa7565b9150612ff08284612fa7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613058602683612281565b915061306382612ffc565b604082019050919050565b600060208201905081810360008301526130878161304b565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006130c4602083612281565b91506130cf8261308e565b602082019050919050565b600060208201905081810360008301526130f3816130b7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613130601c83612281565b915061313b826130fa565b602082019050919050565b6000602082019050818103600083015261315f81613123565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131a082612328565b91506131ab83612328565b92508282019050808211156131c3576131c2613166565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131ff602083612281565b915061320a826131c9565b602082019050919050565b6000602082019050818103600083015261322e816131f2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061326b601983612281565b915061327682613235565b602082019050919050565b6000602082019050818103600083015261329a8161325e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006132fd603283612281565b9150613308826132a1565b604082019050919050565b6000602082019050818103600083015261332c816132f0565b9050919050565b600061333e82612328565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036133705761336f613166565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133b582612328565b91506133c083612328565b9250826133d0576133cf61337b565b5b828204905092915050565b60006133e682612328565b91506133f183612328565b925082820390508181111561340957613408613166565b5b92915050565b600061341a82612328565b915061342583612328565b9250826134355761343461337b565b5b828206905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061349c602583612281565b91506134a782613440565b604082019050919050565b600060208201905081810360008301526134cb8161348f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061352e602483612281565b9150613539826134d2565b604082019050919050565b6000602082019050818103600083015261355d81613521565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061358b82613564565b613595818561356f565b93506135a5818560208601612292565b6135ae816122bc565b840191505092915050565b60006080820190506135ce60008301876123bd565b6135db60208301866123bd565b6135e86040830185612453565b81810360608301526135fa8184613580565b905095945050505050565b600081519050613614816121e7565b92915050565b6000602082840312156136305761362f6121b1565b5b600061363e84828501613605565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220f001e1210a5fc5c5460cf55b64c9df87683fb90648265a123ed8f82c0b0ab84264736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806355f804b3116100b857806395d89b411161007c57806395d89b4114610375578063a22cb46514610393578063b88d4fde146103af578063c87b56dd146103cb578063e985e9c5146103fb578063f2fde38b1461042b57610142565b806355f804b3146102d15780636352211e146102ed57806370a082311461031d578063715018a61461034d5780638da5cb5b1461035757610142565b806318160ddd1161010a57806318160ddd146101eb57806323b872dd146102095780632f745c59146102255780634171c9fa1461025557806342842e0e146102855780634f6ccce7146102a157610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c55780631249c58b146101e1575b600080fd5b610161600480360381019061015c9190612213565b610447565b60405161016e919061225b565b60405180910390f35b61017f6104c1565b60405161018c9190612306565b60405180910390f35b6101af60048036038101906101aa919061235e565b610553565b6040516101bc91906123cc565b60405180910390f35b6101df60048036038101906101da9190612413565b610599565b005b6101e96106b0565b005b6101f361073e565b6040516102009190612462565b60405180910390f35b610223600480360381019061021e919061247d565b61074b565b005b61023f600480360381019061023a9190612413565b6107ab565b60405161024c9190612462565b60405180910390f35b61026f600480360381019061026a919061235e565b610850565b60405161027c9190612462565b60405180910390f35b61029f600480360381019061029a919061247d565b61086d565b005b6102bb60048036038101906102b6919061235e565b61088d565b6040516102c89190612462565b60405180910390f35b6102eb60048036038101906102e69190612605565b6108fe565b005b6103076004803603810190610302919061235e565b610919565b60405161031491906123cc565b60405180910390f35b6103376004803603810190610332919061264e565b6109ca565b6040516103449190612462565b60405180910390f35b610355610a81565b005b61035f610a95565b60405161036c91906123cc565b60405180910390f35b61037d610abf565b60405161038a9190612306565b60405180910390f35b6103ad60048036038101906103a891906126a7565b610b51565b005b6103c960048036038101906103c49190612788565b610b67565b005b6103e560048036038101906103e0919061235e565b610bc9565b6040516103f29190612306565b60405180910390f35b6104156004803603810190610410919061280b565b610c31565b604051610422919061225b565b60405180910390f35b6104456004803603810190610440919061264e565b610cc5565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ba57506104b982610d48565b5b9050919050565b6060600080546104d09061287a565b80601f01602080910402602001604051908101604052809291908181526020018280546104fc9061287a565b80156105495780601f1061051e57610100808354040283529160200191610549565b820191906000526020600020905b81548152906001019060200180831161052c57829003601f168201915b5050505050905090565b600061055e82610e2a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105a482610919565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060b9061291d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610633610e75565b73ffffffffffffffffffffffffffffffffffffffff16148061066257506106618161065c610e75565b610c31565b5b6106a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610698906129af565b60405180910390fd5b6106ab8383610e7d565b505050565b6127106106bd600b610f36565b106106fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f490612a1b565b60405180910390fd5b610707600b610f44565b61071a33610715600b610f36565b610f5a565b6001600c600061072a600b610f36565b815260200190815260200160002081905550565b6000600880549050905090565b61075c610756610e75565b82611133565b61079b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079290612aad565b60405180910390fd5b6107a68383836111c8565b505050565b60006107b6836109ca565b82106107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee90612b3f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000600c6000838152602001908152602001600020549050919050565b61088883838360405180602001604052806000815250610b67565b505050565b600061089761073e565b82106108d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cf90612bd1565b60405180910390fd5b600882815481106108ec576108eb612bf1565b5b90600052602060002001549050919050565b610906611284565b80600d90816109159190612dcc565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b890612eea565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190612f7c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a89611284565b610a936000611302565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610ace9061287a565b80601f0160208091040260200160405190810160405280929190818152602001828054610afa9061287a565b8015610b475780601f10610b1c57610100808354040283529160200191610b47565b820191906000526020600020905b815481529060010190602001808311610b2a57829003601f168201915b5050505050905090565b610b63610b5c610e75565b83836113c8565b5050565b610b78610b72610e75565b83611133565b610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90612aad565b60405180910390fd5b610bc384848484611534565b50505050565b6060610bd482610e2a565b6000610bde611590565b90506000815111610bfe5760405180602001604052806000815250610c29565b80610c0884611622565b604051602001610c19929190612fd8565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ccd611284565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d339061306e565b60405180910390fd5b610d4581611302565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e1357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e235750610e2282611782565b5b9050919050565b610e33816117ec565b610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990612eea565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610ef083610919565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc0906130da565b60405180910390fd5b610fd2816117ec565b15611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990613146565b60405180910390fd5b61101e60008383611858565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461106e9190613195565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461112f6000838361196a565b5050565b60008061113f83610919565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061118157506111808185610c31565b5b806111bf57508373ffffffffffffffffffffffffffffffffffffffff166111a784610553565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561120d5750600061120b836109ca565b115b15611273576000600c60008381526020019081526020016000205490506112338261196f565b60006112408460006107ab565b905081600c600083815260200190815260200160002060008282546112659190613195565b92505081905550505061127f565b61127e838383611a8c565b5b505050565b61128c610e75565b73ffffffffffffffffffffffffffffffffffffffff166112aa610a95565b73ffffffffffffffffffffffffffffffffffffffff1614611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613215565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90613281565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611527919061225b565b60405180910390a3505050565b61153f8484846111c8565b61154b84848484611cf2565b61158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190613313565b60405180910390fd5b50505050565b6060600d805461159f9061287a565b80601f01602080910402602001604051908101604052809291908181526020018280546115cb9061287a565b80156116185780601f106115ed57610100808354040283529160200191611618565b820191906000526020600020905b8154815290600101906020018083116115fb57829003601f168201915b5050505050905090565b606060008203611669576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061177d565b600082905060005b6000821461169b57808061168490613333565b915050600a8261169491906133aa565b9150611671565b60008167ffffffffffffffff8111156116b7576116b66124da565b5b6040519080825280601f01601f1916602001820160405280156116e95781602001600182028036833780820191505090505b5090505b600085146117765760018261170291906133db565b9150600a85611711919061340f565b603061171d9190613195565b60f81b81838151811061173357611732612bf1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561176f91906133aa565b94506116ed565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611863838383611e79565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118a5576118a081611e7e565b6118e4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146118e3576118e28382611ec7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119265761192181612034565b611965565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611964576119638282612105565b5b5b505050565b505050565b600061197a82610919565b905061198881600084611858565b611993600083610e7d565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119e391906133db565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a888160008461196a565b5050565b8273ffffffffffffffffffffffffffffffffffffffff16611aac82610919565b73ffffffffffffffffffffffffffffffffffffffff1614611b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af9906134b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890613544565b60405180910390fd5b611b7c838383611858565b611b87600082610e7d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bd791906133db565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c2e9190613195565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ced83838361196a565b505050565b6000611d138473ffffffffffffffffffffffffffffffffffffffff16612184565b15611e6c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d3c610e75565b8786866040518563ffffffff1660e01b8152600401611d5e94939291906135b9565b6020604051808303816000875af1925050508015611d9a57506040513d601f19601f82011682018060405250810190611d97919061361a565b60015b611e1c573d8060008114611dca576040519150601f19603f3d011682016040523d82523d6000602084013e611dcf565b606091505b506000815103611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b90613313565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e71565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611ed4846109ca565b611ede91906133db565b9050600060076000848152602001908152602001600020549050818114611fc3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061204891906133db565b905060006009600084815260200190815260200160002054905060006008838154811061207857612077612bf1565b5b90600052602060002001549050806008838154811061209a57612099612bf1565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806120e9576120e8613647565b5b6001900381819060005260206000200160009055905550505050565b6000612110836109ca565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121f0816121bb565b81146121fb57600080fd5b50565b60008135905061220d816121e7565b92915050565b600060208284031215612229576122286121b1565b5b6000612237848285016121fe565b91505092915050565b60008115159050919050565b61225581612240565b82525050565b6000602082019050612270600083018461224c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122b0578082015181840152602081019050612295565b60008484015250505050565b6000601f19601f8301169050919050565b60006122d882612276565b6122e28185612281565b93506122f2818560208601612292565b6122fb816122bc565b840191505092915050565b6000602082019050818103600083015261232081846122cd565b905092915050565b6000819050919050565b61233b81612328565b811461234657600080fd5b50565b60008135905061235881612332565b92915050565b600060208284031215612374576123736121b1565b5b600061238284828501612349565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123b68261238b565b9050919050565b6123c6816123ab565b82525050565b60006020820190506123e160008301846123bd565b92915050565b6123f0816123ab565b81146123fb57600080fd5b50565b60008135905061240d816123e7565b92915050565b6000806040838503121561242a576124296121b1565b5b6000612438858286016123fe565b925050602061244985828601612349565b9150509250929050565b61245c81612328565b82525050565b60006020820190506124776000830184612453565b92915050565b600080600060608486031215612496576124956121b1565b5b60006124a4868287016123fe565b93505060206124b5868287016123fe565b92505060406124c686828701612349565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612512826122bc565b810181811067ffffffffffffffff82111715612531576125306124da565b5b80604052505050565b60006125446121a7565b90506125508282612509565b919050565b600067ffffffffffffffff8211156125705761256f6124da565b5b612579826122bc565b9050602081019050919050565b82818337600083830152505050565b60006125a86125a384612555565b61253a565b9050828152602081018484840111156125c4576125c36124d5565b5b6125cf848285612586565b509392505050565b600082601f8301126125ec576125eb6124d0565b5b81356125fc848260208601612595565b91505092915050565b60006020828403121561261b5761261a6121b1565b5b600082013567ffffffffffffffff811115612639576126386121b6565b5b612645848285016125d7565b91505092915050565b600060208284031215612664576126636121b1565b5b6000612672848285016123fe565b91505092915050565b61268481612240565b811461268f57600080fd5b50565b6000813590506126a18161267b565b92915050565b600080604083850312156126be576126bd6121b1565b5b60006126cc858286016123fe565b92505060206126dd85828601612692565b9150509250929050565b600067ffffffffffffffff821115612702576127016124da565b5b61270b826122bc565b9050602081019050919050565b600061272b612726846126e7565b61253a565b905082815260208101848484011115612747576127466124d5565b5b612752848285612586565b509392505050565b600082601f83011261276f5761276e6124d0565b5b813561277f848260208601612718565b91505092915050565b600080600080608085870312156127a2576127a16121b1565b5b60006127b0878288016123fe565b94505060206127c1878288016123fe565b93505060406127d287828801612349565b925050606085013567ffffffffffffffff8111156127f3576127f26121b6565b5b6127ff8782880161275a565b91505092959194509250565b60008060408385031215612822576128216121b1565b5b6000612830858286016123fe565b9250506020612841858286016123fe565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061289257607f821691505b6020821081036128a5576128a461284b565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612907602183612281565b9150612912826128ab565b604082019050919050565b60006020820190508181036000830152612936816128fa565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612999603e83612281565b91506129a48261293d565b604082019050919050565b600060208201905081810360008301526129c88161298c565b9050919050565b7f4e4f204d4f524500000000000000000000000000000000000000000000000000600082015250565b6000612a05600783612281565b9150612a10826129cf565b602082019050919050565b60006020820190508181036000830152612a34816129f8565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612a97602e83612281565b9150612aa282612a3b565b604082019050919050565b60006020820190508181036000830152612ac681612a8a565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612b29602b83612281565b9150612b3482612acd565b604082019050919050565b60006020820190508181036000830152612b5881612b1c565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612bbb602c83612281565b9150612bc682612b5f565b604082019050919050565b60006020820190508181036000830152612bea81612bae565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612c827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612c45565b612c8c8683612c45565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612cc9612cc4612cbf84612328565b612ca4565b612328565b9050919050565b6000819050919050565b612ce383612cae565b612cf7612cef82612cd0565b848454612c52565b825550505050565b600090565b612d0c612cff565b612d17818484612cda565b505050565b5b81811015612d3b57612d30600082612d04565b600181019050612d1d565b5050565b601f821115612d8057612d5181612c20565b612d5a84612c35565b81016020851015612d69578190505b612d7d612d7585612c35565b830182612d1c565b50505b505050565b600082821c905092915050565b6000612da360001984600802612d85565b1980831691505092915050565b6000612dbc8383612d92565b9150826002028217905092915050565b612dd582612276565b67ffffffffffffffff811115612dee57612ded6124da565b5b612df8825461287a565b612e03828285612d3f565b600060209050601f831160018114612e365760008415612e24578287015190505b612e2e8582612db0565b865550612e96565b601f198416612e4486612c20565b60005b82811015612e6c57848901518255600182019150602085019450602081019050612e47565b86831015612e895784890151612e85601f891682612d92565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612ed4601883612281565b9150612edf82612e9e565b602082019050919050565b60006020820190508181036000830152612f0381612ec7565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612f66602983612281565b9150612f7182612f0a565b604082019050919050565b60006020820190508181036000830152612f9581612f59565b9050919050565b600081905092915050565b6000612fb282612276565b612fbc8185612f9c565b9350612fcc818560208601612292565b80840191505092915050565b6000612fe48285612fa7565b9150612ff08284612fa7565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613058602683612281565b915061306382612ffc565b604082019050919050565b600060208201905081810360008301526130878161304b565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006130c4602083612281565b91506130cf8261308e565b602082019050919050565b600060208201905081810360008301526130f3816130b7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613130601c83612281565b915061313b826130fa565b602082019050919050565b6000602082019050818103600083015261315f81613123565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131a082612328565b91506131ab83612328565b92508282019050808211156131c3576131c2613166565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131ff602083612281565b915061320a826131c9565b602082019050919050565b6000602082019050818103600083015261322e816131f2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061326b601983612281565b915061327682613235565b602082019050919050565b6000602082019050818103600083015261329a8161325e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006132fd603283612281565b9150613308826132a1565b604082019050919050565b6000602082019050818103600083015261332c816132f0565b9050919050565b600061333e82612328565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036133705761336f613166565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133b582612328565b91506133c083612328565b9250826133d0576133cf61337b565b5b828204905092915050565b60006133e682612328565b91506133f183612328565b925082820390508181111561340957613408613166565b5b92915050565b600061341a82612328565b915061342583612328565b9250826134355761343461337b565b5b828206905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061349c602583612281565b91506134a782613440565b604082019050919050565b600060208201905081810360008301526134cb8161348f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061352e602483612281565b9150613539826134d2565b604082019050919050565b6000602082019050818103600083015261355d81613521565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061358b82613564565b613595818561356f565b93506135a5818560208601612292565b6135ae816122bc565b840191505092915050565b60006080820190506135ce60008301876123bd565b6135db60208301866123bd565b6135e86040830185612453565b81810360608301526135fa8184613580565b905095945050505050565b600081519050613614816121e7565b92915050565b6000602082840312156136305761362f6121b1565b5b600061363e84828501613605565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220f001e1210a5fc5c5460cf55b64c9df87683fb90648265a123ed8f82c0b0ab84264736f6c63430008110033

Deployed Bytecode Sourcemap

47696:1541:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41475:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28209:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29722:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29239:417;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48054:272;;;:::i;:::-;;42115:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30422:336;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41783:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48334:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30829:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42305:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49025:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27920:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27651:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6738:103;;;:::i;:::-;;6090:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28378:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29965:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31085:323;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28553:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30191:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6996:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41475:224;41577:4;41616:35;41601:50;;;:11;:50;;;;:90;;;;41655:36;41679:11;41655:23;:36::i;:::-;41601:90;41594:97;;41475:224;;;:::o;28209:100::-;28263:13;28296:5;28289:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28209:100;:::o;29722:171::-;29798:7;29818:23;29833:7;29818:14;:23::i;:::-;29861:15;:24;29877:7;29861:24;;;;;;;;;;;;;;;;;;;;;29854:31;;29722:171;;;:::o;29239:417::-;29320:13;29336:23;29351:7;29336:14;:23::i;:::-;29320:39;;29384:5;29378:11;;:2;:11;;;29370:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29478:5;29462:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29487:37;29504:5;29511:12;:10;:12::i;:::-;29487:16;:37::i;:::-;29462:62;29440:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;29627:21;29636:2;29640:7;29627:8;:21::i;:::-;29309:347;29239:417;;:::o;48054:272::-;47883:5;48102:25;:15;:23;:25::i;:::-;:44;48094:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48179:27;:15;:25;:27::i;:::-;48219:44;48225:10;48237:25;:15;:23;:25::i;:::-;48219:5;:44::i;:::-;48317:1;48276:11;:38;48288:25;:15;:23;:25::i;:::-;48276:38;;;;;;;;;;;:42;;;;48054:272::o;42115:113::-;42176:7;42203:10;:17;;;;42196:24;;42115:113;:::o;30422:336::-;30617:41;30636:12;:10;:12::i;:::-;30650:7;30617:18;:41::i;:::-;30609:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30722:28;30732:4;30738:2;30742:7;30722:9;:28::i;:::-;30422:336;;;:::o;41783:256::-;41880:7;41916:23;41933:5;41916:16;:23::i;:::-;41908:5;:31;41900:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;42005:12;:19;42018:5;42005:19;;;;;;;;;;;;;;;:26;42025:5;42005:26;;;;;;;;;;;;41998:33;;41783:256;;;;:::o;48334:122::-;48392:10;48428:11;:20;48440:7;48428:20;;;;;;;;;;;;48420:28;;48334:122;;;:::o;30829:185::-;30967:39;30984:4;30990:2;30994:7;30967:39;;;;;;;;;;;;:16;:39::i;:::-;30829:185;;;:::o;42305:233::-;42380:7;42416:30;:28;:30::i;:::-;42408:5;:38;42400:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;42513:10;42524:5;42513:17;;;;;;;;:::i;:::-;;;;;;;;;;42506:24;;42305:233;;;:::o;49025:90::-;5976:13;:11;:13::i;:::-;49104:3:::1;49097:4;:10;;;;;;:::i;:::-;;49025:90:::0;:::o;27920:222::-;27992:7;28012:13;28028:7;:16;28036:7;28028:16;;;;;;;;;;;;;;;;;;;;;28012:32;;28080:1;28063:19;;:5;:19;;;28055:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;28129:5;28122:12;;;27920:222;;;:::o;27651:207::-;27723:7;27768:1;27751:19;;:5;:19;;;27743:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27834:9;:16;27844:5;27834:16;;;;;;;;;;;;;;;;27827:23;;27651:207;;;:::o;6738:103::-;5976:13;:11;:13::i;:::-;6803:30:::1;6830:1;6803:18;:30::i;:::-;6738:103::o:0;6090:87::-;6136:7;6163:6;;;;;;;;;;;6156:13;;6090:87;:::o;28378:104::-;28434:13;28467:7;28460:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28378:104;:::o;29965:155::-;30060:52;30079:12;:10;:12::i;:::-;30093:8;30103;30060:18;:52::i;:::-;29965:155;;:::o;31085:323::-;31259:41;31278:12;:10;:12::i;:::-;31292:7;31259:18;:41::i;:::-;31251:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;31362:38;31376:4;31382:2;31386:7;31395:4;31362:13;:38::i;:::-;31085:323;;;;:::o;28553:281::-;28626:13;28652:23;28667:7;28652:14;:23::i;:::-;28688:21;28712:10;:8;:10::i;:::-;28688:34;;28764:1;28746:7;28740:21;:25;:86;;;;;;;;;;;;;;;;;28792:7;28801:18;:7;:16;:18::i;:::-;28775:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28740:86;28733:93;;;28553:281;;;:::o;30191:164::-;30288:4;30312:18;:25;30331:5;30312:25;;;;;;;;;;;;;;;:35;30338:8;30312:35;;;;;;;;;;;;;;;;;;;;;;;;;30305:42;;30191:164;;;;:::o;6996:201::-;5976:13;:11;:13::i;:::-;7105:1:::1;7085:22;;:8;:22;;::::0;7077:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7161:28;7180:8;7161:18;:28::i;:::-;6996:201:::0;:::o;27282:305::-;27384:4;27436:25;27421:40;;;:11;:40;;;;:105;;;;27493:33;27478:48;;;:11;:48;;;;27421:105;:158;;;;27543:36;27567:11;27543:23;:36::i;:::-;27421:158;27401:178;;27282:305;;;:::o;37697:135::-;37779:16;37787:7;37779;:16::i;:::-;37771:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;37697:135;:::o;4641:98::-;4694:7;4721:10;4714:17;;4641:98;:::o;36976:174::-;37078:2;37051:15;:24;37067:7;37051:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37134:7;37130:2;37096:46;;37105:23;37120:7;37105:14;:23::i;:::-;37096:46;;;;;;;;;;;;36976:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;34807:439::-;34901:1;34887:16;;:2;:16;;;34879:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34960:16;34968:7;34960;:16::i;:::-;34959:17;34951:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35022:45;35051:1;35055:2;35059:7;35022:20;:45::i;:::-;35097:1;35080:9;:13;35090:2;35080:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35128:2;35109:7;:16;35117:7;35109:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35173:7;35169:2;35148:33;;35165:1;35148:33;;;;;;;;;;;;35194:44;35222:1;35226:2;35230:7;35194:19;:44::i;:::-;34807:439;;:::o;33209:264::-;33302:4;33319:13;33335:23;33350:7;33335:14;:23::i;:::-;33319:39;;33388:5;33377:16;;:7;:16;;;:52;;;;33397:32;33414:5;33421:7;33397:16;:32::i;:::-;33377:52;:87;;;;33457:7;33433:31;;:20;33445:7;33433:11;:20::i;:::-;:31;;;33377:87;33369:96;;;33209:264;;;;:::o;48467:550::-;48633:3;48617:20;;:4;:20;;;;:41;;;;;48657:1;48641:13;48651:2;48641:9;:13::i;:::-;:17;48617:41;48613:389;;;48697:10;48710:11;:20;48722:7;48710:20;;;;;;;;;;;;48697:33;;48771:14;48777:7;48771:5;:14::i;:::-;48802:10;48815:26;48835:2;48839:1;48815:19;:26::i;:::-;48802:39;;48900:5;48878:11;:18;48890:5;48878:18;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;48669:248;;48613:389;;;48956:34;48972:4;48978:2;48982:7;48956:15;:34::i;:::-;48613:389;48467:550;;;:::o;6255:132::-;6330:12;:10;:12::i;:::-;6319:23;;:7;:5;:7::i;:::-;:23;;;6311:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6255:132::o;7357:191::-;7431:16;7450:6;;;;;;;;;;;7431:25;;7476:8;7467:6;;:17;;;;;;;;;;;;;;;;;;7531:8;7500:40;;7521:8;7500:40;;;;;;;;;;;;7420:128;7357:191;:::o;37293:315::-;37448:8;37439:17;;:5;:17;;;37431:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;37535:8;37497:18;:25;37516:5;37497:25;;;;;;;;;;;;;;;:35;37523:8;37497:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37581:8;37559:41;;37574:5;37559:41;;;37591:8;37559:41;;;;;;:::i;:::-;;;;;;;;37293:315;;;:::o;32289:313::-;32445:28;32455:4;32461:2;32465:7;32445:9;:28::i;:::-;32492:47;32515:4;32521:2;32525:7;32534:4;32492:22;:47::i;:::-;32484:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32289:313;;;;:::o;49123:111::-;49183:13;49222:4;49215:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49123:111;:::o;1895:723::-;1951:13;2181:1;2172:5;:10;2168:53;;2199:10;;;;;;;;;;;;;;;;;;;;;2168:53;2231:12;2246:5;2231:20;;2262:14;2287:78;2302:1;2294:4;:9;2287:78;;2320:8;;;;;:::i;:::-;;;;2351:2;2343:10;;;;;:::i;:::-;;;2287:78;;;2375:19;2407:6;2397:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2375:39;;2425:154;2441:1;2432:5;:10;2425:154;;2469:1;2459:11;;;;;:::i;:::-;;;2536:2;2528:5;:10;;;;:::i;:::-;2515:2;:24;;;;:::i;:::-;2502:39;;2485:6;2492;2485:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2565:2;2556:11;;;;;:::i;:::-;;;2425:154;;;2603:6;2589:21;;;;;1895:723;;;;:::o;18944:157::-;19029:4;19068:25;19053:40;;;:11;:40;;;;19046:47;;18944:157;;;:::o;32915:127::-;32980:4;33032:1;33004:30;;:7;:16;33012:7;33004:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32997:37;;32915:127;;;:::o;43151:589::-;43295:45;43322:4;43328:2;43332:7;43295:26;:45::i;:::-;43373:1;43357:18;;:4;:18;;;43353:187;;43392:40;43424:7;43392:31;:40::i;:::-;43353:187;;;43462:2;43454:10;;:4;:10;;;43450:90;;43481:47;43514:4;43520:7;43481:32;:47::i;:::-;43450:90;43353:187;43568:1;43554:16;;:2;:16;;;43550:183;;43587:45;43624:7;43587:36;:45::i;:::-;43550:183;;;43660:4;43654:10;;:2;:10;;;43650:83;;43681:40;43709:2;43713:7;43681:27;:40::i;:::-;43650:83;43550:183;43151:589;;;:::o;40332:125::-;;;;:::o;35475:420::-;35535:13;35551:23;35566:7;35551:14;:23::i;:::-;35535:39;;35587:48;35608:5;35623:1;35627:7;35587:20;:48::i;:::-;35676:29;35693:1;35697:7;35676:8;:29::i;:::-;35738:1;35718:9;:16;35728:5;35718:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;35757:7;:16;35765:7;35757:16;;;;;;;;;;;;35750:23;;;;;;;;;;;35819:7;35815:1;35791:36;;35800:5;35791:36;;;;;;;;;;;;35840:47;35860:5;35875:1;35879:7;35840:19;:47::i;:::-;35524:371;35475:420;:::o;36232:625::-;36391:4;36364:31;;:23;36379:7;36364:14;:23::i;:::-;:31;;;36356:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;36470:1;36456:16;;:2;:16;;;36448:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36526:39;36547:4;36553:2;36557:7;36526:20;:39::i;:::-;36630:29;36647:1;36651:7;36630:8;:29::i;:::-;36691:1;36672:9;:15;36682:4;36672:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36720:1;36703:9;:13;36713:2;36703:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36751:2;36732:7;:16;36740:7;36732:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36790:7;36786:2;36771:27;;36780:4;36771:27;;;;;;;;;;;;36811:38;36831:4;36837:2;36841:7;36811:19;:38::i;:::-;36232:625;;;:::o;38396:853::-;38550:4;38571:15;:2;:13;;;:15::i;:::-;38567:675;;;38623:2;38607:36;;;38644:12;:10;:12::i;:::-;38658:4;38664:7;38673:4;38607:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38603:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38865:1;38848:6;:13;:18;38844:328;;38891:60;;;;;;;;;;:::i;:::-;;;;;;;;38844:328;39122:6;39116:13;39107:6;39103:2;39099:15;39092:38;38603:584;38739:41;;;38729:51;;;:6;:51;;;;38722:58;;;;;38567:675;39226:4;39219:11;;38396:853;;;;;;;:::o;39821:126::-;;;;:::o;44463:164::-;44567:10;:17;;;;44540:15;:24;44556:7;44540:24;;;;;;;;;;;:44;;;;44595:10;44611:7;44595:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44463:164;:::o;45254:988::-;45520:22;45570:1;45545:22;45562:4;45545:16;:22::i;:::-;:26;;;;:::i;:::-;45520:51;;45582:18;45603:17;:26;45621:7;45603:26;;;;;;;;;;;;45582:47;;45750:14;45736:10;:28;45732:328;;45781:19;45803:12;:18;45816:4;45803:18;;;;;;;;;;;;;;;:34;45822:14;45803:34;;;;;;;;;;;;45781:56;;45887:11;45854:12;:18;45867:4;45854:18;;;;;;;;;;;;;;;:30;45873:10;45854:30;;;;;;;;;;;:44;;;;46004:10;45971:17;:30;45989:11;45971:30;;;;;;;;;;;:43;;;;45766:294;45732:328;46156:17;:26;46174:7;46156:26;;;;;;;;;;;46149:33;;;46200:12;:18;46213:4;46200:18;;;;;;;;;;;;;;;:34;46219:14;46200:34;;;;;;;;;;;46193:41;;;45335:907;;45254:988;;:::o;46537:1079::-;46790:22;46835:1;46815:10;:17;;;;:21;;;;:::i;:::-;46790:46;;46847:18;46868:15;:24;46884:7;46868:24;;;;;;;;;;;;46847:45;;47219:19;47241:10;47252:14;47241:26;;;;;;;;:::i;:::-;;;;;;;;;;47219:48;;47305:11;47280:10;47291;47280:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;47416:10;47385:15;:28;47401:11;47385:28;;;;;;;;;;;:41;;;;47557:15;:24;47573:7;47557:24;;;;;;;;;;;47550:31;;;47592:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46608:1008;;;46537:1079;:::o;44041:221::-;44126:14;44143:20;44160:2;44143:16;:20::i;:::-;44126:37;;44201:7;44174:12;:16;44187:2;44174:16;;;;;;;;;;;;;;;:24;44191:6;44174:24;;;;;;;;;;;:34;;;;44248:6;44219:17;:26;44237:7;44219:26;;;;;;;;;;;:35;;;;44115:147;44041:221;;:::o;8788:326::-;8848:4;9105:1;9083:7;:19;;;:23;9076:30;;8788:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:220::-;12743:34;12739:1;12731:6;12727:14;12720:58;12812:3;12807:2;12799:6;12795:15;12788:28;12603:220;:::o;12829:366::-;12971:3;12992:67;13056:2;13051:3;12992:67;:::i;:::-;12985:74;;13068:93;13157:3;13068:93;:::i;:::-;13186:2;13181:3;13177:12;13170:19;;12829:366;;;:::o;13201:419::-;13367:4;13405:2;13394:9;13390:18;13382:26;;13454:9;13448:4;13444:20;13440:1;13429:9;13425:17;13418:47;13482:131;13608:4;13482:131;:::i;:::-;13474:139;;13201:419;;;:::o;13626:249::-;13766:34;13762:1;13754:6;13750:14;13743:58;13835:32;13830:2;13822:6;13818:15;13811:57;13626:249;:::o;13881:366::-;14023:3;14044:67;14108:2;14103:3;14044:67;:::i;:::-;14037:74;;14120:93;14209:3;14120:93;:::i;:::-;14238:2;14233:3;14229:12;14222:19;;13881:366;;;:::o;14253:419::-;14419:4;14457:2;14446:9;14442:18;14434:26;;14506:9;14500:4;14496:20;14492:1;14481:9;14477:17;14470:47;14534:131;14660:4;14534:131;:::i;:::-;14526:139;;14253:419;;;:::o;14678:157::-;14818:9;14814:1;14806:6;14802:14;14795:33;14678:157;:::o;14841:365::-;14983:3;15004:66;15068:1;15063:3;15004:66;:::i;:::-;14997:73;;15079:93;15168:3;15079:93;:::i;:::-;15197:2;15192:3;15188:12;15181:19;;14841:365;;;:::o;15212:419::-;15378:4;15416:2;15405:9;15401:18;15393:26;;15465:9;15459:4;15455:20;15451:1;15440:9;15436:17;15429:47;15493:131;15619:4;15493:131;:::i;:::-;15485:139;;15212:419;;;:::o;15637:233::-;15777:34;15773:1;15765:6;15761:14;15754:58;15846:16;15841:2;15833:6;15829:15;15822:41;15637:233;:::o;15876:366::-;16018:3;16039:67;16103:2;16098:3;16039:67;:::i;:::-;16032:74;;16115:93;16204:3;16115:93;:::i;:::-;16233:2;16228:3;16224:12;16217:19;;15876:366;;;:::o;16248:419::-;16414:4;16452:2;16441:9;16437:18;16429:26;;16501:9;16495:4;16491:20;16487:1;16476:9;16472:17;16465:47;16529:131;16655:4;16529:131;:::i;:::-;16521:139;;16248:419;;;:::o;16673:230::-;16813:34;16809:1;16801:6;16797:14;16790:58;16882:13;16877:2;16869:6;16865:15;16858:38;16673:230;:::o;16909:366::-;17051:3;17072:67;17136:2;17131:3;17072:67;:::i;:::-;17065:74;;17148:93;17237:3;17148:93;:::i;:::-;17266:2;17261:3;17257:12;17250:19;;16909:366;;;:::o;17281:419::-;17447:4;17485:2;17474:9;17470:18;17462:26;;17534:9;17528:4;17524:20;17520:1;17509:9;17505:17;17498:47;17562:131;17688:4;17562:131;:::i;:::-;17554:139;;17281:419;;;:::o;17706:231::-;17846:34;17842:1;17834:6;17830:14;17823:58;17915:14;17910:2;17902:6;17898:15;17891:39;17706:231;:::o;17943:366::-;18085:3;18106:67;18170:2;18165:3;18106:67;:::i;:::-;18099:74;;18182:93;18271:3;18182:93;:::i;:::-;18300:2;18295:3;18291:12;18284:19;;17943:366;;;:::o;18315:419::-;18481:4;18519:2;18508:9;18504:18;18496:26;;18568:9;18562:4;18558:20;18554:1;18543:9;18539:17;18532:47;18596:131;18722:4;18596:131;:::i;:::-;18588:139;;18315:419;;;:::o;18740:180::-;18788:77;18785:1;18778:88;18885:4;18882:1;18875:15;18909:4;18906:1;18899:15;18926:141;18975:4;18998:3;18990:11;;19021:3;19018:1;19011:14;19055:4;19052:1;19042:18;19034:26;;18926:141;;;:::o;19073:93::-;19110:6;19157:2;19152;19145:5;19141:14;19137:23;19127:33;;19073:93;;;:::o;19172:107::-;19216:8;19266:5;19260:4;19256:16;19235:37;;19172:107;;;;:::o;19285:393::-;19354:6;19404:1;19392:10;19388:18;19427:97;19457:66;19446:9;19427:97;:::i;:::-;19545:39;19575:8;19564:9;19545:39;:::i;:::-;19533:51;;19617:4;19613:9;19606:5;19602:21;19593:30;;19666:4;19656:8;19652:19;19645:5;19642:30;19632:40;;19361:317;;19285:393;;;;;:::o;19684:60::-;19712:3;19733:5;19726:12;;19684:60;;;:::o;19750:142::-;19800:9;19833:53;19851:34;19860:24;19878:5;19860:24;:::i;:::-;19851:34;:::i;:::-;19833:53;:::i;:::-;19820:66;;19750:142;;;:::o;19898:75::-;19941:3;19962:5;19955:12;;19898:75;;;:::o;19979:269::-;20089:39;20120:7;20089:39;:::i;:::-;20150:91;20199:41;20223:16;20199:41;:::i;:::-;20191:6;20184:4;20178:11;20150:91;:::i;:::-;20144:4;20137:105;20055:193;19979:269;;;:::o;20254:73::-;20299:3;20254:73;:::o;20333:189::-;20410:32;;:::i;:::-;20451:65;20509:6;20501;20495:4;20451:65;:::i;:::-;20386:136;20333:189;;:::o;20528:186::-;20588:120;20605:3;20598:5;20595:14;20588:120;;;20659:39;20696:1;20689:5;20659:39;:::i;:::-;20632:1;20625:5;20621:13;20612:22;;20588:120;;;20528:186;;:::o;20720:543::-;20821:2;20816:3;20813:11;20810:446;;;20855:38;20887:5;20855:38;:::i;:::-;20939:29;20957:10;20939:29;:::i;:::-;20929:8;20925:44;21122:2;21110:10;21107:18;21104:49;;;21143:8;21128:23;;21104:49;21166:80;21222:22;21240:3;21222:22;:::i;:::-;21212:8;21208:37;21195:11;21166:80;:::i;:::-;20825:431;;20810:446;20720:543;;;:::o;21269:117::-;21323:8;21373:5;21367:4;21363:16;21342:37;;21269:117;;;;:::o;21392:169::-;21436:6;21469:51;21517:1;21513:6;21505:5;21502:1;21498:13;21469:51;:::i;:::-;21465:56;21550:4;21544;21540:15;21530:25;;21443:118;21392:169;;;;:::o;21566:295::-;21642:4;21788:29;21813:3;21807:4;21788:29;:::i;:::-;21780:37;;21850:3;21847:1;21843:11;21837:4;21834:21;21826:29;;21566:295;;;;:::o;21866:1395::-;21983:37;22016:3;21983:37;:::i;:::-;22085:18;22077:6;22074:30;22071:56;;;22107:18;;:::i;:::-;22071:56;22151:38;22183:4;22177:11;22151:38;:::i;:::-;22236:67;22296:6;22288;22282:4;22236:67;:::i;:::-;22330:1;22354:4;22341:17;;22386:2;22378:6;22375:14;22403:1;22398:618;;;;23060:1;23077:6;23074:77;;;23126:9;23121:3;23117:19;23111:26;23102:35;;23074:77;23177:67;23237:6;23230:5;23177:67;:::i;:::-;23171:4;23164:81;23033:222;22368:887;;22398:618;22450:4;22446:9;22438:6;22434:22;22484:37;22516:4;22484:37;:::i;:::-;22543:1;22557:208;22571:7;22568:1;22565:14;22557:208;;;22650:9;22645:3;22641:19;22635:26;22627:6;22620:42;22701:1;22693:6;22689:14;22679:24;;22748:2;22737:9;22733:18;22720:31;;22594:4;22591:1;22587:12;22582:17;;22557:208;;;22793:6;22784:7;22781:19;22778:179;;;22851:9;22846:3;22842:19;22836:26;22894:48;22936:4;22928:6;22924:17;22913:9;22894:48;:::i;:::-;22886:6;22879:64;22801:156;22778:179;23003:1;22999;22991:6;22987:14;22983:22;22977:4;22970:36;22405:611;;;22368:887;;21958:1303;;;21866:1395;;:::o;23267:174::-;23407:26;23403:1;23395:6;23391:14;23384:50;23267:174;:::o;23447:366::-;23589:3;23610:67;23674:2;23669:3;23610:67;:::i;:::-;23603:74;;23686:93;23775:3;23686:93;:::i;:::-;23804:2;23799:3;23795:12;23788:19;;23447:366;;;:::o;23819:419::-;23985:4;24023:2;24012:9;24008:18;24000:26;;24072:9;24066:4;24062:20;24058:1;24047:9;24043:17;24036:47;24100:131;24226:4;24100:131;:::i;:::-;24092:139;;23819:419;;;:::o;24244:228::-;24384:34;24380:1;24372:6;24368:14;24361:58;24453:11;24448:2;24440:6;24436:15;24429:36;24244:228;:::o;24478:366::-;24620:3;24641:67;24705:2;24700:3;24641:67;:::i;:::-;24634:74;;24717:93;24806:3;24717:93;:::i;:::-;24835:2;24830:3;24826:12;24819:19;;24478:366;;;:::o;24850:419::-;25016:4;25054:2;25043:9;25039:18;25031:26;;25103:9;25097:4;25093:20;25089:1;25078:9;25074:17;25067:47;25131:131;25257:4;25131:131;:::i;:::-;25123:139;;24850:419;;;:::o;25275:148::-;25377:11;25414:3;25399:18;;25275:148;;;;:::o;25429:390::-;25535:3;25563:39;25596:5;25563:39;:::i;:::-;25618:89;25700:6;25695:3;25618:89;:::i;:::-;25611:96;;25716:65;25774:6;25769:3;25762:4;25755:5;25751:16;25716:65;:::i;:::-;25806:6;25801:3;25797:16;25790:23;;25539:280;25429:390;;;;:::o;25825:435::-;26005:3;26027:95;26118:3;26109:6;26027:95;:::i;:::-;26020:102;;26139:95;26230:3;26221:6;26139:95;:::i;:::-;26132:102;;26251:3;26244:10;;25825:435;;;;;:::o;26266:225::-;26406:34;26402:1;26394:6;26390:14;26383:58;26475:8;26470:2;26462:6;26458:15;26451:33;26266:225;:::o;26497:366::-;26639:3;26660:67;26724:2;26719:3;26660:67;:::i;:::-;26653:74;;26736:93;26825:3;26736:93;:::i;:::-;26854:2;26849:3;26845:12;26838:19;;26497:366;;;:::o;26869:419::-;27035:4;27073:2;27062:9;27058:18;27050:26;;27122:9;27116:4;27112:20;27108:1;27097:9;27093:17;27086:47;27150:131;27276:4;27150:131;:::i;:::-;27142:139;;26869:419;;;:::o;27294:182::-;27434:34;27430:1;27422:6;27418:14;27411:58;27294:182;:::o;27482:366::-;27624:3;27645:67;27709:2;27704:3;27645:67;:::i;:::-;27638:74;;27721:93;27810:3;27721:93;:::i;:::-;27839:2;27834:3;27830:12;27823:19;;27482:366;;;:::o;27854:419::-;28020:4;28058:2;28047:9;28043:18;28035:26;;28107:9;28101:4;28097:20;28093:1;28082:9;28078:17;28071:47;28135:131;28261:4;28135:131;:::i;:::-;28127:139;;27854:419;;;:::o;28279:178::-;28419:30;28415:1;28407:6;28403:14;28396:54;28279:178;:::o;28463:366::-;28605:3;28626:67;28690:2;28685:3;28626:67;:::i;:::-;28619:74;;28702:93;28791:3;28702:93;:::i;:::-;28820:2;28815:3;28811:12;28804:19;;28463:366;;;:::o;28835:419::-;29001:4;29039:2;29028:9;29024:18;29016:26;;29088:9;29082:4;29078:20;29074:1;29063:9;29059:17;29052:47;29116:131;29242:4;29116:131;:::i;:::-;29108:139;;28835:419;;;:::o;29260:180::-;29308:77;29305:1;29298:88;29405:4;29402:1;29395:15;29429:4;29426:1;29419:15;29446:191;29486:3;29505:20;29523:1;29505:20;:::i;:::-;29500:25;;29539:20;29557:1;29539:20;:::i;:::-;29534:25;;29582:1;29579;29575:9;29568:16;;29603:3;29600:1;29597:10;29594:36;;;29610:18;;:::i;:::-;29594:36;29446:191;;;;:::o;29643:182::-;29783:34;29779:1;29771:6;29767:14;29760:58;29643:182;:::o;29831:366::-;29973:3;29994:67;30058:2;30053:3;29994:67;:::i;:::-;29987:74;;30070:93;30159:3;30070:93;:::i;:::-;30188:2;30183:3;30179:12;30172:19;;29831:366;;;:::o;30203:419::-;30369:4;30407:2;30396:9;30392:18;30384:26;;30456:9;30450:4;30446:20;30442:1;30431:9;30427:17;30420:47;30484:131;30610:4;30484:131;:::i;:::-;30476:139;;30203:419;;;:::o;30628:175::-;30768:27;30764:1;30756:6;30752:14;30745:51;30628:175;:::o;30809:366::-;30951:3;30972:67;31036:2;31031:3;30972:67;:::i;:::-;30965:74;;31048:93;31137:3;31048:93;:::i;:::-;31166:2;31161:3;31157:12;31150:19;;30809:366;;;:::o;31181:419::-;31347:4;31385:2;31374:9;31370:18;31362:26;;31434:9;31428:4;31424:20;31420:1;31409:9;31405:17;31398:47;31462:131;31588:4;31462:131;:::i;:::-;31454:139;;31181:419;;;:::o;31606:237::-;31746:34;31742:1;31734:6;31730:14;31723:58;31815:20;31810:2;31802:6;31798:15;31791:45;31606:237;:::o;31849:366::-;31991:3;32012:67;32076:2;32071:3;32012:67;:::i;:::-;32005:74;;32088:93;32177:3;32088:93;:::i;:::-;32206:2;32201:3;32197:12;32190:19;;31849:366;;;:::o;32221:419::-;32387:4;32425:2;32414:9;32410:18;32402:26;;32474:9;32468:4;32464:20;32460:1;32449:9;32445:17;32438:47;32502:131;32628:4;32502:131;:::i;:::-;32494:139;;32221:419;;;:::o;32646:233::-;32685:3;32708:24;32726:5;32708:24;:::i;:::-;32699:33;;32754:66;32747:5;32744:77;32741:103;;32824:18;;:::i;:::-;32741:103;32871:1;32864:5;32860:13;32853:20;;32646:233;;;:::o;32885:180::-;32933:77;32930:1;32923:88;33030:4;33027:1;33020:15;33054:4;33051:1;33044:15;33071:185;33111:1;33128:20;33146:1;33128:20;:::i;:::-;33123:25;;33162:20;33180:1;33162:20;:::i;:::-;33157:25;;33201:1;33191:35;;33206:18;;:::i;:::-;33191:35;33248:1;33245;33241:9;33236:14;;33071:185;;;;:::o;33262:194::-;33302:4;33322:20;33340:1;33322:20;:::i;:::-;33317:25;;33356:20;33374:1;33356:20;:::i;:::-;33351:25;;33400:1;33397;33393:9;33385:17;;33424:1;33418:4;33415:11;33412:37;;;33429:18;;:::i;:::-;33412:37;33262:194;;;;:::o;33462:176::-;33494:1;33511:20;33529:1;33511:20;:::i;:::-;33506:25;;33545:20;33563:1;33545:20;:::i;:::-;33540:25;;33584:1;33574:35;;33589:18;;:::i;:::-;33574:35;33630:1;33627;33623:9;33618:14;;33462:176;;;;:::o;33644:224::-;33784:34;33780:1;33772:6;33768:14;33761:58;33853:7;33848:2;33840:6;33836:15;33829:32;33644:224;:::o;33874:366::-;34016:3;34037:67;34101:2;34096:3;34037:67;:::i;:::-;34030:74;;34113:93;34202:3;34113:93;:::i;:::-;34231:2;34226:3;34222:12;34215:19;;33874:366;;;:::o;34246:419::-;34412:4;34450:2;34439:9;34435:18;34427:26;;34499:9;34493:4;34489:20;34485:1;34474:9;34470:17;34463:47;34527:131;34653:4;34527:131;:::i;:::-;34519:139;;34246:419;;;:::o;34671:223::-;34811:34;34807:1;34799:6;34795:14;34788:58;34880:6;34875:2;34867:6;34863:15;34856:31;34671:223;:::o;34900:366::-;35042:3;35063:67;35127:2;35122:3;35063:67;:::i;:::-;35056:74;;35139:93;35228:3;35139:93;:::i;:::-;35257:2;35252:3;35248:12;35241:19;;34900:366;;;:::o;35272:419::-;35438:4;35476:2;35465:9;35461:18;35453:26;;35525:9;35519:4;35515:20;35511:1;35500:9;35496:17;35489:47;35553:131;35679:4;35553:131;:::i;:::-;35545:139;;35272:419;;;:::o;35697:98::-;35748:6;35782:5;35776:12;35766:22;;35697:98;;;:::o;35801:168::-;35884:11;35918:6;35913:3;35906:19;35958:4;35953:3;35949:14;35934:29;;35801:168;;;;:::o;35975:373::-;36061:3;36089:38;36121:5;36089:38;:::i;:::-;36143:70;36206:6;36201:3;36143:70;:::i;:::-;36136:77;;36222:65;36280:6;36275:3;36268:4;36261:5;36257:16;36222:65;:::i;:::-;36312:29;36334:6;36312:29;:::i;:::-;36307:3;36303:39;36296:46;;36065:283;35975:373;;;;:::o;36354:640::-;36549:4;36587:3;36576:9;36572:19;36564:27;;36601:71;36669:1;36658:9;36654:17;36645:6;36601:71;:::i;:::-;36682:72;36750:2;36739:9;36735:18;36726:6;36682:72;:::i;:::-;36764;36832:2;36821:9;36817:18;36808:6;36764:72;:::i;:::-;36883:9;36877:4;36873:20;36868:2;36857:9;36853:18;36846:48;36911:76;36982:4;36973:6;36911:76;:::i;:::-;36903:84;;36354:640;;;;;;;:::o;37000:141::-;37056:5;37087:6;37081:13;37072:22;;37103:32;37129:5;37103:32;:::i;:::-;37000:141;;;;:::o;37147:349::-;37216:6;37265:2;37253:9;37244:7;37240:23;37236:32;37233:119;;;37271:79;;:::i;:::-;37233:119;37391:1;37416:63;37471:7;37462:6;37451:9;37447:22;37416:63;:::i;:::-;37406:73;;37362:127;37147:349;;;;:::o;37502:180::-;37550:77;37547:1;37540:88;37647:4;37644:1;37637:15;37671:4;37668:1;37661:15

Swarm Source

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