ETH Price: $3,267.18 (-0.24%)
Gas: 2 Gwei

Token

Sin City Elite (SCE)
 

Overview

Max Total Supply

4,803 SCE

Holders

1,692

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 SCE
0x1c803206ecc1a521caf4fafe8edba2bd39adaca4
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:
SinCityElite

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred.
     * This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred.
     * This includes minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/SinCityElite.sol


pragma solidity ^0.8.11;



contract SinCityElite is ERC721A, Ownable {
  string _baseTokenURI;
  
  bool public isActive = false;
  uint256 public mintPrice = 0.004 ether;
  uint256 public constant MAX_SUPPLY = 7777;
  uint256 public MAX_PER_WALLET = 25;
  uint256 public MAX_PER_TX = 10;

  constructor(string memory baseURI) ERC721A("Sin City Elite", "SCE") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen {
    require(totalSupply() <= MAX_SUPPLY, "Sale has ended.");
    _;
  }

  modifier onlyAuthorized() {
    require(owner() == msg.sender);
    _;
  }

  function setMaximumAllowedTokens(uint256 _count) public onlyAuthorized {
    MAX_PER_TX = _count;
  }

  function toggleSale() public onlyAuthorized {
    isActive = !isActive;
  }

  function setPrice(uint256 _price) public onlyAuthorized {
    mintPrice = _price;
  }

  function setBaseURI(string memory baseURI) public onlyAuthorized {
    _baseTokenURI = baseURI;
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }

  function mint(uint256 _count) public payable saleIsOpen {
    uint256 mintIndex = totalSupply();
    uint256 discountPrice = _count;

    if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
    }

    require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require(_count <= MAX_PER_TX,"Exceeds maximum allowed tokens");
    require(balanceOf(msg.sender) + _count <= MAX_PER_WALLET, "Exceeds maximum allowed tokens per wallet");

    if(mintIndex > 2500) {
      if(_count > 1){
        discountPrice = _count - 1;
      }

      if(balanceOf(msg.sender) >= 1 || _count > 1) {
        require(msg.value >= mintPrice * discountPrice, "Insufficient ETH amount sent.");
      }
    }

    _safeMint(msg.sender, _count);

  }

  function withdraw() external onlyAuthorized {
    uint balance = address(this).balance;
    payable(owner()).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff021916908315150217905550660e35fa931a0000600b556019600c55600a600d553480156200004157600080fd5b50604051620032d0380380620032d0833981810160405281019062000067919062000503565b6040518060400160405280600e81526020017f53696e204369747920456c6974650000000000000000000000000000000000008152506040518060400160405280600381526020017f53434500000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000eb929190620002b6565b50806003908051906020019062000104929190620002b6565b50620001156200015560201b60201c565b60008190555050506200013d620001316200015a60201b60201c565b6200016260201b60201c565b6200014e816200022860201b60201c565b50620005b9565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff166200024f6200028c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200027057600080fd5b806009908051906020019062000288929190620002b6565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002c49062000583565b90600052602060002090601f016020900481019282620002e8576000855562000334565b82601f106200030357805160ff191683800117855562000334565b8280016001018555821562000334579182015b828111156200033357825182559160200191906001019062000316565b5b50905062000343919062000347565b5090565b5b808211156200036257600081600090555060010162000348565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003cf8262000384565b810181811067ffffffffffffffff82111715620003f157620003f062000395565b5b80604052505050565b60006200040662000366565b9050620004148282620003c4565b919050565b600067ffffffffffffffff82111562000437576200043662000395565b5b620004428262000384565b9050602081019050919050565b60005b838110156200046f57808201518184015260208101905062000452565b838111156200047f576000848401525b50505050565b60006200049c620004968462000419565b620003fa565b905082815260208101848484011115620004bb57620004ba6200037f565b5b620004c88482856200044f565b509392505050565b600082601f830112620004e857620004e76200037a565b5b8151620004fa84826020860162000485565b91505092915050565b6000602082840312156200051c576200051b62000370565b5b600082015167ffffffffffffffff8111156200053d576200053c62000375565b5b6200054b84828501620004d0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200059c57607f821691505b60208210811415620005b357620005b262000554565b5b50919050565b612d0780620005c96000396000f3fe6080604052600436106101b75760003560e01c80636817c76c116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146105b1578063e985e9c5146105ee578063f2fde38b1461062b578063f43a22dc14610654576101b7565b8063a0712d6814610543578063a22cb4651461055f578063b88d4fde14610588576101b7565b80637d8966e4116100c65780637d8966e4146104ad5780638da5cb5b146104c457806391b7f5ed146104ef57806395d89b4114610518576101b7565b80636817c76c1461042e57806370a0823114610459578063715018a614610496576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103765780634dfea6271461039f57806355f804b3146103c85780636352211e146103f1576101b7565b806323b872dd1461030b57806332cb6b0c146103345780633ccfd60b1461035f576101b7565b8063095ea7b311610195578063095ea7b3146102615780630f2cdd6c1461028a57806318160ddd146102b557806322f3e2d4146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061202d565b61067f565b6040516101f09190612075565b60405180910390f35b34801561020557600080fd5b5061020e610711565b60405161021b9190612129565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612181565b6107a3565b60405161025891906121ef565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612236565b61081f565b005b34801561029657600080fd5b5061029f610960565b6040516102ac9190612285565b60405180910390f35b3480156102c157600080fd5b506102ca610966565b6040516102d79190612285565b60405180910390f35b3480156102ec57600080fd5b506102f561097d565b6040516103029190612075565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d91906122a0565b610990565b005b34801561034057600080fd5b50610349610cb5565b6040516103569190612285565b60405180910390f35b34801561036b57600080fd5b50610374610cbb565b005b34801561038257600080fd5b5061039d600480360381019061039891906122a0565b610d50565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612181565b610d70565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612428565b610db9565b005b3480156103fd57600080fd5b5061041860048036038101906104139190612181565b610e12565b60405161042591906121ef565b60405180910390f35b34801561043a57600080fd5b50610443610e24565b6040516104509190612285565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612471565b610e2a565b60405161048d9190612285565b60405180910390f35b3480156104a257600080fd5b506104ab610ee3565b005b3480156104b957600080fd5b506104c2610f6b565b005b3480156104d057600080fd5b506104d9610fd6565b6040516104e691906121ef565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190612181565b611000565b005b34801561052457600080fd5b5061052d611049565b60405161053a9190612129565b60405180910390f35b61055d60048036038101906105589190612181565b6110db565b005b34801561056b57600080fd5b50610586600480360381019061058191906124ca565b611350565b005b34801561059457600080fd5b506105af60048036038101906105aa91906125ab565b6114c8565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190612181565b61153b565b6040516105e59190612129565b60405180910390f35b3480156105fa57600080fd5b506106156004803603810190610610919061262e565b6115da565b6040516106229190612075565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612471565b61166e565b005b34801561066057600080fd5b50610669611766565b6040516106769190612285565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061070a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107209061269d565b80601f016020809104026020016040519081016040528092919081815260200182805461074c9061269d565b80156107995780601f1061076e57610100808354040283529160200191610799565b820191906000526020600020905b81548152906001019060200180831161077c57829003601f168201915b5050505050905090565b60006107ae8261176c565b6107e4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082a82610e12565b90508073ffffffffffffffffffffffffffffffffffffffff1661084b6117cb565b73ffffffffffffffffffffffffffffffffffffffff16146108ae57610877816108726117cb565b6115da565b6108ad576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b60006109706117d3565b6001546000540303905090565b600a60009054906101000a900460ff1681565b600061099b826117d8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a02576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0e846118a6565b91509150610a248187610a1f6117cb565b6118c8565b610a7057610a3986610a346117cb565b6115da565b610a6f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ad7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae4868686600161190c565b8015610aef57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bbd85610b99888887611912565b7c02000000000000000000000000000000000000000000000000000000001761193a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c45576000600185019050600060046000838152602001908152602001600020541415610c43576000548114610c42578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cad8686866001611965565b505050505050565b611e6181565b3373ffffffffffffffffffffffffffffffffffffffff16610cda610fd6565b73ffffffffffffffffffffffffffffffffffffffff1614610cfa57600080fd5b6000479050610d07610fd6565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d4c573d6000803e3d6000fd5b5050565b610d6b838383604051806020016040528060008152506114c8565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610d8f610fd6565b73ffffffffffffffffffffffffffffffffffffffff1614610daf57600080fd5b80600d8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16610dd8610fd6565b73ffffffffffffffffffffffffffffffffffffffff1614610df857600080fd5b8060099080519060200190610e0e929190611f1e565b5050565b6000610e1d826117d8565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e92576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eeb61196b565b73ffffffffffffffffffffffffffffffffffffffff16610f09610fd6565b73ffffffffffffffffffffffffffffffffffffffff1614610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f569061271b565b60405180910390fd5b610f696000611973565b565b3373ffffffffffffffffffffffffffffffffffffffff16610f8a610fd6565b73ffffffffffffffffffffffffffffffffffffffff1614610faa57600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff1661101f610fd6565b73ffffffffffffffffffffffffffffffffffffffff161461103f57600080fd5b80600b8190555050565b6060600380546110589061269d565b80601f01602080910402602001604051908101604052809291908181526020018280546110849061269d565b80156110d15780601f106110a6576101008083540402835291602001916110d1565b820191906000526020600020905b8154815290600101906020018083116110b457829003601f168201915b5050505050905090565b611e616110e6610966565b1115611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90612787565b60405180910390fd5b6000611131610966565b90506000829050611140610fd6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111c257600a60009054906101000a900460ff166111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b8906127f3565b60405180910390fd5b5b611e6183836111d19190612842565b1115611212576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611209906128e4565b60405180910390fd5b600d54831115611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e90612950565b60405180910390fd5b600c548361126433610e2a565b61126e9190612842565b11156112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a6906129e2565b60405180910390fd5b6109c48211156113415760018311156112d2576001836112cf9190612a02565b90505b60016112dd33610e2a565b1015806112ea5750600183115b156113405780600b546112fd9190612a36565b34101561133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690612adc565b60405180910390fd5b5b5b61134b3384611a39565b505050565b6113586117cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113ca6117cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114776117cb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114bc9190612075565b60405180910390a35050565b6114d3848484610990565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611535576114fe84848484611a57565b611534576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115468261176c565b61157c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611586611ba8565b90506000815114156115a757604051806020016040528060008152506115d2565b806115b184611c3a565b6040516020016115c2929190612b38565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61167661196b565b73ffffffffffffffffffffffffffffffffffffffff16611694610fd6565b73ffffffffffffffffffffffffffffffffffffffff16146116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e19061271b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190612bce565b60405180910390fd5b61176381611973565b50565b600d5481565b6000816117776117d3565b11158015611786575060005482105b80156117c4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806117e76117d3565b1161186f5760005481101561186e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561186c575b6000811415611862576004600083600190039350838152602001908152602001600020549050611837565b80925050506118a1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611929868684611c94565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a53828260405180602001604052806000815250611c9d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a7d6117cb565b8786866040518563ffffffff1660e01b8152600401611a9f9493929190612c43565b6020604051808303816000875af1925050508015611adb57506040513d601f19601f82011682018060405250810190611ad89190612ca4565b60015b611b55573d8060008114611b0b576040519150601f19603f3d011682016040523d82523d6000602084013e611b10565b606091505b50600081511415611b4d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611bb79061269d565b80601f0160208091040260200160405190810160405280929190818152602001828054611be39061269d565b8015611c305780601f10611c0557610100808354040283529160200191611c30565b820191906000526020600020905b815481529060010190602001808311611c1357829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611c8057600183039250600a81066030018353600a81049050611c60565b508181036020830392508083525050919050565b60009392505050565b611ca78383611d3a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d3557600080549050600083820390505b611ce76000868380600101945086611a57565b611d1d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611cd4578160005414611d3257600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611da7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611de2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611def600084838561190c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e6683611e576000866000611912565b611e6085611f0e565b1761193a565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611e8a57806000819055505050611f096000848385611965565b505050565b60006001821460e11b9050919050565b828054611f2a9061269d565b90600052602060002090601f016020900481019282611f4c5760008555611f93565b82601f10611f6557805160ff1916838001178555611f93565b82800160010185558215611f93579182015b82811115611f92578251825591602001919060010190611f77565b5b509050611fa09190611fa4565b5090565b5b80821115611fbd576000816000905550600101611fa5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61200a81611fd5565b811461201557600080fd5b50565b60008135905061202781612001565b92915050565b60006020828403121561204357612042611fcb565b5b600061205184828501612018565b91505092915050565b60008115159050919050565b61206f8161205a565b82525050565b600060208201905061208a6000830184612066565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120ca5780820151818401526020810190506120af565b838111156120d9576000848401525b50505050565b6000601f19601f8301169050919050565b60006120fb82612090565b612105818561209b565b93506121158185602086016120ac565b61211e816120df565b840191505092915050565b6000602082019050818103600083015261214381846120f0565b905092915050565b6000819050919050565b61215e8161214b565b811461216957600080fd5b50565b60008135905061217b81612155565b92915050565b60006020828403121561219757612196611fcb565b5b60006121a58482850161216c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121d9826121ae565b9050919050565b6121e9816121ce565b82525050565b600060208201905061220460008301846121e0565b92915050565b612213816121ce565b811461221e57600080fd5b50565b6000813590506122308161220a565b92915050565b6000806040838503121561224d5761224c611fcb565b5b600061225b85828601612221565b925050602061226c8582860161216c565b9150509250929050565b61227f8161214b565b82525050565b600060208201905061229a6000830184612276565b92915050565b6000806000606084860312156122b9576122b8611fcb565b5b60006122c786828701612221565b93505060206122d886828701612221565b92505060406122e98682870161216c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612335826120df565b810181811067ffffffffffffffff82111715612354576123536122fd565b5b80604052505050565b6000612367611fc1565b9050612373828261232c565b919050565b600067ffffffffffffffff821115612393576123926122fd565b5b61239c826120df565b9050602081019050919050565b82818337600083830152505050565b60006123cb6123c684612378565b61235d565b9050828152602081018484840111156123e7576123e66122f8565b5b6123f28482856123a9565b509392505050565b600082601f83011261240f5761240e6122f3565b5b813561241f8482602086016123b8565b91505092915050565b60006020828403121561243e5761243d611fcb565b5b600082013567ffffffffffffffff81111561245c5761245b611fd0565b5b612468848285016123fa565b91505092915050565b60006020828403121561248757612486611fcb565b5b600061249584828501612221565b91505092915050565b6124a78161205a565b81146124b257600080fd5b50565b6000813590506124c48161249e565b92915050565b600080604083850312156124e1576124e0611fcb565b5b60006124ef85828601612221565b9250506020612500858286016124b5565b9150509250929050565b600067ffffffffffffffff821115612525576125246122fd565b5b61252e826120df565b9050602081019050919050565b600061254e6125498461250a565b61235d565b90508281526020810184848401111561256a576125696122f8565b5b6125758482856123a9565b509392505050565b600082601f830112612592576125916122f3565b5b81356125a284826020860161253b565b91505092915050565b600080600080608085870312156125c5576125c4611fcb565b5b60006125d387828801612221565b94505060206125e487828801612221565b93505060406125f58782880161216c565b925050606085013567ffffffffffffffff81111561261657612615611fd0565b5b6126228782880161257d565b91505092959194509250565b6000806040838503121561264557612644611fcb565b5b600061265385828601612221565b925050602061266485828601612221565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126b557607f821691505b602082108114156126c9576126c861266e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061270560208361209b565b9150612710826126cf565b602082019050919050565b60006020820190508181036000830152612734816126f8565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612771600f8361209b565b915061277c8261273b565b602082019050919050565b600060208201905081810360008301526127a081612764565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b60006127dd601d8361209b565b91506127e8826127a7565b602082019050919050565b6000602082019050818103600083015261280c816127d0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061284d8261214b565b91506128588361214b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561288d5761288c612813565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b60006128ce60168361209b565b91506128d982612898565b602082019050919050565b600060208201905081810360008301526128fd816128c1565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b600061293a601e8361209b565b915061294582612904565b602082019050919050565b600060208201905081810360008301526129698161292d565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e73207060008201527f65722077616c6c65740000000000000000000000000000000000000000000000602082015250565b60006129cc60298361209b565b91506129d782612970565b604082019050919050565b600060208201905081810360008301526129fb816129bf565b9050919050565b6000612a0d8261214b565b9150612a188361214b565b925082821015612a2b57612a2a612813565b5b828203905092915050565b6000612a418261214b565b9150612a4c8361214b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a8557612a84612813565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612ac6601d8361209b565b9150612ad182612a90565b602082019050919050565b60006020820190508181036000830152612af581612ab9565b9050919050565b600081905092915050565b6000612b1282612090565b612b1c8185612afc565b9350612b2c8185602086016120ac565b80840191505092915050565b6000612b448285612b07565b9150612b508284612b07565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612bb860268361209b565b9150612bc382612b5c565b604082019050919050565b60006020820190508181036000830152612be781612bab565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612c1582612bee565b612c1f8185612bf9565b9350612c2f8185602086016120ac565b612c38816120df565b840191505092915050565b6000608082019050612c5860008301876121e0565b612c6560208301866121e0565b612c726040830185612276565b8181036060830152612c848184612c0a565b905095945050505050565b600081519050612c9e81612001565b92915050565b600060208284031215612cba57612cb9611fcb565b5b6000612cc884828501612c8f565b9150509291505056fea26469706673582212203b3d40e6857e3ee2be88e06d8e1224f6e07aff59354ee9fd9fe7abf99676ca6664736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636817c76c116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd146105b1578063e985e9c5146105ee578063f2fde38b1461062b578063f43a22dc14610654576101b7565b8063a0712d6814610543578063a22cb4651461055f578063b88d4fde14610588576101b7565b80637d8966e4116100c65780637d8966e4146104ad5780638da5cb5b146104c457806391b7f5ed146104ef57806395d89b4114610518576101b7565b80636817c76c1461042e57806370a0823114610459578063715018a614610496576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103765780634dfea6271461039f57806355f804b3146103c85780636352211e146103f1576101b7565b806323b872dd1461030b57806332cb6b0c146103345780633ccfd60b1461035f576101b7565b8063095ea7b311610195578063095ea7b3146102615780630f2cdd6c1461028a57806318160ddd146102b557806322f3e2d4146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061202d565b61067f565b6040516101f09190612075565b60405180910390f35b34801561020557600080fd5b5061020e610711565b60405161021b9190612129565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612181565b6107a3565b60405161025891906121ef565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612236565b61081f565b005b34801561029657600080fd5b5061029f610960565b6040516102ac9190612285565b60405180910390f35b3480156102c157600080fd5b506102ca610966565b6040516102d79190612285565b60405180910390f35b3480156102ec57600080fd5b506102f561097d565b6040516103029190612075565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d91906122a0565b610990565b005b34801561034057600080fd5b50610349610cb5565b6040516103569190612285565b60405180910390f35b34801561036b57600080fd5b50610374610cbb565b005b34801561038257600080fd5b5061039d600480360381019061039891906122a0565b610d50565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612181565b610d70565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612428565b610db9565b005b3480156103fd57600080fd5b5061041860048036038101906104139190612181565b610e12565b60405161042591906121ef565b60405180910390f35b34801561043a57600080fd5b50610443610e24565b6040516104509190612285565b60405180910390f35b34801561046557600080fd5b50610480600480360381019061047b9190612471565b610e2a565b60405161048d9190612285565b60405180910390f35b3480156104a257600080fd5b506104ab610ee3565b005b3480156104b957600080fd5b506104c2610f6b565b005b3480156104d057600080fd5b506104d9610fd6565b6040516104e691906121ef565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190612181565b611000565b005b34801561052457600080fd5b5061052d611049565b60405161053a9190612129565b60405180910390f35b61055d60048036038101906105589190612181565b6110db565b005b34801561056b57600080fd5b50610586600480360381019061058191906124ca565b611350565b005b34801561059457600080fd5b506105af60048036038101906105aa91906125ab565b6114c8565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190612181565b61153b565b6040516105e59190612129565b60405180910390f35b3480156105fa57600080fd5b506106156004803603810190610610919061262e565b6115da565b6040516106229190612075565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612471565b61166e565b005b34801561066057600080fd5b50610669611766565b6040516106769190612285565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061070a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107209061269d565b80601f016020809104026020016040519081016040528092919081815260200182805461074c9061269d565b80156107995780601f1061076e57610100808354040283529160200191610799565b820191906000526020600020905b81548152906001019060200180831161077c57829003601f168201915b5050505050905090565b60006107ae8261176c565b6107e4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082a82610e12565b90508073ffffffffffffffffffffffffffffffffffffffff1661084b6117cb565b73ffffffffffffffffffffffffffffffffffffffff16146108ae57610877816108726117cb565b6115da565b6108ad576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b60006109706117d3565b6001546000540303905090565b600a60009054906101000a900460ff1681565b600061099b826117d8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a02576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a0e846118a6565b91509150610a248187610a1f6117cb565b6118c8565b610a7057610a3986610a346117cb565b6115da565b610a6f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ad7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae4868686600161190c565b8015610aef57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bbd85610b99888887611912565b7c02000000000000000000000000000000000000000000000000000000001761193a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c45576000600185019050600060046000838152602001908152602001600020541415610c43576000548114610c42578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cad8686866001611965565b505050505050565b611e6181565b3373ffffffffffffffffffffffffffffffffffffffff16610cda610fd6565b73ffffffffffffffffffffffffffffffffffffffff1614610cfa57600080fd5b6000479050610d07610fd6565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d4c573d6000803e3d6000fd5b5050565b610d6b838383604051806020016040528060008152506114c8565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610d8f610fd6565b73ffffffffffffffffffffffffffffffffffffffff1614610daf57600080fd5b80600d8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16610dd8610fd6565b73ffffffffffffffffffffffffffffffffffffffff1614610df857600080fd5b8060099080519060200190610e0e929190611f1e565b5050565b6000610e1d826117d8565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e92576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eeb61196b565b73ffffffffffffffffffffffffffffffffffffffff16610f09610fd6565b73ffffffffffffffffffffffffffffffffffffffff1614610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f569061271b565b60405180910390fd5b610f696000611973565b565b3373ffffffffffffffffffffffffffffffffffffffff16610f8a610fd6565b73ffffffffffffffffffffffffffffffffffffffff1614610faa57600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff1661101f610fd6565b73ffffffffffffffffffffffffffffffffffffffff161461103f57600080fd5b80600b8190555050565b6060600380546110589061269d565b80601f01602080910402602001604051908101604052809291908181526020018280546110849061269d565b80156110d15780601f106110a6576101008083540402835291602001916110d1565b820191906000526020600020905b8154815290600101906020018083116110b457829003601f168201915b5050505050905090565b611e616110e6610966565b1115611127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111e90612787565b60405180910390fd5b6000611131610966565b90506000829050611140610fd6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111c257600a60009054906101000a900460ff166111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b8906127f3565b60405180910390fd5b5b611e6183836111d19190612842565b1115611212576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611209906128e4565b60405180910390fd5b600d54831115611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e90612950565b60405180910390fd5b600c548361126433610e2a565b61126e9190612842565b11156112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a6906129e2565b60405180910390fd5b6109c48211156113415760018311156112d2576001836112cf9190612a02565b90505b60016112dd33610e2a565b1015806112ea5750600183115b156113405780600b546112fd9190612a36565b34101561133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690612adc565b60405180910390fd5b5b5b61134b3384611a39565b505050565b6113586117cb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113ca6117cb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114776117cb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114bc9190612075565b60405180910390a35050565b6114d3848484610990565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611535576114fe84848484611a57565b611534576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115468261176c565b61157c576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611586611ba8565b90506000815114156115a757604051806020016040528060008152506115d2565b806115b184611c3a565b6040516020016115c2929190612b38565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61167661196b565b73ffffffffffffffffffffffffffffffffffffffff16611694610fd6565b73ffffffffffffffffffffffffffffffffffffffff16146116ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e19061271b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190612bce565b60405180910390fd5b61176381611973565b50565b600d5481565b6000816117776117d3565b11158015611786575060005482105b80156117c4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806117e76117d3565b1161186f5760005481101561186e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561186c575b6000811415611862576004600083600190039350838152602001908152602001600020549050611837565b80925050506118a1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611929868684611c94565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a53828260405180602001604052806000815250611c9d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a7d6117cb565b8786866040518563ffffffff1660e01b8152600401611a9f9493929190612c43565b6020604051808303816000875af1925050508015611adb57506040513d601f19601f82011682018060405250810190611ad89190612ca4565b60015b611b55573d8060008114611b0b576040519150601f19603f3d011682016040523d82523d6000602084013e611b10565b606091505b50600081511415611b4d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611bb79061269d565b80601f0160208091040260200160405190810160405280929190818152602001828054611be39061269d565b8015611c305780601f10611c0557610100808354040283529160200191611c30565b820191906000526020600020905b815481529060010190602001808311611c1357829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611c8057600183039250600a81066030018353600a81049050611c60565b508181036020830392508083525050919050565b60009392505050565b611ca78383611d3a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d3557600080549050600083820390505b611ce76000868380600101945086611a57565b611d1d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611cd4578160005414611d3257600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611da7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611de2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611def600084838561190c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e6683611e576000866000611912565b611e6085611f0e565b1761193a565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611e8a57806000819055505050611f096000848385611965565b505050565b60006001821460e11b9050919050565b828054611f2a9061269d565b90600052602060002090601f016020900481019282611f4c5760008555611f93565b82601f10611f6557805160ff1916838001178555611f93565b82800160010185558215611f93579182015b82811115611f92578251825591602001919060010190611f77565b5b509050611fa09190611fa4565b5090565b5b80821115611fbd576000816000905550600101611fa5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61200a81611fd5565b811461201557600080fd5b50565b60008135905061202781612001565b92915050565b60006020828403121561204357612042611fcb565b5b600061205184828501612018565b91505092915050565b60008115159050919050565b61206f8161205a565b82525050565b600060208201905061208a6000830184612066565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120ca5780820151818401526020810190506120af565b838111156120d9576000848401525b50505050565b6000601f19601f8301169050919050565b60006120fb82612090565b612105818561209b565b93506121158185602086016120ac565b61211e816120df565b840191505092915050565b6000602082019050818103600083015261214381846120f0565b905092915050565b6000819050919050565b61215e8161214b565b811461216957600080fd5b50565b60008135905061217b81612155565b92915050565b60006020828403121561219757612196611fcb565b5b60006121a58482850161216c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121d9826121ae565b9050919050565b6121e9816121ce565b82525050565b600060208201905061220460008301846121e0565b92915050565b612213816121ce565b811461221e57600080fd5b50565b6000813590506122308161220a565b92915050565b6000806040838503121561224d5761224c611fcb565b5b600061225b85828601612221565b925050602061226c8582860161216c565b9150509250929050565b61227f8161214b565b82525050565b600060208201905061229a6000830184612276565b92915050565b6000806000606084860312156122b9576122b8611fcb565b5b60006122c786828701612221565b93505060206122d886828701612221565b92505060406122e98682870161216c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612335826120df565b810181811067ffffffffffffffff82111715612354576123536122fd565b5b80604052505050565b6000612367611fc1565b9050612373828261232c565b919050565b600067ffffffffffffffff821115612393576123926122fd565b5b61239c826120df565b9050602081019050919050565b82818337600083830152505050565b60006123cb6123c684612378565b61235d565b9050828152602081018484840111156123e7576123e66122f8565b5b6123f28482856123a9565b509392505050565b600082601f83011261240f5761240e6122f3565b5b813561241f8482602086016123b8565b91505092915050565b60006020828403121561243e5761243d611fcb565b5b600082013567ffffffffffffffff81111561245c5761245b611fd0565b5b612468848285016123fa565b91505092915050565b60006020828403121561248757612486611fcb565b5b600061249584828501612221565b91505092915050565b6124a78161205a565b81146124b257600080fd5b50565b6000813590506124c48161249e565b92915050565b600080604083850312156124e1576124e0611fcb565b5b60006124ef85828601612221565b9250506020612500858286016124b5565b9150509250929050565b600067ffffffffffffffff821115612525576125246122fd565b5b61252e826120df565b9050602081019050919050565b600061254e6125498461250a565b61235d565b90508281526020810184848401111561256a576125696122f8565b5b6125758482856123a9565b509392505050565b600082601f830112612592576125916122f3565b5b81356125a284826020860161253b565b91505092915050565b600080600080608085870312156125c5576125c4611fcb565b5b60006125d387828801612221565b94505060206125e487828801612221565b93505060406125f58782880161216c565b925050606085013567ffffffffffffffff81111561261657612615611fd0565b5b6126228782880161257d565b91505092959194509250565b6000806040838503121561264557612644611fcb565b5b600061265385828601612221565b925050602061266485828601612221565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126b557607f821691505b602082108114156126c9576126c861266e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061270560208361209b565b9150612710826126cf565b602082019050919050565b60006020820190508181036000830152612734816126f8565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612771600f8361209b565b915061277c8261273b565b602082019050919050565b600060208201905081810360008301526127a081612764565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b60006127dd601d8361209b565b91506127e8826127a7565b602082019050919050565b6000602082019050818103600083015261280c816127d0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061284d8261214b565b91506128588361214b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561288d5761288c612813565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b60006128ce60168361209b565b91506128d982612898565b602082019050919050565b600060208201905081810360008301526128fd816128c1565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b600061293a601e8361209b565b915061294582612904565b602082019050919050565b600060208201905081810360008301526129698161292d565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e73207060008201527f65722077616c6c65740000000000000000000000000000000000000000000000602082015250565b60006129cc60298361209b565b91506129d782612970565b604082019050919050565b600060208201905081810360008301526129fb816129bf565b9050919050565b6000612a0d8261214b565b9150612a188361214b565b925082821015612a2b57612a2a612813565b5b828203905092915050565b6000612a418261214b565b9150612a4c8361214b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a8557612a84612813565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612ac6601d8361209b565b9150612ad182612a90565b602082019050919050565b60006020820190508181036000830152612af581612ab9565b9050919050565b600081905092915050565b6000612b1282612090565b612b1c8185612afc565b9350612b2c8185602086016120ac565b80840191505092915050565b6000612b448285612b07565b9150612b508284612b07565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612bb860268361209b565b9150612bc382612b5c565b604082019050919050565b60006020820190508181036000830152612be781612bab565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612c1582612bee565b612c1f8185612bf9565b9350612c2f8185602086016120ac565b612c38816120df565b840191505092915050565b6000608082019050612c5860008301876121e0565b612c6560208301866121e0565b612c726040830185612276565b8181036060830152612c848184612c0a565b905095945050505050565b600081519050612c9e81612001565b92915050565b600060208284031215612cba57612cb9611fcb565b5b6000612cc884828501612c8f565b9150509291505056fea26469706673582212203b3d40e6857e3ee2be88e06d8e1224f6e07aff59354ee9fd9fe7abf99676ca6664736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48220:2011:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18015:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23662:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25608:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25156:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48418:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17069:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48296:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34873:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48372:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50094:134;;;;;;;;;;;;;:::i;:::-;;26498:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48785:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49070:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23451:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48329:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18694:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;;;;;;;;;;;:::i;:::-;;48894:77;;;;;;;;;;;;;:::i;:::-;;1955:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48977;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23831:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49291:797;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25884:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26754:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24006:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26263:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48457:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18015:615;18100:4;18415:10;18400:25;;:11;:25;;;;:102;;;;18492:10;18477:25;;:11;:25;;;;18400:102;:179;;;;18569:10;18554:25;;:11;:25;;;;18400:179;18380:199;;18015:615;;;:::o;23662:100::-;23716:13;23749:5;23742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23662:100;:::o;25608:204::-;25676:7;25701:16;25709:7;25701;:16::i;:::-;25696:64;;25726:34;;;;;;;;;;;;;;25696:64;25780:15;:24;25796:7;25780:24;;;;;;;;;;;;;;;;;;;;;25773:31;;25608:204;;;:::o;25156:386::-;25229:13;25245:16;25253:7;25245;:16::i;:::-;25229:32;;25301:5;25278:28;;:19;:17;:19::i;:::-;:28;;;25274:175;;25326:44;25343:5;25350:19;:17;:19::i;:::-;25326:16;:44::i;:::-;25321:128;;25398:35;;;;;;;;;;;;;;25321:128;25274:175;25488:2;25461:15;:24;25477:7;25461:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25526:7;25522:2;25506:28;;25515:5;25506:28;;;;;;;;;;;;25218:324;25156:386;;:::o;48418:34::-;;;;:::o;17069:315::-;17122:7;17350:15;:13;:15::i;:::-;17335:12;;17319:13;;:28;:46;17312:53;;17069:315;:::o;48296:28::-;;;;;;;;;;;;;:::o;34873:2800::-;35007:27;35037;35056:7;35037:18;:27::i;:::-;35007:57;;35122:4;35081:45;;35097:19;35081:45;;;35077:86;;35135:28;;;;;;;;;;;;;;35077:86;35177:27;35206:23;35233:28;35253:7;35233:19;:28::i;:::-;35176:85;;;;35361:62;35380:15;35397:4;35403:19;:17;:19::i;:::-;35361:18;:62::i;:::-;35356:174;;35443:43;35460:4;35466:19;:17;:19::i;:::-;35443:16;:43::i;:::-;35438:92;;35495:35;;;;;;;;;;;;;;35438:92;35356:174;35561:1;35547:16;;:2;:16;;;35543:52;;;35572:23;;;;;;;;;;;;;;35543:52;35608:43;35630:4;35636:2;35640:7;35649:1;35608:21;:43::i;:::-;35744:15;35741:160;;;35884:1;35863:19;35856:30;35741:160;36279:18;:24;36298:4;36279:24;;;;;;;;;;;;;;;;36277:26;;;;;;;;;;;;36348:18;:22;36367:2;36348:22;;;;;;;;;;;;;;;;36346:24;;;;;;;;;;;36670:145;36707:2;36755:45;36770:4;36776:2;36780:19;36755:14;:45::i;:::-;14297:8;36728:72;36670:18;:145::i;:::-;36641:17;:26;36659:7;36641:26;;;;;;;;;;;:174;;;;36985:1;14297:8;36935:19;:46;:51;36931:626;;;37007:19;37039:1;37029:7;:11;37007:33;;37196:1;37162:17;:30;37180:11;37162:30;;;;;;;;;;;;:35;37158:384;;;37300:13;;37285:11;:28;37281:242;;37480:19;37447:17;:30;37465:11;37447:30;;;;;;;;;;;:52;;;;37281:242;37158:384;36988:569;36931:626;37604:7;37600:2;37585:27;;37594:4;37585:27;;;;;;;;;;;;37623:42;37644:4;37650:2;37654:7;37663:1;37623:20;:42::i;:::-;34996:2677;;;34873:2800;;;:::o;48372:41::-;48409:4;48372:41;:::o;50094:134::-;48754:10;48743:21;;:7;:5;:7::i;:::-;:21;;;48735:30;;;;;;50145:12:::1;50160:21;50145:36;;50196:7;:5;:7::i;:::-;50188:25;;:34;50214:7;50188:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50138:90;50094:134::o:0;26498:185::-;26636:39;26653:4;26659:2;26663:7;26636:39;;;;;;;;;;;;:16;:39::i;:::-;26498:185;;;:::o;48785:103::-;48754:10;48743:21;;:7;:5;:7::i;:::-;:21;;;48735:30;;;;;;48876:6:::1;48863:10;:19;;;;48785:103:::0;:::o;49070:101::-;48754:10;48743:21;;:7;:5;:7::i;:::-;:21;;;48735:30;;;;;;49158:7:::1;49142:13;:23;;;;;;;;;;;;:::i;:::-;;49070:101:::0;:::o;23451:144::-;23515:7;23558:27;23577:7;23558:18;:27::i;:::-;23535:52;;23451:144;;;:::o;48329:38::-;;;;:::o;18694:224::-;18758:7;18799:1;18782:19;;:5;:19;;;18778:60;;;18810:28;;;;;;;;;;;;;;18778:60;13249:13;18856:18;:25;18875:5;18856:25;;;;;;;;;;;;;;;;:54;18849:61;;18694:224;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;48894:77::-;48754:10;48743:21;;:7;:5;:7::i;:::-;:21;;;48735:30;;;;;;48957:8:::1;;;;;;;;;;;48956:9;48945:8;;:20;;;;;;;;;;;;;;;;;;48894:77::o:0;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;48977:::-;48754:10;48743:21;;:7;:5;:7::i;:::-;:21;;;48735:30;;;;;;49052:6:::1;49040:9;:18;;;;48977:87:::0;:::o;23831:104::-;23887:13;23920:7;23913:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23831:104;:::o;49291:797::-;48409:4;48635:13;:11;:13::i;:::-;:27;;48627:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49354:17:::1;49374:13;:11;:13::i;:::-;49354:33;;49394:21;49418:6;49394:30;;49451:7;:5;:7::i;:::-;49437:21;;:10;:21;;;49433:94;;49477:8;;;;;;;;;;;49469:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;49433:94;48409:4;49555:6;49543:9;:18;;;;:::i;:::-;:32;;49535:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;49627:10;;49617:6;:20;;49609:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49720:14;;49710:6;49686:21;49696:10;49686:9;:21::i;:::-;:30;;;;:::i;:::-;:48;;49678:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;49804:4;49792:9;:16;49789:254;;;49831:1;49822:6;:10;49819:61;;;49869:1;49860:6;:10;;;;:::i;:::-;49844:26;;49819:61;49918:1;49893:21;49903:10;49893:9;:21::i;:::-;:26;;:40;;;;49932:1;49923:6;:10;49893:40;49890:146;;;49979:13;49967:9;;:25;;;;:::i;:::-;49954:9;:38;;49946:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49890:146;49789:254;50051:29;50061:10;50073:6;50051:9;:29::i;:::-;49347:741;;49291:797:::0;:::o;25884:308::-;25995:19;:17;:19::i;:::-;25983:31;;:8;:31;;;25979:61;;;26023:17;;;;;;;;;;;;;;25979:61;26105:8;26053:18;:39;26072:19;:17;:19::i;:::-;26053:39;;;;;;;;;;;;;;;:49;26093:8;26053:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26165:8;26129:55;;26144:19;:17;:19::i;:::-;26129:55;;;26175:8;26129:55;;;;;;:::i;:::-;;;;;;;;25884:308;;:::o;26754:399::-;26921:31;26934:4;26940:2;26944:7;26921:12;:31::i;:::-;26985:1;26967:2;:14;;;:19;26963:183;;27006:56;27037:4;27043:2;27047:7;27056:5;27006:30;:56::i;:::-;27001:145;;27090:40;;;;;;;;;;;;;;27001:145;26963:183;26754:399;;;;:::o;24006:318::-;24079:13;24110:16;24118:7;24110;:16::i;:::-;24105:59;;24135:29;;;;;;;;;;;;;;24105:59;24177:21;24201:10;:8;:10::i;:::-;24177:34;;24254:1;24235:7;24229:21;:26;;:87;;;;;;;;;;;;;;;;;24282:7;24291:18;24301:7;24291:9;:18::i;:::-;24265:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24229:87;24222:94;;;24006:318;;;:::o;26263:164::-;26360:4;26384:18;:25;26403:5;26384:25;;;;;;;;;;;;;;;:35;26410:8;26384:35;;;;;;;;;;;;;;;;;;;;;;;;;26377:42;;26263:164;;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;;;2945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;48457:30::-;;;;:::o;27408:273::-;27465:4;27521:7;27502:15;:13;:15::i;:::-;:26;;:66;;;;;27555:13;;27545:7;:23;27502:66;:152;;;;;27653:1;14019:8;27606:17;:26;27624:7;27606:26;;;;;;;;;;;;:43;:48;27502:152;27482:172;;27408:273;;;:::o;45969:105::-;46029:7;46056:10;46049:17;;45969:105;:::o;16593:92::-;16649:7;16593:92;:::o;20368:1129::-;20435:7;20455:12;20470:7;20455:22;;20538:4;20519:15;:13;:15::i;:::-;:23;20515:915;;20572:13;;20565:4;:20;20561:869;;;20610:14;20627:17;:23;20645:4;20627:23;;;;;;;;;;;;20610:40;;20743:1;14019:8;20716:6;:23;:28;20712:699;;;21235:113;21252:1;21242:6;:11;21235:113;;;21295:17;:25;21313:6;;;;;;;21295:25;;;;;;;;;;;;21286:34;;21235:113;;;21381:6;21374:13;;;;;;20712:699;20587:843;20561:869;20515:915;21458:31;;;;;;;;;;;;;;20368:1129;;;;:::o;33209:652::-;33304:27;33333:23;33374:53;33430:15;33374:71;;33616:7;33610:4;33603:21;33651:22;33645:4;33638:36;33727:4;33721;33711:21;33688:44;;33823:19;33817:26;33798:45;;33554:300;33209:652;;;:::o;33974:645::-;34116:11;34278:15;34272:4;34268:26;34260:34;;34437:15;34426:9;34422:31;34409:44;;34584:15;34573:9;34570:30;34563:4;34552:9;34549:19;34546:55;34536:65;;33974:645;;;;;:::o;44802:159::-;;;;;:::o;43114:309::-;43249:7;43269:16;14420:3;43295:19;:40;;43269:67;;14420:3;43362:31;43373:4;43379:2;43383:9;43362:10;:31::i;:::-;43354:40;;:61;;43347:68;;;43114:309;;;;;:::o;22942:447::-;23022:14;23190:15;23183:5;23179:27;23170:36;;23364:5;23350:11;23326:22;23322:40;23319:51;23312:5;23309:62;23299:72;;22942:447;;;;:::o;45620:158::-;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;27765:104::-;27834:27;27844:2;27848:8;27834:27;;;;;;;;;;;;:9;:27::i;:::-;27765:104;;:::o;41624:716::-;41787:4;41833:2;41808:45;;;41854:19;:17;:19::i;:::-;41875:4;41881:7;41890:5;41808:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41804:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42108:1;42091:6;:13;:18;42087:235;;;42137:40;;;;;;;;;;;;;;42087:235;42280:6;42274:13;42265:6;42261:2;42257:15;42250:38;41804:529;41977:54;;;41967:64;;;:6;:64;;;;41960:71;;;41624:716;;;;;;:::o;49177:108::-;49237:13;49266;49259:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49177:108;:::o;46180:1960::-;46237:17;46656:3;46649:4;46643:11;46639:21;46632:28;;46747:3;46741:4;46734:17;46853:3;47309:5;47439:1;47434:3;47430:11;47423:18;;47576:2;47570:4;47566:13;47562:2;47558:22;47553:3;47545:36;47617:2;47611:4;47607:13;47599:21;;47201:697;47636:4;47201:697;;;47827:1;47822:3;47818:11;47811:18;;47878:2;47872:4;47868:13;47864:2;47860:22;47855:3;47847:36;47731:2;47725:4;47721:13;47713:21;;47201:697;;;47205:430;47937:3;47932;47928:13;48052:2;48047:3;48043:12;48036:19;;48115:6;48110:3;48103:19;46276:1857;;46180:1960;;;:::o;43999:147::-;44136:6;43999:147;;;;;:::o;28285:681::-;28408:19;28414:2;28418:8;28408:5;:19::i;:::-;28487:1;28469:2;:14;;;:19;28465:483;;28509:11;28523:13;;28509:27;;28555:13;28577:8;28571:3;:14;28555:30;;28604:233;28635:62;28674:1;28678:2;28682:7;;;;;;28691:5;28635:30;:62::i;:::-;28630:167;;28733:40;;;;;;;;;;;;;;28630:167;28832:3;28824:5;:11;28604:233;;28919:3;28902:13;;:20;28898:34;;28924:8;;;28898:34;28490:458;;28465:483;28285:681;;;:::o;29239:1529::-;29304:20;29327:13;;29304:36;;29369:1;29355:16;;:2;:16;;;29351:48;;;29380:19;;;;;;;;;;;;;;29351:48;29426:1;29414:8;:13;29410:44;;;29436:18;;;;;;;;;;;;;;29410:44;29467:61;29497:1;29501:2;29505:12;29519:8;29467:21;:61::i;:::-;30010:1;13386:2;29981:1;:25;;29980:31;29968:8;:44;29942:18;:22;29961:2;29942:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30289:139;30326:2;30380:33;30403:1;30407:2;30411:1;30380:14;:33::i;:::-;30347:30;30368:8;30347:20;:30::i;:::-;:66;30289:18;:139::i;:::-;30255:17;:31;30273:12;30255:31;;;;;;;;;;;:173;;;;30445:15;30463:12;30445:30;;30490:11;30519:8;30504:12;:23;30490:37;;30542:101;30594:9;;;;;;30590:2;30569:35;;30586:1;30569:35;;;;;;;;;;;;30638:3;30628:7;:13;30542:101;;30675:3;30659:13;:19;;;;29716:974;;30700:60;30729:1;30733:2;30737:12;30751:8;30700:20;:60::i;:::-;29293:1475;29239:1529;;:::o;24772:322::-;24842:14;25073:1;25063:8;25060:15;25035:23;25031:45;25021:55;;24772:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:165::-;13758:17;13754:1;13746:6;13742:14;13735:41;13618:165;:::o;13789:366::-;13931:3;13952:67;14016:2;14011:3;13952:67;:::i;:::-;13945:74;;14028:93;14117:3;14028:93;:::i;:::-;14146:2;14141:3;14137:12;14130:19;;13789:366;;;:::o;14161:419::-;14327:4;14365:2;14354:9;14350:18;14342:26;;14414:9;14408:4;14404:20;14400:1;14389:9;14385:17;14378:47;14442:131;14568:4;14442:131;:::i;:::-;14434:139;;14161:419;;;:::o;14586:179::-;14726:31;14722:1;14714:6;14710:14;14703:55;14586:179;:::o;14771:366::-;14913:3;14934:67;14998:2;14993:3;14934:67;:::i;:::-;14927:74;;15010:93;15099:3;15010:93;:::i;:::-;15128:2;15123:3;15119:12;15112:19;;14771:366;;;:::o;15143:419::-;15309:4;15347:2;15336:9;15332:18;15324:26;;15396:9;15390:4;15386:20;15382:1;15371:9;15367:17;15360:47;15424:131;15550:4;15424:131;:::i;:::-;15416:139;;15143:419;;;:::o;15568:180::-;15616:77;15613:1;15606:88;15713:4;15710:1;15703:15;15737:4;15734:1;15727:15;15754:305;15794:3;15813:20;15831:1;15813:20;:::i;:::-;15808:25;;15847:20;15865:1;15847:20;:::i;:::-;15842:25;;16001:1;15933:66;15929:74;15926:1;15923:81;15920:107;;;16007:18;;:::i;:::-;15920:107;16051:1;16048;16044:9;16037:16;;15754:305;;;;:::o;16065:172::-;16205:24;16201:1;16193:6;16189:14;16182:48;16065:172;:::o;16243:366::-;16385:3;16406:67;16470:2;16465:3;16406:67;:::i;:::-;16399:74;;16482:93;16571:3;16482:93;:::i;:::-;16600:2;16595:3;16591:12;16584:19;;16243:366;;;:::o;16615:419::-;16781:4;16819:2;16808:9;16804:18;16796:26;;16868:9;16862:4;16858:20;16854:1;16843:9;16839:17;16832:47;16896:131;17022:4;16896:131;:::i;:::-;16888:139;;16615:419;;;:::o;17040:180::-;17180:32;17176:1;17168:6;17164:14;17157:56;17040:180;:::o;17226:366::-;17368:3;17389:67;17453:2;17448:3;17389:67;:::i;:::-;17382:74;;17465:93;17554:3;17465:93;:::i;:::-;17583:2;17578:3;17574:12;17567:19;;17226:366;;;:::o;17598:419::-;17764:4;17802:2;17791:9;17787:18;17779:26;;17851:9;17845:4;17841:20;17837:1;17826:9;17822:17;17815:47;17879:131;18005:4;17879:131;:::i;:::-;17871:139;;17598:419;;;:::o;18023:228::-;18163:34;18159:1;18151:6;18147:14;18140:58;18232:11;18227:2;18219:6;18215:15;18208:36;18023:228;:::o;18257:366::-;18399:3;18420:67;18484:2;18479:3;18420:67;:::i;:::-;18413:74;;18496:93;18585:3;18496:93;:::i;:::-;18614:2;18609:3;18605:12;18598:19;;18257:366;;;:::o;18629:419::-;18795:4;18833:2;18822:9;18818:18;18810:26;;18882:9;18876:4;18872:20;18868:1;18857:9;18853:17;18846:47;18910:131;19036:4;18910:131;:::i;:::-;18902:139;;18629:419;;;:::o;19054:191::-;19094:4;19114:20;19132:1;19114:20;:::i;:::-;19109:25;;19148:20;19166:1;19148:20;:::i;:::-;19143:25;;19187:1;19184;19181:8;19178:34;;;19192:18;;:::i;:::-;19178:34;19237:1;19234;19230:9;19222:17;;19054:191;;;;:::o;19251:348::-;19291:7;19314:20;19332:1;19314:20;:::i;:::-;19309:25;;19348:20;19366:1;19348:20;:::i;:::-;19343:25;;19536:1;19468:66;19464:74;19461:1;19458:81;19453:1;19446:9;19439:17;19435:105;19432:131;;;19543:18;;:::i;:::-;19432:131;19591:1;19588;19584:9;19573:20;;19251:348;;;;:::o;19605:179::-;19745:31;19741:1;19733:6;19729:14;19722:55;19605:179;:::o;19790:366::-;19932:3;19953:67;20017:2;20012:3;19953:67;:::i;:::-;19946:74;;20029:93;20118:3;20029:93;:::i;:::-;20147:2;20142:3;20138:12;20131:19;;19790:366;;;:::o;20162:419::-;20328:4;20366:2;20355:9;20351:18;20343:26;;20415:9;20409:4;20405:20;20401:1;20390:9;20386:17;20379:47;20443:131;20569:4;20443:131;:::i;:::-;20435:139;;20162:419;;;:::o;20587:148::-;20689:11;20726:3;20711:18;;20587:148;;;;:::o;20741:377::-;20847:3;20875:39;20908:5;20875:39;:::i;:::-;20930:89;21012:6;21007:3;20930:89;:::i;:::-;20923:96;;21028:52;21073:6;21068:3;21061:4;21054:5;21050:16;21028:52;:::i;:::-;21105:6;21100:3;21096:16;21089:23;;20851:267;20741:377;;;;:::o;21124:435::-;21304:3;21326:95;21417:3;21408:6;21326:95;:::i;:::-;21319:102;;21438:95;21529:3;21520:6;21438:95;:::i;:::-;21431:102;;21550:3;21543:10;;21124:435;;;;;:::o;21565:225::-;21705:34;21701:1;21693:6;21689:14;21682:58;21774:8;21769:2;21761:6;21757:15;21750:33;21565:225;:::o;21796:366::-;21938:3;21959:67;22023:2;22018:3;21959:67;:::i;:::-;21952:74;;22035:93;22124:3;22035:93;:::i;:::-;22153:2;22148:3;22144:12;22137:19;;21796:366;;;:::o;22168:419::-;22334:4;22372:2;22361:9;22357:18;22349:26;;22421:9;22415:4;22411:20;22407:1;22396:9;22392:17;22385:47;22449:131;22575:4;22449:131;:::i;:::-;22441:139;;22168:419;;;:::o;22593:98::-;22644:6;22678:5;22672:12;22662:22;;22593:98;;;:::o;22697:168::-;22780:11;22814:6;22809:3;22802:19;22854:4;22849:3;22845:14;22830:29;;22697:168;;;;:::o;22871:360::-;22957:3;22985:38;23017:5;22985:38;:::i;:::-;23039:70;23102:6;23097:3;23039:70;:::i;:::-;23032:77;;23118:52;23163:6;23158:3;23151:4;23144:5;23140:16;23118:52;:::i;:::-;23195:29;23217:6;23195:29;:::i;:::-;23190:3;23186:39;23179:46;;22961:270;22871:360;;;;:::o;23237:640::-;23432:4;23470:3;23459:9;23455:19;23447:27;;23484:71;23552:1;23541:9;23537:17;23528:6;23484:71;:::i;:::-;23565:72;23633:2;23622:9;23618:18;23609:6;23565:72;:::i;:::-;23647;23715:2;23704:9;23700:18;23691:6;23647:72;:::i;:::-;23766:9;23760:4;23756:20;23751:2;23740:9;23736:18;23729:48;23794:76;23865:4;23856:6;23794:76;:::i;:::-;23786:84;;23237:640;;;;;;;:::o;23883:141::-;23939:5;23970:6;23964:13;23955:22;;23986:32;24012:5;23986:32;:::i;:::-;23883:141;;;;:::o;24030:349::-;24099:6;24148:2;24136:9;24127:7;24123:23;24119:32;24116:119;;;24154:79;;:::i;:::-;24116:119;24274:1;24299:63;24354:7;24345:6;24334:9;24330:22;24299:63;:::i;:::-;24289:73;;24245:127;24030:349;;;;:::o

Swarm Source

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