ETH Price: $3,486.50 (+0.72%)
Gas: 5 Gwei

Token

Ultra Rare (TAMA)
 

Overview

Max Total Supply

100 TAMA

Holders

91

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

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:
Tamadodge

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 5000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-08
*/

// Sources flattened with hardhat v2.11.2 https://hardhat.org

// File contracts/common/meta-transactions/ContentMixin.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}


// File contracts/common/meta-transactions/Initializable.sol





contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}


// File contracts/common/meta-transactions/EIP712Base.sol





contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}


// File @openzeppelin/contracts/utils/math/[email protected]


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)



// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/common/meta-transactions/NativeMetaTransaction.sol






contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}


// File @openzeppelin/contracts/utils/[email protected]


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



/**
 * @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/[email protected]


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



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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



/**
 * @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/token/ERC721/[email protected]


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



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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



/**
 * @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/extensions/[email protected]


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



/**
 * @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/[email protected]


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









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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



/**
 * @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 contracts/opensea/ERC721Tradable.sol










contract OwnableDelegateProxy {}

/**
 * Used to delegate ownership of a contract to another address, to save on unneeded transactions to approve contract use for users
 */
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
abstract contract ERC721Tradable is ERC721, ContextMixin, NativeMetaTransaction, Ownable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _nextTokenId;
    address proxyRegistryAddress;

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        // nextTokenId is initialized to 1, since starting at 0 leads to higher gas cost for the first minter
        _nextTokenId.increment();
        _initializeEIP712(_name);
    }

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public onlyOwner {
        uint256 currentTokenId = _nextTokenId.current();
        _nextTokenId.increment();
        _safeMint(_to, currentTokenId);
    }

    /**
        @dev Returns the total tokens minted so far.
        1 is always subtracted from the Counter since it tracks the next available tokenId.
     */
    function totalSupply() public view returns (uint256) {
        return _nextTokenId.current() - 1;
    }

    function baseTokenURI() virtual public pure returns (string memory);

    function tokenURI(uint256 _tokenId) override public pure returns (string memory) {
        return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId)));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
    
}


// File contracts/interfaces/nfts/ITamadodge.sol




/// @title ITamadodgeNFT
/// @author hoowsit
/// @notice Contains all functions to be inherited by any client that use the contract
/// @dev WIP
interface ITamadodge {
    /*==========================================================Modifiers Varibales definition start==========================================================*/
    /*==========================================================Events definition start==========================================================*/
    /*==========================================================Functions definition start==========================================================*/
}


// File contracts/nfts/Tamadodge.sol






/// @title TamadogeNFT
/// @author hoowsit
/// @notice NFT contract for all tamadogeNFTs
/// @dev WIP

contract Tamadodge is ERC721Tradable, ITamadodge {
    /*==========================================================Modifiers Varibales definition start==========================================================*/
    /*==========================================================Events definition start==========================================================*/
    /*==========================================================Variables definition start==========================================================*/
    /*==========================================================Functions definition start==========================================================*/
    constructor(address _proxyRegistryAddress)
        ERC721Tradable("Ultra Rare", "TAMA", _proxyRegistryAddress)
    {}

    function baseTokenURI() public pure override returns (string memory) {
        return "https://s3.eu-west-2.amazonaws.com/nft.tamadoge.io/creature/";
    }

    function contractURI() public pure returns (string memory) {
        return "https://s3.eu-west-2.amazonaws.com/nft.tamadoge.io/contract/opensea-creatures/";
    }
   
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"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":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526006805460ff191690553480156200001b57600080fd5b50604051620026f3380380620026f38339810160408190526200003e9162000380565b6040518060400160405280600a815260200169556c747261205261726560b01b8152506040518060400160405280600481526020016354414d4160e01b815250828282816000908051906020019062000099929190620002da565b508051620000af906001906020840190620002da565b505050620000cc620000c66200011460201b60201c565b62000131565b600b80546001600160a01b0319166001600160a01b038316179055620000ff600a62000183602090811b62000b7f17901c565b6200010a836200018c565b5050505062000441565b60006200012b620001d660201b62000b881760201c565b90505b90565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b60065460ff1615620001bb5760405162461bcd60e51b8152600401620001b290620003dc565b60405180910390fd5b620001c68162000234565b506006805460ff19166001179055565b6000333014156200022f57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200012e9050565b503390565b6040518060800160405280604f8152602001620026a4604f913980516020918201208251838301206040805180820190915260018152603160f81b930192909252907fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc630620002a2620002d6565b604051620002b8959493929190602001620003b0565b60408051601f19818403018152919052805160209091012060075550565b4690565b828054620002e89062000404565b90600052602060002090601f0160209004810192826200030c576000855562000357565b82601f106200032757805160ff191683800117855562000357565b8280016001018555821562000357579182015b82811115620003575782518255916020019190600101906200033a565b506200036592915062000369565b5090565b5b808211156200036557600081556001016200036a565b60006020828403121562000392578081fd5b81516001600160a01b0381168114620003a9578182fd5b9392505050565b948552602085019390935260408401919091526001600160a01b03166060830152608082015260a00190565b6020808252600e908201526d185b1c9958591e481a5b9a5d195960921b604082015260600190565b6002810460018216806200041957607f821691505b602082108114156200043b57634e487b7160e01b600052602260045260246000fd5b50919050565b61225380620004516000396000f3fe6080604052600436106101965760003560e01c80636352211e116100e1578063a22cb4651161008a578063d547cfb711610064578063d547cfb714610415578063e8a3d4851461042a578063e985e9c51461043f578063f2fde38b1461045f57610196565b8063a22cb465146103b5578063b88d4fde146103d5578063c87b56dd146103f557610196565b8063755edd17116100bb578063755edd171461036b5780638da5cb5b1461038b57806395d89b41146103a057610196565b80636352211e1461031657806370a0823114610336578063715018a61461035657610196565b806318160ddd116101435780632d0335ab1161011d5780632d0335ab146102c15780633408e470146102e157806342842e0e146102f657610196565b806318160ddd1461026a57806320379ee51461028c57806323b872dd146102a157610196565b8063095ea7b311610174578063095ea7b3146102205780630c53c51c146102425780630f7e59701461025557610196565b806301ffc9a71461019b57806306fdde03146101d1578063081812fc146101f3575b600080fd5b3480156101a757600080fd5b506101bb6101b6366004611837565b61047f565b6040516101c89190611a1f565b60405180910390f35b3480156101dd57600080fd5b506101e6610529565b6040516101c89190611a75565b3480156101ff57600080fd5b5061021361020e36600461188b565b6105bc565b6040516101c8919061199a565b34801561022c57600080fd5b5061024061023b36600461180c565b6105e3565b005b6101e6610250366004611791565b610684565b34801561026157600080fd5b506101e6610804565b34801561027657600080fd5b5061027f61083d565b6040516101c89190611a2a565b34801561029857600080fd5b5061027f61085a565b3480156102ad57600080fd5b506102406102bc3660046116b6565b610860565b3480156102cd57600080fd5b5061027f6102dc366004611662565b610898565b3480156102ed57600080fd5b5061027f6108b3565b34801561030257600080fd5b506102406103113660046116b6565b6108b7565b34801561032257600080fd5b5061021361033136600461188b565b6108d2565b34801561034257600080fd5b5061027f610351366004611662565b610907565b34801561036257600080fd5b5061024061094b565b34801561037757600080fd5b50610240610386366004611662565b61095f565b34801561039757600080fd5b5061021361098d565b3480156103ac57600080fd5b506101e661099c565b3480156103c157600080fd5b506102406103d0366004611760565b6109ab565b3480156103e157600080fd5b506102406103f03660046116f6565b6109bd565b34801561040157600080fd5b506101e661041036600461188b565b6109fc565b34801561042157600080fd5b506101e6610a36565b34801561043657600080fd5b506101e6610a56565b34801561044b57600080fd5b506101bb61045a36600461167e565b610a76565b34801561046b57600080fd5b5061024061047a366004611662565b610b45565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061051257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610521575061052182610be4565b90505b919050565b60606000805461053890611fdf565b80601f016020809104026020016040519081016040528092919081815260200182805461056490611fdf565b80156105b15780601f10610586576101008083540402835291602001916105b1565b820191906000526020600020905b81548152906001019060200180831161059457829003601f168201915b505050505090505b90565b60006105c782610c2e565b506000908152600460205260409020546001600160a01b031690565b60006105ee826108d2565b9050806001600160a01b0316836001600160a01b0316141561062b5760405162461bcd60e51b815260040161062290611eb6565b60405180910390fd5b806001600160a01b031661063d610c53565b6001600160a01b0316148061065957506106598161045a610c53565b6106755760405162461bcd60e51b815260040161062290611d5b565b61067f8383610c5d565b505050565b60408051606081810183526001600160a01b038816600081815260086020908152908590205484528301529181018690526106c28782878787610ce3565b6106de5760405162461bcd60e51b815260040161062290611e22565b6001600160a01b038716600090815260086020526040902054610702906001610d89565b6001600160a01b0388166000908152600860205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061075290899033908a906119ae565b60405180910390a1600080306001600160a01b0316888a60405160200161077a9291906118eb565b60408051601f1981840301815290829052610794916118cf565b6000604051808303816000865af19150503d80600081146107d1576040519150601f19603f3d011682016040523d82523d6000602084013e6107d6565b606091505b5091509150816107f85760405162461bcd60e51b815260040161062290611b42565b98975050505050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b6000600161084b600a610d9c565b6108559190611f9c565b905090565b60075490565b61087161086b610c53565b82610da0565b61088d5760405162461bcd60e51b815260040161062290611f13565b61067f838383610dfe565b6001600160a01b031660009081526008602052604090205490565b4690565b61067f838383604051806020016040528060008152506109bd565b6000818152600260205260408120546001600160a01b0316806105215760405162461bcd60e51b815260040161062290611e7f565b60006001600160a01b03821661092f5760405162461bcd60e51b815260040161062290611cfe565b506001600160a01b031660009081526003602052604090205490565b610953610f49565b61095d6000610f88565b565b610967610f49565b6000610973600a610d9c565b905061097f600a610b7f565b6109898282610ff2565b5050565b6009546001600160a01b031690565b60606001805461053890611fdf565b6109896109b6610c53565b838361100c565b6109ce6109c8610c53565b83610da0565b6109ea5760405162461bcd60e51b815260040161062290611f13565b6109f6848484846110cd565b50505050565b6060610a06610a36565b610a0f83611100565b604051602001610a20929190611935565b6040516020818303038152906040529050919050565b60606040518060600160405280603c8152602001612194603c9139905090565b60606040518060800160405280604e81526020016121d0604e9139905090565b600b546040517fc45527910000000000000000000000000000000000000000000000000000000081526000916001600160a01b039081169190841690829063c455279190610ac890889060040161199a565b60206040518083038186803b158015610ae057600080fd5b505afa158015610af4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b18919061186f565b6001600160a01b03161415610b31576001915050610b3f565b610b3b8484611289565b9150505b92915050565b610b4d610f49565b6001600160a01b038116610b735760405162461bcd60e51b815260040161062290611ae5565b610b7c81610f88565b50565b80546001019055565b600033301415610bdf57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506105b99050565b503390565b7fffffffff0000000000000000000000000000000000000000000000000000000081167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b610c37816112b7565b610b7c5760405162461bcd60e51b815260040161062290611e7f565b6000610855610b88565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190610caa826108d2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616610d0b5760405162461bcd60e51b815260040161062290611ca1565b6001610d1e610d19876112d4565b611332565b83868660405160008152602001604052604051610d3e9493929190611a57565b6020604051602081039080840390855afa158015610d60573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000610d958284611f70565b9392505050565b5490565b600080610dac836108d2565b9050806001600160a01b0316846001600160a01b03161480610dd35750610dd38185610a76565b80610b3b5750836001600160a01b0316610dec846105bc565b6001600160a01b031614949350505050565b826001600160a01b0316610e11826108d2565b6001600160a01b031614610e375760405162461bcd60e51b815260040161062290611b79565b6001600160a01b038216610e5d5760405162461bcd60e51b815260040161062290611c0d565b610e6883838361067f565b610e73600082610c5d565b6001600160a01b0383166000908152600360205260408120805460019290610e9c908490611f9c565b90915550506001600160a01b0382166000908152600360205260408120805460019290610eca908490611f70565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a461067f83838361067f565b610f51610c53565b6001600160a01b0316610f6261098d565b6001600160a01b03161461095d5760405162461bcd60e51b815260040161062290611ded565b600980546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61098982826040518060200160405280600081525061134e565b816001600160a01b0316836001600160a01b0316141561103e5760405162461bcd60e51b815260040161062290611c6a565b6001600160a01b038381166000818152600560209081526040808320948716808452949091529081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906110c0908590611a1f565b60405180910390a3505050565b6110d8848484610dfe565b6110e484848484611381565b6109f65760405162461bcd60e51b815260040161062290611a88565b606081611141575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610524565b8160005b811561116b578061115581612033565b91506111649050600a83611f88565b9150611145565b60008167ffffffffffffffff8111156111ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156111d7576020820181803683370190505b5090505b8415611281576111ec600183611f9c565b91506111f9600a8661206c565b611204906030611f70565b60f81b818381518110611240577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061127a600a86611f88565b94506111db565b949350505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000908152600260205260409020546001600160a01b0316151590565b600060405180608001604052806043815260200161215160439139805160209182012083518483015160408087015180519086012090516113159501611a33565b604051602081830303815290604052805190602001209050919050565b600061133c61085a565b82604051602001611315929190611964565b61135883836114cd565b6113656000848484611381565b61067f5760405162461bcd60e51b815260040161062290611a88565b6000611395846001600160a01b03166115cc565b156114c257836001600160a01b031663150b7a026113b1610c53565b8786866040518563ffffffff1660e01b81526004016113d394939291906119e3565b602060405180830381600087803b1580156113ed57600080fd5b505af192505050801561141d575060408051601f3d908101601f1916820190925261141a91810190611853565b60015b611477573d80801561144b576040519150601f19603f3d011682016040523d82523d6000602084013e611450565b606091505b50805161146f5760405162461bcd60e51b815260040161062290611a88565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611281565b506001949350505050565b6001600160a01b0382166114f35760405162461bcd60e51b815260040161062290611db8565b6114fc816112b7565b156115195760405162461bcd60e51b815260040161062290611bd6565b6115256000838361067f565b6001600160a01b038216600090815260036020526040812080546001929061154e908490611f70565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46109896000838361067f565b6001600160a01b03163b151590565b600082601f8301126115eb578081fd5b813567ffffffffffffffff80821115611606576116066120de565b604051601f8301601f19908116603f0116810190828211818310171561162e5761162e6120de565b81604052838152866020858801011115611646578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215611673578081fd5b8135610d958161210d565b60008060408385031215611690578081fd5b823561169b8161210d565b915060208301356116ab8161210d565b809150509250929050565b6000806000606084860312156116ca578081fd5b83356116d58161210d565b925060208401356116e58161210d565b929592945050506040919091013590565b6000806000806080858703121561170b578081fd5b84356117168161210d565b935060208501356117268161210d565b925060408501359150606085013567ffffffffffffffff811115611748578182fd5b611754878288016115db565b91505092959194509250565b60008060408385031215611772578182fd5b823561177d8161210d565b9150602083013580151581146116ab578182fd5b600080600080600060a086880312156117a8578081fd5b85356117b38161210d565b9450602086013567ffffffffffffffff8111156117ce578182fd5b6117da888289016115db565b9450506040860135925060608601359150608086013560ff811681146117fe578182fd5b809150509295509295909350565b6000806040838503121561181e578182fd5b82356118298161210d565b946020939093013593505050565b600060208284031215611848578081fd5b8135610d9581612122565b600060208284031215611864578081fd5b8151610d9581612122565b600060208284031215611880578081fd5b8151610d958161210d565b60006020828403121561189c578081fd5b5035919050565b600081518084526118bb816020860160208601611fb3565b601f01601f19169290920160200192915050565b600082516118e1818460208701611fb3565b9190910192915050565b600083516118fd818460208801611fb3565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b60008351611947818460208801611fb3565b83519083019061195b818360208801611fb3565b01949350505050565b7f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b60006001600160a01b038086168352808516602084015250606060408301526119da60608301846118a3565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611a1560808301846118a3565b9695505050505050565b901515815260200190565b90815260200190565b93845260208401929092526001600160a01b03166040830152606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b600060208252610d9560208301846118a3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604082015260600190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201527f6f776e6572000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526025908201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360408201527f49474e4552000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160408201527f6c6964206f776e65720000000000000000000000000000000000000000000000606082015260800190565b6020808252603e908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60408201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360408201527f6800000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201527f72206e6f7220617070726f766564000000000000000000000000000000000000606082015260800190565b60008219821115611f8357611f83612080565b500190565b600082611f9757611f976120af565b500490565b600082821015611fae57611fae612080565b500390565b60005b83811015611fce578181015183820152602001611fb6565b838111156109f65750506000910152565b600281046001821680611ff357607f821691505b6020821081141561202d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561206557612065612080565b5060010190565b60008261207b5761207b6120af565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6001600160a01b0381168114610b7c57600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610b7c57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f73332e65752d776573742d322e616d617a6f6e6177732e636f6d2f6e66742e74616d61646f67652e696f2f63726561747572652f68747470733a2f2f73332e65752d776573742d322e616d617a6f6e6177732e636f6d2f6e66742e74616d61646f67652e696f2f636f6e74726163742f6f70656e7365612d6372656174757265732fa2646970667358221220c64216eb227efa7cbf73b320a531316ad89a4ce9740cd6686a9615a8b57c7cb564736f6c63430008010033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x6080604052600436106101965760003560e01c80636352211e116100e1578063a22cb4651161008a578063d547cfb711610064578063d547cfb714610415578063e8a3d4851461042a578063e985e9c51461043f578063f2fde38b1461045f57610196565b8063a22cb465146103b5578063b88d4fde146103d5578063c87b56dd146103f557610196565b8063755edd17116100bb578063755edd171461036b5780638da5cb5b1461038b57806395d89b41146103a057610196565b80636352211e1461031657806370a0823114610336578063715018a61461035657610196565b806318160ddd116101435780632d0335ab1161011d5780632d0335ab146102c15780633408e470146102e157806342842e0e146102f657610196565b806318160ddd1461026a57806320379ee51461028c57806323b872dd146102a157610196565b8063095ea7b311610174578063095ea7b3146102205780630c53c51c146102425780630f7e59701461025557610196565b806301ffc9a71461019b57806306fdde03146101d1578063081812fc146101f3575b600080fd5b3480156101a757600080fd5b506101bb6101b6366004611837565b61047f565b6040516101c89190611a1f565b60405180910390f35b3480156101dd57600080fd5b506101e6610529565b6040516101c89190611a75565b3480156101ff57600080fd5b5061021361020e36600461188b565b6105bc565b6040516101c8919061199a565b34801561022c57600080fd5b5061024061023b36600461180c565b6105e3565b005b6101e6610250366004611791565b610684565b34801561026157600080fd5b506101e6610804565b34801561027657600080fd5b5061027f61083d565b6040516101c89190611a2a565b34801561029857600080fd5b5061027f61085a565b3480156102ad57600080fd5b506102406102bc3660046116b6565b610860565b3480156102cd57600080fd5b5061027f6102dc366004611662565b610898565b3480156102ed57600080fd5b5061027f6108b3565b34801561030257600080fd5b506102406103113660046116b6565b6108b7565b34801561032257600080fd5b5061021361033136600461188b565b6108d2565b34801561034257600080fd5b5061027f610351366004611662565b610907565b34801561036257600080fd5b5061024061094b565b34801561037757600080fd5b50610240610386366004611662565b61095f565b34801561039757600080fd5b5061021361098d565b3480156103ac57600080fd5b506101e661099c565b3480156103c157600080fd5b506102406103d0366004611760565b6109ab565b3480156103e157600080fd5b506102406103f03660046116f6565b6109bd565b34801561040157600080fd5b506101e661041036600461188b565b6109fc565b34801561042157600080fd5b506101e6610a36565b34801561043657600080fd5b506101e6610a56565b34801561044b57600080fd5b506101bb61045a36600461167e565b610a76565b34801561046b57600080fd5b5061024061047a366004611662565b610b45565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061051257507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610521575061052182610be4565b90505b919050565b60606000805461053890611fdf565b80601f016020809104026020016040519081016040528092919081815260200182805461056490611fdf565b80156105b15780601f10610586576101008083540402835291602001916105b1565b820191906000526020600020905b81548152906001019060200180831161059457829003601f168201915b505050505090505b90565b60006105c782610c2e565b506000908152600460205260409020546001600160a01b031690565b60006105ee826108d2565b9050806001600160a01b0316836001600160a01b0316141561062b5760405162461bcd60e51b815260040161062290611eb6565b60405180910390fd5b806001600160a01b031661063d610c53565b6001600160a01b0316148061065957506106598161045a610c53565b6106755760405162461bcd60e51b815260040161062290611d5b565b61067f8383610c5d565b505050565b60408051606081810183526001600160a01b038816600081815260086020908152908590205484528301529181018690526106c28782878787610ce3565b6106de5760405162461bcd60e51b815260040161062290611e22565b6001600160a01b038716600090815260086020526040902054610702906001610d89565b6001600160a01b0388166000908152600860205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b9061075290899033908a906119ae565b60405180910390a1600080306001600160a01b0316888a60405160200161077a9291906118eb565b60408051601f1981840301815290829052610794916118cf565b6000604051808303816000865af19150503d80600081146107d1576040519150601f19603f3d011682016040523d82523d6000602084013e6107d6565b606091505b5091509150816107f85760405162461bcd60e51b815260040161062290611b42565b98975050505050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b6000600161084b600a610d9c565b6108559190611f9c565b905090565b60075490565b61087161086b610c53565b82610da0565b61088d5760405162461bcd60e51b815260040161062290611f13565b61067f838383610dfe565b6001600160a01b031660009081526008602052604090205490565b4690565b61067f838383604051806020016040528060008152506109bd565b6000818152600260205260408120546001600160a01b0316806105215760405162461bcd60e51b815260040161062290611e7f565b60006001600160a01b03821661092f5760405162461bcd60e51b815260040161062290611cfe565b506001600160a01b031660009081526003602052604090205490565b610953610f49565b61095d6000610f88565b565b610967610f49565b6000610973600a610d9c565b905061097f600a610b7f565b6109898282610ff2565b5050565b6009546001600160a01b031690565b60606001805461053890611fdf565b6109896109b6610c53565b838361100c565b6109ce6109c8610c53565b83610da0565b6109ea5760405162461bcd60e51b815260040161062290611f13565b6109f6848484846110cd565b50505050565b6060610a06610a36565b610a0f83611100565b604051602001610a20929190611935565b6040516020818303038152906040529050919050565b60606040518060600160405280603c8152602001612194603c9139905090565b60606040518060800160405280604e81526020016121d0604e9139905090565b600b546040517fc45527910000000000000000000000000000000000000000000000000000000081526000916001600160a01b039081169190841690829063c455279190610ac890889060040161199a565b60206040518083038186803b158015610ae057600080fd5b505afa158015610af4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b18919061186f565b6001600160a01b03161415610b31576001915050610b3f565b610b3b8484611289565b9150505b92915050565b610b4d610f49565b6001600160a01b038116610b735760405162461bcd60e51b815260040161062290611ae5565b610b7c81610f88565b50565b80546001019055565b600033301415610bdf57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506105b99050565b503390565b7fffffffff0000000000000000000000000000000000000000000000000000000081167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b610c37816112b7565b610b7c5760405162461bcd60e51b815260040161062290611e7f565b6000610855610b88565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190610caa826108d2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b038616610d0b5760405162461bcd60e51b815260040161062290611ca1565b6001610d1e610d19876112d4565b611332565b83868660405160008152602001604052604051610d3e9493929190611a57565b6020604051602081039080840390855afa158015610d60573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000610d958284611f70565b9392505050565b5490565b600080610dac836108d2565b9050806001600160a01b0316846001600160a01b03161480610dd35750610dd38185610a76565b80610b3b5750836001600160a01b0316610dec846105bc565b6001600160a01b031614949350505050565b826001600160a01b0316610e11826108d2565b6001600160a01b031614610e375760405162461bcd60e51b815260040161062290611b79565b6001600160a01b038216610e5d5760405162461bcd60e51b815260040161062290611c0d565b610e6883838361067f565b610e73600082610c5d565b6001600160a01b0383166000908152600360205260408120805460019290610e9c908490611f9c565b90915550506001600160a01b0382166000908152600360205260408120805460019290610eca908490611f70565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a461067f83838361067f565b610f51610c53565b6001600160a01b0316610f6261098d565b6001600160a01b03161461095d5760405162461bcd60e51b815260040161062290611ded565b600980546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61098982826040518060200160405280600081525061134e565b816001600160a01b0316836001600160a01b0316141561103e5760405162461bcd60e51b815260040161062290611c6a565b6001600160a01b038381166000818152600560209081526040808320948716808452949091529081902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906110c0908590611a1f565b60405180910390a3505050565b6110d8848484610dfe565b6110e484848484611381565b6109f65760405162461bcd60e51b815260040161062290611a88565b606081611141575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610524565b8160005b811561116b578061115581612033565b91506111649050600a83611f88565b9150611145565b60008167ffffffffffffffff8111156111ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156111d7576020820181803683370190505b5090505b8415611281576111ec600183611f9c565b91506111f9600a8661206c565b611204906030611f70565b60f81b818381518110611240577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061127a600a86611f88565b94506111db565b949350505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000908152600260205260409020546001600160a01b0316151590565b600060405180608001604052806043815260200161215160439139805160209182012083518483015160408087015180519086012090516113159501611a33565b604051602081830303815290604052805190602001209050919050565b600061133c61085a565b82604051602001611315929190611964565b61135883836114cd565b6113656000848484611381565b61067f5760405162461bcd60e51b815260040161062290611a88565b6000611395846001600160a01b03166115cc565b156114c257836001600160a01b031663150b7a026113b1610c53565b8786866040518563ffffffff1660e01b81526004016113d394939291906119e3565b602060405180830381600087803b1580156113ed57600080fd5b505af192505050801561141d575060408051601f3d908101601f1916820190925261141a91810190611853565b60015b611477573d80801561144b576040519150601f19603f3d011682016040523d82523d6000602084013e611450565b606091505b50805161146f5760405162461bcd60e51b815260040161062290611a88565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611281565b506001949350505050565b6001600160a01b0382166114f35760405162461bcd60e51b815260040161062290611db8565b6114fc816112b7565b156115195760405162461bcd60e51b815260040161062290611bd6565b6115256000838361067f565b6001600160a01b038216600090815260036020526040812080546001929061154e908490611f70565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46109896000838361067f565b6001600160a01b03163b151590565b600082601f8301126115eb578081fd5b813567ffffffffffffffff80821115611606576116066120de565b604051601f8301601f19908116603f0116810190828211818310171561162e5761162e6120de565b81604052838152866020858801011115611646578485fd5b8360208701602083013792830160200193909352509392505050565b600060208284031215611673578081fd5b8135610d958161210d565b60008060408385031215611690578081fd5b823561169b8161210d565b915060208301356116ab8161210d565b809150509250929050565b6000806000606084860312156116ca578081fd5b83356116d58161210d565b925060208401356116e58161210d565b929592945050506040919091013590565b6000806000806080858703121561170b578081fd5b84356117168161210d565b935060208501356117268161210d565b925060408501359150606085013567ffffffffffffffff811115611748578182fd5b611754878288016115db565b91505092959194509250565b60008060408385031215611772578182fd5b823561177d8161210d565b9150602083013580151581146116ab578182fd5b600080600080600060a086880312156117a8578081fd5b85356117b38161210d565b9450602086013567ffffffffffffffff8111156117ce578182fd5b6117da888289016115db565b9450506040860135925060608601359150608086013560ff811681146117fe578182fd5b809150509295509295909350565b6000806040838503121561181e578182fd5b82356118298161210d565b946020939093013593505050565b600060208284031215611848578081fd5b8135610d9581612122565b600060208284031215611864578081fd5b8151610d9581612122565b600060208284031215611880578081fd5b8151610d958161210d565b60006020828403121561189c578081fd5b5035919050565b600081518084526118bb816020860160208601611fb3565b601f01601f19169290920160200192915050565b600082516118e1818460208701611fb3565b9190910192915050565b600083516118fd818460208801611fb3565b60609390931b7fffffffffffffffffffffffffffffffffffffffff000000000000000000000000169190920190815260140192915050565b60008351611947818460208801611fb3565b83519083019061195b818360208801611fb3565b01949350505050565b7f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b60006001600160a01b038086168352808516602084015250606060408301526119da60608301846118a3565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611a1560808301846118a3565b9695505050505050565b901515815260200190565b90815260200190565b93845260208401929092526001600160a01b03166040830152606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b600060208252610d9560208301846118a3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604082015260600190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201527f6f776e6572000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526025908201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360408201527f49474e4552000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160408201527f6c6964206f776e65720000000000000000000000000000000000000000000000606082015260800190565b6020808252603e908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60408201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360408201527f6800000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201527f72206e6f7220617070726f766564000000000000000000000000000000000000606082015260800190565b60008219821115611f8357611f83612080565b500190565b600082611f9757611f976120af565b500490565b600082821015611fae57611fae612080565b500390565b60005b83811015611fce578181015183820152602001611fb6565b838111156109f65750506000910152565b600281046001821680611ff357607f821691505b6020821081141561202d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561206557612065612080565b5060010190565b60008261207b5761207b6120af565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6001600160a01b0381168114610b7c57600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610b7c57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f73332e65752d776573742d322e616d617a6f6e6177732e636f6d2f6e66742e74616d61646f67652e696f2f63726561747572652f68747470733a2f2f73332e65752d776573742d322e616d617a6f6e6177732e636f6d2f6e66742e74616d61646f67652e696f2f636f6e74726163742f6f70656e7365612d6372656174757265732fa2646970667358221220c64216eb227efa7cbf73b320a531316ad89a4ce9740cd6686a9615a8b57c7cb564736f6c63430008010033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


Deployed Bytecode Sourcemap

56374:1136:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37997:305;;;;;;;;;;-1:-1:-1;37997:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38924:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40437:171::-;;;;;;;;;;-1:-1:-1;40437:171:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39954:417::-;;;;;;;;;;-1:-1:-1;39954:417:0;;;;;:::i;:::-;;:::i;:::-;;11239:1151;;;;;;:::i;:::-;;:::i;1394:43::-;;;;;;;;;;;;;:::i;54254:105::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2403:101::-;;;;;;;;;;;;;:::i;41137:336::-;;;;;;;;;;-1:-1:-1;41137:336:0;;;;;:::i;:::-;;:::i;12816:107::-;;;;;;;;;;-1:-1:-1;12816:107:0;;;;;:::i;:::-;;:::i;2512:161::-;;;;;;;;;;;;;:::i;41544:185::-;;;;;;;;;;-1:-1:-1;41544:185:0;;;;;:::i;:::-;;:::i;38635:222::-;;;;;;;;;;-1:-1:-1;38635:222:0;;;;;:::i;:::-;;:::i;38366:207::-;;;;;;;;;;-1:-1:-1;38366:207:0;;;;;:::i;:::-;;:::i;16168:103::-;;;;;;;;;;;;;:::i;53893:188::-;;;;;;;;;;-1:-1:-1;53893:188:0;;;;;:::i;:::-;;:::i;15520:87::-;;;;;;;;;;;;;:::i;39093:104::-;;;;;;;;;;;;;:::i;40680:155::-;;;;;;;;;;-1:-1:-1;40680:155:0;;;;;:::i;:::-;;:::i;41800:323::-;;;;;;;;;;-1:-1:-1;41800:323:0;;;;;:::i;:::-;;:::i;54443:175::-;;;;;;;;;;-1:-1:-1;54443:175:0;;;;;:::i;:::-;;:::i;57172:157::-;;;;;;;;;;;;;:::i;57337:165::-;;;;;;;;;;;;;:::i;54750:445::-;;;;;;;;;;-1:-1:-1;54750:445:0;;;;;:::i;:::-;;:::i;16426:201::-;;;;;;;;;;-1:-1:-1;16426:201:0;;;;;:::i;:::-;;:::i;37997:305::-;38099:4;38136:40;;;38151:25;38136:40;;:105;;-1:-1:-1;38193:48:0;;;38208:33;38193:48;38136:105;:158;;;;38258:36;38282:11;38258:23;:36::i;:::-;38116:178;;37997:305;;;;:::o;38924:100::-;38978:13;39011:5;39004:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38924:100;;:::o;40437:171::-;40513:7;40533:23;40548:7;40533:14;:23::i;:::-;-1:-1:-1;40576:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40576:24:0;;40437:171::o;39954:417::-;40035:13;40051:23;40066:7;40051:14;:23::i;:::-;40035:39;;40099:5;-1:-1:-1;;;;;40093:11:0;:2;-1:-1:-1;;;;;40093:11:0;;;40085:57;;;;-1:-1:-1;;;40085:57:0;;;;;;;:::i;:::-;;;;;;;;;40193:5;-1:-1:-1;;;;;40177:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;40177:21:0;;:62;;;;40202:37;40219:5;40226:12;:10;:12::i;40202:37::-;40155:174;;;;-1:-1:-1;;;40155:174:0;;;;;;;:::i;:::-;40342:21;40351:2;40355:7;40342:8;:21::i;:::-;39954:417;;;:::o;11239:1151::-;11497:152;;;11440:12;11497:152;;;;;-1:-1:-1;;;;;11535:19:0;;11465:29;11535:19;;;:6;:19;;;;;;;;;11497:152;;;;;;;;;;;11684:45;11542:11;11497:152;11712:4;11718;11724;11684:6;:45::i;:::-;11662:128;;;;-1:-1:-1;;;11662:128:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11879:19:0;;;;;;:6;:19;;;;;;:26;;11903:1;11879:23;:26::i;:::-;-1:-1:-1;;;;;11857:19:0;;;;;;:6;:19;;;;;;;:48;;;;11923:126;;;;;11864:11;;11995:10;;12021:17;;11923:126;:::i;:::-;;;;;;;;12160:12;12174:23;12209:4;-1:-1:-1;;;;;12201:18:0;12251:17;12270:11;12234:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;12234:48:0;;;;;;;;;;12201:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12159:134;;;;12312:7;12304:48;;;;-1:-1:-1;;;12304:48:0;;;;;;;:::i;:::-;12372:10;11239:1151;-1:-1:-1;;;;;;;;11239:1151:0:o;1394:43::-;;;;;;;;;;;;;;;;;;;:::o;54254:105::-;54298:7;54350:1;54325:22;:12;:20;:22::i;:::-;:26;;;;:::i;:::-;54318:33;;54254:105;:::o;2403:101::-;2481:15;;2403:101;:::o;41137:336::-;41332:41;41351:12;:10;:12::i;:::-;41365:7;41332:18;:41::i;:::-;41324:100;;;;-1:-1:-1;;;41324:100:0;;;;;;;:::i;:::-;41437:28;41447:4;41453:2;41457:7;41437:9;:28::i;12816:107::-;-1:-1:-1;;;;;12903:12:0;12869:13;12903:12;;;:6;:12;;;;;;;12816:107::o;2512:161::-;2626:9;2512:161;:::o;41544:185::-;41682:39;41699:4;41705:2;41709:7;41682:39;;;;;;;;;;;;:16;:39::i;38635:222::-;38707:7;38743:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38743:16:0;38778:19;38770:56;;;;-1:-1:-1;;;38770:56:0;;;;;;;:::i;38366:207::-;38438:7;-1:-1:-1;;;;;38466:19:0;;38458:73;;;;-1:-1:-1;;;38458:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;38549:16:0;;;;;:9;:16;;;;;;;38366:207::o;16168:103::-;15406:13;:11;:13::i;:::-;16233:30:::1;16260:1;16233:18;:30::i;:::-;16168:103::o:0;53893:188::-;15406:13;:11;:13::i;:::-;53950:22:::1;53975;:12;:20;:22::i;:::-;53950:47;;54008:24;:12;:22;:24::i;:::-;54043:30;54053:3;54058:14;54043:9;:30::i;:::-;15430:1;53893:188:::0;:::o;15520:87::-;15593:6;;-1:-1:-1;;;;;15593:6:0;15520:87;:::o;39093:104::-;39149:13;39182:7;39175:14;;;;;:::i;40680:155::-;40775:52;40794:12;:10;:12::i;:::-;40808:8;40818;40775:18;:52::i;41800:323::-;41974:41;41993:12;:10;:12::i;:::-;42007:7;41974:18;:41::i;:::-;41966:100;;;;-1:-1:-1;;;41966:100:0;;;;;;;:::i;:::-;42077:38;42091:4;42097:2;42101:7;42110:4;42077:13;:38::i;:::-;41800:323;;;;:::o;54443:175::-;54509:13;54566:14;:12;:14::i;:::-;54582:26;54599:8;54582:16;:26::i;:::-;54549:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54535:75;;54443:175;;;:::o;57172:157::-;57226:13;57252:69;;;;;;;;;;;;;;;;;;;57172:157;:::o;57337:165::-;57381:13;57407:87;;;;;;;;;;;;;;;;;;;57337:165;:::o;54750:445::-;55004:20;;55048:28;;;;;54875:4;;-1:-1:-1;;;;;55004:20:0;;;;55040:49;;;;55004:20;;55048:21;;:28;;55070:5;;55048:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;55040:49:0;;55036:93;;;55113:4;55106:11;;;;;55036:93;55148:39;55171:5;55178:8;55148:22;:39::i;:::-;55141:46;;;54750:445;;;;;:::o;16426:201::-;15406:13;:11;:13::i;:::-;-1:-1:-1;;;;;16515:22:0;::::1;16507:73;;;;-1:-1:-1::0;;;16507:73:0::1;;;;;;;:::i;:::-;16591:28;16610:8;16591:18;:28::i;:::-;16426:201:::0;:::o;52158:127::-;52247:19;;52265:1;52247:19;;;52158:127::o;229:650::-;300:22;344:10;366:4;344:27;340:508;;;388:18;409:8;;388:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;448:8:0;659:17;653:24;-1:-1:-1;;;;;627:134:0;;-1:-1:-1;487:289:0;;-1:-1:-1;487:289:0;;-1:-1:-1;825:10:0;229:650;:::o;35647:157::-;35756:40;;;35771:25;35756:40;35647:157;;;:::o;48412:135::-;48494:16;48502:7;48494;:16::i;:::-;48486:53;;;;-1:-1:-1;;;48486:53:0;;;;;;;:::i;55339:161::-;55429:14;55468:24;:22;:24::i;47691:174::-;47766:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;47766:29:0;;;;;;;;:24;;47820:23;47766:24;47820:14;:23::i;:::-;-1:-1:-1;;;;;47811:46:0;;;;;;;;;;;47691:174;;:::o;12931:486::-;13109:4;-1:-1:-1;;;;;13134:20:0;;13126:70;;;;-1:-1:-1;;;13126:70:0;;;;;;;:::i;:::-;13250:159;13278:47;13297:27;13317:6;13297:19;:27::i;:::-;13278:18;:47::i;:::-;13344:4;13367;13390;13250:159;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13227:182:0;:6;-1:-1:-1;;;;;13227:182:0;;13207:202;;12931:486;;;;;;;:::o;6168:98::-;6226:7;6253:5;6257:1;6253;:5;:::i;:::-;6246:12;6168:98;-1:-1:-1;;;6168:98:0:o;52036:114::-;52128:14;;52036:114::o;43924:264::-;44017:4;44034:13;44050:23;44065:7;44050:14;:23::i;:::-;44034:39;;44103:5;-1:-1:-1;;;;;44092:16:0;:7;-1:-1:-1;;;;;44092:16:0;;:52;;;;44112:32;44129:5;44136:7;44112:16;:32::i;:::-;44092:87;;;;44172:7;-1:-1:-1;;;;;44148:31:0;:20;44160:7;44148:11;:20::i;:::-;-1:-1:-1;;;;;44148:31:0;;;43924:264;-1:-1:-1;;;;43924:264:0:o;46947:625::-;47106:4;-1:-1:-1;;;;;47079:31:0;:23;47094:7;47079:14;:23::i;:::-;-1:-1:-1;;;;;47079:31:0;;47071:81;;;;-1:-1:-1;;;47071:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47171:16:0;;47163:65;;;;-1:-1:-1;;;47163:65:0;;;;;;;:::i;:::-;47241:39;47262:4;47268:2;47272:7;47241:20;:39::i;:::-;47345:29;47362:1;47366:7;47345:8;:29::i;:::-;-1:-1:-1;;;;;47387:15:0;;;;;;:9;:15;;;;;:20;;47406:1;;47387:15;:20;;47406:1;;47387:20;:::i;:::-;;;;-1:-1:-1;;;;;;;47418:13:0;;;;;;:9;:13;;;;;:18;;47435:1;;47418:13;:18;;47435:1;;47418:18;:::i;:::-;;;;-1:-1:-1;;47447:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;47447:21:0;;;;;;;;;47486:27;;47447:16;;47486:27;;;;;;;47526:38;47546:4;47552:2;47556:7;47526:19;:38::i;15685:132::-;15760:12;:10;:12::i;:::-;-1:-1:-1;;;;;15749:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;15749:23:0;;15741:68;;;;-1:-1:-1;;;15741:68:0;;;;;;;:::i;16787:191::-;16880:6;;;-1:-1:-1;;;;;16897:17:0;;;;;;;;;;;16930:40;;16880:6;;;16897:17;16880:6;;16930:40;;16861:16;;16930:40;16787:191;;:::o;44530:110::-;44606:26;44616:2;44620:7;44606:26;;;;;;;;;;;;:9;:26::i;48008:315::-;48163:8;-1:-1:-1;;;;;48154:17:0;:5;-1:-1:-1;;;;;48154:17:0;;;48146:55;;;;-1:-1:-1;;;48146:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48212:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;;;;;;;;;48274:41;;;;;48212:46;;48274:41;:::i;:::-;;;;;;;;48008:315;;;:::o;43004:313::-;43160:28;43170:4;43176:2;43180:7;43160:9;:28::i;:::-;43207:47;43230:4;43236:2;43240:7;43249:4;43207:22;:47::i;:::-;43199:110;;;;-1:-1:-1;;;43199:110:0;;;;;;;:::i;32732:723::-;32788:13;33009:10;33005:53;;-1:-1:-1;33036:10:0;;;;;;;;;;;;;;;;;;;33005:53;33083:5;33068:12;33124:78;33131:9;;33124:78;;33157:8;;;;:::i;:::-;;-1:-1:-1;33180:10:0;;-1:-1:-1;33188:2:0;33180:10;;:::i;:::-;;;33124:78;;;33212:19;33244:6;33234:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33234:17:0;;33212:39;;33262:154;33269:10;;33262:154;;33296:11;33306:1;33296:11;;:::i;:::-;;-1:-1:-1;33365:10:0;33373:2;33365:5;:10;:::i;:::-;33352:24;;:2;:24;:::i;:::-;33339:39;;33322:6;33329;33322:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;33393:11:0;33402:2;33393:11;;:::i;:::-;;;33262:154;;;33440:6;32732:723;-1:-1:-1;;;;32732:723:0:o;40906:164::-;-1:-1:-1;;;;;41027:25:0;;;41003:4;41027:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40906:164::o;43630:127::-;43695:4;43719:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43719:16:0;:30;;;43630:127::o;12398:410::-;12508:7;10575:100;;;;;;;;;;;;;;;;;10555:127;;;;;;;12662:12;;12697:11;;;;12741:24;;;;;12731:35;;;;;;12581:204;;;;;;:::i;:::-;;;;;;;;;;;;;12553:247;;;;;;12533:267;;12398:410;;;:::o;3042:258::-;3141:7;3243:20;:18;:20::i;:::-;3265:11;3214:63;;;;;;;;;:::i;44867:319::-;44996:18;45002:2;45006:7;44996:5;:18::i;:::-;45047:53;45078:1;45082:2;45086:7;45095:4;45047:22;:53::i;:::-;45025:153;;;;-1:-1:-1;;;45025:153:0;;;;;;;:::i;49111:853::-;49265:4;49286:15;:2;-1:-1:-1;;;;;49286:13:0;;:15::i;:::-;49282:675;;;49338:2;-1:-1:-1;;;;;49322:36:0;;49359:12;:10;:12::i;:::-;49373:4;49379:7;49388:4;49322:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49322:71:0;;;;;;;;-1:-1:-1;;49322:71:0;;;;;;;;;;;;:::i;:::-;;;49318:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49563:13:0;;49559:328;;49606:60;;-1:-1:-1;;;49606:60:0;;;;;;;:::i;49559:328::-;49837:6;49831:13;49822:6;49818:2;49814:15;49807:38;49318:584;49444:51;;49454:41;49444:51;;-1:-1:-1;49437:58:0;;49282:675;-1:-1:-1;49941:4:0;49111:853;;;;;;:::o;45522:439::-;-1:-1:-1;;;;;45602:16:0;;45594:61;;;;-1:-1:-1;;;45594:61:0;;;;;;;:::i;:::-;45675:16;45683:7;45675;:16::i;:::-;45674:17;45666:58;;;;-1:-1:-1;;;45666:58:0;;;;;;;:::i;:::-;45737:45;45766:1;45770:2;45774:7;45737:20;:45::i;:::-;-1:-1:-1;;;;;45795:13:0;;;;;;:9;:13;;;;;:18;;45812:1;;45795:13;:18;;45812:1;;45795:18;:::i;:::-;;;;-1:-1:-1;;45824:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;45824:21:0;;;;;;;;45863:33;;45824:16;;;45863:33;;45824:16;;45863:33;45909:44;45937:1;45941:2;45945:7;45909:19;:44::i;24997:326::-;-1:-1:-1;;;;;25292:19:0;;:23;;;24997:326::o;14:799:1:-;;111:3;104:4;96:6;92:17;88:27;78:2;;133:5;126;119:20;78:2;173:6;160:20;199:18;236:2;232;229:10;226:2;;;242:18;;:::i;:::-;376:2;370:9;438:4;430:13;;-1:-1:-1;;426:22:1;;;450:2;422:31;418:40;406:53;;;474:18;;;494:22;;;471:46;468:2;;;520:18;;:::i;:::-;560:10;556:2;549:22;595:2;587:6;580:18;641:3;634:4;629:2;621:6;617:15;613:26;610:35;607:2;;;662:5;655;648:20;607:2;730;723:4;715:6;711:17;704:4;696:6;692:17;679:54;753:15;;;770:4;749:26;742:41;;;;-1:-1:-1;757:6:1;68:745;-1:-1:-1;;;68:745:1:o;818:259::-;;930:2;918:9;909:7;905:23;901:32;898:2;;;951:6;943;936:22;898:2;995:9;982:23;1014:33;1041:5;1014:33;:::i;1082:402::-;;;1211:2;1199:9;1190:7;1186:23;1182:32;1179:2;;;1232:6;1224;1217:22;1179:2;1276:9;1263:23;1295:33;1322:5;1295:33;:::i;:::-;1347:5;-1:-1:-1;1404:2:1;1389:18;;1376:32;1417:35;1376:32;1417:35;:::i;:::-;1471:7;1461:17;;;1169:315;;;;;:::o;1489:470::-;;;;1635:2;1623:9;1614:7;1610:23;1606:32;1603:2;;;1656:6;1648;1641:22;1603:2;1700:9;1687:23;1719:33;1746:5;1719:33;:::i;:::-;1771:5;-1:-1:-1;1828:2:1;1813:18;;1800:32;1841:35;1800:32;1841:35;:::i;:::-;1593:366;;1895:7;;-1:-1:-1;;;1949:2:1;1934:18;;;;1921:32;;1593:366::o;1964:691::-;;;;;2136:3;2124:9;2115:7;2111:23;2107:33;2104:2;;;2158:6;2150;2143:22;2104:2;2202:9;2189:23;2221:33;2248:5;2221:33;:::i;:::-;2273:5;-1:-1:-1;2330:2:1;2315:18;;2302:32;2343:35;2302:32;2343:35;:::i;:::-;2397:7;-1:-1:-1;2451:2:1;2436:18;;2423:32;;-1:-1:-1;2506:2:1;2491:18;;2478:32;2533:18;2522:30;;2519:2;;;2570:6;2562;2555:22;2519:2;2598:51;2641:7;2632:6;2621:9;2617:22;2598:51;:::i;:::-;2588:61;;;2094:561;;;;;;;:::o;2660:438::-;;;2786:2;2774:9;2765:7;2761:23;2757:32;2754:2;;;2807:6;2799;2792:22;2754:2;2851:9;2838:23;2870:33;2897:5;2870:33;:::i;:::-;2922:5;-1:-1:-1;2979:2:1;2964:18;;2951:32;3021:15;;3014:23;3002:36;;2992:2;;3057:6;3049;3042:22;3103:792;;;;;;3290:3;3278:9;3269:7;3265:23;3261:33;3258:2;;;3312:6;3304;3297:22;3258:2;3356:9;3343:23;3375:33;3402:5;3375:33;:::i;:::-;3427:5;-1:-1:-1;3483:2:1;3468:18;;3455:32;3510:18;3499:30;;3496:2;;;3547:6;3539;3532:22;3496:2;3575:51;3618:7;3609:6;3598:9;3594:22;3575:51;:::i;:::-;3565:61;;;3673:2;3662:9;3658:18;3645:32;3635:42;;3724:2;3713:9;3709:18;3696:32;3686:42;;3780:3;3769:9;3765:19;3752:33;3829:4;3820:7;3816:18;3807:7;3804:31;3794:2;;3854:6;3846;3839:22;3794:2;3882:7;3872:17;;;3248:647;;;;;;;;:::o;3900:327::-;;;4029:2;4017:9;4008:7;4004:23;4000:32;3997:2;;;4050:6;4042;4035:22;3997:2;4094:9;4081:23;4113:33;4140:5;4113:33;:::i;:::-;4165:5;4217:2;4202:18;;;;4189:32;;-1:-1:-1;;;3987:240:1:o;4232:257::-;;4343:2;4331:9;4322:7;4318:23;4314:32;4311:2;;;4364:6;4356;4349:22;4311:2;4408:9;4395:23;4427:32;4453:5;4427:32;:::i;4494:261::-;;4616:2;4604:9;4595:7;4591:23;4587:32;4584:2;;;4637:6;4629;4622:22;4584:2;4674:9;4668:16;4693:32;4719:5;4693:32;:::i;4760:292::-;;4912:2;4900:9;4891:7;4887:23;4883:32;4880:2;;;4933:6;4925;4918:22;4880:2;4970:9;4964:16;4989:33;5016:5;4989:33;:::i;5057:190::-;;5169:2;5157:9;5148:7;5144:23;5140:32;5137:2;;;5190:6;5182;5175:22;5137:2;-1:-1:-1;5218:23:1;;5127:120;-1:-1:-1;5127:120:1:o;5252:318::-;;5333:5;5327:12;5360:6;5355:3;5348:19;5376:63;5432:6;5425:4;5420:3;5416:14;5409:4;5402:5;5398:16;5376:63;:::i;:::-;5484:2;5472:15;-1:-1:-1;;5468:88:1;5459:98;;;;5559:4;5455:109;;5303:267;-1:-1:-1;;5303:267:1:o;5575:274::-;;5742:6;5736:13;5758:53;5804:6;5799:3;5792:4;5784:6;5780:17;5758:53;:::i;:::-;5827:16;;;;;5712:137;-1:-1:-1;;5712:137:1:o;5854:450::-;;6049:6;6043:13;6065:53;6111:6;6106:3;6099:4;6091:6;6087:17;6065:53;:::i;:::-;6187:2;6183:15;;;;6200:66;6179:88;6140:16;;;;6165:103;;;6295:2;6284:14;;6019:285;-1:-1:-1;;6019:285:1:o;6309:470::-;;6526:6;6520:13;6542:53;6588:6;6583:3;6576:4;6568:6;6564:17;6542:53;:::i;:::-;6658:13;;6617:16;;;;6680:57;6658:13;6617:16;6714:4;6702:17;;6680:57;:::i;:::-;6753:20;;6496:283;-1:-1:-1;;;;6496:283:1:o;6784:444::-;7054:66;7042:79;;7146:1;7137:11;;7130:27;;;;7182:2;7173:12;;7166:28;7219:2;7210:12;;7032:196::o;7233:226::-;-1:-1:-1;;;;;7397:55:1;;;;7379:74;;7367:2;7352:18;;7334:125::o;7464:456::-;;-1:-1:-1;;;;;7756:2:1;7748:6;7744:15;7733:9;7726:34;7808:2;7800:6;7796:15;7791:2;7780:9;7776:18;7769:43;;7848:2;7843;7832:9;7828:18;7821:30;7868:46;7910:2;7899:9;7895:18;7887:6;7868:46;:::i;:::-;7860:54;7655:265;-1:-1:-1;;;;;7655:265:1:o;7925:513::-;;-1:-1:-1;;;;;8229:2:1;8221:6;8217:15;8206:9;8199:34;8281:2;8273:6;8269:15;8264:2;8253:9;8249:18;8242:43;;8321:6;8316:2;8305:9;8301:18;8294:34;8364:3;8359:2;8348:9;8344:18;8337:31;8385:47;8427:3;8416:9;8412:19;8404:6;8385:47;:::i;:::-;8377:55;8128:310;-1:-1:-1;;;;;;8128:310:1:o;8443:187::-;8608:14;;8601:22;8583:41;;8571:2;8556:18;;8538:92::o;8635:177::-;8781:25;;;8769:2;8754:18;;8736:76::o;8817:440::-;9048:25;;;9104:2;9089:18;;9082:34;;;;-1:-1:-1;;;;;9152:55:1;9147:2;9132:18;;9125:83;9239:2;9224:18;;9217:34;9035:3;9020:19;;9002:255::o;9262:398::-;9489:25;;;9562:4;9550:17;;;;9545:2;9530:18;;9523:45;9599:2;9584:18;;9577:34;9642:2;9627:18;;9620:34;9476:3;9461:19;;9443:217::o;9665:219::-;;9812:2;9801:9;9794:21;9832:46;9874:2;9863:9;9859:18;9851:6;9832:46;:::i;10115:414::-;10317:2;10299:21;;;10356:2;10336:18;;;10329:30;10395:34;10390:2;10375:18;;10368:62;10466:20;10461:2;10446:18;;10439:48;10519:3;10504:19;;10289:240::o;10534:402::-;10736:2;10718:21;;;10775:2;10755:18;;;10748:30;10814:34;10809:2;10794:18;;10787:62;10885:8;10880:2;10865:18;;10858:36;10926:3;10911:19;;10708:228::o;10941:352::-;11143:2;11125:21;;;11182:2;11162:18;;;11155:30;11221;11216:2;11201:18;;11194:58;11284:2;11269:18;;11115:178::o;11298:401::-;11500:2;11482:21;;;11539:2;11519:18;;;11512:30;11578:34;11573:2;11558:18;;11551:62;11649:7;11644:2;11629:18;;11622:35;11689:3;11674:19;;11472:227::o;11704:352::-;11906:2;11888:21;;;11945:2;11925:18;;;11918:30;11984;11979:2;11964:18;;11957:58;12047:2;12032:18;;11878:178::o;12061:400::-;12263:2;12245:21;;;12302:2;12282:18;;;12275:30;12341:34;12336:2;12321:18;;12314:62;12412:6;12407:2;12392:18;;12385:34;12451:3;12436:19;;12235:226::o;12466:349::-;12668:2;12650:21;;;12707:2;12687:18;;;12680:30;12746:27;12741:2;12726:18;;12719:55;12806:2;12791:18;;12640:175::o;12820:401::-;13022:2;13004:21;;;13061:2;13041:18;;;13034:30;13100:34;13095:2;13080:18;;13073:62;13171:7;13166:2;13151:18;;13144:35;13211:3;13196:19;;12994:227::o;13226:405::-;13428:2;13410:21;;;13467:2;13447:18;;;13440:30;13506:34;13501:2;13486:18;;13479:62;13577:11;13572:2;13557:18;;13550:39;13621:3;13606:19;;13400:231::o;13636:426::-;13838:2;13820:21;;;13877:2;13857:18;;;13850:30;13916:34;13911:2;13896:18;;13889:62;13987:32;13982:2;13967:18;;13960:60;14052:3;14037:19;;13810:252::o;14067:356::-;14269:2;14251:21;;;14288:18;;;14281:30;14347:34;14342:2;14327:18;;14320:62;14414:2;14399:18;;14241:182::o;14428:356::-;14630:2;14612:21;;;14649:18;;;14642:30;14708:34;14703:2;14688:18;;14681:62;14775:2;14760:18;;14602:182::o;14789:397::-;14991:2;14973:21;;;15030:2;15010:18;;;15003:30;15069:34;15064:2;15049:18;;15042:62;15140:3;15135:2;15120:18;;15113:31;15176:3;15161:19;;14963:223::o;15191:348::-;15393:2;15375:21;;;15432:2;15412:18;;;15405:30;15471:26;15466:2;15451:18;;15444:54;15530:2;15515:18;;15365:174::o;15544:397::-;15746:2;15728:21;;;15785:2;15765:18;;;15758:30;15824:34;15819:2;15804:18;;15797:62;15895:3;15890:2;15875:18;;15868:31;15931:3;15916:19;;15718:223::o;15946:410::-;16148:2;16130:21;;;16187:2;16167:18;;;16160:30;16226:34;16221:2;16206:18;;16199:62;16297:16;16292:2;16277:18;;16270:44;16346:3;16331:19;;16120:236::o;16543:128::-;;16614:1;16610:6;16607:1;16604:13;16601:2;;;16620:18;;:::i;:::-;-1:-1:-1;16656:9:1;;16591:80::o;16676:120::-;;16742:1;16732:2;;16747:18;;:::i;:::-;-1:-1:-1;16781:9:1;;16722:74::o;16801:125::-;;16869:1;16866;16863:8;16860:2;;;16874:18;;:::i;:::-;-1:-1:-1;16911:9:1;;16850:76::o;16931:258::-;17003:1;17013:113;17027:6;17024:1;17021:13;17013:113;;;17103:11;;;17097:18;17084:11;;;17077:39;17049:2;17042:10;17013:113;;;17144:6;17141:1;17138:13;17135:2;;;-1:-1:-1;;17179:1:1;17161:16;;17154:27;16984:205::o;17194:437::-;17279:1;17269:12;;17326:1;17316:12;;;17337:2;;17391:4;17383:6;17379:17;17369:27;;17337:2;17444;17436:6;17433:14;17413:18;17410:38;17407:2;;;17481:77;17478:1;17471:88;17582:4;17579:1;17572:15;17610:4;17607:1;17600:15;17407:2;;17249:382;;;:::o;17636:195::-;;17706:66;17699:5;17696:77;17693:2;;;17776:18;;:::i;:::-;-1:-1:-1;17823:1:1;17812:13;;17683:148::o;17836:112::-;;17894:1;17884:2;;17899:18;;:::i;:::-;-1:-1:-1;17933:9:1;;17874:74::o;17953:184::-;18005:77;18002:1;17995:88;18102:4;18099:1;18092:15;18126:4;18123:1;18116:15;18142:184;18194:77;18191:1;18184:88;18291:4;18288:1;18281:15;18315:4;18312:1;18305:15;18331:184;18383:77;18380:1;18373:88;18480:4;18477:1;18470:15;18504:4;18501:1;18494:15;18520:156;-1:-1:-1;;;;;18601:5:1;18597:54;18590:5;18587:65;18577:2;;18666:1;18663;18656:12;18681:179;18768:66;18761:5;18757:78;18750:5;18747:89;18737:2;;18850:1;18847;18840:12

Swarm Source

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