ETH Price: $3,065.68 (+2.04%)
Gas: 3 Gwei

Token

Tax Extension (TAX)
 

Overview

Max Total Supply

0 TAX

Holders

498

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
davidvalencia.eth
Balance
5 TAX
0x5aa35f2d503314af62983338bdfce6b293abe206
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:
TaxExtension

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-12
*/

// SPDX-License-Identifier: GPL-3.0
// 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 v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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.5.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

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

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


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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @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.5.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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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: contracts/TaxExtension.sol


 
pragma solidity ^0.8.7;




 
contract TaxExtension is ERC721, Ownable {
 
   using Counters for Counters.Counter;
   Counters.Counter private _tokenIds;
   uint256 totalSupply = 1000;
   uint256 public maxMintPerTransaction = 1;
   bool public revealed = false;
   string public _baseURIRevealed = "ipfs://QmVasvqo55wSkV1ensQ7PuVrnkcHDgc5ayDYpNChT2VRWG/";
   string public notRevealedURI = "ipfs://QmVasvqo55wSkV1ensQ7PuVrnkcHDgc5ayDYpNChT2VRWG";
 
 
   event Mint(address to, uint tokenId);
 
   constructor() ERC721("Tax Extension", "TAX") {
       _tokenIds.increment();
       _mint(msg.sender, _tokenIds.current());
       _tokenIds.increment();
   }
 
   function mint(uint _amount) public payable {
       require(_amount <= maxMintPerTransaction, "Amount exceeded");
       require(_tokenIds.current() + _amount <= totalSupply, "Supply exceeded");
       if(_tokenIds.current() > 10) {
          
       }
       for(uint i = 0; i < _amount; i++) {
           _mint(msg.sender, _tokenIds.current());
           emit Mint(msg.sender, _tokenIds.current());
           _tokenIds.increment();
       }
   }
  
   function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
       if(revealed == true) {
           return string(abi.encodePacked(_baseURIRevealed, Strings.toString(_tokenId), ".json"));
       } else {
           return notRevealedURI;
       }
   }
 
   function setRevealed(bool _state) public {
       revealed = _state;
   }
 
   function withdraw() public onlyOwner {
       (bool os, ) = payable(owner()).call{value: address(this).balance}("");
       require(os);
   }
}

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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseURIRevealed","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","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":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6103e86008556001600955600a805460ff1916905560e0604052603660808181529062001e9060a03980516200003e91600b9160209091019062000306565b5060405180606001604052806035815260200162001e5b6035913980516200006f91600c9160209091019062000306565b503480156200007d57600080fd5b50604080518082018252600d81526c2a30bc1022bc3a32b739b4b7b760991b6020808301918252835180850190945260038452620a882b60eb1b908401528151919291620000ce9160009162000306565b508051620000e490600190602084019062000306565b50505062000101620000fb6200015760201b60201c565b6200015b565b620001186007620001ad60201b62000c8e1760201c565b6200013a33620001346007620001b660201b62000c971760201c565b620001ba565b620001516007620001ad60201b62000c8e1760201c565b62000410565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b5490565b6001600160a01b038216620002165760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600260205260409020546001600160a01b0316156200027d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200020d565b6001600160a01b0382166000908152600360205260408120805460019290620002a8908490620003ac565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546200031490620003d3565b90600052602060002090601f01602090048101928262000338576000855562000383565b82601f106200035357805160ff191683800117855562000383565b8280016001018555821562000383579182015b828111156200038357825182559160200191906001019062000366565b506200039192915062000395565b5090565b5b8082111562000391576000815560010162000396565b60008219821115620003ce57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620003e857607f821691505b602082108114156200040a57634e487b7160e01b600052602260045260246000fd5b50919050565b611a3b80620004206000396000f3fe6080604052600436106101405760003560e01c8063715018a6116100b6578063a22cb4651161006f578063a22cb4651461034e578063b88d4fde1461036e578063c87b56dd1461038e578063e0a80853146103ae578063e985e9c5146103dc578063f2fde38b1461042557600080fd5b8063715018a6146102c957806372250380146102de578063789534b4146102f35780638da5cb5b1461030857806395d89b4114610326578063a0712d681461033b57600080fd5b806323b872dd1161010857806323b872dd1461021a5780633ccfd60b1461023a57806342842e0e1461024f578063518302271461026f5780636352211e1461028957806370a08231146102a957600080fd5b806301f569971461014557806301ffc9a71461016e57806306fdde031461019e578063081812fc146101c0578063095ea7b3146101f8575b600080fd5b34801561015157600080fd5b5061015b60095481565b6040519081526020015b60405180910390f35b34801561017a57600080fd5b5061018e610189366004611640565b610445565b6040519015158152602001610165565b3480156101aa57600080fd5b506101b3610497565b60405161016591906117d3565b3480156101cc57600080fd5b506101e06101db36600461167a565b610529565b6040516001600160a01b039091168152602001610165565b34801561020457600080fd5b506102186102133660046115fb565b6105c3565b005b34801561022657600080fd5b506102186102353660046114b9565b6106d9565b34801561024657600080fd5b5061021861070a565b34801561025b57600080fd5b5061021861026a3660046114b9565b6107a8565b34801561027b57600080fd5b50600a5461018e9060ff1681565b34801561029557600080fd5b506101e06102a436600461167a565b6107c3565b3480156102b557600080fd5b5061015b6102c4366004611464565b61083a565b3480156102d557600080fd5b506102186108c1565b3480156102ea57600080fd5b506101b36108f7565b3480156102ff57600080fd5b506101b3610985565b34801561031457600080fd5b506006546001600160a01b03166101e0565b34801561033257600080fd5b506101b3610992565b61021861034936600461167a565b6109a1565b34801561035a57600080fd5b506102186103693660046115d1565b610ad7565b34801561037a57600080fd5b506102186103893660046114f5565b610ae2565b34801561039a57600080fd5b506101b36103a936600461167a565b610b1a565b3480156103ba57600080fd5b506102186103c9366004611625565b600a805460ff1916911515919091179055565b3480156103e857600080fd5b5061018e6103f7366004611486565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561043157600080fd5b50610218610440366004611464565b610bf6565b60006001600160e01b031982166380ac58cd60e01b148061047657506001600160e01b03198216635b5e139f60e01b145b8061049157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104a69061192d565b80601f01602080910402602001604051908101604052809291908181526020018280546104d29061192d565b801561051f5780601f106104f45761010080835404028352916020019161051f565b820191906000526020600020905b81548152906001019060200180831161050257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105ce826107c3565b9050806001600160a01b0316836001600160a01b0316141561063c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161059e565b336001600160a01b0382161480610658575061065881336103f7565b6106ca5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161059e565b6106d48383610c9b565b505050565b6106e33382610d09565b6106ff5760405162461bcd60e51b815260040161059e9061186d565b6106d4838383610e00565b6006546001600160a01b031633146107345760405162461bcd60e51b815260040161059e90611838565b60006107486006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610792576040519150601f19603f3d011682016040523d82523d6000602084013e610797565b606091505b50509050806107a557600080fd5b50565b6106d483838360405180602001604052806000815250610ae2565b6000818152600260205260408120546001600160a01b0316806104915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161059e565b60006001600160a01b0382166108a55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161059e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108eb5760405162461bcd60e51b815260040161059e90611838565b6108f56000610f9c565b565b600c80546109049061192d565b80601f01602080910402602001604051908101604052809291908181526020018280546109309061192d565b801561097d5780601f106109525761010080835404028352916020019161097d565b820191906000526020600020905b81548152906001019060200180831161096057829003601f168201915b505050505081565b600b80546109049061192d565b6060600180546104a69061192d565b6009548111156109e55760405162461bcd60e51b815260206004820152600f60248201526e105b5bdd5b9d08195e18d959591959608a1b604482015260640161059e565b600854816109f260075490565b6109fc91906118be565b1115610a3c5760405162461bcd60e51b815260206004820152600f60248201526e14dd5c1c1b1e48195e18d959591959608a1b604482015260640161059e565b600a610a4760075490565b505060005b81811015610ad357610a6633610a6160075490565b610fee565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688533610a9160075490565b604080516001600160a01b03909316835260208301919091520160405180910390a1610ac1600780546001019055565b80610acb81611968565b915050610a4c565b5050565b610ad3338383611130565b610aec3383610d09565b610b085760405162461bcd60e51b815260040161059e9061186d565b610b14848484846111ff565b50505050565b600a5460609060ff16151560011415610b5f57600b610b3883611232565b604051602001610b499291906116db565b6040516020818303038152906040529050919050565b600c8054610b6c9061192d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b989061192d565b8015610be55780601f10610bba57610100808354040283529160200191610be5565b820191906000526020600020905b815481529060010190602001808311610bc857829003601f168201915b50505050509050919050565b919050565b6006546001600160a01b03163314610c205760405162461bcd60e51b815260040161059e90611838565b6001600160a01b038116610c855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059e565b6107a581610f9c565b80546001019055565b5490565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cd0826107c3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610d825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059e565b6000610d8d836107c3565b9050806001600160a01b0316846001600160a01b03161480610dc85750836001600160a01b0316610dbd84610529565b6001600160a01b0316145b80610df857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e13826107c3565b6001600160a01b031614610e775760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161059e565b6001600160a01b038216610ed95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161059e565b610ee4600082610c9b565b6001600160a01b0383166000908152600360205260408120805460019290610f0d9084906118ea565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f3b9084906118be565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166110445760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161059e565b6000818152600260205260409020546001600160a01b0316156110a95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161059e565b6001600160a01b03821660009081526003602052604081208054600192906110d29084906118be565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156111925760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161059e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61120a848484610e00565b61121684848484611330565b610b145760405162461bcd60e51b815260040161059e906117e6565b6060816112565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611280578061126a81611968565b91506112799050600a836118d6565b915061125a565b60008167ffffffffffffffff81111561129b5761129b6119d9565b6040519080825280601f01601f1916602001820160405280156112c5576020820181803683370190505b5090505b8415610df8576112da6001836118ea565b91506112e7600a86611983565b6112f29060306118be565b60f81b818381518110611307576113076119c3565b60200101906001600160f81b031916908160001a905350611329600a866118d6565b94506112c9565b60006001600160a01b0384163b1561143257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611374903390899088908890600401611796565b602060405180830381600087803b15801561138e57600080fd5b505af19250505080156113be575060408051601f3d908101601f191682019092526113bb9181019061165d565b60015b611418573d8080156113ec576040519150601f19603f3d011682016040523d82523d6000602084013e6113f1565b606091505b5080516114105760405162461bcd60e51b815260040161059e906117e6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610df8565b506001949350505050565b80356001600160a01b0381168114610bf157600080fd5b80358015158114610bf157600080fd5b60006020828403121561147657600080fd5b61147f8261143d565b9392505050565b6000806040838503121561149957600080fd5b6114a28361143d565b91506114b06020840161143d565b90509250929050565b6000806000606084860312156114ce57600080fd5b6114d78461143d565b92506114e56020850161143d565b9150604084013590509250925092565b6000806000806080858703121561150b57600080fd5b6115148561143d565b93506115226020860161143d565b925060408501359150606085013567ffffffffffffffff8082111561154657600080fd5b818701915087601f83011261155a57600080fd5b81358181111561156c5761156c6119d9565b604051601f8201601f19908116603f01168101908382118183101715611594576115946119d9565b816040528281528a60208487010111156115ad57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156115e457600080fd5b6115ed8361143d565b91506114b060208401611454565b6000806040838503121561160e57600080fd5b6116178361143d565b946020939093013593505050565b60006020828403121561163757600080fd5b61147f82611454565b60006020828403121561165257600080fd5b813561147f816119ef565b60006020828403121561166f57600080fd5b815161147f816119ef565b60006020828403121561168c57600080fd5b5035919050565b600081518084526116ab816020860160208601611901565b601f01601f19169290920160200192915050565b600081516116d1818560208601611901565b9290920192915050565b600080845481600182811c9150808316806116f757607f831692505b602080841082141561171757634e487b7160e01b86526022600452602486fd5b81801561172b576001811461173c57611769565b60ff19861689528489019650611769565b60008b81526020902060005b868110156117615781548b820152908501908301611748565b505084890196505b50505050505061178d61177c82866116bf565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117c990830184611693565b9695505050505050565b60208152600061147f6020830184611693565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156118d1576118d1611997565b500190565b6000826118e5576118e56119ad565b500490565b6000828210156118fc576118fc611997565b500390565b60005b8381101561191c578181015183820152602001611904565b83811115610b145750506000910152565b600181811c9082168061194157607f821691505b6020821081141561196257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561197c5761197c611997565b5060010190565b600082611992576119926119ad565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107a557600080fdfea26469706673582212204676f863a4a2d184f447e43e75d2a6ed272c884f0faed596060549fe187a97d364736f6c63430008070033697066733a2f2f516d56617376716f353577536b5631656e735137507556726e6b63484467633561794459704e4368543256525747697066733a2f2f516d56617376716f353577536b5631656e735137507556726e6b63484467633561794459704e43685432565257472f

Deployed Bytecode

0x6080604052600436106101405760003560e01c8063715018a6116100b6578063a22cb4651161006f578063a22cb4651461034e578063b88d4fde1461036e578063c87b56dd1461038e578063e0a80853146103ae578063e985e9c5146103dc578063f2fde38b1461042557600080fd5b8063715018a6146102c957806372250380146102de578063789534b4146102f35780638da5cb5b1461030857806395d89b4114610326578063a0712d681461033b57600080fd5b806323b872dd1161010857806323b872dd1461021a5780633ccfd60b1461023a57806342842e0e1461024f578063518302271461026f5780636352211e1461028957806370a08231146102a957600080fd5b806301f569971461014557806301ffc9a71461016e57806306fdde031461019e578063081812fc146101c0578063095ea7b3146101f8575b600080fd5b34801561015157600080fd5b5061015b60095481565b6040519081526020015b60405180910390f35b34801561017a57600080fd5b5061018e610189366004611640565b610445565b6040519015158152602001610165565b3480156101aa57600080fd5b506101b3610497565b60405161016591906117d3565b3480156101cc57600080fd5b506101e06101db36600461167a565b610529565b6040516001600160a01b039091168152602001610165565b34801561020457600080fd5b506102186102133660046115fb565b6105c3565b005b34801561022657600080fd5b506102186102353660046114b9565b6106d9565b34801561024657600080fd5b5061021861070a565b34801561025b57600080fd5b5061021861026a3660046114b9565b6107a8565b34801561027b57600080fd5b50600a5461018e9060ff1681565b34801561029557600080fd5b506101e06102a436600461167a565b6107c3565b3480156102b557600080fd5b5061015b6102c4366004611464565b61083a565b3480156102d557600080fd5b506102186108c1565b3480156102ea57600080fd5b506101b36108f7565b3480156102ff57600080fd5b506101b3610985565b34801561031457600080fd5b506006546001600160a01b03166101e0565b34801561033257600080fd5b506101b3610992565b61021861034936600461167a565b6109a1565b34801561035a57600080fd5b506102186103693660046115d1565b610ad7565b34801561037a57600080fd5b506102186103893660046114f5565b610ae2565b34801561039a57600080fd5b506101b36103a936600461167a565b610b1a565b3480156103ba57600080fd5b506102186103c9366004611625565b600a805460ff1916911515919091179055565b3480156103e857600080fd5b5061018e6103f7366004611486565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561043157600080fd5b50610218610440366004611464565b610bf6565b60006001600160e01b031982166380ac58cd60e01b148061047657506001600160e01b03198216635b5e139f60e01b145b8061049157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104a69061192d565b80601f01602080910402602001604051908101604052809291908181526020018280546104d29061192d565b801561051f5780601f106104f45761010080835404028352916020019161051f565b820191906000526020600020905b81548152906001019060200180831161050257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105ce826107c3565b9050806001600160a01b0316836001600160a01b0316141561063c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161059e565b336001600160a01b0382161480610658575061065881336103f7565b6106ca5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161059e565b6106d48383610c9b565b505050565b6106e33382610d09565b6106ff5760405162461bcd60e51b815260040161059e9061186d565b6106d4838383610e00565b6006546001600160a01b031633146107345760405162461bcd60e51b815260040161059e90611838565b60006107486006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610792576040519150601f19603f3d011682016040523d82523d6000602084013e610797565b606091505b50509050806107a557600080fd5b50565b6106d483838360405180602001604052806000815250610ae2565b6000818152600260205260408120546001600160a01b0316806104915760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161059e565b60006001600160a01b0382166108a55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161059e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146108eb5760405162461bcd60e51b815260040161059e90611838565b6108f56000610f9c565b565b600c80546109049061192d565b80601f01602080910402602001604051908101604052809291908181526020018280546109309061192d565b801561097d5780601f106109525761010080835404028352916020019161097d565b820191906000526020600020905b81548152906001019060200180831161096057829003601f168201915b505050505081565b600b80546109049061192d565b6060600180546104a69061192d565b6009548111156109e55760405162461bcd60e51b815260206004820152600f60248201526e105b5bdd5b9d08195e18d959591959608a1b604482015260640161059e565b600854816109f260075490565b6109fc91906118be565b1115610a3c5760405162461bcd60e51b815260206004820152600f60248201526e14dd5c1c1b1e48195e18d959591959608a1b604482015260640161059e565b600a610a4760075490565b505060005b81811015610ad357610a6633610a6160075490565b610fee565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688533610a9160075490565b604080516001600160a01b03909316835260208301919091520160405180910390a1610ac1600780546001019055565b80610acb81611968565b915050610a4c565b5050565b610ad3338383611130565b610aec3383610d09565b610b085760405162461bcd60e51b815260040161059e9061186d565b610b14848484846111ff565b50505050565b600a5460609060ff16151560011415610b5f57600b610b3883611232565b604051602001610b499291906116db565b6040516020818303038152906040529050919050565b600c8054610b6c9061192d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b989061192d565b8015610be55780601f10610bba57610100808354040283529160200191610be5565b820191906000526020600020905b815481529060010190602001808311610bc857829003601f168201915b50505050509050919050565b919050565b6006546001600160a01b03163314610c205760405162461bcd60e51b815260040161059e90611838565b6001600160a01b038116610c855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161059e565b6107a581610f9c565b80546001019055565b5490565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cd0826107c3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610d825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161059e565b6000610d8d836107c3565b9050806001600160a01b0316846001600160a01b03161480610dc85750836001600160a01b0316610dbd84610529565b6001600160a01b0316145b80610df857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e13826107c3565b6001600160a01b031614610e775760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161059e565b6001600160a01b038216610ed95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161059e565b610ee4600082610c9b565b6001600160a01b0383166000908152600360205260408120805460019290610f0d9084906118ea565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f3b9084906118be565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166110445760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161059e565b6000818152600260205260409020546001600160a01b0316156110a95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161059e565b6001600160a01b03821660009081526003602052604081208054600192906110d29084906118be565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b031614156111925760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161059e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61120a848484610e00565b61121684848484611330565b610b145760405162461bcd60e51b815260040161059e906117e6565b6060816112565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611280578061126a81611968565b91506112799050600a836118d6565b915061125a565b60008167ffffffffffffffff81111561129b5761129b6119d9565b6040519080825280601f01601f1916602001820160405280156112c5576020820181803683370190505b5090505b8415610df8576112da6001836118ea565b91506112e7600a86611983565b6112f29060306118be565b60f81b818381518110611307576113076119c3565b60200101906001600160f81b031916908160001a905350611329600a866118d6565b94506112c9565b60006001600160a01b0384163b1561143257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611374903390899088908890600401611796565b602060405180830381600087803b15801561138e57600080fd5b505af19250505080156113be575060408051601f3d908101601f191682019092526113bb9181019061165d565b60015b611418573d8080156113ec576040519150601f19603f3d011682016040523d82523d6000602084013e6113f1565b606091505b5080516114105760405162461bcd60e51b815260040161059e906117e6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610df8565b506001949350505050565b80356001600160a01b0381168114610bf157600080fd5b80358015158114610bf157600080fd5b60006020828403121561147657600080fd5b61147f8261143d565b9392505050565b6000806040838503121561149957600080fd5b6114a28361143d565b91506114b06020840161143d565b90509250929050565b6000806000606084860312156114ce57600080fd5b6114d78461143d565b92506114e56020850161143d565b9150604084013590509250925092565b6000806000806080858703121561150b57600080fd5b6115148561143d565b93506115226020860161143d565b925060408501359150606085013567ffffffffffffffff8082111561154657600080fd5b818701915087601f83011261155a57600080fd5b81358181111561156c5761156c6119d9565b604051601f8201601f19908116603f01168101908382118183101715611594576115946119d9565b816040528281528a60208487010111156115ad57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156115e457600080fd5b6115ed8361143d565b91506114b060208401611454565b6000806040838503121561160e57600080fd5b6116178361143d565b946020939093013593505050565b60006020828403121561163757600080fd5b61147f82611454565b60006020828403121561165257600080fd5b813561147f816119ef565b60006020828403121561166f57600080fd5b815161147f816119ef565b60006020828403121561168c57600080fd5b5035919050565b600081518084526116ab816020860160208601611901565b601f01601f19169290920160200192915050565b600081516116d1818560208601611901565b9290920192915050565b600080845481600182811c9150808316806116f757607f831692505b602080841082141561171757634e487b7160e01b86526022600452602486fd5b81801561172b576001811461173c57611769565b60ff19861689528489019650611769565b60008b81526020902060005b868110156117615781548b820152908501908301611748565b505084890196505b50505050505061178d61177c82866116bf565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117c990830184611693565b9695505050505050565b60208152600061147f6020830184611693565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156118d1576118d1611997565b500190565b6000826118e5576118e56119ad565b500490565b6000828210156118fc576118fc611997565b500390565b60005b8381101561191c578181015183820152602001611904565b83811115610b145750506000910152565b600181811c9082168061194157607f821691505b6020821081141561196257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561197c5761197c611997565b5060010190565b600082611992576119926119ad565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107a557600080fdfea26469706673582212204676f863a4a2d184f447e43e75d2a6ed272c884f0faed596060549fe187a97d364736f6c63430008070033

Deployed Bytecode Sourcemap

38805:1644:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38968:40;;;;;;;;;;;;;;;;;;;13959:25:1;;;13947:2;13932:18;38968:40:0;;;;;;;;25611:305;;;;;;;;;;-1:-1:-1;25611:305:0;;;;;:::i;:::-;;:::i;:::-;;;6912:14:1;;6905:22;6887:41;;6875:2;6860:18;25611:305:0;6747:187:1;26556:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28115:221::-;;;;;;;;;;-1:-1:-1;28115:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5931:32:1;;;5913:51;;5901:2;5886:18;28115:221:0;5767:203:1;27638:411:0;;;;;;;;;;-1:-1:-1;27638:411:0;;;;;:::i;:::-;;:::i;:::-;;28865:339;;;;;;;;;;-1:-1:-1;28865:339:0;;;;;:::i;:::-;;:::i;40302:144::-;;;;;;;;;;;;;:::i;29275:185::-;;;;;;;;;;-1:-1:-1;29275:185:0;;;;;:::i;:::-;;:::i;39014:28::-;;;;;;;;;;-1:-1:-1;39014:28:0;;;;;;;;26250:239;;;;;;;;;;-1:-1:-1;26250:239:0;;;;;:::i;:::-;;:::i;25980:208::-;;;;;;;;;;-1:-1:-1;25980:208:0;;;;;:::i;:::-;;:::i;6232:103::-;;;;;;;;;;;;;:::i;39143:86::-;;;;;;;;;;;;;:::i;39048:89::-;;;;;;;;;;;;;:::i;5581:87::-;;;;;;;;;;-1:-1:-1;5654:6:0;;-1:-1:-1;;;;;5654:6:0;5581:87;;26725:104;;;;;;;;;;;;;:::i;39456:460::-;;;;;;:::i;:::-;;:::i;28408:155::-;;;;;;;;;;-1:-1:-1;28408:155:0;;;;;:::i;:::-;;:::i;29531:328::-;;;;;;;;;;-1:-1:-1;29531:328:0;;;;;:::i;:::-;;:::i;39925:286::-;;;;;;;;;;-1:-1:-1;39925:286:0;;;;;:::i;:::-;;:::i;40219:75::-;;;;;;;;;;-1:-1:-1;40219:75:0;;;;;:::i;:::-;40270:8;:17;;-1:-1:-1;;40270:17:0;;;;;;;;;;40219:75;28634:164;;;;;;;;;;-1:-1:-1;28634:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28755:25:0;;;28731:4;28755:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28634:164;6490:201;;;;;;;;;;-1:-1:-1;6490:201:0;;;;;:::i;:::-;;:::i;25611:305::-;25713:4;-1:-1:-1;;;;;;25750:40:0;;-1:-1:-1;;;25750:40:0;;:105;;-1:-1:-1;;;;;;;25807:48:0;;-1:-1:-1;;;25807:48:0;25750:105;:158;;;-1:-1:-1;;;;;;;;;;18474:40:0;;;25872:36;25730:178;25611:305;-1:-1:-1;;25611:305:0:o;26556:100::-;26610:13;26643:5;26636:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26556:100;:::o;28115:221::-;28191:7;31458:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31458:16:0;28211:73;;;;-1:-1:-1;;;28211:73:0;;12077:2:1;28211:73:0;;;12059:21:1;12116:2;12096:18;;;12089:30;12155:34;12135:18;;;12128:62;-1:-1:-1;;;12206:18:1;;;12199:42;12258:19;;28211:73:0;;;;;;;;;-1:-1:-1;28304:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28304:24:0;;28115:221::o;27638:411::-;27719:13;27735:23;27750:7;27735:14;:23::i;:::-;27719:39;;27783:5;-1:-1:-1;;;;;27777:11:0;:2;-1:-1:-1;;;;;27777:11:0;;;27769:57;;;;-1:-1:-1;;;27769:57:0;;13195:2:1;27769:57:0;;;13177:21:1;13234:2;13214:18;;;13207:30;13273:34;13253:18;;;13246:62;-1:-1:-1;;;13324:18:1;;;13317:31;13365:19;;27769:57:0;12993:397:1;27769:57:0;4385:10;-1:-1:-1;;;;;27861:21:0;;;;:62;;-1:-1:-1;27886:37:0;27903:5;4385:10;28634:164;:::i;27886:37::-;27839:168;;;;-1:-1:-1;;;27839:168:0;;10470:2:1;27839:168:0;;;10452:21:1;10509:2;10489:18;;;10482:30;10548:34;10528:18;;;10521:62;10619:26;10599:18;;;10592:54;10663:19;;27839:168:0;10268:420:1;27839:168:0;28020:21;28029:2;28033:7;28020:8;:21::i;:::-;27708:341;27638:411;;:::o;28865:339::-;29060:41;4385:10;29093:7;29060:18;:41::i;:::-;29052:103;;;;-1:-1:-1;;;29052:103:0;;;;;;;:::i;:::-;29168:28;29178:4;29184:2;29188:7;29168:9;:28::i;40302:144::-;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;;;;;;:::i;:::-;40350:7:::1;40371;5654:6:::0;;-1:-1:-1;;;;;5654:6:0;;5581:87;40371:7:::1;-1:-1:-1::0;;;;;40363:21:0::1;40392;40363:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40349:69;;;40436:2;40428:11;;;::::0;::::1;;40339:107;40302:144::o:0;29275:185::-;29413:39;29430:4;29436:2;29440:7;29413:39;;;;;;;;;;;;:16;:39::i;26250:239::-;26322:7;26358:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26358:16:0;26393:19;26385:73;;;;-1:-1:-1;;;26385:73:0;;11306:2:1;26385:73:0;;;11288:21:1;11345:2;11325:18;;;11318:30;11384:34;11364:18;;;11357:62;-1:-1:-1;;;11435:18:1;;;11428:39;11484:19;;26385:73:0;11104:405:1;25980:208:0;26052:7;-1:-1:-1;;;;;26080:19:0;;26072:74;;;;-1:-1:-1;;;26072:74:0;;10895:2:1;26072:74:0;;;10877:21:1;10934:2;10914:18;;;10907:30;10973:34;10953:18;;;10946:62;-1:-1:-1;;;11024:18:1;;;11017:40;11074:19;;26072:74:0;10693:406:1;26072:74:0;-1:-1:-1;;;;;;26164:16:0;;;;;:9;:16;;;;;;;25980:208::o;6232:103::-;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;;;;;;:::i;:::-;6297:30:::1;6324:1;6297:18;:30::i;:::-;6232:103::o:0;39143:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39048:89::-;;;;;;;:::i;26725:104::-;26781:13;26814:7;26807:14;;;;;:::i;39456:460::-;39528:21;;39517:7;:32;;39509:60;;;;-1:-1:-1;;;39509:60:0;;12851:2:1;39509:60:0;;;12833:21:1;12890:2;12870:18;;;12863:30;-1:-1:-1;;;12909:18:1;;;12902:45;12964:18;;39509:60:0;12649:339:1;39509:60:0;39620:11;;39609:7;39587:19;:9;1001:14;;909:114;39587:19;:29;;;;:::i;:::-;:44;;39579:72;;;;-1:-1:-1;;;39579:72:0;;10126:2:1;39579:72:0;;;10108:21:1;10165:2;10145:18;;;10138:30;-1:-1:-1;;;10184:18:1;;;10177:45;10239:18;;39579:72:0;9924:339:1;39579:72:0;39686:2;39664:19;:9;1001:14;;909:114;39664:19;:24;;39726:6;39722:188;39742:7;39738:1;:11;39722:188;;;39770:38;39776:10;39788:19;:9;1001:14;;909:114;39788:19;39770:5;:38::i;:::-;39827:37;39832:10;39844:19;:9;1001:14;;909:114;39844:19;39827:37;;;-1:-1:-1;;;;;6660:32:1;;;6642:51;;6724:2;6709:18;;6702:34;;;;6615:18;39827:37:0;;;;;;;39878:21;:9;1120:19;;1138:1;1120:19;;;1031:127;39878:21;39751:3;;;;:::i;:::-;;;;39722:188;;;;39456:460;:::o;28408:155::-;28503:52;4385:10;28536:8;28546;28503:18;:52::i;29531:328::-;29706:41;4385:10;29739:7;29706:18;:41::i;:::-;29698:103;;;;-1:-1:-1;;;29698:103:0;;;;;;;:::i;:::-;29812:39;29826:4;29832:2;29836:7;29845:5;29812:13;:39::i;:::-;29531:328;;;;:::o;39925:286::-;40024:8;;39996:13;;40024:8;;:16;;:8;:16;40021:184;;;40087:16;40105:26;40122:8;40105:16;:26::i;:::-;40070:71;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40056:86;;39925:286;;;:::o;40021:184::-;40180:14;40173:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39925:286;;;:::o;40021:184::-;39925:286;;;:::o;6490:201::-;5654:6;;-1:-1:-1;;;;;5654:6:0;4385:10;5801:23;5793:68;;;;-1:-1:-1;;;5793:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6579:22:0;::::1;6571:73;;;::::0;-1:-1:-1;;;6571:73:0;;7784:2:1;6571:73:0::1;::::0;::::1;7766:21:1::0;7823:2;7803:18;;;7796:30;7862:34;7842:18;;;7835:62;-1:-1:-1;;;7913:18:1;;;7906:36;7959:19;;6571:73:0::1;7582:402:1::0;6571:73:0::1;6655:28;6674:8;6655:18;:28::i;1031:127::-:0;1120:19;;1138:1;1120:19;;;1031:127::o;909:114::-;1001:14;;909:114::o;35515:174::-;35590:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35590:29:0;-1:-1:-1;;;;;35590:29:0;;;;;;;;:24;;35644:23;35590:24;35644:14;:23::i;:::-;-1:-1:-1;;;;;35635:46:0;;;;;;;;;;;35515:174;;:::o;31663:348::-;31756:4;31458:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31458:16:0;31773:73;;;;-1:-1:-1;;;31773:73:0;;9713:2:1;31773:73:0;;;9695:21:1;9752:2;9732:18;;;9725:30;9791:34;9771:18;;;9764:62;-1:-1:-1;;;9842:18:1;;;9835:42;9894:19;;31773:73:0;9511:408:1;31773:73:0;31857:13;31873:23;31888:7;31873:14;:23::i;:::-;31857:39;;31926:5;-1:-1:-1;;;;;31915:16:0;:7;-1:-1:-1;;;;;31915:16:0;;:51;;;;31959:7;-1:-1:-1;;;;;31935:31:0;:20;31947:7;31935:11;:20::i;:::-;-1:-1:-1;;;;;31935:31:0;;31915:51;:87;;;-1:-1:-1;;;;;;28755:25:0;;;28731:4;28755:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31970:32;31907:96;31663:348;-1:-1:-1;;;;31663:348:0:o;34772:625::-;34931:4;-1:-1:-1;;;;;34904:31:0;:23;34919:7;34904:14;:23::i;:::-;-1:-1:-1;;;;;34904:31:0;;34896:81;;;;-1:-1:-1;;;34896:81:0;;8191:2:1;34896:81:0;;;8173:21:1;8230:2;8210:18;;;8203:30;8269:34;8249:18;;;8242:62;-1:-1:-1;;;8320:18:1;;;8313:35;8365:19;;34896:81:0;7989:401:1;34896:81:0;-1:-1:-1;;;;;34996:16:0;;34988:65;;;;-1:-1:-1;;;34988:65:0;;8954:2:1;34988:65:0;;;8936:21:1;8993:2;8973:18;;;8966:30;9032:34;9012:18;;;9005:62;-1:-1:-1;;;9083:18:1;;;9076:34;9127:19;;34988:65:0;8752:400:1;34988:65:0;35170:29;35187:1;35191:7;35170:8;:29::i;:::-;-1:-1:-1;;;;;35212:15:0;;;;;;:9;:15;;;;;:20;;35231:1;;35212:15;:20;;35231:1;;35212:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35243:13:0;;;;;;:9;:13;;;;;:18;;35260:1;;35243:13;:18;;35260:1;;35243:18;:::i;:::-;;;;-1:-1:-1;;35272:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35272:21:0;-1:-1:-1;;;;;35272:21:0;;;;;;;;;35311:27;;35272:16;;35311:27;;;;;;;27708:341;27638:411;;:::o;6851:191::-;6944:6;;;-1:-1:-1;;;;;6961:17:0;;;-1:-1:-1;;;;;;6961:17:0;;;;;;;6994:40;;6944:6;;;6961:17;6944:6;;6994:40;;6925:16;;6994:40;6914:128;6851:191;:::o;33347:439::-;-1:-1:-1;;;;;33427:16:0;;33419:61;;;;-1:-1:-1;;;33419:61:0;;11716:2:1;33419:61:0;;;11698:21:1;;;11735:18;;;11728:30;11794:34;11774:18;;;11767:62;11846:18;;33419:61:0;11514:356:1;33419:61:0;31434:4;31458:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31458:16:0;:30;33491:58;;;;-1:-1:-1;;;33491:58:0;;8597:2:1;33491:58:0;;;8579:21:1;8636:2;8616:18;;;8609:30;8675;8655:18;;;8648:58;8723:18;;33491:58:0;8395:352:1;33491:58:0;-1:-1:-1;;;;;33620:13:0;;;;;;:9;:13;;;;;:18;;33637:1;;33620:13;:18;;33637:1;;33620:18;:::i;:::-;;;;-1:-1:-1;;33649:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33649:21:0;-1:-1:-1;;;;;33649:21:0;;;;;;;;33688:33;;33649:16;;;33688:33;;33649:16;;33688:33;39722:188;39456:460;:::o;35831:315::-;35986:8;-1:-1:-1;;;;;35977:17:0;:5;-1:-1:-1;;;;;35977:17:0;;;35969:55;;;;-1:-1:-1;;;35969:55:0;;9359:2:1;35969:55:0;;;9341:21:1;9398:2;9378:18;;;9371:30;9437:27;9417:18;;;9410:55;9482:18;;35969:55:0;9157:349:1;35969:55:0;-1:-1:-1;;;;;36035:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36035:46:0;;;;;;;;;;36097:41;;6887::1;;;36097::0;;6860:18:1;36097:41:0;;;;;;;35831:315;;;:::o;30741:::-;30898:28;30908:4;30914:2;30918:7;30898:9;:28::i;:::-;30945:48;30968:4;30974:2;30978:7;30987:5;30945:22;:48::i;:::-;30937:111;;;;-1:-1:-1;;;30937:111:0;;;;;;;:::i;1867:723::-;1923:13;2144:10;2140:53;;-1:-1:-1;;2171:10:0;;;;;;;;;;;;-1:-1:-1;;;2171:10:0;;;;;1867:723::o;2140:53::-;2218:5;2203:12;2259:78;2266:9;;2259:78;;2292:8;;;;:::i;:::-;;-1:-1:-1;2315:10:0;;-1:-1:-1;2323:2:0;2315:10;;:::i;:::-;;;2259:78;;;2347:19;2379:6;2369:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2369:17:0;;2347:39;;2397:154;2404:10;;2397:154;;2431:11;2441:1;2431:11;;:::i;:::-;;-1:-1:-1;2500:10:0;2508:2;2500:5;:10;:::i;:::-;2487:24;;:2;:24;:::i;:::-;2474:39;;2457:6;2464;2457:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2457:56:0;;;;;;;;-1:-1:-1;2528:11:0;2537:2;2528:11;;:::i;:::-;;;2397:154;;36711:799;36866:4;-1:-1:-1;;;;;36887:13:0;;8577:19;:23;36883:620;;36923:72;;-1:-1:-1;;;36923:72:0;;-1:-1:-1;;;;;36923:36:0;;;;;:72;;4385:10;;36974:4;;36980:7;;36989:5;;36923:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36923:72:0;;;;;;;;-1:-1:-1;;36923:72:0;;;;;;;;;;;;:::i;:::-;;;36919:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37165:13:0;;37161:272;;37208:60;;-1:-1:-1;;;37208:60:0;;;;;;;:::i;37161:272::-;37383:6;37377:13;37368:6;37364:2;37360:15;37353:38;36919:529;-1:-1:-1;;;;;;37046:51:0;-1:-1:-1;;;37046:51:0;;-1:-1:-1;37039:58:0;;36883:620;-1:-1:-1;37487:4:0;36711:799;;;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:160;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;:::-;498:39;357:186;-1:-1:-1;;;357:186:1:o;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:180::-;2863:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:52;;;2932:1;2929;2922:12;2884:52;2955:26;2971:9;2955:26;:::i;2992:245::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3158:9;3145:23;3177:30;3201:5;3177:30;:::i;3242:249::-;3311:6;3364:2;3352:9;3343:7;3339:23;3335:32;3332:52;;;3380:1;3377;3370:12;3332:52;3412:9;3406:16;3431:30;3455:5;3431:30;:::i;3496:180::-;3555:6;3608:2;3596:9;3587:7;3583:23;3579:32;3576:52;;;3624:1;3621;3614:12;3576:52;-1:-1:-1;3647:23:1;;3496:180;-1:-1:-1;3496:180:1:o;3681:257::-;3722:3;3760:5;3754:12;3787:6;3782:3;3775:19;3803:63;3859:6;3852:4;3847:3;3843:14;3836:4;3829:5;3825:16;3803:63;:::i;:::-;3920:2;3899:15;-1:-1:-1;;3895:29:1;3886:39;;;;3927:4;3882:50;;3681:257;-1:-1:-1;;3681:257:1:o;3943:185::-;3985:3;4023:5;4017:12;4038:52;4083:6;4078:3;4071:4;4064:5;4060:16;4038:52;:::i;:::-;4106:16;;;;;3943:185;-1:-1:-1;;3943:185:1:o;4251:1301::-;4528:3;4557:1;4590:6;4584:13;4620:3;4642:1;4670:9;4666:2;4662:18;4652:28;;4730:2;4719:9;4715:18;4752;4742:61;;4796:4;4788:6;4784:17;4774:27;;4742:61;4822:2;4870;4862:6;4859:14;4839:18;4836:38;4833:165;;;-1:-1:-1;;;4897:33:1;;4953:4;4950:1;4943:15;4983:4;4904:3;4971:17;4833:165;5014:18;5041:104;;;;5159:1;5154:320;;;;5007:467;;5041:104;-1:-1:-1;;5074:24:1;;5062:37;;5119:16;;;;-1:-1:-1;5041:104:1;;5154:320;14068:1;14061:14;;;14105:4;14092:18;;5249:1;5263:165;5277:6;5274:1;5271:13;5263:165;;;5355:14;;5342:11;;;5335:35;5398:16;;;;5292:10;;5263:165;;;5267:3;;5457:6;5452:3;5448:16;5441:23;;5007:467;;;;;;;5490:56;5515:30;5541:3;5533:6;5515:30;:::i;:::-;-1:-1:-1;;;4193:20:1;;4238:1;4229:11;;4133:113;5490:56;5483:63;4251:1301;-1:-1:-1;;;;;4251:1301:1:o;5975:488::-;-1:-1:-1;;;;;6244:15:1;;;6226:34;;6296:15;;6291:2;6276:18;;6269:43;6343:2;6328:18;;6321:34;;;6391:3;6386:2;6371:18;;6364:31;;;6169:4;;6412:45;;6437:19;;6429:6;6412:45;:::i;:::-;6404:53;5975:488;-1:-1:-1;;;;;;5975:488:1:o;6939:219::-;7088:2;7077:9;7070:21;7051:4;7108:44;7148:2;7137:9;7133:18;7125:6;7108:44;:::i;7163:414::-;7365:2;7347:21;;;7404:2;7384:18;;;7377:30;7443:34;7438:2;7423:18;;7416:62;-1:-1:-1;;;7509:2:1;7494:18;;7487:48;7567:3;7552:19;;7163:414::o;12288:356::-;12490:2;12472:21;;;12509:18;;;12502:30;12568:34;12563:2;12548:18;;12541:62;12635:2;12620:18;;12288:356::o;13395:413::-;13597:2;13579:21;;;13636:2;13616:18;;;13609:30;13675:34;13670:2;13655:18;;13648:62;-1:-1:-1;;;13741:2:1;13726:18;;13719:47;13798:3;13783:19;;13395:413::o;14121:128::-;14161:3;14192:1;14188:6;14185:1;14182:13;14179:39;;;14198:18;;:::i;:::-;-1:-1:-1;14234:9:1;;14121:128::o;14254:120::-;14294:1;14320;14310:35;;14325:18;;:::i;:::-;-1:-1:-1;14359:9:1;;14254:120::o;14379:125::-;14419:4;14447:1;14444;14441:8;14438:34;;;14452:18;;:::i;:::-;-1:-1:-1;14489:9:1;;14379:125::o;14509:258::-;14581:1;14591:113;14605:6;14602:1;14599:13;14591:113;;;14681:11;;;14675:18;14662:11;;;14655:39;14627:2;14620:10;14591:113;;;14722:6;14719:1;14716:13;14713:48;;;-1:-1:-1;;14757:1:1;14739:16;;14732:27;14509:258::o;14772:380::-;14851:1;14847:12;;;;14894;;;14915:61;;14969:4;14961:6;14957:17;14947:27;;14915:61;15022:2;15014:6;15011:14;14991:18;14988:38;14985:161;;;15068:10;15063:3;15059:20;15056:1;15049:31;15103:4;15100:1;15093:15;15131:4;15128:1;15121:15;14985:161;;14772:380;;;:::o;15157:135::-;15196:3;-1:-1:-1;;15217:17:1;;15214:43;;;15237:18;;:::i;:::-;-1:-1:-1;15284:1:1;15273:13;;15157:135::o;15297:112::-;15329:1;15355;15345:35;;15360:18;;:::i;:::-;-1:-1:-1;15394:9:1;;15297:112::o;15414:127::-;15475:10;15470:3;15466:20;15463:1;15456:31;15506:4;15503:1;15496:15;15530:4;15527:1;15520:15;15546:127;15607:10;15602:3;15598:20;15595:1;15588:31;15638:4;15635:1;15628:15;15662:4;15659:1;15652:15;15678:127;15739:10;15734:3;15730:20;15727:1;15720:31;15770:4;15767:1;15760:15;15794:4;15791:1;15784:15;15810:127;15871:10;15866:3;15862:20;15859:1;15852:31;15902:4;15899:1;15892:15;15926:4;15923:1;15916:15;15942:131;-1:-1:-1;;;;;;16016:32:1;;16006:43;;15996:71;;16063:1;16060;16053:12

Swarm Source

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