ETH Price: $2,891.19 (-5.76%)
Gas: 2 Gwei

Token

The Nordic Society (TNS)
 

Overview

Max Total Supply

1,605 TNS

Holders

472

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lenman.eth
Balance
1 TNS
0x6329d4a63e9c698eb295351de3f9e0a9c6791775
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:
TNS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-16
*/

// SPDX-License-Identifier: MIT

//Developer Information
// Name: Arslan Javed
// Email: [email protected]
// WhatsApp: +1 (703) 565-9939


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File: contracts/TNS.sol


pragma solidity ^0.8.0;


contract TNS is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix;
  string public uriSuffix = ".json";
  
  uint256 public cost = 0.035 ether;
  uint256 public maxSupply = 10000;
  
    uint256 public maxMintAmount= 3;
  mapping(address => uint256) public addressMintedBalance;

  bool public paused = false;

  constructor() ERC721("The Nordic Society", "TNS") {
    
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(ownerMintedCount + _mintAmount <= maxMintAmount, "ERROR: Max NFT per address exceeded");

    addressMintedBalance[msg.sender] += _mintAmount;
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
     uint count = balanceOf(msg.sender);
    if (count > 0) {
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        _mintLoop(msg.sender, _mintAmount);
    }
    else
        {
            if (_mintAmount > 1)
            {
                require(msg.value >= cost * (_mintAmount - 1), "Insufficient funds!");
                _mintLoop(msg.sender, _mintAmount); 
            }
            else
            {
            //require(_mintAmount > 0 && _mintAmount <= 1, "1 Free NFT Allowed!");
            _mintLoop(msg.sender, _mintAmount); 
            }
        }
  }

   function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

  function AdminMint(address _address, uint256 _mintAmount) public onlyOwner {

       _mintLoop(_address, _mintAmount);
  }
  
  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }


  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner {
   uint _balance = address(this).balance;
     payable(msg.sender).transfer(_balance ); 
  }
  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"AdminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600991906200013b565b50667c585087238000600a55612710600b556003600c55600e805460ff191690553480156200005657600080fd5b506040805180820182526012815271546865204e6f7264696320536f636965747960701b602080830191825283518085019094526003845262544e5360e81b908401528151919291620000ac916000916200013b565b508051620000c29060019060208401906200013b565b505050620000df620000d9620000e560201b60201c565b620000e9565b6200021e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014990620001e1565b90600052602060002090601f0160209004810192826200016d5760008555620001b8565b82601f106200018857805160ff1916838001178555620001b8565b82800160010185558215620001b8579182015b82811115620001b85782518255916020019190600101906200019b565b50620001c6929150620001ca565b5090565b5b80821115620001c65760008155600101620001cb565b600181811c90821680620001f657607f821691505b602082108114156200021857634e487b7160e01b600052602260045260246000fd5b50919050565b61209b806200022e6000396000f3fe6080604052600436106101ee5760003560e01c80635c975abb1161010d57806390363c34116100a0578063b88d4fde1161006f578063b88d4fde14610561578063c87b56dd14610581578063d5abeb01146105a1578063e985e9c5146105b7578063f2fde38b1461060057600080fd5b806390363c34146104f957806395d89b4114610519578063a0712d681461052e578063a22cb4651461054157600080fd5b8063715018a6116100dc578063715018a6146104865780637ec4a6591461049b5780637f00c7a6146104bb5780638da5cb5b146104db57600080fd5b80635c975abb1461041757806362b99ad4146104315780636352211e1461044657806370a082311461046657600080fd5b806318cae2691161018557806342842e0e1161015457806342842e0e14610395578063438b6300146103b557806344a0d68a146103e25780635503a0e81461040257600080fd5b806318cae2691461031d578063239c70ae1461034a57806323b872dd146103605780633ccfd60b1461038057600080fd5b806313faede6116101c157806313faede6146102a457806316ba10e0146102c857806316c38b3c146102e857806318160ddd1461030857600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c07565b610620565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610672565b60405161021f9190611e14565b34801561025657600080fd5b5061026a610265366004611c8a565b610704565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611bc2565b61079e565b005b3480156102b057600080fd5b506102ba600a5481565b60405190815260200161021f565b3480156102d457600080fd5b506102a26102e3366004611c41565b6108b4565b3480156102f457600080fd5b506102a2610303366004611bec565b6108f5565b34801561031457600080fd5b506102ba610932565b34801561032957600080fd5b506102ba610338366004611a92565b600d6020526000908152604090205481565b34801561035657600080fd5b506102ba600c5481565b34801561036c57600080fd5b506102a261037b366004611ae0565b610942565b34801561038c57600080fd5b506102a2610973565b3480156103a157600080fd5b506102a26103b0366004611ae0565b6109cc565b3480156103c157600080fd5b506103d56103d0366004611a92565b6109e7565b60405161021f9190611dd0565b3480156103ee57600080fd5b506102a26103fd366004611c8a565b610ac8565b34801561040e57600080fd5b5061023d610af7565b34801561042357600080fd5b50600e546102139060ff1681565b34801561043d57600080fd5b5061023d610b85565b34801561045257600080fd5b5061026a610461366004611c8a565b610b92565b34801561047257600080fd5b506102ba610481366004611a92565b610c09565b34801561049257600080fd5b506102a2610c90565b3480156104a757600080fd5b506102a26104b6366004611c41565b610cc6565b3480156104c757600080fd5b506102a26104d6366004611c8a565b610d03565b3480156104e757600080fd5b506006546001600160a01b031661026a565b34801561050557600080fd5b506102a2610514366004611bc2565b610d32565b34801561052557600080fd5b5061023d610d66565b6102a261053c366004611c8a565b610d75565b34801561054d57600080fd5b506102a261055c366004611b98565b610f66565b34801561056d57600080fd5b506102a261057c366004611b1c565b610f71565b34801561058d57600080fd5b5061023d61059c366004611c8a565b610fa3565b3480156105ad57600080fd5b506102ba600b5481565b3480156105c357600080fd5b506102136105d2366004611aad565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060c57600080fd5b506102a261061b366004611a92565b611081565b60006001600160e01b031982166380ac58cd60e01b148061065157506001600160e01b03198216635b5e139f60e01b145b8061066c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461068190611f8d565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad90611f8d565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107a982610b92565b9050806001600160a01b0316836001600160a01b031614156108175760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610779565b336001600160a01b0382161480610833575061083381336105d2565b6108a55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610779565b6108af838361111c565b505050565b6006546001600160a01b031633146108de5760405162461bcd60e51b815260040161077990611e79565b80516108f1906009906020840190611957565b5050565b6006546001600160a01b0316331461091f5760405162461bcd60e51b815260040161077990611e79565b600e805460ff1916911515919091179055565b600061093d60075490565b905090565b61094c338261118a565b6109685760405162461bcd60e51b815260040161077990611eae565b6108af838383611281565b6006546001600160a01b0316331461099d5760405162461bcd60e51b815260040161077990611e79565b6040514790339082156108fc029083906000818181858888f193505050501580156108f1573d6000803e3d6000fd5b6108af83838360405180602001604052806000815250610f71565b606060006109f483610c09565b905060008167ffffffffffffffff811115610a1157610a11612039565b604051908082528060200260200182016040528015610a3a578160200160208202803683370190505b509050600160005b8381108015610a535750600b548211155b15610abe576000610a6383610b92565b9050866001600160a01b0316816001600160a01b03161415610aab5782848381518110610a9257610a92612023565b602090810291909101015281610aa781611fc8565b9250505b82610ab581611fc8565b93505050610a42565b5090949350505050565b6006546001600160a01b03163314610af25760405162461bcd60e51b815260040161077990611e79565b600a55565b60098054610b0490611f8d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3090611f8d565b8015610b7d5780601f10610b5257610100808354040283529160200191610b7d565b820191906000526020600020905b815481529060010190602001808311610b6057829003601f168201915b505050505081565b60088054610b0490611f8d565b6000818152600260205260408120546001600160a01b03168061066c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610779565b60006001600160a01b038216610c745760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610779565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610cba5760405162461bcd60e51b815260040161077990611e79565b610cc4600061141d565b565b6006546001600160a01b03163314610cf05760405162461bcd60e51b815260040161077990611e79565b80516108f1906008906020840190611957565b6006546001600160a01b03163314610d2d5760405162461bcd60e51b815260040161077990611e79565b600c55565b6006546001600160a01b03163314610d5c5760405162461bcd60e51b815260040161077990611e79565b6108f1828261146f565b60606001805461068190611f8d565b80600b5481610d8360075490565b610d8d9190611eff565b1115610dd25760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610779565b336000908152600d6020526040902054600c54610def8383611eff565b1115610e495760405162461bcd60e51b815260206004820152602360248201527f4552524f523a204d6178204e465420706572206164647265737320657863656560448201526219195960ea1b6064820152608401610779565b336000908152600d602052604081208054849290610e68908490611eff565b9091555050600e5460ff1615610ec05760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610779565b6000610ecb33610c09565b90508015610f355783600a54610ee19190611f2b565b341015610f265760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610779565b610f30338561146f565b610f60565b6001841115610f5657610f49600185611f4a565b600a54610ee19190611f2b565b610f60338561146f565b50505050565b6108f13383836114ac565b610f7b338361118a565b610f975760405162461bcd60e51b815260040161077990611eae565b610f608484848461157b565b6000818152600260205260409020546060906001600160a01b03166110225760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610779565b600061102c6115ae565b9050600081511161104c576040518060200160405280600081525061107a565b80611056846115bd565b600960405160200161106a93929190611ccf565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146110ab5760405162461bcd60e51b815260040161077990611e79565b6001600160a01b0381166111105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610779565b6111198161141d565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061115182610b92565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112035760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610779565b600061120e83610b92565b9050806001600160a01b0316846001600160a01b031614806112495750836001600160a01b031661123e84610704565b6001600160a01b0316145b8061127957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661129482610b92565b6001600160a01b0316146112f85760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610779565b6001600160a01b03821661135a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610779565b61136560008261111c565b6001600160a01b038316600090815260036020526040812080546001929061138e908490611f4a565b90915550506001600160a01b03821660009081526003602052604081208054600192906113bc908490611eff565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156108af57611488600780546001019055565b61149a8361149560075490565b6116bb565b806114a481611fc8565b915050611472565b816001600160a01b0316836001600160a01b0316141561150e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610779565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611586848484611281565b611592848484846116d5565b610f605760405162461bcd60e51b815260040161077990611e27565b60606008805461068190611f8d565b6060816115e15750506040805180820190915260018152600360fc1b602082015290565b8160005b811561160b57806115f581611fc8565b91506116049050600a83611f17565b91506115e5565b60008167ffffffffffffffff81111561162657611626612039565b6040519080825280601f01601f191660200182016040528015611650576020820181803683370190505b5090505b841561127957611665600183611f4a565b9150611672600a86611fe3565b61167d906030611eff565b60f81b81838151811061169257611692612023565b60200101906001600160f81b031916908160001a9053506116b4600a86611f17565b9450611654565b6108f18282604051806020016040528060008152506117e2565b60006001600160a01b0384163b156117d757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611719903390899088908890600401611d93565b602060405180830381600087803b15801561173357600080fd5b505af1925050508015611763575060408051601f3d908101601f1916820190925261176091810190611c24565b60015b6117bd573d808015611791576040519150601f19603f3d011682016040523d82523d6000602084013e611796565b606091505b5080516117b55760405162461bcd60e51b815260040161077990611e27565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611279565b506001949350505050565b6117ec8383611815565b6117f960008484846116d5565b6108af5760405162461bcd60e51b815260040161077990611e27565b6001600160a01b03821661186b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610779565b6000818152600260205260409020546001600160a01b0316156118d05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610779565b6001600160a01b03821660009081526003602052604081208054600192906118f9908490611eff565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461196390611f8d565b90600052602060002090601f01602090048101928261198557600085556119cb565b82601f1061199e57805160ff19168380011785556119cb565b828001600101855582156119cb579182015b828111156119cb5782518255916020019190600101906119b0565b506119d79291506119db565b5090565b5b808211156119d757600081556001016119dc565b600067ffffffffffffffff80841115611a0b57611a0b612039565b604051601f8501601f19908116603f01168101908282118183101715611a3357611a33612039565b81604052809350858152868686011115611a4c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a7d57600080fd5b919050565b80358015158114611a7d57600080fd5b600060208284031215611aa457600080fd5b61107a82611a66565b60008060408385031215611ac057600080fd5b611ac983611a66565b9150611ad760208401611a66565b90509250929050565b600080600060608486031215611af557600080fd5b611afe84611a66565b9250611b0c60208501611a66565b9150604084013590509250925092565b60008060008060808587031215611b3257600080fd5b611b3b85611a66565b9350611b4960208601611a66565b925060408501359150606085013567ffffffffffffffff811115611b6c57600080fd5b8501601f81018713611b7d57600080fd5b611b8c878235602084016119f0565b91505092959194509250565b60008060408385031215611bab57600080fd5b611bb483611a66565b9150611ad760208401611a82565b60008060408385031215611bd557600080fd5b611bde83611a66565b946020939093013593505050565b600060208284031215611bfe57600080fd5b61107a82611a82565b600060208284031215611c1957600080fd5b813561107a8161204f565b600060208284031215611c3657600080fd5b815161107a8161204f565b600060208284031215611c5357600080fd5b813567ffffffffffffffff811115611c6a57600080fd5b8201601f81018413611c7b57600080fd5b611279848235602084016119f0565b600060208284031215611c9c57600080fd5b5035919050565b60008151808452611cbb816020860160208601611f61565b601f01601f19169290920160200192915050565b600084516020611ce28285838a01611f61565b855191840191611cf58184848a01611f61565b8554920191600090600181811c9080831680611d1257607f831692505b858310811415611d3057634e487b7160e01b85526022600452602485fd5b808015611d445760018114611d5557611d82565b60ff19851688528388019550611d82565b60008b81526020902060005b85811015611d7a5781548a820152908401908801611d61565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dc690830184611ca3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e0857835183529284019291840191600101611dec565b50909695505050505050565b60208152600061107a6020830184611ca3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f1257611f12611ff7565b500190565b600082611f2657611f2661200d565b500490565b6000816000190483118215151615611f4557611f45611ff7565b500290565b600082821015611f5c57611f5c611ff7565b500390565b60005b83811015611f7c578181015183820152602001611f64565b83811115610f605750506000910152565b600181811c90821680611fa157607f821691505b60208210811415611fc257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fdc57611fdc611ff7565b5060010190565b600082611ff257611ff261200d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461111957600080fdfea2646970667358221220c85390ffea0516c1aa3bc4b512507b1b42241dc8933f2fb3b8b132cc124d9bc364736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80635c975abb1161010d57806390363c34116100a0578063b88d4fde1161006f578063b88d4fde14610561578063c87b56dd14610581578063d5abeb01146105a1578063e985e9c5146105b7578063f2fde38b1461060057600080fd5b806390363c34146104f957806395d89b4114610519578063a0712d681461052e578063a22cb4651461054157600080fd5b8063715018a6116100dc578063715018a6146104865780637ec4a6591461049b5780637f00c7a6146104bb5780638da5cb5b146104db57600080fd5b80635c975abb1461041757806362b99ad4146104315780636352211e1461044657806370a082311461046657600080fd5b806318cae2691161018557806342842e0e1161015457806342842e0e14610395578063438b6300146103b557806344a0d68a146103e25780635503a0e81461040257600080fd5b806318cae2691461031d578063239c70ae1461034a57806323b872dd146103605780633ccfd60b1461038057600080fd5b806313faede6116101c157806313faede6146102a457806316ba10e0146102c857806316c38b3c146102e857806318160ddd1461030857600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c07565b610620565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610672565b60405161021f9190611e14565b34801561025657600080fd5b5061026a610265366004611c8a565b610704565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611bc2565b61079e565b005b3480156102b057600080fd5b506102ba600a5481565b60405190815260200161021f565b3480156102d457600080fd5b506102a26102e3366004611c41565b6108b4565b3480156102f457600080fd5b506102a2610303366004611bec565b6108f5565b34801561031457600080fd5b506102ba610932565b34801561032957600080fd5b506102ba610338366004611a92565b600d6020526000908152604090205481565b34801561035657600080fd5b506102ba600c5481565b34801561036c57600080fd5b506102a261037b366004611ae0565b610942565b34801561038c57600080fd5b506102a2610973565b3480156103a157600080fd5b506102a26103b0366004611ae0565b6109cc565b3480156103c157600080fd5b506103d56103d0366004611a92565b6109e7565b60405161021f9190611dd0565b3480156103ee57600080fd5b506102a26103fd366004611c8a565b610ac8565b34801561040e57600080fd5b5061023d610af7565b34801561042357600080fd5b50600e546102139060ff1681565b34801561043d57600080fd5b5061023d610b85565b34801561045257600080fd5b5061026a610461366004611c8a565b610b92565b34801561047257600080fd5b506102ba610481366004611a92565b610c09565b34801561049257600080fd5b506102a2610c90565b3480156104a757600080fd5b506102a26104b6366004611c41565b610cc6565b3480156104c757600080fd5b506102a26104d6366004611c8a565b610d03565b3480156104e757600080fd5b506006546001600160a01b031661026a565b34801561050557600080fd5b506102a2610514366004611bc2565b610d32565b34801561052557600080fd5b5061023d610d66565b6102a261053c366004611c8a565b610d75565b34801561054d57600080fd5b506102a261055c366004611b98565b610f66565b34801561056d57600080fd5b506102a261057c366004611b1c565b610f71565b34801561058d57600080fd5b5061023d61059c366004611c8a565b610fa3565b3480156105ad57600080fd5b506102ba600b5481565b3480156105c357600080fd5b506102136105d2366004611aad565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060c57600080fd5b506102a261061b366004611a92565b611081565b60006001600160e01b031982166380ac58cd60e01b148061065157506001600160e01b03198216635b5e139f60e01b145b8061066c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461068190611f8d565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad90611f8d565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107a982610b92565b9050806001600160a01b0316836001600160a01b031614156108175760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610779565b336001600160a01b0382161480610833575061083381336105d2565b6108a55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610779565b6108af838361111c565b505050565b6006546001600160a01b031633146108de5760405162461bcd60e51b815260040161077990611e79565b80516108f1906009906020840190611957565b5050565b6006546001600160a01b0316331461091f5760405162461bcd60e51b815260040161077990611e79565b600e805460ff1916911515919091179055565b600061093d60075490565b905090565b61094c338261118a565b6109685760405162461bcd60e51b815260040161077990611eae565b6108af838383611281565b6006546001600160a01b0316331461099d5760405162461bcd60e51b815260040161077990611e79565b6040514790339082156108fc029083906000818181858888f193505050501580156108f1573d6000803e3d6000fd5b6108af83838360405180602001604052806000815250610f71565b606060006109f483610c09565b905060008167ffffffffffffffff811115610a1157610a11612039565b604051908082528060200260200182016040528015610a3a578160200160208202803683370190505b509050600160005b8381108015610a535750600b548211155b15610abe576000610a6383610b92565b9050866001600160a01b0316816001600160a01b03161415610aab5782848381518110610a9257610a92612023565b602090810291909101015281610aa781611fc8565b9250505b82610ab581611fc8565b93505050610a42565b5090949350505050565b6006546001600160a01b03163314610af25760405162461bcd60e51b815260040161077990611e79565b600a55565b60098054610b0490611f8d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3090611f8d565b8015610b7d5780601f10610b5257610100808354040283529160200191610b7d565b820191906000526020600020905b815481529060010190602001808311610b6057829003601f168201915b505050505081565b60088054610b0490611f8d565b6000818152600260205260408120546001600160a01b03168061066c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610779565b60006001600160a01b038216610c745760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610779565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610cba5760405162461bcd60e51b815260040161077990611e79565b610cc4600061141d565b565b6006546001600160a01b03163314610cf05760405162461bcd60e51b815260040161077990611e79565b80516108f1906008906020840190611957565b6006546001600160a01b03163314610d2d5760405162461bcd60e51b815260040161077990611e79565b600c55565b6006546001600160a01b03163314610d5c5760405162461bcd60e51b815260040161077990611e79565b6108f1828261146f565b60606001805461068190611f8d565b80600b5481610d8360075490565b610d8d9190611eff565b1115610dd25760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610779565b336000908152600d6020526040902054600c54610def8383611eff565b1115610e495760405162461bcd60e51b815260206004820152602360248201527f4552524f523a204d6178204e465420706572206164647265737320657863656560448201526219195960ea1b6064820152608401610779565b336000908152600d602052604081208054849290610e68908490611eff565b9091555050600e5460ff1615610ec05760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610779565b6000610ecb33610c09565b90508015610f355783600a54610ee19190611f2b565b341015610f265760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610779565b610f30338561146f565b610f60565b6001841115610f5657610f49600185611f4a565b600a54610ee19190611f2b565b610f60338561146f565b50505050565b6108f13383836114ac565b610f7b338361118a565b610f975760405162461bcd60e51b815260040161077990611eae565b610f608484848461157b565b6000818152600260205260409020546060906001600160a01b03166110225760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610779565b600061102c6115ae565b9050600081511161104c576040518060200160405280600081525061107a565b80611056846115bd565b600960405160200161106a93929190611ccf565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146110ab5760405162461bcd60e51b815260040161077990611e79565b6001600160a01b0381166111105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610779565b6111198161141d565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061115182610b92565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112035760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610779565b600061120e83610b92565b9050806001600160a01b0316846001600160a01b031614806112495750836001600160a01b031661123e84610704565b6001600160a01b0316145b8061127957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661129482610b92565b6001600160a01b0316146112f85760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610779565b6001600160a01b03821661135a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610779565b61136560008261111c565b6001600160a01b038316600090815260036020526040812080546001929061138e908490611f4a565b90915550506001600160a01b03821660009081526003602052604081208054600192906113bc908490611eff565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156108af57611488600780546001019055565b61149a8361149560075490565b6116bb565b806114a481611fc8565b915050611472565b816001600160a01b0316836001600160a01b0316141561150e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610779565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611586848484611281565b611592848484846116d5565b610f605760405162461bcd60e51b815260040161077990611e27565b60606008805461068190611f8d565b6060816115e15750506040805180820190915260018152600360fc1b602082015290565b8160005b811561160b57806115f581611fc8565b91506116049050600a83611f17565b91506115e5565b60008167ffffffffffffffff81111561162657611626612039565b6040519080825280601f01601f191660200182016040528015611650576020820181803683370190505b5090505b841561127957611665600183611f4a565b9150611672600a86611fe3565b61167d906030611eff565b60f81b81838151811061169257611692612023565b60200101906001600160f81b031916908160001a9053506116b4600a86611f17565b9450611654565b6108f18282604051806020016040528060008152506117e2565b60006001600160a01b0384163b156117d757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611719903390899088908890600401611d93565b602060405180830381600087803b15801561173357600080fd5b505af1925050508015611763575060408051601f3d908101601f1916820190925261176091810190611c24565b60015b6117bd573d808015611791576040519150601f19603f3d011682016040523d82523d6000602084013e611796565b606091505b5080516117b55760405162461bcd60e51b815260040161077990611e27565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611279565b506001949350505050565b6117ec8383611815565b6117f960008484846116d5565b6108af5760405162461bcd60e51b815260040161077990611e27565b6001600160a01b03821661186b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610779565b6000818152600260205260409020546001600160a01b0316156118d05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610779565b6001600160a01b03821660009081526003602052604081208054600192906118f9908490611eff565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461196390611f8d565b90600052602060002090601f01602090048101928261198557600085556119cb565b82601f1061199e57805160ff19168380011785556119cb565b828001600101855582156119cb579182015b828111156119cb5782518255916020019190600101906119b0565b506119d79291506119db565b5090565b5b808211156119d757600081556001016119dc565b600067ffffffffffffffff80841115611a0b57611a0b612039565b604051601f8501601f19908116603f01168101908282118183101715611a3357611a33612039565b81604052809350858152868686011115611a4c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a7d57600080fd5b919050565b80358015158114611a7d57600080fd5b600060208284031215611aa457600080fd5b61107a82611a66565b60008060408385031215611ac057600080fd5b611ac983611a66565b9150611ad760208401611a66565b90509250929050565b600080600060608486031215611af557600080fd5b611afe84611a66565b9250611b0c60208501611a66565b9150604084013590509250925092565b60008060008060808587031215611b3257600080fd5b611b3b85611a66565b9350611b4960208601611a66565b925060408501359150606085013567ffffffffffffffff811115611b6c57600080fd5b8501601f81018713611b7d57600080fd5b611b8c878235602084016119f0565b91505092959194509250565b60008060408385031215611bab57600080fd5b611bb483611a66565b9150611ad760208401611a82565b60008060408385031215611bd557600080fd5b611bde83611a66565b946020939093013593505050565b600060208284031215611bfe57600080fd5b61107a82611a82565b600060208284031215611c1957600080fd5b813561107a8161204f565b600060208284031215611c3657600080fd5b815161107a8161204f565b600060208284031215611c5357600080fd5b813567ffffffffffffffff811115611c6a57600080fd5b8201601f81018413611c7b57600080fd5b611279848235602084016119f0565b600060208284031215611c9c57600080fd5b5035919050565b60008151808452611cbb816020860160208601611f61565b601f01601f19169290920160200192915050565b600084516020611ce28285838a01611f61565b855191840191611cf58184848a01611f61565b8554920191600090600181811c9080831680611d1257607f831692505b858310811415611d3057634e487b7160e01b85526022600452602485fd5b808015611d445760018114611d5557611d82565b60ff19851688528388019550611d82565b60008b81526020902060005b85811015611d7a5781548a820152908401908801611d61565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dc690830184611ca3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e0857835183529284019291840191600101611dec565b50909695505050505050565b60208152600061107a6020830184611ca3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f1257611f12611ff7565b500190565b600082611f2657611f2661200d565b500490565b6000816000190483118215151615611f4557611f45611ff7565b500290565b600082821015611f5c57611f5c611ff7565b500390565b60005b83811015611f7c578181015183820152602001611f64565b83811115610f605750506000910152565b600181811c90821680611fa157607f821691505b60208210811415611fc257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fdc57611fdc611ff7565b5060010190565b600082611ff257611ff261200d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461111957600080fdfea2646970667358221220c85390ffea0516c1aa3bc4b512507b1b42241dc8933f2fb3b8b132cc124d9bc364736f6c63430008070033

Deployed Bytecode Sourcemap

38900:3873:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25725:305;;;;;;;;;;-1:-1:-1;25725:305:0;;;;;:::i;:::-;;:::i;:::-;;;7597:14:1;;7590:22;7572:41;;7560:2;7545:18;25725:305:0;;;;;;;;26670:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28229:221::-;;;;;;;;;;-1:-1:-1;28229:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6258:32:1;;;6240:51;;6228:2;6213:18;28229:221:0;6094:203:1;27752:411:0;;;;;;;;;;-1:-1:-1;27752:411:0;;;;;:::i;:::-;;:::i;:::-;;39117:33;;;;;;;;;;;;;;;;;;;15825:25:1;;;15813:2;15798:18;39117:33:0;15679:177:1;42339:100:0;;;;;;;;;;-1:-1:-1;42339:100:0;;;;;:::i;:::-;;:::i;42445:77::-;;;;;;;;;;-1:-1:-1;42445:77:0;;;;;:::i;:::-;;:::i;39769:89::-;;;;;;;;;;;;;:::i;39234:55::-;;;;;;;;;;-1:-1:-1;39234:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;39198:31;;;;;;;;;;;;;;;;28979:339;;;;;;;;;;-1:-1:-1;28979:339:0;;;;;:::i;:::-;;:::i;42528:134::-;;;;;;;;;;;;;:::i;29389:185::-;;;;;;;;;;-1:-1:-1;29389:185:0;;;;;:::i;:::-;;:::i;40958:635::-;;;;;;;;;;-1:-1:-1;40958:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;42027:74::-;;;;;;;;;;-1:-1:-1;42027:74:0;;;;;:::i;:::-;;:::i;39075:33::-;;;;;;;;;;;;;:::i;39296:26::-;;;;;;;;;;-1:-1:-1;39296:26:0;;;;;;;;39047:23;;;;;;;;;;;;;:::i;26364:239::-;;;;;;;;;;-1:-1:-1;26364:239:0;;;;;:::i;:::-;;:::i;26094:208::-;;;;;;;;;;-1:-1:-1;26094:208:0;;;;;:::i;:::-;;:::i;6346:103::-;;;;;;;;;;;;;:::i;42233:100::-;;;;;;;;;;-1:-1:-1;42233:100:0;;;;;:::i;:::-;;:::i;42107:120::-;;;;;;;;;;-1:-1:-1;42107:120:0;;;;;:::i;:::-;;:::i;5695:87::-;;;;;;;;;;-1:-1:-1;5768:6:0;;-1:-1:-1;;;;;5768:6:0;5695:87;;40825:125;;;;;;;;;;-1:-1:-1;40825:125:0;;;;;:::i;:::-;;:::i;26839:104::-;;;;;;;;;;;;;:::i;39864:744::-;;;;;;:::i;:::-;;:::i;28522:155::-;;;;;;;;;;-1:-1:-1;28522:155:0;;;;;:::i;:::-;;:::i;29645:328::-;;;;;;;;;;-1:-1:-1;29645:328:0;;;;;:::i;:::-;;:::i;41599:420::-;;;;;;;;;;-1:-1:-1;41599:420:0;;;;;:::i;:::-;;:::i;39155:32::-;;;;;;;;;;;;;;;;28748:164;;;;;;;;;;-1:-1:-1;28748:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28869:25:0;;;28845:4;28869:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28748:164;6604:201;;;;;;;;;;-1:-1:-1;6604:201:0;;;;;:::i;:::-;;:::i;25725:305::-;25827:4;-1:-1:-1;;;;;;25864:40:0;;-1:-1:-1;;;25864:40:0;;:105;;-1:-1:-1;;;;;;;25921:48:0;;-1:-1:-1;;;25921:48:0;25864:105;:158;;;-1:-1:-1;;;;;;;;;;18588:40:0;;;25986:36;25844:178;25725:305;-1:-1:-1;;25725:305:0:o;26670:100::-;26724:13;26757:5;26750:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26670:100;:::o;28229:221::-;28305:7;31572:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31572:16:0;28325:73;;;;-1:-1:-1;;;28325:73:0;;12822:2:1;28325:73:0;;;12804:21:1;12861:2;12841:18;;;12834:30;12900:34;12880:18;;;12873:62;-1:-1:-1;;;12951:18:1;;;12944:42;13003:19;;28325:73:0;;;;;;;;;-1:-1:-1;28418:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28418:24:0;;28229:221::o;27752:411::-;27833:13;27849:23;27864:7;27849:14;:23::i;:::-;27833:39;;27897:5;-1:-1:-1;;;;;27891:11:0;:2;-1:-1:-1;;;;;27891:11:0;;;27883:57;;;;-1:-1:-1;;;27883:57:0;;14364:2:1;27883:57:0;;;14346:21:1;14403:2;14383:18;;;14376:30;14442:34;14422:18;;;14415:62;-1:-1:-1;;;14493:18:1;;;14486:31;14534:19;;27883:57:0;14162:397:1;27883:57:0;4499:10;-1:-1:-1;;;;;27975:21:0;;;;:62;;-1:-1:-1;28000:37:0;28017:5;4499:10;28748:164;:::i;28000:37::-;27953:168;;;;-1:-1:-1;;;27953:168:0;;10811:2:1;27953:168:0;;;10793:21:1;10850:2;10830:18;;;10823:30;10889:34;10869:18;;;10862:62;10960:26;10940:18;;;10933:54;11004:19;;27953:168:0;10609:420:1;27953:168:0;28134:21;28143:2;28147:7;28134:8;:21::i;:::-;27822:341;27752:411;;:::o;42339:100::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;42411:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42339:100:::0;:::o;42445:77::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;42501:6:::1;:15:::0;;-1:-1:-1;;42501:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42445:77::o;39769:89::-;39813:7;39836:16;:6;1115:14;;1023:114;39836:16;39829:23;;39769:89;:::o;28979:339::-;29174:41;4499:10;29207:7;29174:18;:41::i;:::-;29166:103;;;;-1:-1:-1;;;29166:103:0;;;;;;;:::i;:::-;29282:28;29292:4;29298:2;29302:7;29282:9;:28::i;42528:134::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;42616:39:::1;::::0;42587:21:::1;::::0;42624:10:::1;::::0;42616:39;::::1;;;::::0;42587:21;;42571:13:::1;42616:39:::0;42571:13;42616:39;42587:21;42624:10;42616:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;29389:185:::0;29527:39;29544:4;29550:2;29554:7;29527:39;;;;;;;;;;;;:16;:39::i;40958:635::-;41033:16;41061:23;41087:17;41097:6;41087:9;:17::i;:::-;41061:43;;41111:30;41158:15;41144:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41144:30:0;-1:-1:-1;41111:63:0;-1:-1:-1;41206:1:0;41181:22;41250:309;41275:15;41257;:33;:64;;;;;41312:9;;41294:14;:27;;41257:64;41250:309;;;41332:25;41360:23;41368:14;41360:7;:23::i;:::-;41332:51;;41419:6;-1:-1:-1;;;;;41398:27:0;:17;-1:-1:-1;;;;;41398:27:0;;41394:131;;;41471:14;41438:13;41452:15;41438:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;41498:17;;;;:::i;:::-;;;;41394:131;41535:16;;;;:::i;:::-;;;;41323:236;41250:309;;;-1:-1:-1;41574:13:0;;40958:635;-1:-1:-1;;;;40958:635:0:o;42027:74::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;42083:4:::1;:12:::0;42027:74::o;39075:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39047:23::-;;;;;;;:::i;26364:239::-;26436:7;26472:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26472:16:0;26507:19;26499:73;;;;-1:-1:-1;;;26499:73:0;;11647:2:1;26499:73:0;;;11629:21:1;11686:2;11666:18;;;11659:30;11725:34;11705:18;;;11698:62;-1:-1:-1;;;11776:18:1;;;11769:39;11825:19;;26499:73:0;11445:405:1;26094:208:0;26166:7;-1:-1:-1;;;;;26194:19:0;;26186:74;;;;-1:-1:-1;;;26186:74:0;;11236:2:1;26186:74:0;;;11218:21:1;11275:2;11255:18;;;11248:30;11314:34;11294:18;;;11287:62;-1:-1:-1;;;11365:18:1;;;11358:40;11415:19;;26186:74:0;11034:406:1;26186:74:0;-1:-1:-1;;;;;;26278:16:0;;;;;:9;:16;;;;;;;26094:208::o;6346:103::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;6411:30:::1;6438:1;6411:18;:30::i;:::-;6346:103::o:0;42233:100::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;42305:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;42107:120::-:0;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;42188:13:::1;:33:::0;42107:120::o;40825:125::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;40912:32:::1;40922:8;40932:11;40912:9;:32::i;26839:104::-:0;26895:13;26928:7;26921:14;;;;;:::i;39864:744::-;39929:11;39491:9;;39476:11;39457:16;:6;1115:14;;1023:114;39457:16;:30;;;;:::i;:::-;:43;;39449:76;;;;-1:-1:-1;;;39449:76:0;;14766:2:1;39449:76:0;;;14748:21:1;14805:2;14785:18;;;14778:30;-1:-1:-1;;;14824:18:1;;;14817:50;14884:18;;39449:76:0;14564:344:1;39449:76:0;39580:10;39532:24;39559:32;;;:20;:32;;;;;;39640:13;;39606:30;39625:11;39559:32;39606:30;:::i;:::-;:47;;39598:95;;;;-1:-1:-1;;;39598:95:0;;12418:2:1;39598:95:0;;;12400:21:1;12457:2;12437:18;;;12430:30;12496:34;12476:18;;;12469:62;-1:-1:-1;;;12547:18:1;;;12540:33;12590:19;;39598:95:0;12216:399:1;39598:95:0;39723:10;39702:32;;;;:20;:32;;;;;:47;;39738:11;;39702:32;:47;;39738:11;;39702:47;:::i;:::-;;;;-1:-1:-1;;39958:6:0::1;::::0;::::1;;39957:7;39949:43;;;::::0;-1:-1:-1;;;39949:43:0;;13596:2:1;39949:43:0::1;::::0;::::1;13578:21:1::0;13635:2;13615:18;;;13608:30;13674:25;13654:18;;;13647:53;13717:18;;39949:43:0::1;13394:347:1::0;39949:43:0::1;40000:10;40013:21;40023:10;40013:9;:21::i;:::-;40000:34:::0;-1:-1:-1;40045:9:0;;40041:562:::1;;40095:11;40088:4;;:18;;;;:::i;:::-;40075:9;:31;;40067:63;;;::::0;-1:-1:-1;;;40067:63:0;;15533:2:1;40067:63:0::1;::::0;::::1;15515:21:1::0;15572:2;15552:18;;;15545:30;-1:-1:-1;;;15591:18:1;;;15584:49;15650:18;;40067:63:0::1;15331:343:1::0;40067:63:0::1;40141:34;40151:10;40163:11;40141:9;:34::i;:::-;40041:562;;;40236:1;40222:11;:15;40218:374;;;40300:15;40314:1;40300:11:::0;:15:::1;:::i;:::-;40292:4;;:24;;;;:::i;40218:374::-;40541:34;40551:10;40563:11;40541:9;:34::i;:::-;39942:666;39442:321:::0;39864:744;;:::o;28522:155::-;28617:52;4499:10;28650:8;28660;28617:18;:52::i;29645:328::-;29820:41;4499:10;29853:7;29820:18;:41::i;:::-;29812:103;;;;-1:-1:-1;;;29812:103:0;;;;;;;:::i;:::-;29926:39;29940:4;29946:2;29950:7;29959:5;29926:13;:39::i;41599:420::-;31548:4;31572:16;;;:7;:16;;;;;;41698:13;;-1:-1:-1;;;;;31572:16:0;41723:98;;;;-1:-1:-1;;;41723:98:0;;13948:2:1;41723:98:0;;;13930:21:1;13987:2;13967:18;;;13960:30;14026:34;14006:18;;;13999:62;-1:-1:-1;;;14077:18:1;;;14070:45;14132:19;;41723:98:0;13746:411:1;41723:98:0;41828:28;41859:10;:8;:10::i;:::-;41828:41;;41914:1;41889:14;41883:28;:32;:130;;;;;;;;;;;;;;;;;41951:14;41967:19;:8;:17;:19::i;:::-;41988:9;41934:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41883:130;41876:137;41599:420;-1:-1:-1;;;41599:420:0:o;6604:201::-;5768:6;;-1:-1:-1;;;;;5768:6:0;4499:10;5915:23;5907:68;;;;-1:-1:-1;;;5907:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6693:22:0;::::1;6685:73;;;::::0;-1:-1:-1;;;6685:73:0;;8469:2:1;6685:73:0::1;::::0;::::1;8451:21:1::0;8508:2;8488:18;;;8481:30;8547:34;8527:18;;;8520:62;-1:-1:-1;;;8598:18:1;;;8591:36;8644:19;;6685:73:0::1;8267:402:1::0;6685:73:0::1;6769:28;6788:8;6769:18;:28::i;:::-;6604:201:::0;:::o;35629:174::-;35704:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35704:29:0;-1:-1:-1;;;;;35704:29:0;;;;;;;;:24;;35758:23;35704:24;35758:14;:23::i;:::-;-1:-1:-1;;;;;35749:46:0;;;;;;;;;;;35629:174;;:::o;31777:348::-;31870:4;31572:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31572:16:0;31887:73;;;;-1:-1:-1;;;31887:73:0;;10398:2:1;31887:73:0;;;10380:21:1;10437:2;10417:18;;;10410:30;10476:34;10456:18;;;10449:62;-1:-1:-1;;;10527:18:1;;;10520:42;10579:19;;31887:73:0;10196:408:1;31887:73:0;31971:13;31987:23;32002:7;31987:14;:23::i;:::-;31971:39;;32040:5;-1:-1:-1;;;;;32029:16:0;:7;-1:-1:-1;;;;;32029:16:0;;:51;;;;32073:7;-1:-1:-1;;;;;32049:31:0;:20;32061:7;32049:11;:20::i;:::-;-1:-1:-1;;;;;32049:31:0;;32029:51;:87;;;-1:-1:-1;;;;;;28869:25:0;;;28845:4;28869:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32084:32;32021:96;31777:348;-1:-1:-1;;;;31777:348:0:o;34886:625::-;35045:4;-1:-1:-1;;;;;35018:31:0;:23;35033:7;35018:14;:23::i;:::-;-1:-1:-1;;;;;35018:31:0;;35010:81;;;;-1:-1:-1;;;35010:81:0;;8876:2:1;35010:81:0;;;8858:21:1;8915:2;8895:18;;;8888:30;8954:34;8934:18;;;8927:62;-1:-1:-1;;;9005:18:1;;;8998:35;9050:19;;35010:81:0;8674:401:1;35010:81:0;-1:-1:-1;;;;;35110:16:0;;35102:65;;;;-1:-1:-1;;;35102:65:0;;9639:2:1;35102:65:0;;;9621:21:1;9678:2;9658:18;;;9651:30;9717:34;9697:18;;;9690:62;-1:-1:-1;;;9768:18:1;;;9761:34;9812:19;;35102:65:0;9437:400:1;35102:65:0;35284:29;35301:1;35305:7;35284:8;:29::i;:::-;-1:-1:-1;;;;;35326:15:0;;;;;;:9;:15;;;;;:20;;35345:1;;35326:15;:20;;35345:1;;35326:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35357:13:0;;;;;;:9;:13;;;;;:18;;35374:1;;35357:13;:18;;35374:1;;35357:18;:::i;:::-;;;;-1:-1:-1;;35386:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35386:21:0;-1:-1:-1;;;;;35386:21:0;;;;;;;;;35425:27;;35386:16;;35425:27;;;;;;;27822:341;27752:411;;:::o;6965:191::-;7058:6;;;-1:-1:-1;;;;;7075:17:0;;;-1:-1:-1;;;;;;7075:17:0;;;;;;;7108:40;;7058:6;;;7075:17;7058:6;;7108:40;;7039:16;;7108:40;7028:128;6965:191;:::o;40615:204::-;40695:9;40690:124;40714:11;40710:1;:15;40690:124;;;40741:18;:6;1234:19;;1252:1;1234:19;;;1145:127;40741:18;40768:38;40778:9;40789:16;:6;1115:14;;1023:114;40789:16;40768:9;:38::i;:::-;40727:3;;;;:::i;:::-;;;;40690:124;;35945:315;36100:8;-1:-1:-1;;;;;36091:17:0;:5;-1:-1:-1;;;;;36091:17:0;;;36083:55;;;;-1:-1:-1;;;36083:55:0;;10044:2:1;36083:55:0;;;10026:21:1;10083:2;10063:18;;;10056:30;10122:27;10102:18;;;10095:55;10167:18;;36083:55:0;9842:349:1;36083:55:0;-1:-1:-1;;;;;36149:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36149:46:0;;;;;;;;;;36211:41;;7572::1;;;36211::0;;7545:18:1;36211:41:0;;;;;;;35945:315;;;:::o;30855:::-;31012:28;31022:4;31028:2;31032:7;31012:9;:28::i;:::-;31059:48;31082:4;31088:2;31092:7;31101:5;31059:22;:48::i;:::-;31051:111;;;;-1:-1:-1;;;31051:111:0;;;;;;;:::i;42666:104::-;42726:13;42755:9;42748:16;;;;;:::i;1981:723::-;2037:13;2258:10;2254:53;;-1:-1:-1;;2285:10:0;;;;;;;;;;;;-1:-1:-1;;;2285:10:0;;;;;1981:723::o;2254:53::-;2332:5;2317:12;2373:78;2380:9;;2373:78;;2406:8;;;;:::i;:::-;;-1:-1:-1;2429:10:0;;-1:-1:-1;2437:2:0;2429:10;;:::i;:::-;;;2373:78;;;2461:19;2493:6;2483:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2483:17:0;;2461:39;;2511:154;2518:10;;2511:154;;2545:11;2555:1;2545:11;;:::i;:::-;;-1:-1:-1;2614:10:0;2622:2;2614:5;:10;:::i;:::-;2601:24;;:2;:24;:::i;:::-;2588:39;;2571:6;2578;2571:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2571:56:0;;;;;;;;-1:-1:-1;2642:11:0;2651:2;2642:11;;:::i;:::-;;;2511:154;;32467:110;32543:26;32553:2;32557:7;32543:26;;;;;;;;;;;;:9;:26::i;36825:799::-;36980:4;-1:-1:-1;;;;;37001:13:0;;8691:19;:23;36997:620;;37037:72;;-1:-1:-1;;;37037:72:0;;-1:-1:-1;;;;;37037:36:0;;;;;:72;;4499:10;;37088:4;;37094:7;;37103:5;;37037:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37037:72:0;;;;;;;;-1:-1:-1;;37037:72:0;;;;;;;;;;;;:::i;:::-;;;37033:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37279:13:0;;37275:272;;37322:60;;-1:-1:-1;;;37322:60:0;;;;;;;:::i;37275:272::-;37497:6;37491:13;37482:6;37478:2;37474:15;37467:38;37033:529;-1:-1:-1;;;;;;37160:51:0;-1:-1:-1;;;37160:51:0;;-1:-1:-1;37153:58:0;;36997:620;-1:-1:-1;37601:4:0;36825:799;;;;;;:::o;32804:321::-;32934:18;32940:2;32944:7;32934:5;:18::i;:::-;32985:54;33016:1;33020:2;33024:7;33033:5;32985:22;:54::i;:::-;32963:154;;;;-1:-1:-1;;;32963:154:0;;;;;;;:::i;33461:439::-;-1:-1:-1;;;;;33541:16:0;;33533:61;;;;-1:-1:-1;;;33533:61:0;;12057:2:1;33533:61:0;;;12039:21:1;;;12076:18;;;12069:30;12135:34;12115:18;;;12108:62;12187:18;;33533:61:0;11855:356:1;33533:61:0;31548:4;31572:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31572:16:0;:30;33605:58;;;;-1:-1:-1;;;33605:58:0;;9282:2:1;33605:58:0;;;9264:21:1;9321:2;9301:18;;;9294:30;9360;9340:18;;;9333:58;9408:18;;33605:58:0;9080:352:1;33605:58:0;-1:-1:-1;;;;;33734:13:0;;;;;;:9;:13;;;;;:18;;33751:1;;33734:13;:18;;33751:1;;33734:18;:::i;:::-;;;;-1:-1:-1;;33763:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33763:21:0;-1:-1:-1;;;;;33763:21:0;;;;;;;;33802:33;;33763:16;;;33802:33;;33763:16;;33802:33;42411:22:::1;42339:100:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;15934:1;15927:14;;;15971:4;15958:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6302:488::-;-1:-1:-1;;;;;6571:15:1;;;6553:34;;6623:15;;6618:2;6603:18;;6596:43;6670:2;6655:18;;6648:34;;;6718:3;6713:2;6698:18;;6691:31;;;6496:4;;6739:45;;6764:19;;6756:6;6739:45;:::i;:::-;6731:53;6302:488;-1:-1:-1;;;;;;6302:488:1:o;6795:632::-;6966:2;7018:21;;;7088:13;;6991:18;;;7110:22;;;6937:4;;6966:2;7189:15;;;;7163:2;7148:18;;;6937:4;7232:169;7246:6;7243:1;7240:13;7232:169;;;7307:13;;7295:26;;7376:15;;;;7341:12;;;;7268:1;7261:9;7232:169;;;-1:-1:-1;7418:3:1;;6795:632;-1:-1:-1;;;;;;6795:632:1:o;7624:219::-;7773:2;7762:9;7755:21;7736:4;7793:44;7833:2;7822:9;7818:18;7810:6;7793:44;:::i;7848:414::-;8050:2;8032:21;;;8089:2;8069:18;;;8062:30;8128:34;8123:2;8108:18;;8101:62;-1:-1:-1;;;8194:2:1;8179:18;;8172:48;8252:3;8237:19;;7848:414::o;13033:356::-;13235:2;13217:21;;;13254:18;;;13247:30;13313:34;13308:2;13293:18;;13286:62;13380:2;13365:18;;13033:356::o;14913:413::-;15115:2;15097:21;;;15154:2;15134:18;;;15127:30;15193:34;15188:2;15173:18;;15166:62;-1:-1:-1;;;15259:2:1;15244:18;;15237:47;15316:3;15301:19;;14913:413::o;15987:128::-;16027:3;16058:1;16054:6;16051:1;16048:13;16045:39;;;16064:18;;:::i;:::-;-1:-1:-1;16100:9:1;;15987:128::o;16120:120::-;16160:1;16186;16176:35;;16191:18;;:::i;:::-;-1:-1:-1;16225:9:1;;16120:120::o;16245:168::-;16285:7;16351:1;16347;16343:6;16339:14;16336:1;16333:21;16328:1;16321:9;16314:17;16310:45;16307:71;;;16358:18;;:::i;:::-;-1:-1:-1;16398:9:1;;16245:168::o;16418:125::-;16458:4;16486:1;16483;16480:8;16477:34;;;16491:18;;:::i;:::-;-1:-1:-1;16528:9:1;;16418:125::o;16548:258::-;16620:1;16630:113;16644:6;16641:1;16638:13;16630:113;;;16720:11;;;16714:18;16701:11;;;16694:39;16666:2;16659:10;16630:113;;;16761:6;16758:1;16755:13;16752:48;;;-1:-1:-1;;16796:1:1;16778:16;;16771:27;16548:258::o;16811:380::-;16890:1;16886:12;;;;16933;;;16954:61;;17008:4;17000:6;16996:17;16986:27;;16954:61;17061:2;17053:6;17050:14;17030:18;17027:38;17024:161;;;17107:10;17102:3;17098:20;17095:1;17088:31;17142:4;17139:1;17132:15;17170:4;17167:1;17160:15;17024:161;;16811:380;;;:::o;17196:135::-;17235:3;-1:-1:-1;;17256:17:1;;17253:43;;;17276:18;;:::i;:::-;-1:-1:-1;17323:1:1;17312:13;;17196:135::o;17336:112::-;17368:1;17394;17384:35;;17399:18;;:::i;:::-;-1:-1:-1;17433:9:1;;17336:112::o;17453:127::-;17514:10;17509:3;17505:20;17502:1;17495:31;17545:4;17542:1;17535:15;17569:4;17566:1;17559:15;17585:127;17646:10;17641:3;17637:20;17634:1;17627:31;17677:4;17674:1;17667:15;17701:4;17698:1;17691:15;17717:127;17778:10;17773:3;17769:20;17766:1;17759:31;17809:4;17806:1;17799:15;17833:4;17830:1;17823:15;17849:127;17910:10;17905:3;17901:20;17898:1;17891:31;17941:4;17938:1;17931:15;17965:4;17962:1;17955:15;17981:131;-1:-1:-1;;;;;;18055:32:1;;18045:43;;18035:71;;18102:1;18099;18092:12

Swarm Source

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