ETH Price: $3,119.50 (-5.24%)
Gas: 4 Gwei

Token

MutantRatsNFT (MutantRatsNFT)
 

Overview

Max Total Supply

9,999 MutantRatsNFT

Holders

7,688

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MutantRatsNFT
0xCC64FFAe0a6F3683f5E3421020FE69fE939b940C
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:
WIKIFREE

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

// File: 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/freemint.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;




contract WIKIFREE is Ownable, ERC721A {
    uint256 constant public maxSupply = 9999;
    uint256 public publicPrice = 0.003 ether;
    uint256 constant public limitAmountPerTx = 5;
    uint256 constant public limitAmountPerWallet = 5;
    uint256 public totalTeamSupply;
    string public revealedURI = "ipfs:// ----IFPS---/";
    bool public paused = true;
    bool public freeSale = true;
    bool public publicSale = true;
    uint256 public freecount = 1;
    mapping(address => bool) public userMintedFree;
    mapping(address => uint256) public mintedWallets;
    string private _baseTokenUri;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _revealedURI
    ) ERC721A(_name, _symbol) {
        revealedURI = _revealedURI;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }
    
    function freeMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(freeSale, "Free sale inactive");
        require(msg.value == 0, "This phase is free");
        require(quantity <= freecount, "Only 4 free");
        require(mintedWallets[msg.sender] < freecount, "exceed max free mint");
        require(!userMintedFree[msg.sender], "User max free limit");
        require(maxSupply > totalSupply(), "sold out");
        mintedWallets[msg.sender]++;
        _safeMint(msg.sender, quantity);
    }

    function publicMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(publicSale, "Public sale inactive");
        require(msg.value >= quantity * publicPrice, "give me more money");
        require(quantity <= limitAmountPerTx, "Quantity too high");
        uint256 currMints = mintedWallets[msg.sender];
        require(currMints + quantity <= limitAmountPerWallet, "u wanna mint too many");
        mintedWallets[msg.sender] = (currMints + quantity);
        _safeMint(msg.sender, quantity);
    }

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

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }

        currentTokenId++;
        }

        return ownedTokenIds;
    }

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

    function setBaseUri(string memory _baseUri) external onlyOwner {
        _baseTokenUri = _baseUri;
    }

    function contractURI() public view returns (string memory) {
        return revealedURI;
    }

    function setPublicPrice(uint256 _publicPrice) public onlyOwner {
        publicPrice = _publicPrice;
    }

    function setBaseURI(string memory _baseUri) public onlyOwner {
        revealedURI = _baseUri;
    }

    function setContractURI(string memory _contractURI) public onlyOwner {
        revealedURI = _contractURI;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json"));
    }

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

    function setPublicEnabled(bool _state) public onlyOwner {
        publicSale = _state;
        freeSale = !_state;
    }
    function setFreeEnabled(bool _state) public onlyOwner {
        freeSale = _state;
        publicSale = !_state;
    }
    

    function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) {
        _safeMint(receiver, quantity);
    }

    function withdrawFundsToAddress(address _address, uint256 amount) external onlyOwner {
        (bool success, ) =_address.call{value: amount}("");
        require(success, "Transfer failed.");
    }

    modifier mintCompliance(uint256 quantity) {
        require(!paused, "Contract is paused");
        require(totalSupply() + quantity <= maxSupply, "you cant become ugly anymore");
        require(tx.origin == msg.sender, "No contract minting");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_revealedURI","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freecount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedWallets","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTeamSupply","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":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFundsToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660aa87bee5380006009556040518060400160405280601481526020017f697066733a2f2f202d2d2d2d494650532d2d2d2f000000000000000000000000815250600b90805190602001906200005c92919062000249565b506001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff0219169083151502179055506001600d55348015620000c057600080fd5b506040516200451a3803806200451a8339818101604052810190620000e6919062000377565b828262000108620000fc6200017460201b60201c565b6200017c60201b60201c565b81600390805190602001906200012092919062000249565b5080600490805190602001906200013992919062000249565b506200014a6200024060201b60201c565b600181905550505080600b90805190602001906200016a92919062000249565b50505050620005b4565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b8280546200025790620004c5565b90600052602060002090601f0160209004810192826200027b5760008555620002c7565b82601f106200029657805160ff1916838001178555620002c7565b82800160010185558215620002c7579182015b82811115620002c6578251825591602001919060010190620002a9565b5b509050620002d69190620002da565b5090565b5b80821115620002f5576000816000905550600101620002db565b5090565b6000620003106200030a8462000459565b62000430565b9050828152602081018484840111156200032f576200032e62000594565b5b6200033c8482856200048f565b509392505050565b600082601f8301126200035c576200035b6200058f565b5b81516200036e848260208601620002f9565b91505092915050565b6000806000606084860312156200039357620003926200059e565b5b600084015167ffffffffffffffff811115620003b457620003b362000599565b5b620003c28682870162000344565b935050602084015167ffffffffffffffff811115620003e657620003e562000599565b5b620003f48682870162000344565b925050604084015167ffffffffffffffff81111562000418576200041762000599565b5b620004268682870162000344565b9150509250925092565b60006200043c6200044f565b90506200044a8282620004fb565b919050565b6000604051905090565b600067ffffffffffffffff82111562000477576200047662000560565b5b6200048282620005a3565b9050602081019050919050565b60005b83811015620004af57808201518184015260208101905062000492565b83811115620004bf576000848401525b50505050565b60006002820490506001821680620004de57607f821691505b60208210811415620004f557620004f462000531565b5b50919050565b6200050682620005a3565b810181811067ffffffffffffffff8211171562000528576200052762000560565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b613f5680620005c46000396000f3fe6080604052600436106102515760003560e01c806388dedc1411610139578063a945bf80116100b6578063c87b56dd1161007a578063c87b56dd14610892578063d5abeb01146108cf578063e8a3d485146108fa578063e985e9c514610925578063f2fde38b14610962578063f7e8d6ea1461098b57610251565b8063a945bf80146107ad578063abc025d1146107d8578063ada7c4ed14610803578063b88d4fde14610840578063c62752551461086957610251565b8063938e3d7b116100fd578063938e3d7b146106dc57806395d89b4114610705578063a0bcfc7f14610730578063a22cb46514610759578063a4b41a151461078257610251565b806388dedc14146106095780638942bbff146106325780638da5cb5b1461065d5780639007bd721461068857806390134eb7146106b157610251565b806342842e0e116101d25780636352211e116101965780636352211e146104f657806364f640761461053357806370a0823114610570578063715018a6146105ad5780637af3a1af146105c45780637c928fe9146105ed57610251565b806342842e0e14610413578063438b63001461043c5780634f7f89761461047957806355f804b3146104a25780635c975abb146104cb57610251565b8063170594c611610219578063170594c61461034d57806318160ddd1461037857806323b872dd146103a35780632db11544146103cc57806333bc1c5c146103e857610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806316c38b3c14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612df6565b6109b6565b60405161028a9190613440565b60405180910390f35b34801561029f57600080fd5b506102a8610a48565b6040516102b5919061345b565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190612e99565b610ada565b6040516102f291906133b7565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190612d89565b610b56565b005b34801561033057600080fd5b5061034b60048036038101906103469190612dc9565b610c97565b005b34801561035957600080fd5b50610362610cbc565b60405161036f919061369d565b60405180910390f35b34801561038457600080fd5b5061038d610cc2565b60405161039a919061369d565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190612c73565b610cd9565b005b6103e660048036038101906103e19190612e99565b610ffe565b005b3480156103f457600080fd5b506103fd6112e8565b60405161040a9190613440565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190612c73565b6112fb565b005b34801561044857600080fd5b50610463600480360381019061045e9190612c06565b61131b565b604051610470919061341e565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190612d89565b611426565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190612e50565b6114df565b005b3480156104d757600080fd5b506104e0611501565b6040516104ed9190613440565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612e99565b611514565b60405161052a91906133b7565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612c06565b611526565b6040516105679190613440565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190612c06565b611546565b6040516105a4919061369d565b60405180910390f35b3480156105b957600080fd5b506105c26115ff565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612dc9565b611613565b005b61060760048036038101906106029190612e99565b611653565b005b34801561061557600080fd5b50610630600480360381019061062b9190612dc9565b6119fe565b005b34801561063e57600080fd5b50610647611a3e565b604051610654919061369d565b60405180910390f35b34801561066957600080fd5b50610672611a43565b60405161067f91906133b7565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa9190612ec6565b611a6c565b005b3480156106bd57600080fd5b506106c6611b99565b6040516106d3919061369d565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190612e50565b611b9f565b005b34801561071157600080fd5b5061071a611bc1565b604051610727919061345b565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612e50565b611c53565b005b34801561076557600080fd5b50610780600480360381019061077b9190612d49565b611c75565b005b34801561078e57600080fd5b50610797611ded565b6040516107a49190613440565b60405180910390f35b3480156107b957600080fd5b506107c2611e00565b6040516107cf919061369d565b60405180910390f35b3480156107e457600080fd5b506107ed611e06565b6040516107fa919061369d565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190612c06565b611e0b565b604051610837919061369d565b60405180910390f35b34801561084c57600080fd5b5061086760048036038101906108629190612cc6565b611e23565b005b34801561087557600080fd5b50610890600480360381019061088b9190612e99565b611e96565b005b34801561089e57600080fd5b506108b960048036038101906108b49190612e99565b611ea8565b6040516108c6919061345b565b60405180910390f35b3480156108db57600080fd5b506108e4611f24565b6040516108f1919061369d565b60405180910390f35b34801561090657600080fd5b5061090f611f2a565b60405161091c919061345b565b60405180910390f35b34801561093157600080fd5b5061094c60048036038101906109479190612c33565b611fbc565b6040516109599190613440565b60405180910390f35b34801561096e57600080fd5b5061098960048036038101906109849190612c06565b612050565b005b34801561099757600080fd5b506109a06120d4565b6040516109ad919061345b565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a415750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610a57906139a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a83906139a6565b8015610ad05780601f10610aa557610100808354040283529160200191610ad0565b820191906000526020600020905b815481529060010190602001808311610ab357829003601f168201915b5050505050905090565b6000610ae582612162565b610b1b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6182611514565b90508073ffffffffffffffffffffffffffffffffffffffff16610b826121c1565b73ffffffffffffffffffffffffffffffffffffffff1614610be557610bae81610ba96121c1565b611fbc565b610be4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c9f6121c9565b80600c60006101000a81548160ff02191690831515021790555050565b600a5481565b6000610ccc612247565b6002546001540303905090565b6000610ce482612250565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d578461231e565b91509150610d6d8187610d686121c1565b612340565b610db957610d8286610d7d6121c1565b611fbc565b610db8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e20576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e2d8686866001612384565b8015610e3857600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f0685610ee288888761238a565b7c0200000000000000000000000000000000000000000000000000000000176123b2565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f8e576000600185019050600060056000838152602001908152602001600020541415610f8c576001548114610f8b578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ff686868660016123dd565b505050505050565b80600c60009054906101000a900460ff161561104f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110469061367d565b60405180910390fd5b61270f8161105b610cc2565b61106591906137db565b11156110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d9061347d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b906134bd565b60405180910390fd5b600c60029054906101000a900460ff16611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a906135fd565b60405180910390fd5b600954826111719190613862565b3410156111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa9061361d565b60405180910390fd5b60058211156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee9061363d565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506005838261124991906137db565b111561128a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611281906134fd565b60405180910390fd5b828161129691906137db565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112e333846123e3565b505050565b600c60029054906101000a900460ff1681565b61131683838360405180602001604052806000815250611e23565b505050565b6060600061132883611546565b905060008167ffffffffffffffff81111561134657611345613b3f565b5b6040519080825280602002602001820160405280156113745781602001602082028036833780820191505090505b50905060006001905060005b8381108015611391575061270f8211155b1561141a5760006113a183611514565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561140657828483815181106113eb576113ea613b10565b5b602002602001018181525050818061140290613a09565b9250505b828061141190613a09565b93505050611380565b82945050505050919050565b61142e6121c9565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611454906133a2565b60006040518083038185875af1925050503d8060008114611491576040519150601f19603f3d011682016040523d82523d6000602084013e611496565b606091505b50509050806114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d19061365d565b60405180910390fd5b505050565b6114e76121c9565b80600b90805190602001906114fd929190612a1a565b5050565b600c60009054906101000a900460ff1681565b600061151f82612250565b9050919050565b600e6020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ae576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116076121c9565b6116116000612401565b565b61161b6121c9565b80600c60026101000a81548160ff0219169083151502179055508015600c60016101000a81548160ff02191690831515021790555050565b80600c60009054906101000a900460ff16156116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b9061367d565b60405180910390fd5b61270f816116b0610cc2565b6116ba91906137db565b11156116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f29061347d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611760906134bd565b60405180910390fd5b600c60019054906101000a900460ff166117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af9061353d565b60405180910390fd5b600034146117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f2906135dd565b60405180910390fd5b600d54821115611840576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118379061351d565b60405180910390fd5b600d54600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba9061355d565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119479061359d565b60405180910390fd5b611958610cc2565b61270f1161199b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611992906134dd565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906119eb90613a09565b91905055506119fa33836123e3565b5050565b611a066121c9565b80600c60016101000a81548160ff0219169083151502179055508015600c60026101000a81548160ff02191690831515021790555050565b600581565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a746121c9565b81600c60009054906101000a900460ff1615611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc9061367d565b60405180910390fd5b61270f81611ad1610cc2565b611adb91906137db565b1115611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b139061347d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b81906134bd565b60405180910390fd5b611b9482846123e3565b505050565b600d5481565b611ba76121c9565b80600b9080519060200190611bbd929190612a1a565b5050565b606060048054611bd0906139a6565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfc906139a6565b8015611c495780601f10611c1e57610100808354040283529160200191611c49565b820191906000526020600020905b815481529060010190602001808311611c2c57829003601f168201915b5050505050905090565b611c5b6121c9565b8060109080519060200190611c71929190612a1a565b5050565b611c7d6121c1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ce2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611cef6121c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d9c6121c1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611de19190613440565b60405180910390a35050565b600c60019054906101000a900460ff1681565b60095481565b600581565b600f6020528060005260406000206000915090505481565b611e2e848484610cd9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e9057611e59848484846124c5565b611e8f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611e9e6121c9565b8060098190555050565b6060611eb382612162565b611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee9906135bd565b60405180910390fd5b600b611efd83612625565b604051602001611f0e929190613373565b6040516020818303038152906040529050919050565b61270f81565b6060600b8054611f39906139a6565b80601f0160208091040260200160405190810160405280929190818152602001828054611f65906139a6565b8015611fb25780601f10611f8757610100808354040283529160200191611fb2565b820191906000526020600020905b815481529060010190602001808311611f9557829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120586121c9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf9061349d565b60405180910390fd5b6120d181612401565b50565b600b80546120e1906139a6565b80601f016020809104026020016040519081016040528092919081815260200182805461210d906139a6565b801561215a5780601f1061212f5761010080835404028352916020019161215a565b820191906000526020600020905b81548152906001019060200180831161213d57829003601f168201915b505050505081565b60008161216d612247565b1115801561217c575060015482105b80156121ba575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b6121d1612786565b73ffffffffffffffffffffffffffffffffffffffff166121ef611a43565b73ffffffffffffffffffffffffffffffffffffffff1614612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c9061357d565b60405180910390fd5b565b60006001905090565b6000808290508061225f612247565b116122e7576001548110156122e65760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156122e4575b60008114156122da5760056000836001900393508381526020019081526020016000205490506122af565b8092505050612319565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123a186868461278e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6123fd828260405180602001604052806000815250612797565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124eb6121c1565b8786866040518563ffffffff1660e01b815260040161250d94939291906133d2565b602060405180830381600087803b15801561252757600080fd5b505af192505050801561255857506040513d601f19601f820116820180604052508101906125559190612e23565b60015b6125d2573d8060008114612588576040519150601f19603f3d011682016040523d82523d6000602084013e61258d565b606091505b506000815114156125ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561266d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612781565b600082905060005b6000821461269f57808061268890613a09565b915050600a826126989190613831565b9150612675565b60008167ffffffffffffffff8111156126bb576126ba613b3f565b5b6040519080825280601f01601f1916602001820160405280156126ed5781602001600182028036833780820191505090505b5090505b6000851461277a5760018261270691906138bc565b9150600a856127159190613a52565b603061272191906137db565b60f81b81838151811061273757612736613b10565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127739190613831565b94506126f1565b8093505050505b919050565b600033905090565b60009392505050565b6127a18383612835565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128305760006001549050600083820390505b6127e260008683806001019450866124c5565b612818576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106127cf57816001541461282d57600080fd5b50505b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128a3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156128de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128eb6000848385612384565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061296283612953600086600061238a565b61295c85612a0a565b176123b2565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061298657806001819055505050612a0560008483856123dd565b505050565b60006001821460e11b9050919050565b828054612a26906139a6565b90600052602060002090601f016020900481019282612a485760008555612a8f565b82601f10612a6157805160ff1916838001178555612a8f565b82800160010185558215612a8f579182015b82811115612a8e578251825591602001919060010190612a73565b5b509050612a9c9190612aa0565b5090565b5b80821115612ab9576000816000905550600101612aa1565b5090565b6000612ad0612acb846136dd565b6136b8565b905082815260208101848484011115612aec57612aeb613b73565b5b612af7848285613964565b509392505050565b6000612b12612b0d8461370e565b6136b8565b905082815260208101848484011115612b2e57612b2d613b73565b5b612b39848285613964565b509392505050565b600081359050612b5081613ec4565b92915050565b600081359050612b6581613edb565b92915050565b600081359050612b7a81613ef2565b92915050565b600081519050612b8f81613ef2565b92915050565b600082601f830112612baa57612ba9613b6e565b5b8135612bba848260208601612abd565b91505092915050565b600082601f830112612bd857612bd7613b6e565b5b8135612be8848260208601612aff565b91505092915050565b600081359050612c0081613f09565b92915050565b600060208284031215612c1c57612c1b613b7d565b5b6000612c2a84828501612b41565b91505092915050565b60008060408385031215612c4a57612c49613b7d565b5b6000612c5885828601612b41565b9250506020612c6985828601612b41565b9150509250929050565b600080600060608486031215612c8c57612c8b613b7d565b5b6000612c9a86828701612b41565b9350506020612cab86828701612b41565b9250506040612cbc86828701612bf1565b9150509250925092565b60008060008060808587031215612ce057612cdf613b7d565b5b6000612cee87828801612b41565b9450506020612cff87828801612b41565b9350506040612d1087828801612bf1565b925050606085013567ffffffffffffffff811115612d3157612d30613b78565b5b612d3d87828801612b95565b91505092959194509250565b60008060408385031215612d6057612d5f613b7d565b5b6000612d6e85828601612b41565b9250506020612d7f85828601612b56565b9150509250929050565b60008060408385031215612da057612d9f613b7d565b5b6000612dae85828601612b41565b9250506020612dbf85828601612bf1565b9150509250929050565b600060208284031215612ddf57612dde613b7d565b5b6000612ded84828501612b56565b91505092915050565b600060208284031215612e0c57612e0b613b7d565b5b6000612e1a84828501612b6b565b91505092915050565b600060208284031215612e3957612e38613b7d565b5b6000612e4784828501612b80565b91505092915050565b600060208284031215612e6657612e65613b7d565b5b600082013567ffffffffffffffff811115612e8457612e83613b78565b5b612e9084828501612bc3565b91505092915050565b600060208284031215612eaf57612eae613b7d565b5b6000612ebd84828501612bf1565b91505092915050565b60008060408385031215612edd57612edc613b7d565b5b6000612eeb85828601612bf1565b9250506020612efc85828601612b41565b9150509250929050565b6000612f128383613355565b60208301905092915050565b612f27816138f0565b82525050565b6000612f3882613764565b612f428185613792565b9350612f4d8361373f565b8060005b83811015612f7e578151612f658882612f06565b9750612f7083613785565b925050600181019050612f51565b5085935050505092915050565b612f9481613902565b82525050565b6000612fa58261376f565b612faf81856137a3565b9350612fbf818560208601613973565b612fc881613b82565b840191505092915050565b6000612fde8261377a565b612fe881856137bf565b9350612ff8818560208601613973565b61300181613b82565b840191505092915050565b60006130178261377a565b61302181856137d0565b9350613031818560208601613973565b80840191505092915050565b6000815461304a816139a6565b61305481866137d0565b9450600182166000811461306f5760018114613080576130b3565b60ff198316865281860193506130b3565b6130898561374f565b60005b838110156130ab5781548189015260018201915060208101905061308c565b838801955050505b50505092915050565b60006130c9601c836137bf565b91506130d482613b93565b602082019050919050565b60006130ec6026836137bf565b91506130f782613bbc565b604082019050919050565b600061310f6013836137bf565b915061311a82613c0b565b602082019050919050565b60006131326008836137bf565b915061313d82613c34565b602082019050919050565b60006131556015836137bf565b915061316082613c5d565b602082019050919050565b6000613178600b836137bf565b915061318382613c86565b602082019050919050565b600061319b6012836137bf565b91506131a682613caf565b602082019050919050565b60006131be6005836137d0565b91506131c982613cd8565b600582019050919050565b60006131e16014836137bf565b91506131ec82613d01565b602082019050919050565b60006132046020836137bf565b915061320f82613d2a565b602082019050919050565b60006132276013836137bf565b915061323282613d53565b602082019050919050565b600061324a602f836137bf565b915061325582613d7c565b604082019050919050565b600061326d6012836137bf565b915061327882613dcb565b602082019050919050565b60006132906014836137bf565b915061329b82613df4565b602082019050919050565b60006132b36012836137bf565b91506132be82613e1d565b602082019050919050565b60006132d66011836137bf565b91506132e182613e46565b602082019050919050565b60006132f96000836137b4565b915061330482613e6f565b600082019050919050565b600061331c6010836137bf565b915061332782613e72565b602082019050919050565b600061333f6012836137bf565b915061334a82613e9b565b602082019050919050565b61335e8161395a565b82525050565b61336d8161395a565b82525050565b600061337f828561303d565b915061338b828461300c565b9150613396826131b1565b91508190509392505050565b60006133ad826132ec565b9150819050919050565b60006020820190506133cc6000830184612f1e565b92915050565b60006080820190506133e76000830187612f1e565b6133f46020830186612f1e565b6134016040830185613364565b81810360608301526134138184612f9a565b905095945050505050565b600060208201905081810360008301526134388184612f2d565b905092915050565b60006020820190506134556000830184612f8b565b92915050565b600060208201905081810360008301526134758184612fd3565b905092915050565b60006020820190508181036000830152613496816130bc565b9050919050565b600060208201905081810360008301526134b6816130df565b9050919050565b600060208201905081810360008301526134d681613102565b9050919050565b600060208201905081810360008301526134f681613125565b9050919050565b6000602082019050818103600083015261351681613148565b9050919050565b600060208201905081810360008301526135368161316b565b9050919050565b600060208201905081810360008301526135568161318e565b9050919050565b60006020820190508181036000830152613576816131d4565b9050919050565b60006020820190508181036000830152613596816131f7565b9050919050565b600060208201905081810360008301526135b68161321a565b9050919050565b600060208201905081810360008301526135d68161323d565b9050919050565b600060208201905081810360008301526135f681613260565b9050919050565b6000602082019050818103600083015261361681613283565b9050919050565b60006020820190508181036000830152613636816132a6565b9050919050565b60006020820190508181036000830152613656816132c9565b9050919050565b600060208201905081810360008301526136768161330f565b9050919050565b6000602082019050818103600083015261369681613332565b9050919050565b60006020820190506136b26000830184613364565b92915050565b60006136c26136d3565b90506136ce82826139d8565b919050565b6000604051905090565b600067ffffffffffffffff8211156136f8576136f7613b3f565b5b61370182613b82565b9050602081019050919050565b600067ffffffffffffffff82111561372957613728613b3f565b5b61373282613b82565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137e68261395a565b91506137f18361395a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561382657613825613a83565b5b828201905092915050565b600061383c8261395a565b91506138478361395a565b92508261385757613856613ab2565b5b828204905092915050565b600061386d8261395a565b91506138788361395a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138b1576138b0613a83565b5b828202905092915050565b60006138c78261395a565b91506138d28361395a565b9250828210156138e5576138e4613a83565b5b828203905092915050565b60006138fb8261393a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613991578082015181840152602081019050613976565b838111156139a0576000848401525b50505050565b600060028204905060018216806139be57607f821691505b602082108114156139d2576139d1613ae1565b5b50919050565b6139e182613b82565b810181811067ffffffffffffffff82111715613a00576139ff613b3f565b5b80604052505050565b6000613a148261395a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a4757613a46613a83565b5b600182019050919050565b6000613a5d8261395a565b9150613a688361395a565b925082613a7857613a77613ab2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f796f752063616e74206265636f6d652075676c7920616e796d6f726500000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f752077616e6e61206d696e7420746f6f206d616e790000000000000000000000600082015250565b7f4f6e6c7920342066726565000000000000000000000000000000000000000000600082015250565b7f467265652073616c6520696e6163746976650000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f657863656564206d61782066726565206d696e74000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f55736572206d61782066726565206c696d697400000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5468697320706861736520697320667265650000000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b7f67697665206d65206d6f7265206d6f6e65790000000000000000000000000000600082015250565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b613ecd816138f0565b8114613ed857600080fd5b50565b613ee481613902565b8114613eef57600080fd5b50565b613efb8161390e565b8114613f0657600080fd5b50565b613f128161395a565b8114613f1d57600080fd5b5056fea2646970667358221220881c505562ec936a0f107a5e6d9fc8eca1131f2cf7fac778ecb6a2528f0f743164736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d4d7574616e74526174734e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4d7574616e74526174734e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f667265656d696e742e6f73732d636e2d686f6e676b6f6e672e616c6979756e63732e636f6d2f6a736f6e2f00000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806388dedc1411610139578063a945bf80116100b6578063c87b56dd1161007a578063c87b56dd14610892578063d5abeb01146108cf578063e8a3d485146108fa578063e985e9c514610925578063f2fde38b14610962578063f7e8d6ea1461098b57610251565b8063a945bf80146107ad578063abc025d1146107d8578063ada7c4ed14610803578063b88d4fde14610840578063c62752551461086957610251565b8063938e3d7b116100fd578063938e3d7b146106dc57806395d89b4114610705578063a0bcfc7f14610730578063a22cb46514610759578063a4b41a151461078257610251565b806388dedc14146106095780638942bbff146106325780638da5cb5b1461065d5780639007bd721461068857806390134eb7146106b157610251565b806342842e0e116101d25780636352211e116101965780636352211e146104f657806364f640761461053357806370a0823114610570578063715018a6146105ad5780637af3a1af146105c45780637c928fe9146105ed57610251565b806342842e0e14610413578063438b63001461043c5780634f7f89761461047957806355f804b3146104a25780635c975abb146104cb57610251565b8063170594c611610219578063170594c61461034d57806318160ddd1461037857806323b872dd146103a35780632db11544146103cc57806333bc1c5c146103e857610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806316c38b3c14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190612df6565b6109b6565b60405161028a9190613440565b60405180910390f35b34801561029f57600080fd5b506102a8610a48565b6040516102b5919061345b565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190612e99565b610ada565b6040516102f291906133b7565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190612d89565b610b56565b005b34801561033057600080fd5b5061034b60048036038101906103469190612dc9565b610c97565b005b34801561035957600080fd5b50610362610cbc565b60405161036f919061369d565b60405180910390f35b34801561038457600080fd5b5061038d610cc2565b60405161039a919061369d565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190612c73565b610cd9565b005b6103e660048036038101906103e19190612e99565b610ffe565b005b3480156103f457600080fd5b506103fd6112e8565b60405161040a9190613440565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190612c73565b6112fb565b005b34801561044857600080fd5b50610463600480360381019061045e9190612c06565b61131b565b604051610470919061341e565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190612d89565b611426565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190612e50565b6114df565b005b3480156104d757600080fd5b506104e0611501565b6040516104ed9190613440565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612e99565b611514565b60405161052a91906133b7565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612c06565b611526565b6040516105679190613440565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190612c06565b611546565b6040516105a4919061369d565b60405180910390f35b3480156105b957600080fd5b506105c26115ff565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612dc9565b611613565b005b61060760048036038101906106029190612e99565b611653565b005b34801561061557600080fd5b50610630600480360381019061062b9190612dc9565b6119fe565b005b34801561063e57600080fd5b50610647611a3e565b604051610654919061369d565b60405180910390f35b34801561066957600080fd5b50610672611a43565b60405161067f91906133b7565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa9190612ec6565b611a6c565b005b3480156106bd57600080fd5b506106c6611b99565b6040516106d3919061369d565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190612e50565b611b9f565b005b34801561071157600080fd5b5061071a611bc1565b604051610727919061345b565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612e50565b611c53565b005b34801561076557600080fd5b50610780600480360381019061077b9190612d49565b611c75565b005b34801561078e57600080fd5b50610797611ded565b6040516107a49190613440565b60405180910390f35b3480156107b957600080fd5b506107c2611e00565b6040516107cf919061369d565b60405180910390f35b3480156107e457600080fd5b506107ed611e06565b6040516107fa919061369d565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190612c06565b611e0b565b604051610837919061369d565b60405180910390f35b34801561084c57600080fd5b5061086760048036038101906108629190612cc6565b611e23565b005b34801561087557600080fd5b50610890600480360381019061088b9190612e99565b611e96565b005b34801561089e57600080fd5b506108b960048036038101906108b49190612e99565b611ea8565b6040516108c6919061345b565b60405180910390f35b3480156108db57600080fd5b506108e4611f24565b6040516108f1919061369d565b60405180910390f35b34801561090657600080fd5b5061090f611f2a565b60405161091c919061345b565b60405180910390f35b34801561093157600080fd5b5061094c60048036038101906109479190612c33565b611fbc565b6040516109599190613440565b60405180910390f35b34801561096e57600080fd5b5061098960048036038101906109849190612c06565b612050565b005b34801561099757600080fd5b506109a06120d4565b6040516109ad919061345b565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a415750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610a57906139a6565b80601f0160208091040260200160405190810160405280929190818152602001828054610a83906139a6565b8015610ad05780601f10610aa557610100808354040283529160200191610ad0565b820191906000526020600020905b815481529060010190602001808311610ab357829003601f168201915b5050505050905090565b6000610ae582612162565b610b1b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6182611514565b90508073ffffffffffffffffffffffffffffffffffffffff16610b826121c1565b73ffffffffffffffffffffffffffffffffffffffff1614610be557610bae81610ba96121c1565b611fbc565b610be4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c9f6121c9565b80600c60006101000a81548160ff02191690831515021790555050565b600a5481565b6000610ccc612247565b6002546001540303905090565b6000610ce482612250565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d578461231e565b91509150610d6d8187610d686121c1565b612340565b610db957610d8286610d7d6121c1565b611fbc565b610db8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e20576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e2d8686866001612384565b8015610e3857600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f0685610ee288888761238a565b7c0200000000000000000000000000000000000000000000000000000000176123b2565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f8e576000600185019050600060056000838152602001908152602001600020541415610f8c576001548114610f8b578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ff686868660016123dd565b505050505050565b80600c60009054906101000a900460ff161561104f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110469061367d565b60405180910390fd5b61270f8161105b610cc2565b61106591906137db565b11156110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d9061347d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110b906134bd565b60405180910390fd5b600c60029054906101000a900460ff16611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a906135fd565b60405180910390fd5b600954826111719190613862565b3410156111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa9061361d565b60405180910390fd5b60058211156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee9061363d565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506005838261124991906137db565b111561128a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611281906134fd565b60405180910390fd5b828161129691906137db565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112e333846123e3565b505050565b600c60029054906101000a900460ff1681565b61131683838360405180602001604052806000815250611e23565b505050565b6060600061132883611546565b905060008167ffffffffffffffff81111561134657611345613b3f565b5b6040519080825280602002602001820160405280156113745781602001602082028036833780820191505090505b50905060006001905060005b8381108015611391575061270f8211155b1561141a5760006113a183611514565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561140657828483815181106113eb576113ea613b10565b5b602002602001018181525050818061140290613a09565b9250505b828061141190613a09565b93505050611380565b82945050505050919050565b61142e6121c9565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611454906133a2565b60006040518083038185875af1925050503d8060008114611491576040519150601f19603f3d011682016040523d82523d6000602084013e611496565b606091505b50509050806114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d19061365d565b60405180910390fd5b505050565b6114e76121c9565b80600b90805190602001906114fd929190612a1a565b5050565b600c60009054906101000a900460ff1681565b600061151f82612250565b9050919050565b600e6020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ae576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116076121c9565b6116116000612401565b565b61161b6121c9565b80600c60026101000a81548160ff0219169083151502179055508015600c60016101000a81548160ff02191690831515021790555050565b80600c60009054906101000a900460ff16156116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b9061367d565b60405180910390fd5b61270f816116b0610cc2565b6116ba91906137db565b11156116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f29061347d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611760906134bd565b60405180910390fd5b600c60019054906101000a900460ff166117b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117af9061353d565b60405180910390fd5b600034146117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f2906135dd565b60405180910390fd5b600d54821115611840576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118379061351d565b60405180910390fd5b600d54600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba9061355d565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119479061359d565b60405180910390fd5b611958610cc2565b61270f1161199b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611992906134dd565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906119eb90613a09565b91905055506119fa33836123e3565b5050565b611a066121c9565b80600c60016101000a81548160ff0219169083151502179055508015600c60026101000a81548160ff02191690831515021790555050565b600581565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a746121c9565b81600c60009054906101000a900460ff1615611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc9061367d565b60405180910390fd5b61270f81611ad1610cc2565b611adb91906137db565b1115611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b139061347d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b81906134bd565b60405180910390fd5b611b9482846123e3565b505050565b600d5481565b611ba76121c9565b80600b9080519060200190611bbd929190612a1a565b5050565b606060048054611bd0906139a6565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfc906139a6565b8015611c495780601f10611c1e57610100808354040283529160200191611c49565b820191906000526020600020905b815481529060010190602001808311611c2c57829003601f168201915b5050505050905090565b611c5b6121c9565b8060109080519060200190611c71929190612a1a565b5050565b611c7d6121c1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ce2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611cef6121c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d9c6121c1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611de19190613440565b60405180910390a35050565b600c60019054906101000a900460ff1681565b60095481565b600581565b600f6020528060005260406000206000915090505481565b611e2e848484610cd9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e9057611e59848484846124c5565b611e8f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611e9e6121c9565b8060098190555050565b6060611eb382612162565b611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee9906135bd565b60405180910390fd5b600b611efd83612625565b604051602001611f0e929190613373565b6040516020818303038152906040529050919050565b61270f81565b6060600b8054611f39906139a6565b80601f0160208091040260200160405190810160405280929190818152602001828054611f65906139a6565b8015611fb25780601f10611f8757610100808354040283529160200191611fb2565b820191906000526020600020905b815481529060010190602001808311611f9557829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120586121c9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf9061349d565b60405180910390fd5b6120d181612401565b50565b600b80546120e1906139a6565b80601f016020809104026020016040519081016040528092919081815260200182805461210d906139a6565b801561215a5780601f1061212f5761010080835404028352916020019161215a565b820191906000526020600020905b81548152906001019060200180831161213d57829003601f168201915b505050505081565b60008161216d612247565b1115801561217c575060015482105b80156121ba575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b6121d1612786565b73ffffffffffffffffffffffffffffffffffffffff166121ef611a43565b73ffffffffffffffffffffffffffffffffffffffff1614612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c9061357d565b60405180910390fd5b565b60006001905090565b6000808290508061225f612247565b116122e7576001548110156122e65760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156122e4575b60008114156122da5760056000836001900393508381526020019081526020016000205490506122af565b8092505050612319565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123a186868461278e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6123fd828260405180602001604052806000815250612797565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124eb6121c1565b8786866040518563ffffffff1660e01b815260040161250d94939291906133d2565b602060405180830381600087803b15801561252757600080fd5b505af192505050801561255857506040513d601f19601f820116820180604052508101906125559190612e23565b60015b6125d2573d8060008114612588576040519150601f19603f3d011682016040523d82523d6000602084013e61258d565b606091505b506000815114156125ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561266d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612781565b600082905060005b6000821461269f57808061268890613a09565b915050600a826126989190613831565b9150612675565b60008167ffffffffffffffff8111156126bb576126ba613b3f565b5b6040519080825280601f01601f1916602001820160405280156126ed5781602001600182028036833780820191505090505b5090505b6000851461277a5760018261270691906138bc565b9150600a856127159190613a52565b603061272191906137db565b60f81b81838151811061273757612736613b10565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127739190613831565b94506126f1565b8093505050505b919050565b600033905090565b60009392505050565b6127a18383612835565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128305760006001549050600083820390505b6127e260008683806001019450866124c5565b612818576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106127cf57816001541461282d57600080fd5b50505b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128a3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156128de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128eb6000848385612384565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061296283612953600086600061238a565b61295c85612a0a565b176123b2565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061298657806001819055505050612a0560008483856123dd565b505050565b60006001821460e11b9050919050565b828054612a26906139a6565b90600052602060002090601f016020900481019282612a485760008555612a8f565b82601f10612a6157805160ff1916838001178555612a8f565b82800160010185558215612a8f579182015b82811115612a8e578251825591602001919060010190612a73565b5b509050612a9c9190612aa0565b5090565b5b80821115612ab9576000816000905550600101612aa1565b5090565b6000612ad0612acb846136dd565b6136b8565b905082815260208101848484011115612aec57612aeb613b73565b5b612af7848285613964565b509392505050565b6000612b12612b0d8461370e565b6136b8565b905082815260208101848484011115612b2e57612b2d613b73565b5b612b39848285613964565b509392505050565b600081359050612b5081613ec4565b92915050565b600081359050612b6581613edb565b92915050565b600081359050612b7a81613ef2565b92915050565b600081519050612b8f81613ef2565b92915050565b600082601f830112612baa57612ba9613b6e565b5b8135612bba848260208601612abd565b91505092915050565b600082601f830112612bd857612bd7613b6e565b5b8135612be8848260208601612aff565b91505092915050565b600081359050612c0081613f09565b92915050565b600060208284031215612c1c57612c1b613b7d565b5b6000612c2a84828501612b41565b91505092915050565b60008060408385031215612c4a57612c49613b7d565b5b6000612c5885828601612b41565b9250506020612c6985828601612b41565b9150509250929050565b600080600060608486031215612c8c57612c8b613b7d565b5b6000612c9a86828701612b41565b9350506020612cab86828701612b41565b9250506040612cbc86828701612bf1565b9150509250925092565b60008060008060808587031215612ce057612cdf613b7d565b5b6000612cee87828801612b41565b9450506020612cff87828801612b41565b9350506040612d1087828801612bf1565b925050606085013567ffffffffffffffff811115612d3157612d30613b78565b5b612d3d87828801612b95565b91505092959194509250565b60008060408385031215612d6057612d5f613b7d565b5b6000612d6e85828601612b41565b9250506020612d7f85828601612b56565b9150509250929050565b60008060408385031215612da057612d9f613b7d565b5b6000612dae85828601612b41565b9250506020612dbf85828601612bf1565b9150509250929050565b600060208284031215612ddf57612dde613b7d565b5b6000612ded84828501612b56565b91505092915050565b600060208284031215612e0c57612e0b613b7d565b5b6000612e1a84828501612b6b565b91505092915050565b600060208284031215612e3957612e38613b7d565b5b6000612e4784828501612b80565b91505092915050565b600060208284031215612e6657612e65613b7d565b5b600082013567ffffffffffffffff811115612e8457612e83613b78565b5b612e9084828501612bc3565b91505092915050565b600060208284031215612eaf57612eae613b7d565b5b6000612ebd84828501612bf1565b91505092915050565b60008060408385031215612edd57612edc613b7d565b5b6000612eeb85828601612bf1565b9250506020612efc85828601612b41565b9150509250929050565b6000612f128383613355565b60208301905092915050565b612f27816138f0565b82525050565b6000612f3882613764565b612f428185613792565b9350612f4d8361373f565b8060005b83811015612f7e578151612f658882612f06565b9750612f7083613785565b925050600181019050612f51565b5085935050505092915050565b612f9481613902565b82525050565b6000612fa58261376f565b612faf81856137a3565b9350612fbf818560208601613973565b612fc881613b82565b840191505092915050565b6000612fde8261377a565b612fe881856137bf565b9350612ff8818560208601613973565b61300181613b82565b840191505092915050565b60006130178261377a565b61302181856137d0565b9350613031818560208601613973565b80840191505092915050565b6000815461304a816139a6565b61305481866137d0565b9450600182166000811461306f5760018114613080576130b3565b60ff198316865281860193506130b3565b6130898561374f565b60005b838110156130ab5781548189015260018201915060208101905061308c565b838801955050505b50505092915050565b60006130c9601c836137bf565b91506130d482613b93565b602082019050919050565b60006130ec6026836137bf565b91506130f782613bbc565b604082019050919050565b600061310f6013836137bf565b915061311a82613c0b565b602082019050919050565b60006131326008836137bf565b915061313d82613c34565b602082019050919050565b60006131556015836137bf565b915061316082613c5d565b602082019050919050565b6000613178600b836137bf565b915061318382613c86565b602082019050919050565b600061319b6012836137bf565b91506131a682613caf565b602082019050919050565b60006131be6005836137d0565b91506131c982613cd8565b600582019050919050565b60006131e16014836137bf565b91506131ec82613d01565b602082019050919050565b60006132046020836137bf565b915061320f82613d2a565b602082019050919050565b60006132276013836137bf565b915061323282613d53565b602082019050919050565b600061324a602f836137bf565b915061325582613d7c565b604082019050919050565b600061326d6012836137bf565b915061327882613dcb565b602082019050919050565b60006132906014836137bf565b915061329b82613df4565b602082019050919050565b60006132b36012836137bf565b91506132be82613e1d565b602082019050919050565b60006132d66011836137bf565b91506132e182613e46565b602082019050919050565b60006132f96000836137b4565b915061330482613e6f565b600082019050919050565b600061331c6010836137bf565b915061332782613e72565b602082019050919050565b600061333f6012836137bf565b915061334a82613e9b565b602082019050919050565b61335e8161395a565b82525050565b61336d8161395a565b82525050565b600061337f828561303d565b915061338b828461300c565b9150613396826131b1565b91508190509392505050565b60006133ad826132ec565b9150819050919050565b60006020820190506133cc6000830184612f1e565b92915050565b60006080820190506133e76000830187612f1e565b6133f46020830186612f1e565b6134016040830185613364565b81810360608301526134138184612f9a565b905095945050505050565b600060208201905081810360008301526134388184612f2d565b905092915050565b60006020820190506134556000830184612f8b565b92915050565b600060208201905081810360008301526134758184612fd3565b905092915050565b60006020820190508181036000830152613496816130bc565b9050919050565b600060208201905081810360008301526134b6816130df565b9050919050565b600060208201905081810360008301526134d681613102565b9050919050565b600060208201905081810360008301526134f681613125565b9050919050565b6000602082019050818103600083015261351681613148565b9050919050565b600060208201905081810360008301526135368161316b565b9050919050565b600060208201905081810360008301526135568161318e565b9050919050565b60006020820190508181036000830152613576816131d4565b9050919050565b60006020820190508181036000830152613596816131f7565b9050919050565b600060208201905081810360008301526135b68161321a565b9050919050565b600060208201905081810360008301526135d68161323d565b9050919050565b600060208201905081810360008301526135f681613260565b9050919050565b6000602082019050818103600083015261361681613283565b9050919050565b60006020820190508181036000830152613636816132a6565b9050919050565b60006020820190508181036000830152613656816132c9565b9050919050565b600060208201905081810360008301526136768161330f565b9050919050565b6000602082019050818103600083015261369681613332565b9050919050565b60006020820190506136b26000830184613364565b92915050565b60006136c26136d3565b90506136ce82826139d8565b919050565b6000604051905090565b600067ffffffffffffffff8211156136f8576136f7613b3f565b5b61370182613b82565b9050602081019050919050565b600067ffffffffffffffff82111561372957613728613b3f565b5b61373282613b82565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137e68261395a565b91506137f18361395a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561382657613825613a83565b5b828201905092915050565b600061383c8261395a565b91506138478361395a565b92508261385757613856613ab2565b5b828204905092915050565b600061386d8261395a565b91506138788361395a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138b1576138b0613a83565b5b828202905092915050565b60006138c78261395a565b91506138d28361395a565b9250828210156138e5576138e4613a83565b5b828203905092915050565b60006138fb8261393a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613991578082015181840152602081019050613976565b838111156139a0576000848401525b50505050565b600060028204905060018216806139be57607f821691505b602082108114156139d2576139d1613ae1565b5b50919050565b6139e182613b82565b810181811067ffffffffffffffff82111715613a00576139ff613b3f565b5b80604052505050565b6000613a148261395a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a4757613a46613a83565b5b600182019050919050565b6000613a5d8261395a565b9150613a688361395a565b925082613a7857613a77613ab2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f796f752063616e74206265636f6d652075676c7920616e796d6f726500000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f752077616e6e61206d696e7420746f6f206d616e790000000000000000000000600082015250565b7f4f6e6c7920342066726565000000000000000000000000000000000000000000600082015250565b7f467265652073616c6520696e6163746976650000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f657863656564206d61782066726565206d696e74000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f55736572206d61782066726565206c696d697400000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5468697320706861736520697320667265650000000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b7f67697665206d65206d6f7265206d6f6e65790000000000000000000000000000600082015250565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b613ecd816138f0565b8114613ed857600080fd5b50565b613ee481613902565b8114613eef57600080fd5b50565b613efb8161390e565b8114613f0657600080fd5b50565b613f128161395a565b8114613f1d57600080fd5b5056fea2646970667358221220881c505562ec936a0f107a5e6d9fc8eca1131f2cf7fac778ecb6a2528f0f743164736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d4d7574616e74526174734e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d4d7574616e74526174734e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f667265656d696e742e6f73732d636e2d686f6e676b6f6e672e616c6979756e63732e636f6d2f6a736f6e2f00000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): MutantRatsNFT
Arg [1] : _symbol (string): MutantRatsNFT
Arg [2] : _revealedURI (string): https://freemint.oss-cn-hongkong.aliyuncs.com/json/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 4d7574616e74526174734e465400000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [6] : 4d7574616e74526174734e465400000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000033
Arg [8] : 68747470733a2f2f667265656d696e742e6f73732d636e2d686f6e676b6f6e67
Arg [9] : 2e616c6979756e63732e636f6d2f6a736f6e2f00000000000000000000000000


Deployed Bytecode Sourcemap

50914:4653:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20682:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26329:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28275:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27823:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54580:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51159:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19736:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37540:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52387:536;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51319:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29165:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52931:684;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55089:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54071:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51253:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26118:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51390:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21361:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;54671:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51843:536;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54800:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51053:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54935:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51355:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54181:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26498:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53737:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28551:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51285:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51006:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51104:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51443;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29421:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53955:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54303:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50959:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53851:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28930:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51196:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20682:615;20767:4;21082:10;21067:25;;:11;:25;;;;:102;;;;21159:10;21144:25;;:11;:25;;;;21067:102;:179;;;;21236:10;21221:25;;:11;:25;;;;21067:179;21047:199;;20682:615;;;:::o;26329:100::-;26383:13;26416:5;26409:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26329:100;:::o;28275:204::-;28343:7;28368:16;28376:7;28368;:16::i;:::-;28363:64;;28393:34;;;;;;;;;;;;;;28363:64;28447:15;:24;28463:7;28447:24;;;;;;;;;;;;;;;;;;;;;28440:31;;28275:204;;;:::o;27823:386::-;27896:13;27912:16;27920:7;27912;:16::i;:::-;27896:32;;27968:5;27945:28;;:19;:17;:19::i;:::-;:28;;;27941:175;;27993:44;28010:5;28017:19;:17;:19::i;:::-;27993:16;:44::i;:::-;27988:128;;28065:35;;;;;;;;;;;;;;27988:128;27941:175;28155:2;28128:15;:24;28144:7;28128:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28193:7;28189:2;28173:28;;28182:5;28173:28;;;;;;;;;;;;27885:324;27823:386;;:::o;54580:83::-;4511:13;:11;:13::i;:::-;54649:6:::1;54640;;:15;;;;;;;;;;;;;;;;;;54580:83:::0;:::o;51159:30::-;;;;:::o;19736:315::-;19789:7;20017:15;:13;:15::i;:::-;20002:12;;19986:13;;:28;:46;19979:53;;19736:315;:::o;37540:2800::-;37674:27;37704;37723:7;37704:18;:27::i;:::-;37674:57;;37789:4;37748:45;;37764:19;37748:45;;;37744:86;;37802:28;;;;;;;;;;;;;;37744:86;37844:27;37873:23;37900:28;37920:7;37900:19;:28::i;:::-;37843:85;;;;38028:62;38047:15;38064:4;38070:19;:17;:19::i;:::-;38028:18;:62::i;:::-;38023:174;;38110:43;38127:4;38133:19;:17;:19::i;:::-;38110:16;:43::i;:::-;38105:92;;38162:35;;;;;;;;;;;;;;38105:92;38023:174;38228:1;38214:16;;:2;:16;;;38210:52;;;38239:23;;;;;;;;;;;;;;38210:52;38275:43;38297:4;38303:2;38307:7;38316:1;38275:21;:43::i;:::-;38411:15;38408:160;;;38551:1;38530:19;38523:30;38408:160;38946:18;:24;38965:4;38946:24;;;;;;;;;;;;;;;;38944:26;;;;;;;;;;;;39015:18;:22;39034:2;39015:22;;;;;;;;;;;;;;;;39013:24;;;;;;;;;;;39337:145;39374:2;39422:45;39437:4;39443:2;39447:19;39422:14;:45::i;:::-;16964:8;39395:72;39337:18;:145::i;:::-;39308:17;:26;39326:7;39308:26;;;;;;;;;;;:174;;;;39652:1;16964:8;39602:19;:46;:51;39598:626;;;39674:19;39706:1;39696:7;:11;39674:33;;39863:1;39829:17;:30;39847:11;39829:30;;;;;;;;;;;;:35;39825:384;;;39967:13;;39952:11;:28;39948:242;;40147:19;40114:17;:30;40132:11;40114:30;;;;;;;;;;;:52;;;;39948:242;39825:384;39655:569;39598:626;40271:7;40267:2;40252:27;;40261:4;40252:27;;;;;;;;;;;;40290:42;40311:4;40317:2;40321:7;40330:1;40290:20;:42::i;:::-;37663:2677;;;37540:2800;;;:::o;52387:536::-;52457:8;55360:6;;;;;;;;;;;55359:7;55351:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;50995:4;55424:8;55408:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;55400:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;55510:10;55497:23;;:9;:23;;;55489:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;52486:10:::1;;;;;;;;;;;52478:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;52564:11;;52553:8;:22;;;;:::i;:::-;52540:9;:35;;52532:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51096:1;52617:8;:28;;52609:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52678:17;52698:13;:25;52712:10;52698:25;;;;;;;;;;;;;;;;52678:45;;51151:1;52754:8;52742:9;:20;;;;:::i;:::-;:44;;52734:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;52864:8;52852:9;:20;;;;:::i;:::-;52823:13;:25;52837:10;52823:25;;;;;;;;;;;;;;;:50;;;;52884:31;52894:10;52906:8;52884:9;:31::i;:::-;52467:456;52387:536:::0;;:::o;51319:29::-;;;;;;;;;;;;;:::o;29165:185::-;29303:39;29320:4;29326:2;29330:7;29303:39;;;;;;;;;;;;:16;:39::i;:::-;29165:185;;;:::o;52931:684::-;52991:16;53025:23;53051:17;53061:6;53051:9;:17::i;:::-;53025:43;;53079:30;53126:15;53112:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53079:63;;53153:22;53178:1;53153:26;;53190:23;53230:345;53255:15;53237;:33;:64;;;;;50995:4;53274:14;:27;;53237:64;53230:345;;;53318:25;53346:23;53354:14;53346:7;:23::i;:::-;53318:51;;53409:6;53388:27;;:17;:27;;;53384:151;;;53469:14;53436:13;53450:15;53436:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;53502:17;;;;;:::i;:::-;;;;53384:151;53547:16;;;;;:::i;:::-;;;;53303:272;53230:345;;;53594:13;53587:20;;;;;;52931:684;;;:::o;55089:201::-;4511:13;:11;:13::i;:::-;55186:12:::1;55203:8;:13;;55224:6;55203:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55185:50;;;55254:7;55246:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;55174:116;55089:201:::0;;:::o;54071:102::-;4511:13;:11;:13::i;:::-;54157:8:::1;54143:11;:22;;;;;;;;;;;;:::i;:::-;;54071:102:::0;:::o;51253:25::-;;;;;;;;;;;;;:::o;26118:144::-;26182:7;26225:27;26244:7;26225:18;:27::i;:::-;26202:52;;26118:144;;;:::o;51390:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;21361:224::-;21425:7;21466:1;21449:19;;:5;:19;;;21445:60;;;21477:28;;;;;;;;;;;;;;21445:60;15916:13;21523:18;:25;21542:5;21523:25;;;;;;;;;;;;;;;;:54;21516:61;;21361:224;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;54671:123::-;4511:13;:11;:13::i;:::-;54751:6:::1;54738:10;;:19;;;;;;;;;;;;;;;;;;54780:6;54779:7;54768:8;;:18;;;;;;;;;;;;;;;;;;54671:123:::0;:::o;51843:536::-;51911:8;55360:6;;;;;;;;;;;55359:7;55351:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;50995:4;55424:8;55408:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;55400:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;55510:10;55497:23;;:9;:23;;;55489:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;51940:8:::1;;;;;;;;;;;51932:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;52003:1;51990:9;:14;51982:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;52058:9;;52046:8;:21;;52038:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;52130:9;;52102:13;:25;52116:10;52102:25;;;;;;;;;;;;;;;;:37;52094:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;52184:14;:26;52199:10;52184:26;;;;;;;;;;;;;;;;;;;;;;;;;52183:27;52175:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;52265:13;:11;:13::i;:::-;50995:4;52253:25;52245:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;52302:13;:25;52316:10;52302:25;;;;;;;;;;;;;;;;:27;;;;;;;;;:::i;:::-;;;;;;52340:31;52350:10;52362:8;52340:9;:31::i;:::-;51843:536:::0;;:::o;54800:121::-;4511:13;:11;:13::i;:::-;54876:6:::1;54865:8;;:17;;;;;;;;;;;;;;;;;;54907:6;54906:7;54893:10;;:20;;;;;;;;;;;;;;;;;;54800:121:::0;:::o;51053:44::-;51096:1;51053:44;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;54935:146::-;4511:13;:11;:13::i;:::-;55023:8:::1;55360:6;;;;;;;;;;;55359:7;55351:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;50995:4;55424:8;55408:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;55400:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;55510:10;55497:23;;:9;:23;;;55489:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;55044:29:::2;55054:8;55064;55044:9;:29::i;:::-;4535:1:::1;54935:146:::0;;:::o;51355:28::-;;;;:::o;54181:114::-;4511:13;:11;:13::i;:::-;54275:12:::1;54261:11;:26;;;;;;;;;;;;:::i;:::-;;54181:114:::0;:::o;26498:104::-;26554:13;26587:7;26580:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26498:104;:::o;53737:106::-;4511:13;:11;:13::i;:::-;53827:8:::1;53811:13;:24;;;;;;;;;;;;:::i;:::-;;53737:106:::0;:::o;28551:308::-;28662:19;:17;:19::i;:::-;28650:31;;:8;:31;;;28646:61;;;28690:17;;;;;;;;;;;;;;28646:61;28772:8;28720:18;:39;28739:19;:17;:19::i;:::-;28720:39;;;;;;;;;;;;;;;:49;28760:8;28720:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28832:8;28796:55;;28811:19;:17;:19::i;:::-;28796:55;;;28842:8;28796:55;;;;;;:::i;:::-;;;;;;;;28551:308;;:::o;51285:27::-;;;;;;;;;;;;;:::o;51006:40::-;;;;:::o;51104:48::-;51151:1;51104:48;:::o;51443:::-;;;;;;;;;;;;;;;;;:::o;29421:399::-;29588:31;29601:4;29607:2;29611:7;29588:12;:31::i;:::-;29652:1;29634:2;:14;;;:19;29630:183;;29673:56;29704:4;29710:2;29714:7;29723:5;29673:30;:56::i;:::-;29668:145;;29757:40;;;;;;;;;;;;;;29668:145;29630:183;29421:399;;;;:::o;53955:108::-;4511:13;:11;:13::i;:::-;54043:12:::1;54029:11;:26;;;;53955:108:::0;:::o;54303:269::-;54369:13;54403:17;54411:8;54403:7;:17::i;:::-;54395:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;54514:11;54527:26;54544:8;54527:16;:26::i;:::-;54497:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54483:81;;54303:269;;;:::o;50959:40::-;50995:4;50959:40;:::o;53851:96::-;53895:13;53928:11;53921:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53851:96;:::o;28930:164::-;29027:4;29051:18;:25;29070:5;29051:25;;;;;;;;;;;;;;;:35;29077:8;29051:35;;;;;;;;;;;;;;;;;;;;;;;;;29044:42;;28930:164;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;51196:50::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30075:273::-;30132:4;30188:7;30169:15;:13;:15::i;:::-;:26;;:66;;;;;30222:13;;30212:7;:23;30169:66;:152;;;;;30320:1;16686:8;30273:17;:26;30291:7;30273:26;;;;;;;;;;;;:43;:48;30169:152;30149:172;;30075:273;;;:::o;48636:105::-;48696:7;48723:10;48716:17;;48636:105;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;51730:101::-;51795:7;51822:1;51815:8;;51730:101;:::o;23035:1129::-;23102:7;23122:12;23137:7;23122:22;;23205:4;23186:15;:13;:15::i;:::-;:23;23182:915;;23239:13;;23232:4;:20;23228:869;;;23277:14;23294:17;:23;23312:4;23294:23;;;;;;;;;;;;23277:40;;23410:1;16686:8;23383:6;:23;:28;23379:699;;;23902:113;23919:1;23909:6;:11;23902:113;;;23962:17;:25;23980:6;;;;;;;23962:25;;;;;;;;;;;;23953:34;;23902:113;;;24048:6;24041:13;;;;;;23379:699;23254:843;23228:869;23182:915;24125:31;;;;;;;;;;;;;;23035:1129;;;;:::o;35876:652::-;35971:27;36000:23;36041:53;36097:15;36041:71;;36283:7;36277:4;36270:21;36318:22;36312:4;36305:36;36394:4;36388;36378:21;36355:44;;36490:19;36484:26;36465:45;;36221:300;35876:652;;;:::o;36641:645::-;36783:11;36945:15;36939:4;36935:26;36927:34;;37104:15;37093:9;37089:31;37076:44;;37251:15;37240:9;37237:30;37230:4;37219:9;37216:19;37213:55;37203:65;;36641:645;;;;;:::o;47469:159::-;;;;;:::o;45781:309::-;45916:7;45936:16;17087:3;45962:19;:40;;45936:67;;17087:3;46029:31;46040:4;46046:2;46050:9;46029:10;:31::i;:::-;46021:40;;:61;;46014:68;;;45781:309;;;;;:::o;25609:447::-;25689:14;25857:15;25850:5;25846:27;25837:36;;26031:5;26017:11;25993:22;25989:40;25986:51;25979:5;25976:62;25966:72;;25609:447;;;;:::o;48287:158::-;;;;;:::o;30432:104::-;30501:27;30511:2;30515:8;30501:27;;;;;;;;;;;;:9;:27::i;:::-;30432:104;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;44291:716::-;44454:4;44500:2;44475:45;;;44521:19;:17;:19::i;:::-;44542:4;44548:7;44557:5;44475:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44471:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44775:1;44758:6;:13;:18;44754:235;;;44804:40;;;;;;;;;;;;;;44754:235;44947:6;44941:13;44932:6;44928:2;44924:15;44917:38;44471:529;44644:54;;;44634:64;;;:6;:64;;;;44627:71;;;44291:716;;;;;;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;46666:147::-;46803:6;46666:147;;;;;:::o;30952:681::-;31075:19;31081:2;31085:8;31075:5;:19::i;:::-;31154:1;31136:2;:14;;;:19;31132:483;;31176:11;31190:13;;31176:27;;31222:13;31244:8;31238:3;:14;31222:30;;31271:233;31302:62;31341:1;31345:2;31349:7;;;;;;31358:5;31302:30;:62::i;:::-;31297:167;;31400:40;;;;;;;;;;;;;;31297:167;31499:3;31491:5;:11;31271:233;;31586:3;31569:13;;:20;31565:34;;31591:8;;;31565:34;31157:458;;31132:483;30952:681;;;:::o;31906:1529::-;31971:20;31994:13;;31971:36;;32036:1;32022:16;;:2;:16;;;32018:48;;;32047:19;;;;;;;;;;;;;;32018:48;32093:1;32081:8;:13;32077:44;;;32103:18;;;;;;;;;;;;;;32077:44;32134:61;32164:1;32168:2;32172:12;32186:8;32134:21;:61::i;:::-;32677:1;16053:2;32648:1;:25;;32647:31;32635:8;:44;32609:18;:22;32628:2;32609:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;32956:139;32993:2;33047:33;33070:1;33074:2;33078:1;33047:14;:33::i;:::-;33014:30;33035:8;33014:20;:30::i;:::-;:66;32956:18;:139::i;:::-;32922:17;:31;32940:12;32922:31;;;;;;;;;;;:173;;;;33112:15;33130:12;33112:30;;33157:11;33186:8;33171:12;:23;33157:37;;33209:101;33261:9;;;;;;33257:2;33236:35;;33253:1;33236:35;;;;;;;;;;;;33305:3;33295:7;:13;33209:101;;33342:3;33326:13;:19;;;;32383:974;;33367:60;33396:1;33400:2;33404:12;33418:8;33367:20;:60::i;:::-;31960:1475;31906:1529;;:::o;27439:322::-;27509:14;27740:1;27730:8;27727:15;27702:23;27698:45;27688:55;;27439:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:365::-;12411:3;12432:66;12496:1;12491:3;12432:66;:::i;:::-;12425:73;;12507:93;12596:3;12507:93;:::i;:::-;12625:2;12620:3;12616:12;12609:19;;12269:365;;;:::o;12640:366::-;12782:3;12803:67;12867:2;12862:3;12803:67;:::i;:::-;12796:74;;12879:93;12968:3;12879:93;:::i;:::-;12997:2;12992:3;12988:12;12981:19;;12640:366;;;:::o;13012:::-;13154:3;13175:67;13239:2;13234:3;13175:67;:::i;:::-;13168:74;;13251:93;13340:3;13251:93;:::i;:::-;13369:2;13364:3;13360:12;13353:19;;13012:366;;;:::o;13384:::-;13526:3;13547:67;13611:2;13606:3;13547:67;:::i;:::-;13540:74;;13623:93;13712:3;13623:93;:::i;:::-;13741:2;13736:3;13732:12;13725:19;;13384:366;;;:::o;13756:400::-;13916:3;13937:84;14019:1;14014:3;13937:84;:::i;:::-;13930:91;;14030:93;14119:3;14030:93;:::i;:::-;14148:1;14143:3;14139:11;14132:18;;13756:400;;;:::o;14162:366::-;14304:3;14325:67;14389:2;14384:3;14325:67;:::i;:::-;14318:74;;14401:93;14490:3;14401:93;:::i;:::-;14519:2;14514:3;14510:12;14503:19;;14162:366;;;:::o;14534:::-;14676:3;14697:67;14761:2;14756:3;14697:67;:::i;:::-;14690:74;;14773:93;14862:3;14773:93;:::i;:::-;14891:2;14886:3;14882:12;14875:19;;14534:366;;;:::o;14906:::-;15048:3;15069:67;15133:2;15128:3;15069:67;:::i;:::-;15062:74;;15145:93;15234:3;15145:93;:::i;:::-;15263:2;15258:3;15254:12;15247:19;;14906:366;;;:::o;15278:::-;15420:3;15441:67;15505:2;15500:3;15441:67;:::i;:::-;15434:74;;15517:93;15606:3;15517:93;:::i;:::-;15635:2;15630:3;15626:12;15619:19;;15278:366;;;:::o;15650:::-;15792:3;15813:67;15877:2;15872:3;15813:67;:::i;:::-;15806:74;;15889:93;15978:3;15889:93;:::i;:::-;16007:2;16002:3;15998:12;15991:19;;15650:366;;;:::o;16022:::-;16164:3;16185:67;16249:2;16244:3;16185:67;:::i;:::-;16178:74;;16261:93;16350:3;16261:93;:::i;:::-;16379:2;16374:3;16370:12;16363:19;;16022:366;;;:::o;16394:::-;16536:3;16557:67;16621:2;16616:3;16557:67;:::i;:::-;16550:74;;16633:93;16722:3;16633:93;:::i;:::-;16751:2;16746:3;16742:12;16735:19;;16394:366;;;:::o;16766:::-;16908:3;16929:67;16993:2;16988:3;16929:67;:::i;:::-;16922:74;;17005:93;17094:3;17005:93;:::i;:::-;17123:2;17118:3;17114:12;17107:19;;16766:366;;;:::o;17138:398::-;17297:3;17318:83;17399:1;17394:3;17318:83;:::i;:::-;17311:90;;17410:93;17499:3;17410:93;:::i;:::-;17528:1;17523:3;17519:11;17512:18;;17138:398;;;:::o;17542:366::-;17684:3;17705:67;17769:2;17764:3;17705:67;:::i;:::-;17698:74;;17781:93;17870:3;17781:93;:::i;:::-;17899:2;17894:3;17890:12;17883:19;;17542:366;;;:::o;17914:::-;18056:3;18077:67;18141:2;18136:3;18077:67;:::i;:::-;18070:74;;18153:93;18242:3;18153:93;:::i;:::-;18271:2;18266:3;18262:12;18255:19;;17914:366;;;:::o;18286:108::-;18363:24;18381:5;18363:24;:::i;:::-;18358:3;18351:37;18286:108;;:::o;18400:118::-;18487:24;18505:5;18487:24;:::i;:::-;18482:3;18475:37;18400:118;;:::o;18524:695::-;18802:3;18824:92;18912:3;18903:6;18824:92;:::i;:::-;18817:99;;18933:95;19024:3;19015:6;18933:95;:::i;:::-;18926:102;;19045:148;19189:3;19045:148;:::i;:::-;19038:155;;19210:3;19203:10;;18524:695;;;;;:::o;19225:379::-;19409:3;19431:147;19574:3;19431:147;:::i;:::-;19424:154;;19595:3;19588:10;;19225:379;;;:::o;19610:222::-;19703:4;19741:2;19730:9;19726:18;19718:26;;19754:71;19822:1;19811:9;19807:17;19798:6;19754:71;:::i;:::-;19610:222;;;;:::o;19838:640::-;20033:4;20071:3;20060:9;20056:19;20048:27;;20085:71;20153:1;20142:9;20138:17;20129:6;20085:71;:::i;:::-;20166:72;20234:2;20223:9;20219:18;20210:6;20166:72;:::i;:::-;20248;20316:2;20305:9;20301:18;20292:6;20248:72;:::i;:::-;20367:9;20361:4;20357:20;20352:2;20341:9;20337:18;20330:48;20395:76;20466:4;20457:6;20395:76;:::i;:::-;20387:84;;19838:640;;;;;;;:::o;20484:373::-;20627:4;20665:2;20654:9;20650:18;20642:26;;20714:9;20708:4;20704:20;20700:1;20689:9;20685:17;20678:47;20742:108;20845:4;20836:6;20742:108;:::i;:::-;20734:116;;20484:373;;;;:::o;20863:210::-;20950:4;20988:2;20977:9;20973:18;20965:26;;21001:65;21063:1;21052:9;21048:17;21039:6;21001:65;:::i;:::-;20863:210;;;;:::o;21079:313::-;21192:4;21230:2;21219:9;21215:18;21207:26;;21279:9;21273:4;21269:20;21265:1;21254:9;21250:17;21243:47;21307:78;21380:4;21371:6;21307:78;:::i;:::-;21299:86;;21079:313;;;;:::o;21398:419::-;21564:4;21602:2;21591:9;21587:18;21579:26;;21651:9;21645:4;21641:20;21637:1;21626:9;21622:17;21615:47;21679:131;21805:4;21679:131;:::i;:::-;21671:139;;21398:419;;;:::o;21823:::-;21989:4;22027:2;22016:9;22012:18;22004:26;;22076:9;22070:4;22066:20;22062:1;22051:9;22047:17;22040:47;22104:131;22230:4;22104:131;:::i;:::-;22096:139;;21823:419;;;:::o;22248:::-;22414:4;22452:2;22441:9;22437:18;22429:26;;22501:9;22495:4;22491:20;22487:1;22476:9;22472:17;22465:47;22529:131;22655:4;22529:131;:::i;:::-;22521:139;;22248:419;;;:::o;22673:::-;22839:4;22877:2;22866:9;22862:18;22854:26;;22926:9;22920:4;22916:20;22912:1;22901:9;22897:17;22890:47;22954:131;23080:4;22954:131;:::i;:::-;22946:139;;22673:419;;;:::o;23098:::-;23264:4;23302:2;23291:9;23287:18;23279:26;;23351:9;23345:4;23341:20;23337:1;23326:9;23322:17;23315:47;23379:131;23505:4;23379:131;:::i;:::-;23371:139;;23098:419;;;:::o;23523:::-;23689:4;23727:2;23716:9;23712:18;23704:26;;23776:9;23770:4;23766:20;23762:1;23751:9;23747:17;23740:47;23804:131;23930:4;23804:131;:::i;:::-;23796:139;;23523:419;;;:::o;23948:::-;24114:4;24152:2;24141:9;24137:18;24129:26;;24201:9;24195:4;24191:20;24187:1;24176:9;24172:17;24165:47;24229:131;24355:4;24229:131;:::i;:::-;24221:139;;23948:419;;;:::o;24373:::-;24539:4;24577:2;24566:9;24562:18;24554:26;;24626:9;24620:4;24616:20;24612:1;24601:9;24597:17;24590:47;24654:131;24780:4;24654:131;:::i;:::-;24646:139;;24373:419;;;:::o;24798:::-;24964:4;25002:2;24991:9;24987:18;24979:26;;25051:9;25045:4;25041:20;25037:1;25026:9;25022:17;25015:47;25079:131;25205:4;25079:131;:::i;:::-;25071:139;;24798:419;;;:::o;25223:::-;25389:4;25427:2;25416:9;25412:18;25404:26;;25476:9;25470:4;25466:20;25462:1;25451:9;25447:17;25440:47;25504:131;25630:4;25504:131;:::i;:::-;25496:139;;25223:419;;;:::o;25648:::-;25814:4;25852:2;25841:9;25837:18;25829:26;;25901:9;25895:4;25891:20;25887:1;25876:9;25872:17;25865:47;25929:131;26055:4;25929:131;:::i;:::-;25921:139;;25648:419;;;:::o;26073:::-;26239:4;26277:2;26266:9;26262:18;26254:26;;26326:9;26320:4;26316:20;26312:1;26301:9;26297:17;26290:47;26354:131;26480:4;26354:131;:::i;:::-;26346:139;;26073:419;;;:::o;26498:::-;26664:4;26702:2;26691:9;26687:18;26679:26;;26751:9;26745:4;26741:20;26737:1;26726:9;26722:17;26715:47;26779:131;26905:4;26779:131;:::i;:::-;26771:139;;26498:419;;;:::o;26923:::-;27089:4;27127:2;27116:9;27112:18;27104:26;;27176:9;27170:4;27166:20;27162:1;27151:9;27147:17;27140:47;27204:131;27330:4;27204:131;:::i;:::-;27196:139;;26923:419;;;:::o;27348:::-;27514:4;27552:2;27541:9;27537:18;27529:26;;27601:9;27595:4;27591:20;27587:1;27576:9;27572:17;27565:47;27629:131;27755:4;27629:131;:::i;:::-;27621:139;;27348:419;;;:::o;27773:::-;27939:4;27977:2;27966:9;27962:18;27954:26;;28026:9;28020:4;28016:20;28012:1;28001:9;27997:17;27990:47;28054:131;28180:4;28054:131;:::i;:::-;28046:139;;27773:419;;;:::o;28198:::-;28364:4;28402:2;28391:9;28387:18;28379:26;;28451:9;28445:4;28441:20;28437:1;28426:9;28422:17;28415:47;28479:131;28605:4;28479:131;:::i;:::-;28471:139;;28198:419;;;:::o;28623:222::-;28716:4;28754:2;28743:9;28739:18;28731:26;;28767:71;28835:1;28824:9;28820:17;28811:6;28767:71;:::i;:::-;28623:222;;;;:::o;28851:129::-;28885:6;28912:20;;:::i;:::-;28902:30;;28941:33;28969:4;28961:6;28941:33;:::i;:::-;28851:129;;;:::o;28986:75::-;29019:6;29052:2;29046:9;29036:19;;28986:75;:::o;29067:307::-;29128:4;29218:18;29210:6;29207:30;29204:56;;;29240:18;;:::i;:::-;29204:56;29278:29;29300:6;29278:29;:::i;:::-;29270:37;;29362:4;29356;29352:15;29344:23;;29067:307;;;:::o;29380:308::-;29442:4;29532:18;29524:6;29521:30;29518:56;;;29554:18;;:::i;:::-;29518:56;29592:29;29614:6;29592:29;:::i;:::-;29584:37;;29676:4;29670;29666:15;29658:23;;29380:308;;;:::o;29694:132::-;29761:4;29784:3;29776:11;;29814:4;29809:3;29805:14;29797:22;;29694:132;;;:::o;29832:141::-;29881:4;29904:3;29896:11;;29927:3;29924:1;29917:14;29961:4;29958:1;29948:18;29940:26;;29832:141;;;:::o;29979:114::-;30046:6;30080:5;30074:12;30064:22;;29979:114;;;:::o;30099:98::-;30150:6;30184:5;30178:12;30168:22;;30099:98;;;:::o;30203:99::-;30255:6;30289:5;30283:12;30273:22;;30203:99;;;:::o;30308:113::-;30378:4;30410;30405:3;30401:14;30393:22;;30308:113;;;:::o;30427:184::-;30526:11;30560:6;30555:3;30548:19;30600:4;30595:3;30591:14;30576:29;;30427:184;;;;:::o;30617:168::-;30700:11;30734:6;30729:3;30722:19;30774:4;30769:3;30765:14;30750:29;;30617:168;;;;:::o;30791:147::-;30892:11;30929:3;30914:18;;30791:147;;;;:::o;30944:169::-;31028:11;31062:6;31057:3;31050:19;31102:4;31097:3;31093:14;31078:29;;30944:169;;;;:::o;31119:148::-;31221:11;31258:3;31243:18;;31119:148;;;;:::o;31273:305::-;31313:3;31332:20;31350:1;31332:20;:::i;:::-;31327:25;;31366:20;31384:1;31366:20;:::i;:::-;31361:25;;31520:1;31452:66;31448:74;31445:1;31442:81;31439:107;;;31526:18;;:::i;:::-;31439:107;31570:1;31567;31563:9;31556:16;;31273:305;;;;:::o;31584:185::-;31624:1;31641:20;31659:1;31641:20;:::i;:::-;31636:25;;31675:20;31693:1;31675:20;:::i;:::-;31670:25;;31714:1;31704:35;;31719:18;;:::i;:::-;31704:35;31761:1;31758;31754:9;31749:14;;31584:185;;;;:::o;31775:348::-;31815:7;31838:20;31856:1;31838:20;:::i;:::-;31833:25;;31872:20;31890:1;31872:20;:::i;:::-;31867:25;;32060:1;31992:66;31988:74;31985:1;31982:81;31977:1;31970:9;31963:17;31959:105;31956:131;;;32067:18;;:::i;:::-;31956:131;32115:1;32112;32108:9;32097:20;;31775:348;;;;:::o;32129:191::-;32169:4;32189:20;32207:1;32189:20;:::i;:::-;32184:25;;32223:20;32241:1;32223:20;:::i;:::-;32218:25;;32262:1;32259;32256:8;32253:34;;;32267:18;;:::i;:::-;32253:34;32312:1;32309;32305:9;32297:17;;32129:191;;;;:::o;32326:96::-;32363:7;32392:24;32410:5;32392:24;:::i;:::-;32381:35;;32326:96;;;:::o;32428:90::-;32462:7;32505:5;32498:13;32491:21;32480:32;;32428:90;;;:::o;32524:149::-;32560:7;32600:66;32593:5;32589:78;32578:89;;32524:149;;;:::o;32679:126::-;32716:7;32756:42;32749:5;32745:54;32734:65;;32679:126;;;:::o;32811:77::-;32848:7;32877:5;32866:16;;32811:77;;;:::o;32894:154::-;32978:6;32973:3;32968;32955:30;33040:1;33031:6;33026:3;33022:16;33015:27;32894:154;;;:::o;33054:307::-;33122:1;33132:113;33146:6;33143:1;33140:13;33132:113;;;33231:1;33226:3;33222:11;33216:18;33212:1;33207:3;33203:11;33196:39;33168:2;33165:1;33161:10;33156:15;;33132:113;;;33263:6;33260:1;33257:13;33254:101;;;33343:1;33334:6;33329:3;33325:16;33318:27;33254:101;33103:258;33054:307;;;:::o;33367:320::-;33411:6;33448:1;33442:4;33438:12;33428:22;;33495:1;33489:4;33485:12;33516:18;33506:81;;33572:4;33564:6;33560:17;33550:27;;33506:81;33634:2;33626:6;33623:14;33603:18;33600:38;33597:84;;;33653:18;;:::i;:::-;33597:84;33418:269;33367:320;;;:::o;33693:281::-;33776:27;33798:4;33776:27;:::i;:::-;33768:6;33764:40;33906:6;33894:10;33891:22;33870:18;33858:10;33855:34;33852:62;33849:88;;;33917:18;;:::i;:::-;33849:88;33957:10;33953:2;33946:22;33736:238;33693:281;;:::o;33980:233::-;34019:3;34042:24;34060:5;34042:24;:::i;:::-;34033:33;;34088:66;34081:5;34078:77;34075:103;;;34158:18;;:::i;:::-;34075:103;34205:1;34198:5;34194:13;34187:20;;33980:233;;;:::o;34219:176::-;34251:1;34268:20;34286:1;34268:20;:::i;:::-;34263:25;;34302:20;34320:1;34302:20;:::i;:::-;34297:25;;34341:1;34331:35;;34346:18;;:::i;:::-;34331:35;34387:1;34384;34380:9;34375:14;;34219:176;;;;:::o;34401:180::-;34449:77;34446:1;34439:88;34546:4;34543:1;34536:15;34570:4;34567:1;34560:15;34587:180;34635:77;34632:1;34625:88;34732:4;34729:1;34722:15;34756:4;34753:1;34746:15;34773:180;34821:77;34818:1;34811:88;34918:4;34915:1;34908:15;34942:4;34939:1;34932:15;34959:180;35007:77;35004:1;34997:88;35104:4;35101:1;35094:15;35128:4;35125:1;35118:15;35145:180;35193:77;35190:1;35183:88;35290:4;35287:1;35280:15;35314:4;35311:1;35304:15;35331:117;35440:1;35437;35430:12;35454:117;35563:1;35560;35553:12;35577:117;35686:1;35683;35676:12;35700:117;35809:1;35806;35799:12;35823:102;35864:6;35915:2;35911:7;35906:2;35899:5;35895:14;35891:28;35881:38;;35823:102;;;:::o;35931:178::-;36071:30;36067:1;36059:6;36055:14;36048:54;35931:178;:::o;36115:225::-;36255:34;36251:1;36243:6;36239:14;36232:58;36324:8;36319:2;36311:6;36307:15;36300:33;36115:225;:::o;36346:169::-;36486:21;36482:1;36474:6;36470:14;36463:45;36346:169;:::o;36521:158::-;36661:10;36657:1;36649:6;36645:14;36638:34;36521:158;:::o;36685:171::-;36825:23;36821:1;36813:6;36809:14;36802:47;36685:171;:::o;36862:161::-;37002:13;36998:1;36990:6;36986:14;36979:37;36862:161;:::o;37029:168::-;37169:20;37165:1;37157:6;37153:14;37146:44;37029:168;:::o;37203:155::-;37343:7;37339:1;37331:6;37327:14;37320:31;37203:155;:::o;37364:170::-;37504:22;37500:1;37492:6;37488:14;37481:46;37364:170;:::o;37540:182::-;37680:34;37676:1;37668:6;37664:14;37657:58;37540:182;:::o;37728:169::-;37868:21;37864:1;37856:6;37852:14;37845:45;37728:169;:::o;37903:234::-;38043:34;38039:1;38031:6;38027:14;38020:58;38112:17;38107:2;38099:6;38095:15;38088:42;37903:234;:::o;38143:168::-;38283:20;38279:1;38271:6;38267:14;38260:44;38143:168;:::o;38317:170::-;38457:22;38453:1;38445:6;38441:14;38434:46;38317:170;:::o;38493:168::-;38633:20;38629:1;38621:6;38617:14;38610:44;38493:168;:::o;38667:167::-;38807:19;38803:1;38795:6;38791:14;38784:43;38667:167;:::o;38840:114::-;;:::o;38960:166::-;39100:18;39096:1;39088:6;39084:14;39077:42;38960:166;:::o;39132:168::-;39272:20;39268:1;39260:6;39256:14;39249:44;39132:168;:::o;39306:122::-;39379:24;39397:5;39379:24;:::i;:::-;39372:5;39369:35;39359:63;;39418:1;39415;39408:12;39359:63;39306:122;:::o;39434:116::-;39504:21;39519:5;39504:21;:::i;:::-;39497:5;39494:32;39484:60;;39540:1;39537;39530:12;39484:60;39434:116;:::o;39556:120::-;39628:23;39645:5;39628:23;:::i;:::-;39621:5;39618:34;39608:62;;39666:1;39663;39656:12;39608:62;39556:120;:::o;39682:122::-;39755:24;39773:5;39755:24;:::i;:::-;39748:5;39745:35;39735:63;;39794:1;39791;39784:12;39735:63;39682:122;:::o

Swarm Source

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