ETH Price: $3,473.45 (+1.60%)
Gas: 9 Gwei

Token

Badaliensocialclub (BASC)
 

Overview

Max Total Supply

0 BASC

Holders

720

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BASC
0x2d07cd174a5041bac0735cc55e49124fe86c4bf7
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:
Badaliensocialclub

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/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

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

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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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

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

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

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

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

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
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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);
    }

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

    /**
     * @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 of token that is not own"
        );
        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);
    }

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

pragma solidity ^0.8.5;

contract Badaliensocialclub is ERC721, Ownable {
    using Strings for uint256;
    uint256 public cost = 0.09 ether;
    uint256 public maxSupply = 3333;
    uint256 public maxMintAmount = 100;
    uint256 public tokenCount = 0;
    bool public paused = false;
    string public baseURI;

    mapping(address => uint256) public addressMintedBalance;

    constructor(string memory _initBaseURI)
        ERC721("Badaliensocialclub", "BASC")
    {
        baseURI = _initBaseURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Token ID does not exist");
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(baseURI, "/", tokenId.toString(), ".json")
                )
                : "";
    }

    function mint(uint256 _amount) external payable {
        require(!paused, "badaliensocialclub - The Contract is Paused");
        require(
            tokenCount + _amount <= maxSupply,
            "badaliensocialclub - max NFT limit exceeded"
        );
        if (msg.sender != owner()) {
            require(
                _amount <= maxMintAmount,
                "badaliensocialclub - max mint amount limit exceeded"
            );
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(
                ownerMintedCount + _amount <= maxMintAmount,
                "badaliensocialclub - max NFT per address exceeded"
            );
            require(
                msg.value >= cost * _amount,
                "badaliensocialclub - insufficient ethers"
            );
        }
        for (uint256 i = 1; i <= _amount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, ++tokenCount);
        }
    }

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner {
        maxMintAmount = _maxMintAmount;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function setBaseURI(string memory _baseURI) public onlyOwner {
        baseURI = _baseURI;
    }

    function pause() public onlyOwner {
        paused = !paused;
    }

    function withdraw() public onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"pause","outputs":[],"stateMutability":"nonpayable","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":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","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":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267013fbe85edc90000600755610d0560085560646009556000600a55600b805460ff191690553480156200003757600080fd5b506040516200225f3803806200225f8339810160408190526200005a9162000212565b60408051808201825260128152712130b230b634b2b739b7b1b4b0b631b63ab160711b6020808301918252835180850190945260048452634241534360e01b908401528151919291620000b09160009162000156565b508051620000c690600190602084019062000156565b505050620000e3620000dd6200010060201b60201c565b62000104565b8051620000f890600c90602084019062000156565b50506200032b565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016490620002ee565b90600052602060002090601f016020900481019282620001885760008555620001d3565b82601f10620001a357805160ff1916838001178555620001d3565b82800160010185558215620001d3579182015b82811115620001d3578251825591602001919060010190620001b6565b50620001e1929150620001e5565b5090565b5b80821115620001e15760008155600101620001e6565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200022657600080fd5b82516001600160401b03808211156200023e57600080fd5b818501915085601f8301126200025357600080fd5b815181811115620002685762000268620001fc565b604051601f8201601f19908116603f01168101908382118183101715620002935762000293620001fc565b816040528281528886848701011115620002ac57600080fd5b600093505b82841015620002d05784840186015181850187015292850192620002b1565b82841115620002e25760008684830101525b98975050505050505050565b600181811c908216806200030357607f821691505b602082108114156200032557634e487b7160e01b600052602260045260246000fd5b50919050565b611f24806200033b6000396000f3fe6080604052600436106101cd5760003560e01c80636c0360eb116100f75780639f181b5e11610095578063c87b56dd11610064578063c87b56dd146104f4578063d5abeb0114610514578063e985e9c51461052a578063f2fde38b1461057357600080fd5b80639f181b5e1461048b578063a0712d68146104a1578063a22cb465146104b4578063b88d4fde146104d457600080fd5b8063715018a6116100d1578063715018a61461042e5780638456cb59146104435780638da5cb5b1461045857806395d89b411461047657600080fd5b80636c0360eb146103d95780636f8b44b0146103ee57806370a082311461040e57600080fd5b8063239c70ae1161016f57806344a0d68a1161013e57806344a0d68a1461035f57806355f804b31461037f5780635c975abb1461039f5780636352211e146103b957600080fd5b8063239c70ae146102f457806323b872dd1461030a5780633ccfd60b1461032a57806342842e0e1461033f57600080fd5b8063088a4ed0116101ab578063088a4ed014610261578063095ea7b31461028357806313faede6146102a357806318cae269146102c757600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046118c2565b610593565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105e5565b6040516101fe919061193e565b34801561023557600080fd5b50610249610244366004611951565b610677565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611951565b610711565b005b34801561028f57600080fd5b5061028161029e366004611986565b610740565b3480156102af57600080fd5b506102b960075481565b6040519081526020016101fe565b3480156102d357600080fd5b506102b96102e23660046119b0565b600d6020526000908152604090205481565b34801561030057600080fd5b506102b960095481565b34801561031657600080fd5b506102816103253660046119cb565b610856565b34801561033657600080fd5b50610281610887565b34801561034b57600080fd5b5061028161035a3660046119cb565b610925565b34801561036b57600080fd5b5061028161037a366004611951565b610940565b34801561038b57600080fd5b5061028161039a366004611a93565b61096f565b3480156103ab57600080fd5b50600b546101f29060ff1681565b3480156103c557600080fd5b506102496103d4366004611951565b6109b0565b3480156103e557600080fd5b5061021c610a27565b3480156103fa57600080fd5b50610281610409366004611951565b610ab5565b34801561041a57600080fd5b506102b96104293660046119b0565b610ae4565b34801561043a57600080fd5b50610281610b6b565b34801561044f57600080fd5b50610281610ba1565b34801561046457600080fd5b506006546001600160a01b0316610249565b34801561048257600080fd5b5061021c610bdf565b34801561049757600080fd5b506102b9600a5481565b6102816104af366004611951565b610bee565b3480156104c057600080fd5b506102816104cf366004611adc565b610e96565b3480156104e057600080fd5b506102816104ef366004611b18565b610f5b565b34801561050057600080fd5b5061021c61050f366004611951565b610f93565b34801561052057600080fd5b506102b960085481565b34801561053657600080fd5b506101f2610545366004611b94565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561057f57600080fd5b5061028161058e3660046119b0565b611066565b60006001600160e01b031982166380ac58cd60e01b14806105c457506001600160e01b03198216635b5e139f60e01b145b806105df57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105f490611bc7565b80601f016020809104026020016040519081016040528092919081815260200182805461062090611bc7565b801561066d5780601f106106425761010080835404028352916020019161066d565b820191906000526020600020905b81548152906001019060200180831161065057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106f55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6006546001600160a01b0316331461073b5760405162461bcd60e51b81526004016106ec90611c02565b600955565b600061074b826109b0565b9050806001600160a01b0316836001600160a01b031614156107b95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ec565b336001600160a01b03821614806107d557506107d58133610545565b6108475760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ec565b61085183836110fe565b505050565b610860338261116c565b61087c5760405162461bcd60e51b81526004016106ec90611c37565b610851838383611263565b6006546001600160a01b031633146108b15760405162461bcd60e51b81526004016106ec90611c02565b60006108c56006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461090f576040519150601f19603f3d011682016040523d82523d6000602084013e610914565b606091505b505090508061092257600080fd5b50565b61085183838360405180602001604052806000815250610f5b565b6006546001600160a01b0316331461096a5760405162461bcd60e51b81526004016106ec90611c02565b600755565b6006546001600160a01b031633146109995760405162461bcd60e51b81526004016106ec90611c02565b80516109ac90600c906020840190611813565b5050565b6000818152600260205260408120546001600160a01b0316806105df5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ec565b600c8054610a3490611bc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090611bc7565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b505050505081565b6006546001600160a01b03163314610adf5760405162461bcd60e51b81526004016106ec90611c02565b600855565b60006001600160a01b038216610b4f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ec565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b955760405162461bcd60e51b81526004016106ec90611c02565b610b9f6000611403565b565b6006546001600160a01b03163314610bcb5760405162461bcd60e51b81526004016106ec90611c02565b600b805460ff19811660ff90911615179055565b6060600180546105f490611bc7565b600b5460ff1615610c555760405162461bcd60e51b815260206004820152602b60248201527f626164616c69656e736f6369616c636c7562202d2054686520436f6e7472616360448201526a1d081a5cc814185d5cd95960aa1b60648201526084016106ec565b60085481600a54610c669190611c9e565b1115610cc85760405162461bcd60e51b815260206004820152602b60248201527f626164616c69656e736f6369616c636c7562202d206d6178204e4654206c696d60448201526a1a5d08195e18d95959195960aa1b60648201526084016106ec565b6006546001600160a01b03163314610e3d57600954811115610d485760405162461bcd60e51b815260206004820152603360248201527f626164616c69656e736f6369616c636c7562202d206d6178206d696e7420616d6044820152721bdd5b9d081b1a5b5a5d08195e18d959591959606a1b60648201526084016106ec565b336000908152600d6020526040902054600954610d658383611c9e565b1115610dcd5760405162461bcd60e51b815260206004820152603160248201527f626164616c69656e736f6369616c636c7562202d206d6178204e465420706572604482015270081859191c995cdcc8195e18d959591959607a1b60648201526084016106ec565b81600754610ddb9190611cb6565b341015610e3b5760405162461bcd60e51b815260206004820152602860248201527f626164616c69656e736f6369616c636c7562202d20696e73756666696369656e604482015267742065746865727360c01b60648201526084016106ec565b505b60015b8181116109ac57336000908152600d60205260408120805491610e6283611cd5565b9190505550610e8433600a60008154610e7a90611cd5565b9182905550611455565b80610e8e81611cd5565b915050610e40565b6001600160a01b038216331415610eef5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ec565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f65338361116c565b610f815760405162461bcd60e51b81526004016106ec90611c37565b610f8d8484848461146f565b50505050565b6000818152600260205260409020546060906001600160a01b031661100a5760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e20494420646f6573206e6f6044820152661d08195e1a5cdd60ca1b60648201526084016106ec565b6000600c805461101990611bc7565b90501161103557604051806020016040528060008152506105df565b600c611040836114a2565b604051602001611051929190611d0c565b60405160208183030381529060405292915050565b6006546001600160a01b031633146110905760405162461bcd60e51b81526004016106ec90611c02565b6001600160a01b0381166110f55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ec565b61092281611403565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611133826109b0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111e55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ec565b60006111f0836109b0565b9050806001600160a01b0316846001600160a01b0316148061122b5750836001600160a01b031661122084610677565b6001600160a01b0316145b8061125b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611276826109b0565b6001600160a01b0316146112de5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ec565b6001600160a01b0382166113405760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ec565b61134b6000826110fe565b6001600160a01b0383166000908152600360205260408120805460019290611374908490611dd7565b90915550506001600160a01b03821660009081526003602052604081208054600192906113a2908490611c9e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109ac8282604051806020016040528060008152506115a0565b61147a848484611263565b611486848484846115d3565b610f8d5760405162461bcd60e51b81526004016106ec90611dee565b6060816114c65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114f057806114da81611cd5565b91506114e99050600a83611e56565b91506114ca565b60008167ffffffffffffffff81111561150b5761150b611a07565b6040519080825280601f01601f191660200182016040528015611535576020820181803683370190505b5090505b841561125b5761154a600183611dd7565b9150611557600a86611e6a565b611562906030611c9e565b60f81b81838151811061157757611577611e7e565b60200101906001600160f81b031916908160001a905350611599600a86611e56565b9450611539565b6115aa83836116d1565b6115b760008484846115d3565b6108515760405162461bcd60e51b81526004016106ec90611dee565b60006001600160a01b0384163b156116c657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611617903390899088908890600401611e94565b6020604051808303816000875af1925050508015611652575060408051601f3d908101601f1916820190925261164f91810190611ed1565b60015b6116ac573d808015611680576040519150601f19603f3d011682016040523d82523d6000602084013e611685565b606091505b5080516116a45760405162461bcd60e51b81526004016106ec90611dee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061125b565b506001949350505050565b6001600160a01b0382166117275760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ec565b6000818152600260205260409020546001600160a01b03161561178c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ec565b6001600160a01b03821660009081526003602052604081208054600192906117b5908490611c9e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461181f90611bc7565b90600052602060002090601f0160209004810192826118415760008555611887565b82601f1061185a57805160ff1916838001178555611887565b82800160010185558215611887579182015b8281111561188757825182559160200191906001019061186c565b50611893929150611897565b5090565b5b808211156118935760008155600101611898565b6001600160e01b03198116811461092257600080fd5b6000602082840312156118d457600080fd5b81356118df816118ac565b9392505050565b60005b838110156119015781810151838201526020016118e9565b83811115610f8d5750506000910152565b6000815180845261192a8160208601602086016118e6565b601f01601f19169290920160200192915050565b6020815260006118df6020830184611912565b60006020828403121561196357600080fd5b5035919050565b80356001600160a01b038116811461198157600080fd5b919050565b6000806040838503121561199957600080fd5b6119a28361196a565b946020939093013593505050565b6000602082840312156119c257600080fd5b6118df8261196a565b6000806000606084860312156119e057600080fd5b6119e98461196a565b92506119f76020850161196a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a3857611a38611a07565b604051601f8501601f19908116603f01168101908282118183101715611a6057611a60611a07565b81604052809350858152868686011115611a7957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611aa557600080fd5b813567ffffffffffffffff811115611abc57600080fd5b8201601f81018413611acd57600080fd5b61125b84823560208401611a1d565b60008060408385031215611aef57600080fd5b611af88361196a565b915060208301358015158114611b0d57600080fd5b809150509250929050565b60008060008060808587031215611b2e57600080fd5b611b378561196a565b9350611b456020860161196a565b925060408501359150606085013567ffffffffffffffff811115611b6857600080fd5b8501601f81018713611b7957600080fd5b611b8887823560208401611a1d565b91505092959194509250565b60008060408385031215611ba757600080fd5b611bb08361196a565b9150611bbe6020840161196a565b90509250929050565b600181811c90821680611bdb57607f821691505b60208210811415611bfc57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611cb157611cb1611c88565b500190565b6000816000190483118215151615611cd057611cd0611c88565b500290565b6000600019821415611ce957611ce9611c88565b5060010190565b60008151611d028185602086016118e6565b9290920192915050565b600080845481600182811c915080831680611d2857607f831692505b6020808410821415611d4857634e487b7160e01b86526022600452602486fd5b818015611d5c5760018114611d6d57611d9a565b60ff19861689528489019650611d9a565b60008b81526020902060005b86811015611d925781548b820152908501908301611d79565b505084890196505b505050505050611dce611dbd611db783602f60f81b815260010190565b86611cf0565b64173539b7b760d91b815260050190565b95945050505050565b600082821015611de957611de9611c88565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611e6557611e65611e40565b500490565b600082611e7957611e79611e40565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ec790830184611912565b9695505050505050565b600060208284031215611ee357600080fd5b81516118df816118ac56fea2646970667358221220425ef1f9ddb82e992c1cd3f5d54177e15e15134aba6279cf1c370e8830a7ec1664736f6c634300080c0033000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000076261736575726900000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636c0360eb116100f75780639f181b5e11610095578063c87b56dd11610064578063c87b56dd146104f4578063d5abeb0114610514578063e985e9c51461052a578063f2fde38b1461057357600080fd5b80639f181b5e1461048b578063a0712d68146104a1578063a22cb465146104b4578063b88d4fde146104d457600080fd5b8063715018a6116100d1578063715018a61461042e5780638456cb59146104435780638da5cb5b1461045857806395d89b411461047657600080fd5b80636c0360eb146103d95780636f8b44b0146103ee57806370a082311461040e57600080fd5b8063239c70ae1161016f57806344a0d68a1161013e57806344a0d68a1461035f57806355f804b31461037f5780635c975abb1461039f5780636352211e146103b957600080fd5b8063239c70ae146102f457806323b872dd1461030a5780633ccfd60b1461032a57806342842e0e1461033f57600080fd5b8063088a4ed0116101ab578063088a4ed014610261578063095ea7b31461028357806313faede6146102a357806318cae269146102c757600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046118c2565b610593565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105e5565b6040516101fe919061193e565b34801561023557600080fd5b50610249610244366004611951565b610677565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611951565b610711565b005b34801561028f57600080fd5b5061028161029e366004611986565b610740565b3480156102af57600080fd5b506102b960075481565b6040519081526020016101fe565b3480156102d357600080fd5b506102b96102e23660046119b0565b600d6020526000908152604090205481565b34801561030057600080fd5b506102b960095481565b34801561031657600080fd5b506102816103253660046119cb565b610856565b34801561033657600080fd5b50610281610887565b34801561034b57600080fd5b5061028161035a3660046119cb565b610925565b34801561036b57600080fd5b5061028161037a366004611951565b610940565b34801561038b57600080fd5b5061028161039a366004611a93565b61096f565b3480156103ab57600080fd5b50600b546101f29060ff1681565b3480156103c557600080fd5b506102496103d4366004611951565b6109b0565b3480156103e557600080fd5b5061021c610a27565b3480156103fa57600080fd5b50610281610409366004611951565b610ab5565b34801561041a57600080fd5b506102b96104293660046119b0565b610ae4565b34801561043a57600080fd5b50610281610b6b565b34801561044f57600080fd5b50610281610ba1565b34801561046457600080fd5b506006546001600160a01b0316610249565b34801561048257600080fd5b5061021c610bdf565b34801561049757600080fd5b506102b9600a5481565b6102816104af366004611951565b610bee565b3480156104c057600080fd5b506102816104cf366004611adc565b610e96565b3480156104e057600080fd5b506102816104ef366004611b18565b610f5b565b34801561050057600080fd5b5061021c61050f366004611951565b610f93565b34801561052057600080fd5b506102b960085481565b34801561053657600080fd5b506101f2610545366004611b94565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561057f57600080fd5b5061028161058e3660046119b0565b611066565b60006001600160e01b031982166380ac58cd60e01b14806105c457506001600160e01b03198216635b5e139f60e01b145b806105df57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105f490611bc7565b80601f016020809104026020016040519081016040528092919081815260200182805461062090611bc7565b801561066d5780601f106106425761010080835404028352916020019161066d565b820191906000526020600020905b81548152906001019060200180831161065057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106f55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6006546001600160a01b0316331461073b5760405162461bcd60e51b81526004016106ec90611c02565b600955565b600061074b826109b0565b9050806001600160a01b0316836001600160a01b031614156107b95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ec565b336001600160a01b03821614806107d557506107d58133610545565b6108475760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ec565b61085183836110fe565b505050565b610860338261116c565b61087c5760405162461bcd60e51b81526004016106ec90611c37565b610851838383611263565b6006546001600160a01b031633146108b15760405162461bcd60e51b81526004016106ec90611c02565b60006108c56006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461090f576040519150601f19603f3d011682016040523d82523d6000602084013e610914565b606091505b505090508061092257600080fd5b50565b61085183838360405180602001604052806000815250610f5b565b6006546001600160a01b0316331461096a5760405162461bcd60e51b81526004016106ec90611c02565b600755565b6006546001600160a01b031633146109995760405162461bcd60e51b81526004016106ec90611c02565b80516109ac90600c906020840190611813565b5050565b6000818152600260205260408120546001600160a01b0316806105df5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ec565b600c8054610a3490611bc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6090611bc7565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b505050505081565b6006546001600160a01b03163314610adf5760405162461bcd60e51b81526004016106ec90611c02565b600855565b60006001600160a01b038216610b4f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ec565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610b955760405162461bcd60e51b81526004016106ec90611c02565b610b9f6000611403565b565b6006546001600160a01b03163314610bcb5760405162461bcd60e51b81526004016106ec90611c02565b600b805460ff19811660ff90911615179055565b6060600180546105f490611bc7565b600b5460ff1615610c555760405162461bcd60e51b815260206004820152602b60248201527f626164616c69656e736f6369616c636c7562202d2054686520436f6e7472616360448201526a1d081a5cc814185d5cd95960aa1b60648201526084016106ec565b60085481600a54610c669190611c9e565b1115610cc85760405162461bcd60e51b815260206004820152602b60248201527f626164616c69656e736f6369616c636c7562202d206d6178204e4654206c696d60448201526a1a5d08195e18d95959195960aa1b60648201526084016106ec565b6006546001600160a01b03163314610e3d57600954811115610d485760405162461bcd60e51b815260206004820152603360248201527f626164616c69656e736f6369616c636c7562202d206d6178206d696e7420616d6044820152721bdd5b9d081b1a5b5a5d08195e18d959591959606a1b60648201526084016106ec565b336000908152600d6020526040902054600954610d658383611c9e565b1115610dcd5760405162461bcd60e51b815260206004820152603160248201527f626164616c69656e736f6369616c636c7562202d206d6178204e465420706572604482015270081859191c995cdcc8195e18d959591959607a1b60648201526084016106ec565b81600754610ddb9190611cb6565b341015610e3b5760405162461bcd60e51b815260206004820152602860248201527f626164616c69656e736f6369616c636c7562202d20696e73756666696369656e604482015267742065746865727360c01b60648201526084016106ec565b505b60015b8181116109ac57336000908152600d60205260408120805491610e6283611cd5565b9190505550610e8433600a60008154610e7a90611cd5565b9182905550611455565b80610e8e81611cd5565b915050610e40565b6001600160a01b038216331415610eef5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ec565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f65338361116c565b610f815760405162461bcd60e51b81526004016106ec90611c37565b610f8d8484848461146f565b50505050565b6000818152600260205260409020546060906001600160a01b031661100a5760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e20494420646f6573206e6f6044820152661d08195e1a5cdd60ca1b60648201526084016106ec565b6000600c805461101990611bc7565b90501161103557604051806020016040528060008152506105df565b600c611040836114a2565b604051602001611051929190611d0c565b60405160208183030381529060405292915050565b6006546001600160a01b031633146110905760405162461bcd60e51b81526004016106ec90611c02565b6001600160a01b0381166110f55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ec565b61092281611403565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611133826109b0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111e55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ec565b60006111f0836109b0565b9050806001600160a01b0316846001600160a01b0316148061122b5750836001600160a01b031661122084610677565b6001600160a01b0316145b8061125b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611276826109b0565b6001600160a01b0316146112de5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106ec565b6001600160a01b0382166113405760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ec565b61134b6000826110fe565b6001600160a01b0383166000908152600360205260408120805460019290611374908490611dd7565b90915550506001600160a01b03821660009081526003602052604081208054600192906113a2908490611c9e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109ac8282604051806020016040528060008152506115a0565b61147a848484611263565b611486848484846115d3565b610f8d5760405162461bcd60e51b81526004016106ec90611dee565b6060816114c65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114f057806114da81611cd5565b91506114e99050600a83611e56565b91506114ca565b60008167ffffffffffffffff81111561150b5761150b611a07565b6040519080825280601f01601f191660200182016040528015611535576020820181803683370190505b5090505b841561125b5761154a600183611dd7565b9150611557600a86611e6a565b611562906030611c9e565b60f81b81838151811061157757611577611e7e565b60200101906001600160f81b031916908160001a905350611599600a86611e56565b9450611539565b6115aa83836116d1565b6115b760008484846115d3565b6108515760405162461bcd60e51b81526004016106ec90611dee565b60006001600160a01b0384163b156116c657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611617903390899088908890600401611e94565b6020604051808303816000875af1925050508015611652575060408051601f3d908101601f1916820190925261164f91810190611ed1565b60015b6116ac573d808015611680576040519150601f19603f3d011682016040523d82523d6000602084013e611685565b606091505b5080516116a45760405162461bcd60e51b81526004016106ec90611dee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061125b565b506001949350505050565b6001600160a01b0382166117275760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ec565b6000818152600260205260409020546001600160a01b03161561178c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ec565b6001600160a01b03821660009081526003602052604081208054600192906117b5908490611c9e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461181f90611bc7565b90600052602060002090601f0160209004810192826118415760008555611887565b82601f1061185a57805160ff1916838001178555611887565b82800160010185558215611887579182015b8281111561188757825182559160200191906001019061186c565b50611893929150611897565b5090565b5b808211156118935760008155600101611898565b6001600160e01b03198116811461092257600080fd5b6000602082840312156118d457600080fd5b81356118df816118ac565b9392505050565b60005b838110156119015781810151838201526020016118e9565b83811115610f8d5750506000910152565b6000815180845261192a8160208601602086016118e6565b601f01601f19169290920160200192915050565b6020815260006118df6020830184611912565b60006020828403121561196357600080fd5b5035919050565b80356001600160a01b038116811461198157600080fd5b919050565b6000806040838503121561199957600080fd5b6119a28361196a565b946020939093013593505050565b6000602082840312156119c257600080fd5b6118df8261196a565b6000806000606084860312156119e057600080fd5b6119e98461196a565b92506119f76020850161196a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a3857611a38611a07565b604051601f8501601f19908116603f01168101908282118183101715611a6057611a60611a07565b81604052809350858152868686011115611a7957600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611aa557600080fd5b813567ffffffffffffffff811115611abc57600080fd5b8201601f81018413611acd57600080fd5b61125b84823560208401611a1d565b60008060408385031215611aef57600080fd5b611af88361196a565b915060208301358015158114611b0d57600080fd5b809150509250929050565b60008060008060808587031215611b2e57600080fd5b611b378561196a565b9350611b456020860161196a565b925060408501359150606085013567ffffffffffffffff811115611b6857600080fd5b8501601f81018713611b7957600080fd5b611b8887823560208401611a1d565b91505092959194509250565b60008060408385031215611ba757600080fd5b611bb08361196a565b9150611bbe6020840161196a565b90509250929050565b600181811c90821680611bdb57607f821691505b60208210811415611bfc57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611cb157611cb1611c88565b500190565b6000816000190483118215151615611cd057611cd0611c88565b500290565b6000600019821415611ce957611ce9611c88565b5060010190565b60008151611d028185602086016118e6565b9290920192915050565b600080845481600182811c915080831680611d2857607f831692505b6020808410821415611d4857634e487b7160e01b86526022600452602486fd5b818015611d5c5760018114611d6d57611d9a565b60ff19861689528489019650611d9a565b60008b81526020902060005b86811015611d925781548b820152908501908301611d79565b505084890196505b505050505050611dce611dbd611db783602f60f81b815260010190565b86611cf0565b64173539b7b760d91b815260050190565b95945050505050565b600082821015611de957611de9611c88565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611e6557611e65611e40565b500490565b600082611e7957611e79611e40565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ec790830184611912565b9695505050505050565b600060208284031215611ee357600080fd5b81516118df816118ac56fea2646970667358221220425ef1f9ddb82e992c1cd3f5d54177e15e15134aba6279cf1c370e8830a7ec1664736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000076261736575726900000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): baseuri

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [2] : 6261736575726900000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36771:2628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23661:355;;;;;;;;;;-1:-1:-1;23661:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23661:355:0;;;;;;;;24830:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26523:308::-;;;;;;;;;;-1:-1:-1;26523:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;26523:308:0;1550:203:1;38834:116:0;;;;;;;;;;-1:-1:-1;38834:116:0;;;;;:::i;:::-;;:::i;:::-;;26046:411;;;;;;;;;;-1:-1:-1;26046:411:0;;;;;:::i;:::-;;:::i;36857:32::-;;;;;;;;;;;;;;;;;;;2341:25:1;;;2329:2;2314:18;36857:32:0;2195:177:1;37074:55:0;;;;;;;;;;-1:-1:-1;37074:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;36934:34;;;;;;;;;;;;;;;;27582:376;;;;;;;;;;-1:-1:-1;27582:376:0;;;;;:::i;:::-;;:::i;39249:147::-;;;;;;;;;;;;;:::i;28029:185::-;;;;;;;;;;-1:-1:-1;28029:185:0;;;;;:::i;:::-;;:::i;38740:86::-;;;;;;;;;;-1:-1:-1;38740:86:0;;;;;:::i;:::-;;:::i;39066:98::-;;;;;;;;;;-1:-1:-1;39066:98:0;;;;;:::i;:::-;;:::i;37011:26::-;;;;;;;;;;-1:-1:-1;37011:26:0;;;;;;;;24437:326;;;;;;;;;;-1:-1:-1;24437:326:0;;;;;:::i;:::-;;:::i;37044:21::-;;;;;;;;;;;;;:::i;38958:100::-;;;;;;;;;;-1:-1:-1;38958:100:0;;;;;:::i;:::-;;:::i;24080:295::-;;;;;;;;;;-1:-1:-1;24080:295:0;;;;;:::i;:::-;;:::i;4634:94::-;;;;;;;;;;;;;:::i;39172:69::-;;;;;;;;;;;;;:::i;3983:87::-;;;;;;;;;;-1:-1:-1;4056:6:0;;-1:-1:-1;;;;;4056:6:0;3983:87;;24999:104;;;;;;;;;;;;;:::i;36975:29::-;;;;;;;;;;;;;;;;37699:1015;;;;;;:::i;:::-;;:::i;26903:327::-;;;;;;;;;;-1:-1:-1;26903:327:0;;;;;:::i;:::-;;:::i;28285:365::-;;;;;;;;;;-1:-1:-1;28285:365:0;;;;;:::i;:::-;;:::i;37278:413::-;;;;;;;;;;-1:-1:-1;37278:413:0;;;;;:::i;:::-;;:::i;36896:31::-;;;;;;;;;;;;;;;;27301:214;;;;;;;;;;-1:-1:-1;27301:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;27472:25:0;;;27443:4;27472:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27301:214;4883:229;;;;;;;;;;-1:-1:-1;4883:229:0;;;;;:::i;:::-;;:::i;23661:355::-;23808:4;-1:-1:-1;;;;;;23850:40:0;;-1:-1:-1;;;23850:40:0;;:105;;-1:-1:-1;;;;;;;23907:48:0;;-1:-1:-1;;;23907:48:0;23850:105;:158;;;-1:-1:-1;;;;;;;;;;16614:40:0;;;23972:36;23830:178;23661:355;-1:-1:-1;;23661:355:0:o;24830:100::-;24884:13;24917:5;24910:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24830:100;:::o;26523:308::-;26644:7;30286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30286:16:0;26669:110;;;;-1:-1:-1;;;26669:110:0;;6002:2:1;26669:110:0;;;5984:21:1;6041:2;6021:18;;;6014:30;6080:34;6060:18;;;6053:62;-1:-1:-1;;;6131:18:1;;;6124:42;6183:19;;26669:110:0;;;;;;;;;-1:-1:-1;26799:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26799:24:0;;26523:308::o;38834:116::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;38912:13:::1;:30:::0;38834:116::o;26046:411::-;26127:13;26143:23;26158:7;26143:14;:23::i;:::-;26127:39;;26191:5;-1:-1:-1;;;;;26185:11:0;:2;-1:-1:-1;;;;;26185:11:0;;;26177:57;;;;-1:-1:-1;;;26177:57:0;;6776:2:1;26177:57:0;;;6758:21:1;6815:2;6795:18;;;6788:30;6854:34;6834:18;;;6827:62;-1:-1:-1;;;6905:18:1;;;6898:31;6946:19;;26177:57:0;6574:397:1;26177:57:0;2832:10;-1:-1:-1;;;;;26269:21:0;;;;:62;;-1:-1:-1;26294:37:0;26311:5;2832:10;27301:214;:::i;26294:37::-;26247:168;;;;-1:-1:-1;;;26247:168:0;;7178:2:1;26247:168:0;;;7160:21:1;7217:2;7197:18;;;7190:30;7256:34;7236:18;;;7229:62;7327:26;7307:18;;;7300:54;7371:19;;26247:168:0;6976:420:1;26247:168:0;26428:21;26437:2;26441:7;26428:8;:21::i;:::-;26116:341;26046:411;;:::o;27582:376::-;27791:41;2832:10;27824:7;27791:18;:41::i;:::-;27769:140;;;;-1:-1:-1;;;27769:140:0;;;;;;;:::i;:::-;27922:28;27932:4;27938:2;27942:7;27922:9;:28::i;39249:147::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39298:7:::1;39319;4056:6:::0;;-1:-1:-1;;;;;4056:6:0;;3983:87;39319:7:::1;-1:-1:-1::0;;;;;39311:21:0::1;39340;39311:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39297:69;;;39385:2;39377:11;;;::::0;::::1;;39286:110;39249:147::o:0;28029:185::-;28167:39;28184:4;28190:2;28194:7;28167:39;;;;;;;;;;;;:16;:39::i;38740:86::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;38803:4:::1;:15:::0;38740:86::o;39066:98::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39138:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39066:98:::0;:::o;24437:326::-;24554:7;24595:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24595:16:0;24644:19;24622:110;;;;-1:-1:-1;;;24622:110:0;;8231:2:1;24622:110:0;;;8213:21:1;8270:2;8250:18;;;8243:30;8309:34;8289:18;;;8282:62;-1:-1:-1;;;8360:18:1;;;8353:39;8409:19;;24622:110:0;8029:405:1;37044:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38958:100::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39028:9:::1;:22:::0;38958:100::o;24080:295::-;24197:7;-1:-1:-1;;;;;24244:19:0;;24222:111;;;;-1:-1:-1;;;24222:111:0;;8641:2:1;24222:111:0;;;8623:21:1;8680:2;8660:18;;;8653:30;8719:34;8699:18;;;8692:62;-1:-1:-1;;;8770:18:1;;;8763:40;8820:19;;24222:111:0;8439:406:1;24222:111:0;-1:-1:-1;;;;;;24351:16:0;;;;;:9;:16;;;;;;;24080:295::o;4634:94::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;4699:21:::1;4717:1;4699:9;:21::i;:::-;4634:94::o:0;39172:69::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39227:6:::1;::::0;;-1:-1:-1;;39217:16:0;::::1;39227:6;::::0;;::::1;39226:7;39217:16;::::0;;39172:69::o;24999:104::-;25055:13;25088:7;25081:14;;;;;:::i;37699:1015::-;37767:6;;;;37766:7;37758:63;;;;-1:-1:-1;;;37758:63:0;;9052:2:1;37758:63:0;;;9034:21:1;9091:2;9071:18;;;9064:30;9130:34;9110:18;;;9103:62;-1:-1:-1;;;9181:18:1;;;9174:41;9232:19;;37758:63:0;8850:407:1;37758:63:0;37878:9;;37867:7;37854:10;;:20;;;;:::i;:::-;:33;;37832:126;;;;-1:-1:-1;;;37832:126:0;;9729:2:1;37832:126:0;;;9711:21:1;9768:2;9748:18;;;9741:30;9807:34;9787:18;;;9780:62;-1:-1:-1;;;9858:18:1;;;9851:41;9909:19;;37832:126:0;9527:407:1;37832:126:0;4056:6;;-1:-1:-1;;;;;4056:6:0;37973:10;:21;37969:578;;38048:13;;38037:7;:24;;38011:137;;;;-1:-1:-1;;;38011:137:0;;10141:2:1;38011:137:0;;;10123:21:1;10180:2;10160:18;;;10153:30;10219:34;10199:18;;;10192:62;-1:-1:-1;;;10270:18:1;;;10263:49;10329:19;;38011:137:0;9939:415:1;38011:137:0;38211:10;38163:24;38190:32;;;:20;:32;;;;;;38293:13;;38263:26;38282:7;38190:32;38263:26;:::i;:::-;:43;;38237:154;;;;-1:-1:-1;;;38237:154:0;;10561:2:1;38237:154:0;;;10543:21:1;10600:2;10580:18;;;10573:30;10639:34;10619:18;;;10612:62;-1:-1:-1;;;10690:18:1;;;10683:47;10747:19;;38237:154:0;10359:413:1;38237:154:0;38452:7;38445:4;;:14;;;;:::i;:::-;38432:9;:27;;38406:129;;;;-1:-1:-1;;;38406:129:0;;11152:2:1;38406:129:0;;;11134:21:1;11191:2;11171:18;;;11164:30;11230:34;11210:18;;;11203:62;-1:-1:-1;;;11281:18:1;;;11274:38;11329:19;;38406:129:0;10950:404:1;38406:129:0;37996:551;37969:578;38574:1;38557:150;38582:7;38577:1;:12;38557:150;;38632:10;38611:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;38660:35;38670:10;38684;;38682:12;;;;;:::i;:::-;;;;;-1:-1:-1;38660:9:0;:35::i;:::-;38591:3;;;;:::i;:::-;;;;38557:150;;26903:327;-1:-1:-1;;;;;27038:24:0;;2832:10;27038:24;;27030:62;;;;-1:-1:-1;;;27030:62:0;;11701:2:1;27030:62:0;;;11683:21:1;11740:2;11720:18;;;11713:30;11779:27;11759:18;;;11752:55;11824:18;;27030:62:0;11499:349:1;27030:62:0;2832:10;27105:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27105:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27105:53:0;;;;;;;;;;27174:48;;540:41:1;;;27105:42:0;;2832:10;27174:48;;513:18:1;27174:48:0;;;;;;;26903:327;;:::o;28285:365::-;28474:41;2832:10;28507:7;28474:18;:41::i;:::-;28452:140;;;;-1:-1:-1;;;28452:140:0;;;;;;;:::i;:::-;28603:39;28617:4;28623:2;28627:7;28636:5;28603:13;:39::i;:::-;28285:365;;;;:::o;37278:413::-;30262:4;30286:16;;;:7;:16;;;;;;37379:13;;-1:-1:-1;;;;;30286:16:0;37410:68;;;;-1:-1:-1;;;37410:68:0;;12055:2:1;37410:68:0;;;12037:21:1;12094:2;12074:18;;;12067:30;12133:34;12113:18;;;12106:62;-1:-1:-1;;;12184:18:1;;;12177:37;12231:19;;37410:68:0;11853:403:1;37410:68:0;37533:1;37515:7;37509:21;;;;;:::i;:::-;;;:25;:174;;;;;;;;;;;;;;;;;37600:7;37614:18;:7;:16;:18::i;:::-;37583:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37489:194;37278:413;-1:-1:-1;;37278:413:0:o;4883:229::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4986:22:0;::::1;4964:110;;;::::0;-1:-1:-1;;;4964:110:0;;14454:2:1;4964:110:0::1;::::0;::::1;14436:21:1::0;14493:2;14473:18;;;14466:30;14532:34;14512:18;;;14505:62;-1:-1:-1;;;14583:18:1;;;14576:36;14629:19;;4964:110:0::1;14252:402:1::0;4964:110:0::1;5085:19;5095:8;5085:9;:19::i;34320:174::-:0;34395:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34395:29:0;-1:-1:-1;;;;;34395:29:0;;;;;;;;:24;;34449:23;34395:24;34449:14;:23::i;:::-;-1:-1:-1;;;;;34440:46:0;;;;;;;;;;;34320:174;;:::o;30491:452::-;30620:4;30286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30286:16:0;30642:110;;;;-1:-1:-1;;;30642:110:0;;14861:2:1;30642:110:0;;;14843:21:1;14900:2;14880:18;;;14873:30;14939:34;14919:18;;;14912:62;-1:-1:-1;;;14990:18:1;;;14983:42;15042:19;;30642:110:0;14659:408:1;30642:110:0;30763:13;30779:23;30794:7;30779:14;:23::i;:::-;30763:39;;30832:5;-1:-1:-1;;;;;30821:16:0;:7;-1:-1:-1;;;;;30821:16:0;;:64;;;;30878:7;-1:-1:-1;;;;;30854:31:0;:20;30866:7;30854:11;:20::i;:::-;-1:-1:-1;;;;;30854:31:0;;30821:64;:113;;;-1:-1:-1;;;;;;27472:25:0;;;27443:4;27472:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30902:32;30813:122;30491:452;-1:-1:-1;;;;30491:452:0:o;33587:615::-;33760:4;-1:-1:-1;;;;;33733:31:0;:23;33748:7;33733:14;:23::i;:::-;-1:-1:-1;;;;;33733:31:0;;33711:122;;;;-1:-1:-1;;;33711:122:0;;15274:2:1;33711:122:0;;;15256:21:1;15313:2;15293:18;;;15286:30;15352:34;15332:18;;;15325:62;-1:-1:-1;;;15403:18:1;;;15396:39;15452:19;;33711:122:0;15072:405:1;33711:122:0;-1:-1:-1;;;;;33852:16:0;;33844:65;;;;-1:-1:-1;;;33844:65:0;;15684:2:1;33844:65:0;;;15666:21:1;15723:2;15703:18;;;15696:30;15762:34;15742:18;;;15735:62;-1:-1:-1;;;15813:18:1;;;15806:34;15857:19;;33844:65:0;15482:400:1;33844:65:0;34026:29;34043:1;34047:7;34026:8;:29::i;:::-;-1:-1:-1;;;;;34068:15:0;;;;;;:9;:15;;;;;:20;;34087:1;;34068:15;:20;;34087:1;;34068:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34099:13:0;;;;;;:9;:13;;;;;:18;;34116:1;;34099:13;:18;;34116:1;;34099:18;:::i;:::-;;;;-1:-1:-1;;34128:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34128:21:0;-1:-1:-1;;;;;34128:21:0;;;;;;;;;34167:27;;34128:16;;34167:27;;;;;;;33587:615;;;:::o;5120:173::-;5195:6;;;-1:-1:-1;;;;;5212:17:0;;;-1:-1:-1;;;;;;5212:17:0;;;;;;;5245:40;;5195:6;;;5212:17;5195:6;;5245:40;;5176:16;;5245:40;5165:128;5120:173;:::o;31285:110::-;31361:26;31371:2;31375:7;31361:26;;;;;;;;;;;;:9;:26::i;29532:352::-;29689:28;29699:4;29705:2;29709:7;29689:9;:28::i;:::-;29750:48;29773:4;29779:2;29783:7;29792:5;29750:22;:48::i;:::-;29728:148;;;;-1:-1:-1;;;29728:148:0;;;;;;;:::i;340:723::-;396:13;617:10;613:53;;-1:-1:-1;;644:10:0;;;;;;;;;;;;-1:-1:-1;;;644:10:0;;;;;340:723::o;613:53::-;691:5;676:12;732:78;739:9;;732:78;;765:8;;;;:::i;:::-;;-1:-1:-1;788:10:0;;-1:-1:-1;796:2:0;788:10;;:::i;:::-;;;732:78;;;820:19;852:6;842:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;842:17:0;;820:39;;870:154;877:10;;870:154;;904:11;914:1;904:11;;:::i;:::-;;-1:-1:-1;973:10:0;981:2;973:5;:10;:::i;:::-;960:24;;:2;:24;:::i;:::-;947:39;;930:6;937;930:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;930:56:0;;;;;;;;-1:-1:-1;1001:11:0;1010:2;1001:11;;:::i;:::-;;;870:154;;31622:321;31752:18;31758:2;31762:7;31752:5;:18::i;:::-;31803:54;31834:1;31838:2;31842:7;31851:5;31803:22;:54::i;:::-;31781:154;;;;-1:-1:-1;;;31781:154:0;;;;;;;:::i;35059:980::-;35214:4;-1:-1:-1;;;;;35235:13:0;;6385:20;6433:8;35231:801;;35288:175;;-1:-1:-1;;;35288:175:0;;-1:-1:-1;;;;;35288:36:0;;;;;:175;;2832:10;;35382:4;;35409:7;;35439:5;;35288:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35288:175:0;;;;;;;;-1:-1:-1;;35288:175:0;;;;;;;;;;;;:::i;:::-;;;35267:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35646:13:0;;35642:320;;35689:108;;-1:-1:-1;;;35689:108:0;;;;;;;:::i;35642:320::-;35912:6;35906:13;35897:6;35893:2;35889:15;35882:38;35267:710;-1:-1:-1;;;;;;35527:51:0;-1:-1:-1;;;35527:51:0;;-1:-1:-1;35520:58:0;;35231:801;-1:-1:-1;36016:4:0;35059:980;;;;;;:::o;32279:382::-;-1:-1:-1;;;;;32359:16:0;;32351:61;;;;-1:-1:-1;;;32351:61:0;;17903:2:1;32351:61:0;;;17885:21:1;;;17922:18;;;17915:30;17981:34;17961:18;;;17954:62;18033:18;;32351:61:0;17701:356:1;32351:61:0;30262:4;30286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30286:16:0;:30;32423:58;;;;-1:-1:-1;;;32423:58:0;;18264:2:1;32423:58:0;;;18246:21:1;18303:2;18283:18;;;18276:30;18342;18322:18;;;18315:58;18390:18;;32423:58:0;18062:352:1;32423:58:0;-1:-1:-1;;;;;32552:13:0;;;;;;:9;:13;;;;;:18;;32569:1;;32552:13;:18;;32569:1;;32552:18;:::i;:::-;;;;-1:-1:-1;;32581:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32581:21:0;-1:-1:-1;;;;;32581:21:0;;;;;;;;32620:33;;32581:16;;;32620:33;;32581:16;;32620:33;32279:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:186::-;2436:6;2489:2;2477:9;2468:7;2464:23;2460:32;2457:52;;;2505:1;2502;2495:12;2457:52;2528:29;2547:9;2528:29;:::i;2568:328::-;2645:6;2653;2661;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;2753:29;2772:9;2753:29;:::i;:::-;2743:39;;2801:38;2835:2;2824:9;2820:18;2801:38;:::i;:::-;2791:48;;2886:2;2875:9;2871:18;2858:32;2848:42;;2568:328;;;;;:::o;2901:127::-;2962:10;2957:3;2953:20;2950:1;2943:31;2993:4;2990:1;2983:15;3017:4;3014:1;3007:15;3033:632;3098:5;3128:18;3169:2;3161:6;3158:14;3155:40;;;3175:18;;:::i;:::-;3250:2;3244:9;3218:2;3304:15;;-1:-1:-1;;3300:24:1;;;3326:2;3296:33;3292:42;3280:55;;;3350:18;;;3370:22;;;3347:46;3344:72;;;3396:18;;:::i;:::-;3436:10;3432:2;3425:22;3465:6;3456:15;;3495:6;3487;3480:22;3535:3;3526:6;3521:3;3517:16;3514:25;3511:45;;;3552:1;3549;3542:12;3511:45;3602:6;3597:3;3590:4;3582:6;3578:17;3565:44;3657:1;3650:4;3641:6;3633;3629:19;3625:30;3618:41;;;;3033:632;;;;;:::o;3670:451::-;3739:6;3792:2;3780:9;3771:7;3767:23;3763:32;3760:52;;;3808:1;3805;3798:12;3760:52;3848:9;3835:23;3881:18;3873:6;3870:30;3867:50;;;3913:1;3910;3903:12;3867:50;3936:22;;3989:4;3981:13;;3977:27;-1:-1:-1;3967:55:1;;4018:1;4015;4008:12;3967:55;4041:74;4107:7;4102:2;4089:16;4084:2;4080;4076:11;4041:74;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;4905:18;4897:6;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:260::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5150:260;;;;;:::o;5415:380::-;5494:1;5490:12;;;;5537;;;5558:61;;5612:4;5604:6;5600:17;5590:27;;5558:61;5665:2;5657:6;5654:14;5634:18;5631:38;5628:161;;;5711:10;5706:3;5702:20;5699:1;5692:31;5746:4;5743:1;5736:15;5774:4;5771:1;5764:15;5628:161;;5415:380;;;:::o;6213:356::-;6415:2;6397:21;;;6434:18;;;6427:30;6493:34;6488:2;6473:18;;6466:62;6560:2;6545:18;;6213:356::o;7401:413::-;7603:2;7585:21;;;7642:2;7622:18;;;7615:30;7681:34;7676:2;7661:18;;7654:62;-1:-1:-1;;;7747:2:1;7732:18;;7725:47;7804:3;7789:19;;7401:413::o;9262:127::-;9323:10;9318:3;9314:20;9311:1;9304:31;9354:4;9351:1;9344:15;9378:4;9375:1;9368:15;9394:128;9434:3;9465:1;9461:6;9458:1;9455:13;9452:39;;;9471:18;;:::i;:::-;-1:-1:-1;9507:9:1;;9394:128::o;10777:168::-;10817:7;10883:1;10879;10875:6;10871:14;10868:1;10865:21;10860:1;10853:9;10846:17;10842:45;10839:71;;;10890:18;;:::i;:::-;-1:-1:-1;10930:9:1;;10777:168::o;11359:135::-;11398:3;-1:-1:-1;;11419:17:1;;11416:43;;;11439:18;;:::i;:::-;-1:-1:-1;11486:1:1;11475:13;;11359:135::o;12506:185::-;12548:3;12586:5;12580:12;12601:52;12646:6;12641:3;12634:4;12627:5;12623:16;12601:52;:::i;:::-;12669:16;;;;;12506:185;-1:-1:-1;;12506:185:1:o;12814:1433::-;13192:3;13221:1;13254:6;13248:13;13284:3;13306:1;13334:9;13330:2;13326:18;13316:28;;13394:2;13383:9;13379:18;13416;13406:61;;13460:4;13452:6;13448:17;13438:27;;13406:61;13486:2;13534;13526:6;13523:14;13503:18;13500:38;13497:165;;;-1:-1:-1;;;13561:33:1;;13617:4;13614:1;13607:15;13647:4;13568:3;13635:17;13497:165;13678:18;13705:104;;;;13823:1;13818:320;;;;13671:467;;13705:104;-1:-1:-1;;13738:24:1;;13726:37;;13783:16;;;;-1:-1:-1;13705:104:1;;13818:320;12334:1;12327:14;;;12371:4;12358:18;;13913:1;13927:165;13941:6;13938:1;13935:13;13927:165;;;14019:14;;14006:11;;;13999:35;14062:16;;;;13956:10;;13927:165;;;13931:3;;14121:6;14116:3;14112:16;14105:23;;13671:467;;;;;;;14154:87;14179:61;14205:34;14235:3;-1:-1:-1;;;12452:16:1;;12493:1;12484:11;;12387:114;14205:34;14197:6;14179:61;:::i;:::-;-1:-1:-1;;;12756:20:1;;12801:1;12792:11;;12696:113;14154:87;14147:94;12814:1433;-1:-1:-1;;;;;12814:1433:1:o;15887:125::-;15927:4;15955:1;15952;15949:8;15946:34;;;15960:18;;:::i;:::-;-1:-1:-1;15997:9:1;;15887:125::o;16017:414::-;16219:2;16201:21;;;16258:2;16238:18;;;16231:30;16297:34;16292:2;16277:18;;16270:62;-1:-1:-1;;;16363:2:1;16348:18;;16341:48;16421:3;16406:19;;16017:414::o;16436:127::-;16497:10;16492:3;16488:20;16485:1;16478:31;16528:4;16525:1;16518:15;16552:4;16549:1;16542:15;16568:120;16608:1;16634;16624:35;;16639:18;;:::i;:::-;-1:-1:-1;16673:9:1;;16568:120::o;16693:112::-;16725:1;16751;16741:35;;16756:18;;:::i;:::-;-1:-1:-1;16790:9:1;;16693:112::o;16810:127::-;16871:10;16866:3;16862:20;16859:1;16852:31;16902:4;16899:1;16892:15;16926:4;16923:1;16916:15;16942:500;-1:-1:-1;;;;;17211:15:1;;;17193:34;;17263:15;;17258:2;17243:18;;17236:43;17310:2;17295:18;;17288:34;;;17358:3;17353:2;17338:18;;17331:31;;;17136:4;;17379:57;;17416:19;;17408:6;17379:57;:::i;:::-;17371:65;16942:500;-1:-1:-1;;;;;;16942:500:1:o;17447:249::-;17516:6;17569:2;17557:9;17548:7;17544:23;17540:32;17537:52;;;17585:1;17582;17575:12;17537:52;17617:9;17611:16;17636:30;17660:5;17636:30;:::i

Swarm Source

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