ETH Price: $3,010.18 (+4.49%)
Gas: 2 Gwei

Token

Schemurs (SCHEMURS)
 

Overview

Max Total Supply

4,444 SCHEMURS

Holders

427

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
aheyyeha.eth
Balance
3 SCHEMURS
0x1f455832e75555cd848958efa5e85f10899463d2
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:
Schemurs

Compiler Version
v0.8.15+commit.e14f2714

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-07
*/

//SPDX-License-Identifier: MIT

// 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: contracts/IERC721A.sol


// ERC721A Contracts v4.0.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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

    /**
     * @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);
}
// File: contracts/ERC721A.sol


// ERC721A Contracts v4.0.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 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`
    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 (_addressToUint256(owner) == 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 auxillary 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 auxillary 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;
        assembly { // Cast aux without masking.
            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;
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

        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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @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 _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // 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 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/schemurs.sol


pragma solidity ^0.8.15;




contract Schemurs is ERC721A, Ownable {

  using Strings for uint256;
  string public           baseURI;
  uint256 public constant maxSupply         = 4444;
  uint256 public          maxPerWallet      = 5;
  bool public             mintEnabled       = false;

  mapping(address => uint256) private _walletMints;

  constructor() ERC721A("Schemurs", "SCHEMURS"){
  }

  function mint(uint256 amt) external payable {
    require(mintEnabled, "Minting is not live yet.");
    require(_walletMints[_msgSender()] + amt < maxPerWallet + 5, "That's enough Schemurs for you!");
    require(msg.sender == tx.origin,"No bots, only true Schemurs!");
    require(totalSupply() + amt < maxSupply + 1, "Not enough Memurs left.");

    _walletMints[_msgSender()] += amt;
    _safeMint(msg.sender, amt);
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
      require(_exists(tokenId), "ERC721Metadata: Nonexistent token");

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

  function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
  }

  function numberMinted(address owner) public view returns (uint256) {
      return _numberMinted(owner);
  }

  function setBaseURI(string calldata baseURI_) external onlyOwner {
      baseURI = baseURI_;
  }

  function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner {
      maxPerWallet = maxPerWallet_;
  }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxPerWallet","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":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526005600a556000600b60006101000a81548160ff0219169083151502179055503480156200003157600080fd5b506040518060400160405280600881526020017f536368656d7572730000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f534348454d5552530000000000000000000000000000000000000000000000008152508160029081620000af91906200044d565b508060039081620000c191906200044d565b50620000d26200010060201b60201c565b6000819055505050620000fa620000ee6200010560201b60201c565b6200010d60201b60201c565b62000534565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200025557607f821691505b6020821081036200026b576200026a6200020d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002d57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000296565b620002e1868362000296565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200032e620003286200032284620002f9565b62000303565b620002f9565b9050919050565b6000819050919050565b6200034a836200030d565b62000362620003598262000335565b848454620002a3565b825550505050565b600090565b620003796200036a565b620003868184846200033f565b505050565b5b81811015620003ae57620003a26000826200036f565b6001810190506200038c565b5050565b601f821115620003fd57620003c78162000271565b620003d28462000286565b81016020851015620003e2578190505b620003fa620003f18562000286565b8301826200038b565b50505b505050565b600082821c905092915050565b6000620004226000198460080262000402565b1980831691505092915050565b60006200043d83836200040f565b9150826002028217905092915050565b6200045882620001d3565b67ffffffffffffffff811115620004745762000473620001de565b5b6200048082546200023c565b6200048d828285620003b2565b600060209050601f831160018114620004c55760008415620004b0578287015190505b620004bc85826200042f565b8655506200052c565b601f198416620004d58662000271565b60005b82811015620004ff57848901518255600182019150602085019450602081019050620004d8565b868310156200051f57848901516200051b601f8916826200040f565b8355505b6001600288020188555050505b505050505050565b612eea80620005446000396000f3fe6080604052600436106101815760003560e01c80637d55094d116100d1578063c87b56dd1161008a578063dc33e68111610064578063dc33e6811461054f578063e268e4d31461058c578063e985e9c5146105b5578063f2fde38b146105f257610181565b8063c87b56dd146104bc578063d1239730146104f9578063d5abeb011461052457610181565b80637d55094d146103e15780638da5cb5b146103f857806395d89b4114610423578063a0712d681461044e578063a22cb4651461046a578063b88d4fde1461049357610181565b806342842e0e1161013e5780636352211e116101185780636352211e146103255780636c0360eb1461036257806370a082311461038d578063715018a6146103ca57610181565b806342842e0e146102a8578063453c2310146102d157806355f804b3146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190611f2e565b61061b565b6040516101ba9190611f76565b60405180910390f35b3480156101cf57600080fd5b506101d86106ad565b6040516101e5919061202a565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612082565b61073f565b60405161022291906120f0565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612137565b6107bb565b005b34801561026057600080fd5b50610269610961565b6040516102769190612186565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a191906121a1565b610978565b005b3480156102b457600080fd5b506102cf60048036038101906102ca91906121a1565b610988565b005b3480156102dd57600080fd5b506102e66109a8565b6040516102f39190612186565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612259565b6109ae565b005b34801561033157600080fd5b5061034c60048036038101906103479190612082565b6109cc565b60405161035991906120f0565b60405180910390f35b34801561036e57600080fd5b506103776109de565b604051610384919061202a565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af91906122a6565b610a6c565b6040516103c19190612186565b60405180910390f35b3480156103d657600080fd5b506103df610b00565b005b3480156103ed57600080fd5b506103f6610b14565b005b34801561040457600080fd5b5061040d610b48565b60405161041a91906120f0565b60405180910390f35b34801561042f57600080fd5b50610438610b72565b604051610445919061202a565b60405180910390f35b61046860048036038101906104639190612082565b610c04565b005b34801561047657600080fd5b50610491600480360381019061048c91906122ff565b610e2e565b005b34801561049f57600080fd5b506104ba60048036038101906104b5919061246f565b610fa5565b005b3480156104c857600080fd5b506104e360048036038101906104de9190612082565b611018565b6040516104f0919061202a565b60405180910390f35b34801561050557600080fd5b5061050e6110bf565b60405161051b9190611f76565b60405180910390f35b34801561053057600080fd5b506105396110d2565b6040516105469190612186565b60405180910390f35b34801561055b57600080fd5b50610576600480360381019061057191906122a6565b6110d8565b6040516105839190612186565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190612082565b6110ea565b005b3480156105c157600080fd5b506105dc60048036038101906105d791906124f2565b6110fc565b6040516105e99190611f76565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906122a6565b611190565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106bc90612561565b80601f01602080910402602001604051908101604052809291908181526020018280546106e890612561565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a82611213565b610780576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107c682611272565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361082d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661084c61133e565b73ffffffffffffffffffffffffffffffffffffffff16146108af576108788161087361133e565b6110fc565b6108ae576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061096b611346565b6001546000540303905090565b61098383838361134b565b505050565b6109a383838360405180602001604052806000815250610fa5565b505050565b600a5481565b6109b6611710565b8181600991826109c7929190612749565b505050565b60006109d782611272565b9050919050565b600980546109eb90612561565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1790612561565b8015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b505050505081565b600080610a788361178e565b03610aaf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b08611710565b610b126000611798565b565b610b1c611710565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b8190612561565b80601f0160208091040260200160405190810160405280929190818152602001828054610bad90612561565b8015610bfa5780601f10610bcf57610100808354040283529160200191610bfa565b820191906000526020600020905b815481529060010190602001808311610bdd57829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90612865565b60405180910390fd5b6005600a54610c6291906128b4565b81600c6000610c6f61185e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cb491906128b4565b10610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90612956565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d59906129c2565b60405180910390fd5b600161115c610d7191906128b4565b81610d7a610961565b610d8491906128b4565b10610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90612a2e565b60405180910390fd5b80600c6000610dd161185e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e1a91906128b4565b92505081905550610e2b3382611866565b50565b610e3661133e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610ea761133e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f5461133e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f999190611f76565b60405180910390a35050565b610fb084848461134b565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461101257610fdb84848484611884565b611011576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061102382611213565b611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990612ac0565b60405180910390fd5b600061106c6119d4565b9050600081511161108c57604051806020016040528060008152506110b7565b8061109684611a66565b6040516020016110a7929190612b68565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900460ff1681565b61115c81565b60006110e382611bc6565b9050919050565b6110f2611710565b80600a8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611198611710565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90612c09565b60405180910390fd5b61121081611798565b50565b60008161121e611346565b1115801561122d575060005482105b801561126b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611281611346565b11611307576000548110156113065760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611304575b600081036112fa5760046000836001900393508381526020019081526020016000205490506112d0565b8092505050611339565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061135682611272565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113bd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661141661133e565b73ffffffffffffffffffffffffffffffffffffffff16148061144557506114448661143f61133e565b6110fc565b5b80611482575061145361133e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806114bb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114c68661178e565b036114fd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61150a8686866001611c1d565b60006115158361178e565b14611551576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6116188761178e565b1717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116a0576000600185019050600060046000838152602001908152602001600020540361169e57600054811461169d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117088686866001611c23565b505050505050565b61171861185e565b73ffffffffffffffffffffffffffffffffffffffff16611736610b48565b73ffffffffffffffffffffffffffffffffffffffff161461178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178390612c75565b60405180910390fd5b565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611880828260405180602001604052806000815250611c29565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118aa61133e565b8786866040518563ffffffff1660e01b81526004016118cc9493929190612cea565b6020604051808303816000875af192505050801561190857506040513d601f19601f820116820180604052508101906119059190612d4b565b60015b611981573d8060008114611938576040519150601f19603f3d011682016040523d82523d6000602084013e61193d565b606091505b506000815103611979576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546119e390612561565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0f90612561565b8015611a5c5780601f10611a3157610100808354040283529160200191611a5c565b820191906000526020600020905b815481529060010190602001808311611a3f57829003601f168201915b5050505050905090565b606060008203611aad576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611bc1565b600082905060005b60008214611adf578080611ac890612d78565b915050600a82611ad89190612def565b9150611ab5565b60008167ffffffffffffffff811115611afb57611afa612344565b5b6040519080825280601f01601f191660200182016040528015611b2d5781602001600182028036833780820191505090505b5090505b60008514611bba57600182611b469190612e20565b9150600a85611b559190612e54565b6030611b6191906128b4565b60f81b818381518110611b7757611b76612e85565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611bb39190612def565b9450611b31565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b50505050565b6000805490506000611c3a8561178e565b03611c71576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611cab576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb86000858386611c1d565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611d1d60018514611eb8565b901b60a042901b611d2d8661178e565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611e31575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611de16000878480600101955087611884565b611e17576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611d72578260005414611e2c57600080fd5b611e9c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611e32575b816000819055505050611eb26000858386611c23565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f0b81611ed6565b8114611f1657600080fd5b50565b600081359050611f2881611f02565b92915050565b600060208284031215611f4457611f43611ecc565b5b6000611f5284828501611f19565b91505092915050565b60008115159050919050565b611f7081611f5b565b82525050565b6000602082019050611f8b6000830184611f67565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fcb578082015181840152602081019050611fb0565b83811115611fda576000848401525b50505050565b6000601f19601f8301169050919050565b6000611ffc82611f91565b6120068185611f9c565b9350612016818560208601611fad565b61201f81611fe0565b840191505092915050565b600060208201905081810360008301526120448184611ff1565b905092915050565b6000819050919050565b61205f8161204c565b811461206a57600080fd5b50565b60008135905061207c81612056565b92915050565b60006020828403121561209857612097611ecc565b5b60006120a68482850161206d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120da826120af565b9050919050565b6120ea816120cf565b82525050565b600060208201905061210560008301846120e1565b92915050565b612114816120cf565b811461211f57600080fd5b50565b6000813590506121318161210b565b92915050565b6000806040838503121561214e5761214d611ecc565b5b600061215c85828601612122565b925050602061216d8582860161206d565b9150509250929050565b6121808161204c565b82525050565b600060208201905061219b6000830184612177565b92915050565b6000806000606084860312156121ba576121b9611ecc565b5b60006121c886828701612122565b93505060206121d986828701612122565b92505060406121ea8682870161206d565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612219576122186121f4565b5b8235905067ffffffffffffffff811115612236576122356121f9565b5b602083019150836001820283011115612252576122516121fe565b5b9250929050565b600080602083850312156122705761226f611ecc565b5b600083013567ffffffffffffffff81111561228e5761228d611ed1565b5b61229a85828601612203565b92509250509250929050565b6000602082840312156122bc576122bb611ecc565b5b60006122ca84828501612122565b91505092915050565b6122dc81611f5b565b81146122e757600080fd5b50565b6000813590506122f9816122d3565b92915050565b6000806040838503121561231657612315611ecc565b5b600061232485828601612122565b9250506020612335858286016122ea565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61237c82611fe0565b810181811067ffffffffffffffff8211171561239b5761239a612344565b5b80604052505050565b60006123ae611ec2565b90506123ba8282612373565b919050565b600067ffffffffffffffff8211156123da576123d9612344565b5b6123e382611fe0565b9050602081019050919050565b82818337600083830152505050565b600061241261240d846123bf565b6123a4565b90508281526020810184848401111561242e5761242d61233f565b5b6124398482856123f0565b509392505050565b600082601f830112612456576124556121f4565b5b81356124668482602086016123ff565b91505092915050565b6000806000806080858703121561248957612488611ecc565b5b600061249787828801612122565b94505060206124a887828801612122565b93505060406124b98782880161206d565b925050606085013567ffffffffffffffff8111156124da576124d9611ed1565b5b6124e687828801612441565b91505092959194509250565b6000806040838503121561250957612508611ecc565b5b600061251785828601612122565b925050602061252885828601612122565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061257957607f821691505b60208210810361258c5761258b612532565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026125ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826125c2565b61260986836125c2565b95508019841693508086168417925050509392505050565b6000819050919050565b600061264661264161263c8461204c565b612621565b61204c565b9050919050565b6000819050919050565b6126608361262b565b61267461266c8261264d565b8484546125cf565b825550505050565b600090565b61268961267c565b612694818484612657565b505050565b5b818110156126b8576126ad600082612681565b60018101905061269a565b5050565b601f8211156126fd576126ce8161259d565b6126d7846125b2565b810160208510156126e6578190505b6126fa6126f2856125b2565b830182612699565b50505b505050565b600082821c905092915050565b600061272060001984600802612702565b1980831691505092915050565b6000612739838361270f565b9150826002028217905092915050565b6127538383612592565b67ffffffffffffffff81111561276c5761276b612344565b5b6127768254612561565b6127818282856126bc565b6000601f8311600181146127b0576000841561279e578287013590505b6127a8858261272d565b865550612810565b601f1984166127be8661259d565b60005b828110156127e6578489013582556001820191506020850194506020810190506127c1565b8683101561280357848901356127ff601f89168261270f565b8355505b6001600288020188555050505b50505050505050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b600061284f601883611f9c565b915061285a82612819565b602082019050919050565b6000602082019050818103600083015261287e81612842565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128bf8261204c565b91506128ca8361204c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128ff576128fe612885565b5b828201905092915050565b7f54686174277320656e6f75676820536368656d75727320666f7220796f752100600082015250565b6000612940601f83611f9c565b915061294b8261290a565b602082019050919050565b6000602082019050818103600083015261296f81612933565b9050919050565b7f4e6f20626f74732c206f6e6c79207472756520536368656d7572732100000000600082015250565b60006129ac601c83611f9c565b91506129b782612976565b602082019050919050565b600060208201905081810360008301526129db8161299f565b9050919050565b7f4e6f7420656e6f756768204d656d757273206c6566742e000000000000000000600082015250565b6000612a18601783611f9c565b9150612a23826129e2565b602082019050919050565b60006020820190508181036000830152612a4781612a0b565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000612aaa602183611f9c565b9150612ab582612a4e565b604082019050919050565b60006020820190508181036000830152612ad981612a9d565b9050919050565b600081905092915050565b6000612af682611f91565b612b008185612ae0565b9350612b10818560208601611fad565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612b52600583612ae0565b9150612b5d82612b1c565b600582019050919050565b6000612b748285612aeb565b9150612b808284612aeb565b9150612b8b82612b45565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612bf3602683611f9c565b9150612bfe82612b97565b604082019050919050565b60006020820190508181036000830152612c2281612be6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c5f602083611f9c565b9150612c6a82612c29565b602082019050919050565b60006020820190508181036000830152612c8e81612c52565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612cbc82612c95565b612cc68185612ca0565b9350612cd6818560208601611fad565b612cdf81611fe0565b840191505092915050565b6000608082019050612cff60008301876120e1565b612d0c60208301866120e1565b612d196040830185612177565b8181036060830152612d2b8184612cb1565b905095945050505050565b600081519050612d4581611f02565b92915050565b600060208284031215612d6157612d60611ecc565b5b6000612d6f84828501612d36565b91505092915050565b6000612d838261204c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612db557612db4612885565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612dfa8261204c565b9150612e058361204c565b925082612e1557612e14612dc0565b5b828204905092915050565b6000612e2b8261204c565b9150612e368361204c565b925082821015612e4957612e48612885565b5b828203905092915050565b6000612e5f8261204c565b9150612e6a8361204c565b925082612e7a57612e79612dc0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208d7c8b641adb62b3c95fd3bb53a98d9ce01366a2da21e70fe7d97cf032361c0064736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101815760003560e01c80637d55094d116100d1578063c87b56dd1161008a578063dc33e68111610064578063dc33e6811461054f578063e268e4d31461058c578063e985e9c5146105b5578063f2fde38b146105f257610181565b8063c87b56dd146104bc578063d1239730146104f9578063d5abeb011461052457610181565b80637d55094d146103e15780638da5cb5b146103f857806395d89b4114610423578063a0712d681461044e578063a22cb4651461046a578063b88d4fde1461049357610181565b806342842e0e1161013e5780636352211e116101185780636352211e146103255780636c0360eb1461036257806370a082311461038d578063715018a6146103ca57610181565b806342842e0e146102a8578063453c2310146102d157806355f804b3146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806323b872dd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190611f2e565b61061b565b6040516101ba9190611f76565b60405180910390f35b3480156101cf57600080fd5b506101d86106ad565b6040516101e5919061202a565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612082565b61073f565b60405161022291906120f0565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612137565b6107bb565b005b34801561026057600080fd5b50610269610961565b6040516102769190612186565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a191906121a1565b610978565b005b3480156102b457600080fd5b506102cf60048036038101906102ca91906121a1565b610988565b005b3480156102dd57600080fd5b506102e66109a8565b6040516102f39190612186565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612259565b6109ae565b005b34801561033157600080fd5b5061034c60048036038101906103479190612082565b6109cc565b60405161035991906120f0565b60405180910390f35b34801561036e57600080fd5b506103776109de565b604051610384919061202a565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af91906122a6565b610a6c565b6040516103c19190612186565b60405180910390f35b3480156103d657600080fd5b506103df610b00565b005b3480156103ed57600080fd5b506103f6610b14565b005b34801561040457600080fd5b5061040d610b48565b60405161041a91906120f0565b60405180910390f35b34801561042f57600080fd5b50610438610b72565b604051610445919061202a565b60405180910390f35b61046860048036038101906104639190612082565b610c04565b005b34801561047657600080fd5b50610491600480360381019061048c91906122ff565b610e2e565b005b34801561049f57600080fd5b506104ba60048036038101906104b5919061246f565b610fa5565b005b3480156104c857600080fd5b506104e360048036038101906104de9190612082565b611018565b6040516104f0919061202a565b60405180910390f35b34801561050557600080fd5b5061050e6110bf565b60405161051b9190611f76565b60405180910390f35b34801561053057600080fd5b506105396110d2565b6040516105469190612186565b60405180910390f35b34801561055b57600080fd5b50610576600480360381019061057191906122a6565b6110d8565b6040516105839190612186565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190612082565b6110ea565b005b3480156105c157600080fd5b506105dc60048036038101906105d791906124f2565b6110fc565b6040516105e99190611f76565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906122a6565b611190565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106bc90612561565b80601f01602080910402602001604051908101604052809291908181526020018280546106e890612561565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a82611213565b610780576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107c682611272565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361082d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661084c61133e565b73ffffffffffffffffffffffffffffffffffffffff16146108af576108788161087361133e565b6110fc565b6108ae576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061096b611346565b6001546000540303905090565b61098383838361134b565b505050565b6109a383838360405180602001604052806000815250610fa5565b505050565b600a5481565b6109b6611710565b8181600991826109c7929190612749565b505050565b60006109d782611272565b9050919050565b600980546109eb90612561565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1790612561565b8015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b505050505081565b600080610a788361178e565b03610aaf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b08611710565b610b126000611798565b565b610b1c611710565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b8190612561565b80601f0160208091040260200160405190810160405280929190818152602001828054610bad90612561565b8015610bfa5780601f10610bcf57610100808354040283529160200191610bfa565b820191906000526020600020905b815481529060010190602001808311610bdd57829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90612865565b60405180910390fd5b6005600a54610c6291906128b4565b81600c6000610c6f61185e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cb491906128b4565b10610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90612956565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d59906129c2565b60405180910390fd5b600161115c610d7191906128b4565b81610d7a610961565b610d8491906128b4565b10610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90612a2e565b60405180910390fd5b80600c6000610dd161185e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e1a91906128b4565b92505081905550610e2b3382611866565b50565b610e3661133e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610ea761133e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f5461133e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f999190611f76565b60405180910390a35050565b610fb084848461134b565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461101257610fdb84848484611884565b611011576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061102382611213565b611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990612ac0565b60405180910390fd5b600061106c6119d4565b9050600081511161108c57604051806020016040528060008152506110b7565b8061109684611a66565b6040516020016110a7929190612b68565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900460ff1681565b61115c81565b60006110e382611bc6565b9050919050565b6110f2611710565b80600a8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611198611710565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90612c09565b60405180910390fd5b61121081611798565b50565b60008161121e611346565b1115801561122d575060005482105b801561126b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611281611346565b11611307576000548110156113065760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611304575b600081036112fa5760046000836001900393508381526020019081526020016000205490506112d0565b8092505050611339565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061135682611272565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113bd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661141661133e565b73ffffffffffffffffffffffffffffffffffffffff16148061144557506114448661143f61133e565b6110fc565b5b80611482575061145361133e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806114bb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006114c68661178e565b036114fd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61150a8686866001611c1d565b60006115158361178e565b14611551576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6116188761178e565b1717600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116a0576000600185019050600060046000838152602001908152602001600020540361169e57600054811461169d578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117088686866001611c23565b505050505050565b61171861185e565b73ffffffffffffffffffffffffffffffffffffffff16611736610b48565b73ffffffffffffffffffffffffffffffffffffffff161461178c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178390612c75565b60405180910390fd5b565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611880828260405180602001604052806000815250611c29565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118aa61133e565b8786866040518563ffffffff1660e01b81526004016118cc9493929190612cea565b6020604051808303816000875af192505050801561190857506040513d601f19601f820116820180604052508101906119059190612d4b565b60015b611981573d8060008114611938576040519150601f19603f3d011682016040523d82523d6000602084013e61193d565b606091505b506000815103611979576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546119e390612561565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0f90612561565b8015611a5c5780601f10611a3157610100808354040283529160200191611a5c565b820191906000526020600020905b815481529060010190602001808311611a3f57829003601f168201915b5050505050905090565b606060008203611aad576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611bc1565b600082905060005b60008214611adf578080611ac890612d78565b915050600a82611ad89190612def565b9150611ab5565b60008167ffffffffffffffff811115611afb57611afa612344565b5b6040519080825280601f01601f191660200182016040528015611b2d5781602001600182028036833780820191505090505b5090505b60008514611bba57600182611b469190612e20565b9150600a85611b559190612e54565b6030611b6191906128b4565b60f81b818381518110611b7757611b76612e85565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611bb39190612def565b9450611b31565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b50505050565b6000805490506000611c3a8561178e565b03611c71576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611cab576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb86000858386611c1d565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611d1d60018514611eb8565b901b60a042901b611d2d8661178e565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611e31575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611de16000878480600101955087611884565b611e17576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611d72578260005414611e2c57600080fd5b611e9c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611e32575b816000819055505050611eb26000858386611c23565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f0b81611ed6565b8114611f1657600080fd5b50565b600081359050611f2881611f02565b92915050565b600060208284031215611f4457611f43611ecc565b5b6000611f5284828501611f19565b91505092915050565b60008115159050919050565b611f7081611f5b565b82525050565b6000602082019050611f8b6000830184611f67565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fcb578082015181840152602081019050611fb0565b83811115611fda576000848401525b50505050565b6000601f19601f8301169050919050565b6000611ffc82611f91565b6120068185611f9c565b9350612016818560208601611fad565b61201f81611fe0565b840191505092915050565b600060208201905081810360008301526120448184611ff1565b905092915050565b6000819050919050565b61205f8161204c565b811461206a57600080fd5b50565b60008135905061207c81612056565b92915050565b60006020828403121561209857612097611ecc565b5b60006120a68482850161206d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120da826120af565b9050919050565b6120ea816120cf565b82525050565b600060208201905061210560008301846120e1565b92915050565b612114816120cf565b811461211f57600080fd5b50565b6000813590506121318161210b565b92915050565b6000806040838503121561214e5761214d611ecc565b5b600061215c85828601612122565b925050602061216d8582860161206d565b9150509250929050565b6121808161204c565b82525050565b600060208201905061219b6000830184612177565b92915050565b6000806000606084860312156121ba576121b9611ecc565b5b60006121c886828701612122565b93505060206121d986828701612122565b92505060406121ea8682870161206d565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612219576122186121f4565b5b8235905067ffffffffffffffff811115612236576122356121f9565b5b602083019150836001820283011115612252576122516121fe565b5b9250929050565b600080602083850312156122705761226f611ecc565b5b600083013567ffffffffffffffff81111561228e5761228d611ed1565b5b61229a85828601612203565b92509250509250929050565b6000602082840312156122bc576122bb611ecc565b5b60006122ca84828501612122565b91505092915050565b6122dc81611f5b565b81146122e757600080fd5b50565b6000813590506122f9816122d3565b92915050565b6000806040838503121561231657612315611ecc565b5b600061232485828601612122565b9250506020612335858286016122ea565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61237c82611fe0565b810181811067ffffffffffffffff8211171561239b5761239a612344565b5b80604052505050565b60006123ae611ec2565b90506123ba8282612373565b919050565b600067ffffffffffffffff8211156123da576123d9612344565b5b6123e382611fe0565b9050602081019050919050565b82818337600083830152505050565b600061241261240d846123bf565b6123a4565b90508281526020810184848401111561242e5761242d61233f565b5b6124398482856123f0565b509392505050565b600082601f830112612456576124556121f4565b5b81356124668482602086016123ff565b91505092915050565b6000806000806080858703121561248957612488611ecc565b5b600061249787828801612122565b94505060206124a887828801612122565b93505060406124b98782880161206d565b925050606085013567ffffffffffffffff8111156124da576124d9611ed1565b5b6124e687828801612441565b91505092959194509250565b6000806040838503121561250957612508611ecc565b5b600061251785828601612122565b925050602061252885828601612122565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061257957607f821691505b60208210810361258c5761258b612532565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026125ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826125c2565b61260986836125c2565b95508019841693508086168417925050509392505050565b6000819050919050565b600061264661264161263c8461204c565b612621565b61204c565b9050919050565b6000819050919050565b6126608361262b565b61267461266c8261264d565b8484546125cf565b825550505050565b600090565b61268961267c565b612694818484612657565b505050565b5b818110156126b8576126ad600082612681565b60018101905061269a565b5050565b601f8211156126fd576126ce8161259d565b6126d7846125b2565b810160208510156126e6578190505b6126fa6126f2856125b2565b830182612699565b50505b505050565b600082821c905092915050565b600061272060001984600802612702565b1980831691505092915050565b6000612739838361270f565b9150826002028217905092915050565b6127538383612592565b67ffffffffffffffff81111561276c5761276b612344565b5b6127768254612561565b6127818282856126bc565b6000601f8311600181146127b0576000841561279e578287013590505b6127a8858261272d565b865550612810565b601f1984166127be8661259d565b60005b828110156127e6578489013582556001820191506020850194506020810190506127c1565b8683101561280357848901356127ff601f89168261270f565b8355505b6001600288020188555050505b50505050505050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b600061284f601883611f9c565b915061285a82612819565b602082019050919050565b6000602082019050818103600083015261287e81612842565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128bf8261204c565b91506128ca8361204c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128ff576128fe612885565b5b828201905092915050565b7f54686174277320656e6f75676820536368656d75727320666f7220796f752100600082015250565b6000612940601f83611f9c565b915061294b8261290a565b602082019050919050565b6000602082019050818103600083015261296f81612933565b9050919050565b7f4e6f20626f74732c206f6e6c79207472756520536368656d7572732100000000600082015250565b60006129ac601c83611f9c565b91506129b782612976565b602082019050919050565b600060208201905081810360008301526129db8161299f565b9050919050565b7f4e6f7420656e6f756768204d656d757273206c6566742e000000000000000000600082015250565b6000612a18601783611f9c565b9150612a23826129e2565b602082019050919050565b60006020820190508181036000830152612a4781612a0b565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000612aaa602183611f9c565b9150612ab582612a4e565b604082019050919050565b60006020820190508181036000830152612ad981612a9d565b9050919050565b600081905092915050565b6000612af682611f91565b612b008185612ae0565b9350612b10818560208601611fad565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612b52600583612ae0565b9150612b5d82612b1c565b600582019050919050565b6000612b748285612aeb565b9150612b808284612aeb565b9150612b8b82612b45565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612bf3602683611f9c565b9150612bfe82612b97565b604082019050919050565b60006020820190508181036000830152612c2281612be6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c5f602083611f9c565b9150612c6a82612c29565b602082019050919050565b60006020820190508181036000830152612c8e81612c52565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612cbc82612c95565b612cc68185612ca0565b9350612cd6818560208601611fad565b612cdf81611fe0565b840191505092915050565b6000608082019050612cff60008301876120e1565b612d0c60208301866120e1565b612d196040830185612177565b8181036060830152612d2b8184612cb1565b905095945050505050565b600081519050612d4581611f02565b92915050565b600060208284031215612d6157612d60611ecc565b5b6000612d6f84828501612d36565b91505092915050565b6000612d838261204c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612db557612db4612885565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612dfa8261204c565b9150612e058361204c565b925082612e1557612e14612dc0565b5b828204905092915050565b6000612e2b8261204c565b9150612e368361204c565b925082821015612e4957612e48612885565b5b828203905092915050565b6000612e5f8261204c565b9150612e6a8361204c565b925082612e7a57612e79612dc0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212208d7c8b641adb62b3c95fd3bb53a98d9ce01366a2da21e70fe7d97cf032361c0064736f6c634300080f0033

Deployed Bytecode Sourcemap

44795:1695:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19173:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24196:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26264:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25724:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18227:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27150:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27391:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44959:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46161:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23985:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44870:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19852:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5307:103;;;;;;;;;;;;;:::i;:::-;;45955:85;;;;;;;;;;;;;:::i;:::-;;4659:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24365:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45177:430;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26540:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27647:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45613:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45009:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44906:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46046:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46265:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26919:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5565:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19173:615;19258:4;19573:10;19558:25;;:11;:25;;;;:102;;;;19650:10;19635:25;;:11;:25;;;;19558:102;:179;;;;19727:10;19712:25;;:11;:25;;;;19558:179;19538:199;;19173:615;;;:::o;24196:100::-;24250:13;24283:5;24276:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24196:100;:::o;26264:204::-;26332:7;26357:16;26365:7;26357;:16::i;:::-;26352:64;;26382:34;;;;;;;;;;;;;;26352:64;26436:15;:24;26452:7;26436:24;;;;;;;;;;;;;;;;;;;;;26429:31;;26264:204;;;:::o;25724:474::-;25797:13;25829:27;25848:7;25829:18;:27::i;:::-;25797:61;;25879:5;25873:11;;:2;:11;;;25869:48;;25893:24;;;;;;;;;;;;;;25869:48;25957:5;25934:28;;:19;:17;:19::i;:::-;:28;;;25930:175;;25982:44;25999:5;26006:19;:17;:19::i;:::-;25982:16;:44::i;:::-;25977:128;;26054:35;;;;;;;;;;;;;;25977:128;25930:175;26144:2;26117:15;:24;26133:7;26117:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;26182:7;26178:2;26162:28;;26171:5;26162:28;;;;;;;;;;;;25786:412;25724:474;;:::o;18227:315::-;18280:7;18508:15;:13;:15::i;:::-;18493:12;;18477:13;;:28;:46;18470:53;;18227:315;:::o;27150:170::-;27284:28;27294:4;27300:2;27304:7;27284:9;:28::i;:::-;27150:170;;;:::o;27391:185::-;27529:39;27546:4;27552:2;27556:7;27529:39;;;;;;;;;;;;:16;:39::i;:::-;27391:185;;;:::o;44959:45::-;;;;:::o;46161:98::-;4545:13;:11;:13::i;:::-;46245:8:::1;;46235:7;:18;;;;;;;:::i;:::-;;46161:98:::0;;:::o;23985:144::-;24049:7;24092:27;24111:7;24092:18;:27::i;:::-;24069:52;;23985:144;;;:::o;44870:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19852:234::-;19916:7;19968:1;19940:24;19958:5;19940:17;:24::i;:::-;:29;19936:70;;19978:28;;;;;;;;;;;;;;19936:70;15197:13;20024:18;:25;20043:5;20024:25;;;;;;;;;;;;;;;;:54;20017:61;;19852:234;;;:::o;5307:103::-;4545:13;:11;:13::i;:::-;5372:30:::1;5399:1;5372:18;:30::i;:::-;5307:103::o:0;45955:85::-;4545:13;:11;:13::i;:::-;46023:11:::1;;;;;;;;;;;46022:12;46008:11;;:26;;;;;;;;;;;;;;;;;;45955:85::o:0;4659:87::-;4705:7;4732:6;;;;;;;;;;;4725:13;;4659:87;:::o;24365:104::-;24421:13;24454:7;24447:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24365:104;:::o;45177:430::-;45236:11;;;;;;;;;;;45228:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;45341:1;45326:12;;:16;;;;:::i;:::-;45320:3;45291:12;:26;45304:12;:10;:12::i;:::-;45291:26;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:51;45283:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;45407:9;45393:23;;:10;:23;;;45385:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45497:1;44950:4;45485:13;;;;:::i;:::-;45479:3;45463:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;45455:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45565:3;45535:12;:26;45548:12;:10;:12::i;:::-;45535:26;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;45575:26;45585:10;45597:3;45575:9;:26::i;:::-;45177:430;:::o;26540:308::-;26651:19;:17;:19::i;:::-;26639:31;;:8;:31;;;26635:61;;26679:17;;;;;;;;;;;;;;26635:61;26761:8;26709:18;:39;26728:19;:17;:19::i;:::-;26709:39;;;;;;;;;;;;;;;:49;26749:8;26709:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26821:8;26785:55;;26800:19;:17;:19::i;:::-;26785:55;;;26831:8;26785:55;;;;;;:::i;:::-;;;;;;;;26540:308;;:::o;27647:396::-;27814:28;27824:4;27830:2;27834:7;27814:9;:28::i;:::-;27875:1;27857:2;:14;;;:19;27853:183;;27896:56;27927:4;27933:2;27937:7;27946:5;27896:30;:56::i;:::-;27891:145;;27980:40;;;;;;;;;;;;;;27891:145;27853:183;27647:396;;;;:::o;45613:336::-;45686:13;45718:16;45726:7;45718;:16::i;:::-;45710:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45780:28;45811:10;:8;:10::i;:::-;45780:41;;45865:1;45840:14;45834:28;:32;:109;;;;;;;;;;;;;;;;;45893:14;45909:18;:7;:16;:18::i;:::-;45876:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45834:109;45827:116;;;45613:336;;;:::o;45009:49::-;;;;;;;;;;;;;:::o;44906:48::-;44950:4;44906:48;:::o;46046:109::-;46104:7;46129:20;46143:5;46129:13;:20::i;:::-;46122:27;;46046:109;;;:::o;46265:110::-;4545:13;:11;:13::i;:::-;46356::::1;46341:12;:28;;;;46265:110:::0;:::o;26919:164::-;27016:4;27040:18;:25;27059:5;27040:25;;;;;;;;;;;;;;;:35;27066:8;27040:35;;;;;;;;;;;;;;;;;;;;;;;;;27033:42;;26919:164;;;;:::o;5565:201::-;4545:13;:11;:13::i;:::-;5674:1:::1;5654:22;;:8;:22;;::::0;5646:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5730:28;5749:8;5730:18;:28::i;:::-;5565:201:::0;:::o;28298:273::-;28355:4;28411:7;28392:15;:13;:15::i;:::-;:26;;:66;;;;;28445:13;;28435:7;:23;28392:66;:152;;;;;28543:1;15967:8;28496:17;:26;28514:7;28496:26;;;;;;;;;;;;:43;:48;28392:152;28372:172;;28298:273;;;:::o;21500:1129::-;21567:7;21587:12;21602:7;21587:22;;21670:4;21651:15;:13;:15::i;:::-;:23;21647:915;;21704:13;;21697:4;:20;21693:869;;;21742:14;21759:17;:23;21777:4;21759:23;;;;;;;;;;;;21742:40;;21875:1;15967:8;21848:6;:23;:28;21844:699;;22367:113;22384:1;22374:6;:11;22367:113;;22427:17;:25;22445:6;;;;;;;22427:25;;;;;;;;;;;;22418:34;;22367:113;;;22513:6;22506:13;;;;;;21844:699;21719:843;21693:869;21647:915;22590:31;;;;;;;;;;;;;;21500:1129;;;;:::o;42565:105::-;42625:7;42652:10;42645:17;;42565:105;:::o;17751:92::-;17807:7;17751:92;:::o;33557:2654::-;33672:27;33702;33721:7;33702:18;:27::i;:::-;33672:57;;33787:4;33746:45;;33762:19;33746:45;;;33742:86;;33800:28;;;;;;;;;;;;;;33742:86;33841:23;33867:15;:24;33883:7;33867:24;;;;;;;;;;;;;;;;;;;;;33841:50;;33904:22;33953:4;33930:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;33974:43;33991:4;33997:19;:17;:19::i;:::-;33974:16;:43::i;:::-;33930:87;:142;;;;34053:19;:17;:19::i;:::-;34034:38;;:15;:38;;;33930:142;33904:169;;34091:17;34086:66;;34117:35;;;;;;;;;;;;;;34086:66;34192:1;34167:21;34185:2;34167:17;:21::i;:::-;:26;34163:62;;34202:23;;;;;;;;;;;;;;34163:62;34238:43;34260:4;34266:2;34270:7;34279:1;34238:21;:43::i;:::-;34389:1;34351:34;34369:15;34351:17;:34::i;:::-;:39;34347:103;;34414:15;:24;34430:7;34414:24;;;;;;;;;;;;34407:31;;;;;;;;;;;34347:103;34817:18;:24;34836:4;34817:24;;;;;;;;;;;;;;;;34815:26;;;;;;;;;;;;34886:18;:22;34905:2;34886:22;;;;;;;;;;;;;;;;34884:24;;;;;;;;;;;16245:8;15851:3;35267:15;:41;;35225:21;35243:2;35225:17;:21::i;:::-;:84;:128;35179:17;:26;35197:7;35179:26;;;;;;;;;;;:174;;;;35523:1;16245:8;35473:19;:46;:51;35469:626;;35545:19;35577:1;35567:7;:11;35545:33;;35734:1;35700:17;:30;35718:11;35700:30;;;;;;;;;;;;:35;35696:384;;35838:13;;35823:11;:28;35819:242;;36018:19;35985:17;:30;36003:11;35985:30;;;;;;;;;;;:52;;;;35819:242;35696:384;35526:569;35469:626;36142:7;36138:2;36123:27;;36132:4;36123:27;;;;;;;;;;;;36161:42;36182:4;36188:2;36192:7;36201:1;36161:20;:42::i;:::-;33661:2550;;;33557:2654;;;:::o;4824:132::-;4899:12;:10;:12::i;:::-;4888:23;;:7;:5;:7::i;:::-;:23;;;4880:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4824:132::o;25285:148::-;25349:14;25410:5;25400:15;;25285:148;;;:::o;5926:191::-;6000:16;6019:6;;;;;;;;;;;6000:25;;6045:8;6036:6;;:17;;;;;;;;;;;;;;;;;;6100:8;6069:40;;6090:8;6069:40;;;;;;;;;;;;5989:128;5926:191;:::o;3210:98::-;3263:7;3290:10;3283:17;;3210:98;:::o;28655:104::-;28724:27;28734:2;28738:8;28724:27;;;;;;;;;;;;:9;:27::i;:::-;28655:104;;:::o;40034:716::-;40197:4;40243:2;40218:45;;;40264:19;:17;:19::i;:::-;40285:4;40291:7;40300:5;40218:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40214:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40518:1;40501:6;:13;:18;40497:235;;40547:40;;;;;;;;;;;;;;40497:235;40690:6;40684:13;40675:6;40671:2;40667:15;40660:38;40214:529;40387:54;;;40377:64;;;:6;:64;;;;40370:71;;;40034:716;;;;;;:::o;46381:104::-;46441:13;46472:7;46465:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46381:104;:::o;464:723::-;520:13;750:1;741:5;:10;737:53;;768:10;;;;;;;;;;;;;;;;;;;;;737:53;800:12;815:5;800:20;;831:14;856:78;871:1;863:4;:9;856:78;;889:8;;;;;:::i;:::-;;;;920:2;912:10;;;;;:::i;:::-;;;856:78;;;944:19;976:6;966:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;944:39;;994:154;1010:1;1001:5;:10;994:154;;1038:1;1028:11;;;;;:::i;:::-;;;1105:2;1097:5;:10;;;;:::i;:::-;1084:2;:24;;;;:::i;:::-;1071:39;;1054:6;1061;1054:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1134:2;1125:11;;;;;:::i;:::-;;;994:154;;;1172:6;1158:21;;;;;464:723;;;;:::o;20168:176::-;20229:7;15197:13;15334:2;20257:18;:25;20276:5;20257:25;;;;;;;;;;;;;;;;:49;;20256:80;20249:87;;20168:176;;;:::o;41398:159::-;;;;;:::o;42216:158::-;;;;;:::o;29132:2246::-;29255:20;29278:13;;29255:36;;29331:1;29306:21;29324:2;29306:17;:21::i;:::-;:26;29302:58;;29341:19;;;;;;;;;;;;;;29302:58;29387:1;29375:8;:13;29371:44;;29397:18;;;;;;;;;;;;;;29371:44;29428:61;29458:1;29462:2;29466:12;29480:8;29428:21;:61::i;:::-;30032:1;15334:2;30003:1;:25;;30002:31;29990:8;:44;29964:18;:22;29983:2;29964:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;16110:3;30433:29;30460:1;30448:8;:13;30433:14;:29::i;:::-;:56;;15851:3;30370:15;:41;;30328:21;30346:2;30328:17;:21::i;:::-;:84;:162;30277:17;:31;30295:12;30277:31;;;;;;;;;;;:213;;;;30507:20;30530:12;30507:35;;30557:11;30586:8;30571:12;:23;30557:37;;30633:1;30615:2;:14;;;:19;30611:635;;30655:313;30711:12;30707:2;30686:38;;30703:1;30686:38;;;;;;;;;;;;30752:69;30791:1;30795:2;30799:14;;;;;;30815:5;30752:30;:69::i;:::-;30747:174;;30857:40;;;;;;;;;;;;;;30747:174;30963:3;30948:12;:18;30655:313;;31049:12;31032:13;;:29;31028:43;;31063:8;;;31028:43;30611:635;;;31112:119;31168:14;;;;;;31164:2;31143:40;;31160:1;31143:40;;;;;;;;;;;;31226:3;31211:12;:18;31112:119;;30611:635;31276:12;31260:13;:28;;;;29741:1559;;31310:60;31339:1;31343:2;31347:12;31361:8;31310:20;:60::i;:::-;29244:2134;29132:2246;;;:::o;25520:142::-;25578:14;25639:5;25629:15;;25520:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:97::-;12439:6;12467:3;12457:13;;12380:97;;;;:::o;12483:141::-;12532:4;12555:3;12547:11;;12578:3;12575:1;12568:14;12612:4;12609:1;12599:18;12591:26;;12483:141;;;:::o;12630:93::-;12667:6;12714:2;12709;12702:5;12698:14;12694:23;12684:33;;12630:93;;;:::o;12729:107::-;12773:8;12823:5;12817:4;12813:16;12792:37;;12729:107;;;;:::o;12842:393::-;12911:6;12961:1;12949:10;12945:18;12984:97;13014:66;13003:9;12984:97;:::i;:::-;13102:39;13132:8;13121:9;13102:39;:::i;:::-;13090:51;;13174:4;13170:9;13163:5;13159:21;13150:30;;13223:4;13213:8;13209:19;13202:5;13199:30;13189:40;;12918:317;;12842:393;;;;;:::o;13241:60::-;13269:3;13290:5;13283:12;;13241:60;;;:::o;13307:142::-;13357:9;13390:53;13408:34;13417:24;13435:5;13417:24;:::i;:::-;13408:34;:::i;:::-;13390:53;:::i;:::-;13377:66;;13307:142;;;:::o;13455:75::-;13498:3;13519:5;13512:12;;13455:75;;;:::o;13536:269::-;13646:39;13677:7;13646:39;:::i;:::-;13707:91;13756:41;13780:16;13756:41;:::i;:::-;13748:6;13741:4;13735:11;13707:91;:::i;:::-;13701:4;13694:105;13612:193;13536:269;;;:::o;13811:73::-;13856:3;13811:73;:::o;13890:189::-;13967:32;;:::i;:::-;14008:65;14066:6;14058;14052:4;14008:65;:::i;:::-;13943:136;13890:189;;:::o;14085:186::-;14145:120;14162:3;14155:5;14152:14;14145:120;;;14216:39;14253:1;14246:5;14216:39;:::i;:::-;14189:1;14182:5;14178:13;14169:22;;14145:120;;;14085:186;;:::o;14277:543::-;14378:2;14373:3;14370:11;14367:446;;;14412:38;14444:5;14412:38;:::i;:::-;14496:29;14514:10;14496:29;:::i;:::-;14486:8;14482:44;14679:2;14667:10;14664:18;14661:49;;;14700:8;14685:23;;14661:49;14723:80;14779:22;14797:3;14779:22;:::i;:::-;14769:8;14765:37;14752:11;14723:80;:::i;:::-;14382:431;;14367:446;14277:543;;;:::o;14826:117::-;14880:8;14930:5;14924:4;14920:16;14899:37;;14826:117;;;;:::o;14949:169::-;14993:6;15026:51;15074:1;15070:6;15062:5;15059:1;15055:13;15026:51;:::i;:::-;15022:56;15107:4;15101;15097:15;15087:25;;15000:118;14949:169;;;;:::o;15123:295::-;15199:4;15345:29;15370:3;15364:4;15345:29;:::i;:::-;15337:37;;15407:3;15404:1;15400:11;15394:4;15391:21;15383:29;;15123:295;;;;:::o;15423:1403::-;15547:44;15587:3;15582;15547:44;:::i;:::-;15656:18;15648:6;15645:30;15642:56;;;15678:18;;:::i;:::-;15642:56;15722:38;15754:4;15748:11;15722:38;:::i;:::-;15807:67;15867:6;15859;15853:4;15807:67;:::i;:::-;15901:1;15930:2;15922:6;15919:14;15947:1;15942:632;;;;16618:1;16635:6;16632:84;;;16691:9;16686:3;16682:19;16669:33;16660:42;;16632:84;16742:67;16802:6;16795:5;16742:67;:::i;:::-;16736:4;16729:81;16591:229;15912:908;;15942:632;15994:4;15990:9;15982:6;15978:22;16028:37;16060:4;16028:37;:::i;:::-;16087:1;16101:215;16115:7;16112:1;16109:14;16101:215;;;16201:9;16196:3;16192:19;16179:33;16171:6;16164:49;16252:1;16244:6;16240:14;16230:24;;16299:2;16288:9;16284:18;16271:31;;16138:4;16135:1;16131:12;16126:17;;16101:215;;;16344:6;16335:7;16332:19;16329:186;;;16409:9;16404:3;16400:19;16387:33;16452:48;16494:4;16486:6;16482:17;16471:9;16452:48;:::i;:::-;16444:6;16437:64;16352:163;16329:186;16561:1;16557;16549:6;16545:14;16541:22;16535:4;16528:36;15949:625;;;15912:908;;15522:1304;;;15423:1403;;;:::o;16832:174::-;16972:26;16968:1;16960:6;16956:14;16949:50;16832:174;:::o;17012:366::-;17154:3;17175:67;17239:2;17234:3;17175:67;:::i;:::-;17168:74;;17251:93;17340:3;17251:93;:::i;:::-;17369:2;17364:3;17360:12;17353:19;;17012:366;;;:::o;17384:419::-;17550:4;17588:2;17577:9;17573:18;17565:26;;17637:9;17631:4;17627:20;17623:1;17612:9;17608:17;17601:47;17665:131;17791:4;17665:131;:::i;:::-;17657:139;;17384:419;;;:::o;17809:180::-;17857:77;17854:1;17847:88;17954:4;17951:1;17944:15;17978:4;17975:1;17968:15;17995:305;18035:3;18054:20;18072:1;18054:20;:::i;:::-;18049:25;;18088:20;18106:1;18088:20;:::i;:::-;18083:25;;18242:1;18174:66;18170:74;18167:1;18164:81;18161:107;;;18248:18;;:::i;:::-;18161:107;18292:1;18289;18285:9;18278:16;;17995:305;;;;:::o;18306:181::-;18446:33;18442:1;18434:6;18430:14;18423:57;18306:181;:::o;18493:366::-;18635:3;18656:67;18720:2;18715:3;18656:67;:::i;:::-;18649:74;;18732:93;18821:3;18732:93;:::i;:::-;18850:2;18845:3;18841:12;18834:19;;18493:366;;;:::o;18865:419::-;19031:4;19069:2;19058:9;19054:18;19046:26;;19118:9;19112:4;19108:20;19104:1;19093:9;19089:17;19082:47;19146:131;19272:4;19146:131;:::i;:::-;19138:139;;18865:419;;;:::o;19290:178::-;19430:30;19426:1;19418:6;19414:14;19407:54;19290:178;:::o;19474:366::-;19616:3;19637:67;19701:2;19696:3;19637:67;:::i;:::-;19630:74;;19713:93;19802:3;19713:93;:::i;:::-;19831:2;19826:3;19822:12;19815:19;;19474:366;;;:::o;19846:419::-;20012:4;20050:2;20039:9;20035:18;20027:26;;20099:9;20093:4;20089:20;20085:1;20074:9;20070:17;20063:47;20127:131;20253:4;20127:131;:::i;:::-;20119:139;;19846:419;;;:::o;20271:173::-;20411:25;20407:1;20399:6;20395:14;20388:49;20271:173;:::o;20450:366::-;20592:3;20613:67;20677:2;20672:3;20613:67;:::i;:::-;20606:74;;20689:93;20778:3;20689:93;:::i;:::-;20807:2;20802:3;20798:12;20791:19;;20450:366;;;:::o;20822:419::-;20988:4;21026:2;21015:9;21011:18;21003:26;;21075:9;21069:4;21065:20;21061:1;21050:9;21046:17;21039:47;21103:131;21229:4;21103:131;:::i;:::-;21095:139;;20822:419;;;:::o;21247:220::-;21387:34;21383:1;21375:6;21371:14;21364:58;21456:3;21451:2;21443:6;21439:15;21432:28;21247:220;:::o;21473:366::-;21615:3;21636:67;21700:2;21695:3;21636:67;:::i;:::-;21629:74;;21712:93;21801:3;21712:93;:::i;:::-;21830:2;21825:3;21821:12;21814:19;;21473:366;;;:::o;21845:419::-;22011:4;22049:2;22038:9;22034:18;22026:26;;22098:9;22092:4;22088:20;22084:1;22073:9;22069:17;22062:47;22126:131;22252:4;22126:131;:::i;:::-;22118:139;;21845:419;;;:::o;22270:148::-;22372:11;22409:3;22394:18;;22270:148;;;;:::o;22424:377::-;22530:3;22558:39;22591:5;22558:39;:::i;:::-;22613:89;22695:6;22690:3;22613:89;:::i;:::-;22606:96;;22711:52;22756:6;22751:3;22744:4;22737:5;22733:16;22711:52;:::i;:::-;22788:6;22783:3;22779:16;22772:23;;22534:267;22424:377;;;;:::o;22807:155::-;22947:7;22943:1;22935:6;22931:14;22924:31;22807:155;:::o;22968:400::-;23128:3;23149:84;23231:1;23226:3;23149:84;:::i;:::-;23142:91;;23242:93;23331:3;23242:93;:::i;:::-;23360:1;23355:3;23351:11;23344:18;;22968:400;;;:::o;23374:701::-;23655:3;23677:95;23768:3;23759:6;23677:95;:::i;:::-;23670:102;;23789:95;23880:3;23871:6;23789:95;:::i;:::-;23782:102;;23901:148;24045:3;23901:148;:::i;:::-;23894:155;;24066:3;24059:10;;23374:701;;;;;:::o;24081:225::-;24221:34;24217:1;24209:6;24205:14;24198:58;24290:8;24285:2;24277:6;24273:15;24266:33;24081:225;:::o;24312:366::-;24454:3;24475:67;24539:2;24534:3;24475:67;:::i;:::-;24468:74;;24551:93;24640:3;24551:93;:::i;:::-;24669:2;24664:3;24660:12;24653:19;;24312:366;;;:::o;24684:419::-;24850:4;24888:2;24877:9;24873:18;24865:26;;24937:9;24931:4;24927:20;24923:1;24912:9;24908:17;24901:47;24965:131;25091:4;24965:131;:::i;:::-;24957:139;;24684:419;;;:::o;25109:182::-;25249:34;25245:1;25237:6;25233:14;25226:58;25109:182;:::o;25297:366::-;25439:3;25460:67;25524:2;25519:3;25460:67;:::i;:::-;25453:74;;25536:93;25625:3;25536:93;:::i;:::-;25654:2;25649:3;25645:12;25638:19;;25297:366;;;:::o;25669:419::-;25835:4;25873:2;25862:9;25858:18;25850:26;;25922:9;25916:4;25912:20;25908:1;25897:9;25893:17;25886:47;25950:131;26076:4;25950:131;:::i;:::-;25942:139;;25669:419;;;:::o;26094:98::-;26145:6;26179:5;26173:12;26163:22;;26094:98;;;:::o;26198:168::-;26281:11;26315:6;26310:3;26303:19;26355:4;26350:3;26346:14;26331:29;;26198:168;;;;:::o;26372:360::-;26458:3;26486:38;26518:5;26486:38;:::i;:::-;26540:70;26603:6;26598:3;26540:70;:::i;:::-;26533:77;;26619:52;26664:6;26659:3;26652:4;26645:5;26641:16;26619:52;:::i;:::-;26696:29;26718:6;26696:29;:::i;:::-;26691:3;26687:39;26680:46;;26462:270;26372:360;;;;:::o;26738:640::-;26933:4;26971:3;26960:9;26956:19;26948:27;;26985:71;27053:1;27042:9;27038:17;27029:6;26985:71;:::i;:::-;27066:72;27134:2;27123:9;27119:18;27110:6;27066:72;:::i;:::-;27148;27216:2;27205:9;27201:18;27192:6;27148:72;:::i;:::-;27267:9;27261:4;27257:20;27252:2;27241:9;27237:18;27230:48;27295:76;27366:4;27357:6;27295:76;:::i;:::-;27287:84;;26738:640;;;;;;;:::o;27384:141::-;27440:5;27471:6;27465:13;27456:22;;27487:32;27513:5;27487:32;:::i;:::-;27384:141;;;;:::o;27531:349::-;27600:6;27649:2;27637:9;27628:7;27624:23;27620:32;27617:119;;;27655:79;;:::i;:::-;27617:119;27775:1;27800:63;27855:7;27846:6;27835:9;27831:22;27800:63;:::i;:::-;27790:73;;27746:127;27531:349;;;;:::o;27886:233::-;27925:3;27948:24;27966:5;27948:24;:::i;:::-;27939:33;;27994:66;27987:5;27984:77;27981:103;;28064:18;;:::i;:::-;27981:103;28111:1;28104:5;28100:13;28093:20;;27886:233;;;:::o;28125:180::-;28173:77;28170:1;28163:88;28270:4;28267:1;28260:15;28294:4;28291:1;28284:15;28311:185;28351:1;28368:20;28386:1;28368:20;:::i;:::-;28363:25;;28402:20;28420:1;28402:20;:::i;:::-;28397:25;;28441:1;28431:35;;28446:18;;:::i;:::-;28431:35;28488:1;28485;28481:9;28476:14;;28311:185;;;;:::o;28502:191::-;28542:4;28562:20;28580:1;28562:20;:::i;:::-;28557:25;;28596:20;28614:1;28596:20;:::i;:::-;28591:25;;28635:1;28632;28629:8;28626:34;;;28640:18;;:::i;:::-;28626:34;28685:1;28682;28678:9;28670:17;;28502:191;;;;:::o;28699:176::-;28731:1;28748:20;28766:1;28748:20;:::i;:::-;28743:25;;28782:20;28800:1;28782:20;:::i;:::-;28777:25;;28821:1;28811:35;;28826:18;;:::i;:::-;28811:35;28867:1;28864;28860:9;28855:14;;28699:176;;;;:::o;28881:180::-;28929:77;28926:1;28919:88;29026:4;29023:1;29016:15;29050:4;29047:1;29040:15

Swarm Source

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