ETH Price: $2,213.13 (-10.55%)

Token

Shady WIzards (SHADYWIZARDS)
 

Overview

Max Total Supply

726 SHADYWIZARDS

Holders

143

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 SHADYWIZARDS
0x0000000000000000000000000000000000000000
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:
ShadyWizards

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-16
*/

// 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 (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Returns the 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 virtual 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 (to == address(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 (to == address(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();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        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));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        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/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: contracts/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}
// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: contracts/ShadyWizards.sol



pragma solidity >=0.8.13;






contract ShadyWizards is ERC721A, Ownable, ReentrancyGuard, OperatorFilterer {
  using Strings for uint256;

  uint256 public cost = 0.003 ether;
  uint256 public supply = 5000;
  uint256 public txnLimit = 10;
  uint256 public maxMints = 10;
  uint256 public freeMint = 1;
  string public prerevealUri;
  string public uriPrefix = '';
  string public uriSuffix = '.json';
  bool public revealed = false;
  bool public paused = true;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol
  ) ERC721A(_tokenName, _tokenSymbol) OperatorFilterer(address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6), false) {}

  modifier mintCheck(uint256 _mintAmount) {

    require(!paused, "Brewing of potions is closed.");
    require(_mintAmount > 0 && _mintAmount <= txnLimit, "You can only brew a maximum of 10 potions per transaction.");
    require(tx.origin == msg.sender, "You cannot brew using contracts.");
    require(totalSupply() + _mintAmount <= supply, "No potions are left.");
    require(
      _mintAmount > 0 && numberMinted(msg.sender) + _mintAmount <= maxMints,
       "You may have reached your potions limit, come back another time."
    );
    
    uint256 freeMintNegation = 0;
    
    if (numberMinted(msg.sender) < freeMint) {
      uint256 freeMintLeft = freeMint - numberMinted(msg.sender);
      freeMintNegation = freeMintLeft * cost;
    }
   
    require(msg.value >= cost * _mintAmount - freeMintNegation, "Insufficient funds for brewing.");
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCheck(_mintAmount) {
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= supply, "All potions brewed.");
    _safeMint(_receiver, _mintAmount);
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

    if (revealed == false) {
      return prerevealUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

   function setPrerevealUri(string memory _prerevealUri) public onlyOwner {
    prerevealUri = _prerevealUri;
  }

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

  function setmaxMints(uint256 _maxMints) public onlyOwner {
    maxMints = _maxMints;
  }

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

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

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

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

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

  function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
  }

  function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
  }

  function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
  {
        super.safeTransferFrom(from, to, tokenId, data);
  }

}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prerevealUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_prerevealUri","type":"string"}],"name":"setPrerevealUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMints","type":"uint256"}],"name":"setmaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txnLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660aa87bee538000600a55611388600b55600a600c55600a600d556001600e5560405180602001604052806000815250601090805190602001906200004b92919062000464565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250601190805190602001906200009992919062000464565b506000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550348015620000dd57600080fd5b5060405162004760380380620047608339818101604052810190620001039190620006b1565b733cc6cdda760b79bafa08df41ecfa224f810dceb66000838381600290805190602001906200013492919062000464565b5080600390805190602001906200014d92919062000464565b506200015e6200038d60201b60201c565b6000819055505050620001866200017a6200039660201b60201c565b6200039e60201b60201c565b600160098190555060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200038357801562000249576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200020f9291906200077b565b600060405180830381600087803b1580156200022a57600080fd5b505af11580156200023f573d6000803e3d6000fd5b5050505062000382565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000303576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002c99291906200077b565b600060405180830381600087803b158015620002e457600080fd5b505af1158015620002f9573d6000803e3d6000fd5b5050505062000381565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200034c9190620007a8565b600060405180830381600087803b1580156200036757600080fd5b505af11580156200037c573d6000803e3d6000fd5b505050505b5b5b5050505062000829565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200047290620007f4565b90600052602060002090601f016020900481019282620004965760008555620004e2565b82601f10620004b157805160ff1916838001178555620004e2565b82800160010185558215620004e2579182015b82811115620004e1578251825591602001919060010190620004c4565b5b509050620004f19190620004f5565b5090565b5b8082111562000510576000816000905550600101620004f6565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200057d8262000532565b810181811067ffffffffffffffff821117156200059f576200059e62000543565b5b80604052505050565b6000620005b462000514565b9050620005c2828262000572565b919050565b600067ffffffffffffffff821115620005e557620005e462000543565b5b620005f08262000532565b9050602081019050919050565b60005b838110156200061d57808201518184015260208101905062000600565b838111156200062d576000848401525b50505050565b60006200064a6200064484620005c7565b620005a8565b9050828152602081018484840111156200066957620006686200052d565b5b62000676848285620005fd565b509392505050565b600082601f83011262000696576200069562000528565b5b8151620006a884826020860162000633565b91505092915050565b60008060408385031215620006cb57620006ca6200051e565b5b600083015167ffffffffffffffff811115620006ec57620006eb62000523565b5b620006fa858286016200067e565b925050602083015167ffffffffffffffff8111156200071e576200071d62000523565b5b6200072c858286016200067e565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007638262000736565b9050919050565b620007758162000756565b82525050565b60006040820190506200079260008301856200076a565b620007a160208301846200076a565b9392505050565b6000602082019050620007bf60008301846200076a565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200080d57607f821691505b602082108103620008235762000822620007c5565b5b50919050565b613f2780620008396000396000f3fe6080604052600436106102305760003560e01c80635c975abb1161012e578063a22cb465116100ab578063e0a808531161006f578063e0a808531461080a578063e985e9c514610833578063e9e4d4e114610870578063efbd73f41461089b578063f2fde38b146108c457610230565b8063a22cb46514610713578063b6b6f0c31461073c578063b88d4fde14610767578063c87b56dd14610790578063dc33e681146107cd57610230565b80637ec4a659116100f25780637ec4a6591461064f5780638da5cb5b1461067857806395d89b41146106a35780639a152077146106ce578063a0712d68146106f757610230565b80635c975abb1461056857806362b99ad4146105935780636352211e146105be57806370a08231146105fb578063715018a61461063857610230565b806323b872dd116101bc57806342842e0e1161018057806342842e0e1461049557806344a0d68a146104be57806351830227146104e75780635503a0e8146105125780635b70ea9f1461053d57610230565b806323b872dd146103d65780632822a5a8146103ff5780633ccfd60b146104285780633feb6a6f1461043f57806341f434341461046a57610230565b8063095ea7b311610203578063095ea7b31461030557806313faede61461032e57806316ba10e01461035957806316c38b3c1461038257806318160ddd146103ab57610230565b806301ffc9a714610235578063047fc9aa1461027257806306fdde031461029d578063081812fc146102c8575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612d7d565b6108ed565b6040516102699190612dc5565b60405180910390f35b34801561027e57600080fd5b5061028761097f565b6040516102949190612df9565b60405180910390f35b3480156102a957600080fd5b506102b2610985565b6040516102bf9190612ead565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190612efb565b610a17565b6040516102fc9190612f69565b60405180910390f35b34801561031157600080fd5b5061032c60048036038101906103279190612fb0565b610a93565b005b34801561033a57600080fd5b50610343610aac565b6040516103509190612df9565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190613125565b610ab2565b005b34801561038e57600080fd5b506103a960048036038101906103a4919061319a565b610b48565b005b3480156103b757600080fd5b506103c0610be1565b6040516103cd9190612df9565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f891906131c7565b610bf8565b005b34801561040b57600080fd5b5061042660048036038101906104219190613125565b610c47565b005b34801561043457600080fd5b5061043d610cdd565b005b34801561044b57600080fd5b50610454610e2e565b6040516104619190612df9565b60405180910390f35b34801561047657600080fd5b5061047f610e34565b60405161048c9190613279565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b791906131c7565b610e46565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190612efb565b610e95565b005b3480156104f357600080fd5b506104fc610f1b565b6040516105099190612dc5565b60405180910390f35b34801561051e57600080fd5b50610527610f2e565b6040516105349190612ead565b60405180910390f35b34801561054957600080fd5b50610552610fbc565b60405161055f9190612df9565b60405180910390f35b34801561057457600080fd5b5061057d610fc2565b60405161058a9190612dc5565b60405180910390f35b34801561059f57600080fd5b506105a8610fd5565b6040516105b59190612ead565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190612efb565b611063565b6040516105f29190612f69565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613294565b611075565b60405161062f9190612df9565b60405180910390f35b34801561064457600080fd5b5061064d61112d565b005b34801561065b57600080fd5b5061067660048036038101906106719190613125565b6111b5565b005b34801561068457600080fd5b5061068d61124b565b60405161069a9190612f69565b60405180910390f35b3480156106af57600080fd5b506106b8611275565b6040516106c59190612ead565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190612efb565b611307565b005b610711600480360381019061070c9190612efb565b61138d565b005b34801561071f57600080fd5b5061073a600480360381019061073591906132c1565b611609565b005b34801561074857600080fd5b50610751611622565b60405161075e9190612df9565b60405180910390f35b34801561077357600080fd5b5061078e600480360381019061078991906133a2565b611628565b005b34801561079c57600080fd5b506107b760048036038101906107b29190612efb565b611679565b6040516107c49190612ead565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190613294565b6117d1565b6040516108019190612df9565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c919061319a565b6117e3565b005b34801561083f57600080fd5b5061085a60048036038101906108559190613425565b61187c565b6040516108679190612dc5565b60405180910390f35b34801561087c57600080fd5b50610885611910565b6040516108929190612ead565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613465565b61199e565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613294565b611a7f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109785750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b606060028054610994906134d4565b80601f01602080910402602001604051908101604052809291908181526020018280546109c0906134d4565b8015610a0d5780601f106109e257610100808354040283529160200191610a0d565b820191906000526020600020905b8154815290600101906020018083116109f057829003601f168201915b5050505050905090565b6000610a2282611b76565b610a58576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a9d81611bd5565b610aa78383611cd2565b505050565b600a5481565b610aba611e78565b73ffffffffffffffffffffffffffffffffffffffff16610ad861124b565b73ffffffffffffffffffffffffffffffffffffffff1614610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2590613551565b60405180910390fd5b8060119080519060200190610b44929190612c6e565b5050565b610b50611e78565b73ffffffffffffffffffffffffffffffffffffffff16610b6e61124b565b73ffffffffffffffffffffffffffffffffffffffff1614610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90613551565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6000610beb611e80565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c3657610c3533611bd5565b5b610c41848484611e89565b50505050565b610c4f611e78565b73ffffffffffffffffffffffffffffffffffffffff16610c6d61124b565b73ffffffffffffffffffffffffffffffffffffffff1614610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90613551565b60405180910390fd5b80600f9080519060200190610cd9929190612c6e565b5050565b610ce5611e78565b73ffffffffffffffffffffffffffffffffffffffff16610d0361124b565b73ffffffffffffffffffffffffffffffffffffffff1614610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090613551565b60405180910390fd5b600260095403610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d95906135bd565b60405180910390fd5b60026009819055506000610db061124b565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dd39061360e565b60006040518083038185875af1925050503d8060008114610e10576040519150601f19603f3d011682016040523d82523d6000602084013e610e15565b606091505b5050905080610e2357600080fd5b506001600981905550565b600c5481565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e8457610e8333611bd5565b5b610e8f848484611e99565b50505050565b610e9d611e78565b73ffffffffffffffffffffffffffffffffffffffff16610ebb61124b565b73ffffffffffffffffffffffffffffffffffffffff1614610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890613551565b60405180910390fd5b80600a8190555050565b601260009054906101000a900460ff1681565b60118054610f3b906134d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f67906134d4565b8015610fb45780601f10610f8957610100808354040283529160200191610fb4565b820191906000526020600020905b815481529060010190602001808311610f9757829003601f168201915b505050505081565b600e5481565b601260019054906101000a900460ff1681565b60108054610fe2906134d4565b80601f016020809104026020016040519081016040528092919081815260200182805461100e906134d4565b801561105b5780601f106110305761010080835404028352916020019161105b565b820191906000526020600020905b81548152906001019060200180831161103e57829003601f168201915b505050505081565b600061106e82611eb9565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110dc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611135611e78565b73ffffffffffffffffffffffffffffffffffffffff1661115361124b565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613551565b60405180910390fd5b6111b36000611f85565b565b6111bd611e78565b73ffffffffffffffffffffffffffffffffffffffff166111db61124b565b73ffffffffffffffffffffffffffffffffffffffff1614611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122890613551565b60405180910390fd5b8060109080519060200190611247929190612c6e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611284906134d4565b80601f01602080910402602001604051908101604052809291908181526020018280546112b0906134d4565b80156112fd5780601f106112d2576101008083540402835291602001916112fd565b820191906000526020600020905b8154815290600101906020018083116112e057829003601f168201915b5050505050905090565b61130f611e78565b73ffffffffffffffffffffffffffffffffffffffff1661132d61124b565b73ffffffffffffffffffffffffffffffffffffffff1614611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90613551565b60405180910390fd5b80600d8190555050565b80601260019054906101000a900460ff16156113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d59061366f565b60405180910390fd5b6000811180156113f05750600c548111155b61142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690613701565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461149d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114949061376d565b60405180910390fd5b600b54816114a9610be1565b6114b391906137bc565b11156114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb9061385e565b60405180910390fd5b6000811180156115195750600d548161150c336117d1565b61151691906137bc565b11155b611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f906138f0565b60405180910390fd5b6000600e54611566336117d1565b1015611598576000611577336117d1565b600e546115849190613910565b9050600a54816115949190613944565b9150505b8082600a546115a79190613944565b6115b19190613910565b3410156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea906139ea565b60405180910390fd5b6116046115fe611e78565b8461204b565b505050565b8161161381611bd5565b61161d8383612069565b505050565b600d5481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116665761166533611bd5565b5b611672858585856121e0565b5050505050565b606061168482611b76565b6116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba90613a7c565b60405180910390fd5b60001515601260009054906101000a900460ff1615150361177057600f80546116eb906134d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611717906134d4565b80156117645780601f1061173957610100808354040283529160200191611764565b820191906000526020600020905b81548152906001019060200180831161174757829003601f168201915b505050505090506117cc565b600061177a612253565b9050600081511161179a57604051806020016040528060008152506117c8565b806117a4846122e5565b60116040516020016117b893929190613b6c565b6040516020818303038152906040525b9150505b919050565b60006117dc82612445565b9050919050565b6117eb611e78565b73ffffffffffffffffffffffffffffffffffffffff1661180961124b565b73ffffffffffffffffffffffffffffffffffffffff161461185f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185690613551565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f805461191d906134d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611949906134d4565b80156119965780601f1061196b57610100808354040283529160200191611996565b820191906000526020600020905b81548152906001019060200180831161197957829003601f168201915b505050505081565b6119a6611e78565b73ffffffffffffffffffffffffffffffffffffffff166119c461124b565b73ffffffffffffffffffffffffffffffffffffffff1614611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190613551565b60405180910390fd5b600b5482611a26610be1565b611a3091906137bc565b1115611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6890613be9565b60405180910390fd5b611a7b818361204b565b5050565b611a87611e78565b73ffffffffffffffffffffffffffffffffffffffff16611aa561124b565b73ffffffffffffffffffffffffffffffffffffffff1614611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290613551565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190613c7b565b60405180910390fd5b611b7381611f85565b50565b600081611b81611e80565b11158015611b90575060005482105b8015611bce575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611ccf576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611c4c929190613c9b565b602060405180830381865afa158015611c69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8d9190613cd9565b611cce57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611cc59190612f69565b60405180910390fd5b5b50565b6000611cdd82611eb9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d44576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611d6361249c565b73ffffffffffffffffffffffffffffffffffffffff1614611dc657611d8f81611d8a61249c565b61187c565b611dc5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600033905090565b60006001905090565b611e948383836124a4565b505050565b611eb483838360405180602001604052806000815250611628565b505050565b60008082905080611ec8611e80565b11611f4e57600054811015611f4d5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f4b575b60008103611f41576004600083600190039350838152602001908152602001600020549050611f17565b8092505050611f80565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61206582826040518060200160405280600081525061284b565b5050565b61207161249c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120d5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006120e261249c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661218f61249c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121d49190612dc5565b60405180910390a35050565b6121eb8484846124a4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461224d5761221684848484612afe565b61224c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060108054612262906134d4565b80601f016020809104026020016040519081016040528092919081815260200182805461228e906134d4565b80156122db5780601f106122b0576101008083540402835291602001916122db565b820191906000526020600020905b8154815290600101906020018083116122be57829003601f168201915b5050505050905090565b60606000820361232c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612440565b600082905060005b6000821461235e57808061234790613d06565b915050600a826123579190613d7d565b9150612334565b60008167ffffffffffffffff81111561237a57612379612ffa565b5b6040519080825280601f01601f1916602001820160405280156123ac5781602001600182028036833780820191505090505b5090505b60008514612439576001826123c59190613910565b9150600a856123d49190613dae565b60306123e091906137bc565b60f81b8183815181106123f6576123f5613ddf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124329190613d7d565b94506123b0565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60006124af82611eb9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612516576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661253761249c565b73ffffffffffffffffffffffffffffffffffffffff16148061256657506125658561256061249c565b61187c565b5b806125ab575061257461249c565b73ffffffffffffffffffffffffffffffffffffffff1661259384610a17565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806125e4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361264a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126578585856001612c4e565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61275486612c54565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036127dc57600060018401905060006004600083815260200190815260200160002054036127da5760005481146127d9578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128448585856001612c5e565b5050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128b7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036128f1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128fe6000858386612c4e565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161296360018514612c64565b901b60a042901b61297386612c54565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612a77575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a276000878480600101955087612afe565b612a5d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129b8578260005414612a7257600080fd5b612ae2565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a78575b816000819055505050612af86000858386612c5e565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b2461249c565b8786866040518563ffffffff1660e01b8152600401612b469493929190613e63565b6020604051808303816000875af1925050508015612b8257506040513d601f19601f82011682018060405250810190612b7f9190613ec4565b60015b612bfb573d8060008114612bb2576040519150601f19603f3d011682016040523d82523d6000602084013e612bb7565b606091505b506000815103612bf3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b6000819050919050565b50505050565b6000819050919050565b828054612c7a906134d4565b90600052602060002090601f016020900481019282612c9c5760008555612ce3565b82601f10612cb557805160ff1916838001178555612ce3565b82800160010185558215612ce3579182015b82811115612ce2578251825591602001919060010190612cc7565b5b509050612cf09190612cf4565b5090565b5b80821115612d0d576000816000905550600101612cf5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d5a81612d25565b8114612d6557600080fd5b50565b600081359050612d7781612d51565b92915050565b600060208284031215612d9357612d92612d1b565b5b6000612da184828501612d68565b91505092915050565b60008115159050919050565b612dbf81612daa565b82525050565b6000602082019050612dda6000830184612db6565b92915050565b6000819050919050565b612df381612de0565b82525050565b6000602082019050612e0e6000830184612dea565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e4e578082015181840152602081019050612e33565b83811115612e5d576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e7f82612e14565b612e898185612e1f565b9350612e99818560208601612e30565b612ea281612e63565b840191505092915050565b60006020820190508181036000830152612ec78184612e74565b905092915050565b612ed881612de0565b8114612ee357600080fd5b50565b600081359050612ef581612ecf565b92915050565b600060208284031215612f1157612f10612d1b565b5b6000612f1f84828501612ee6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f5382612f28565b9050919050565b612f6381612f48565b82525050565b6000602082019050612f7e6000830184612f5a565b92915050565b612f8d81612f48565b8114612f9857600080fd5b50565b600081359050612faa81612f84565b92915050565b60008060408385031215612fc757612fc6612d1b565b5b6000612fd585828601612f9b565b9250506020612fe685828601612ee6565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61303282612e63565b810181811067ffffffffffffffff8211171561305157613050612ffa565b5b80604052505050565b6000613064612d11565b90506130708282613029565b919050565b600067ffffffffffffffff8211156130905761308f612ffa565b5b61309982612e63565b9050602081019050919050565b82818337600083830152505050565b60006130c86130c384613075565b61305a565b9050828152602081018484840111156130e4576130e3612ff5565b5b6130ef8482856130a6565b509392505050565b600082601f83011261310c5761310b612ff0565b5b813561311c8482602086016130b5565b91505092915050565b60006020828403121561313b5761313a612d1b565b5b600082013567ffffffffffffffff81111561315957613158612d20565b5b613165848285016130f7565b91505092915050565b61317781612daa565b811461318257600080fd5b50565b6000813590506131948161316e565b92915050565b6000602082840312156131b0576131af612d1b565b5b60006131be84828501613185565b91505092915050565b6000806000606084860312156131e0576131df612d1b565b5b60006131ee86828701612f9b565b93505060206131ff86828701612f9b565b925050604061321086828701612ee6565b9150509250925092565b6000819050919050565b600061323f61323a61323584612f28565b61321a565b612f28565b9050919050565b600061325182613224565b9050919050565b600061326382613246565b9050919050565b61327381613258565b82525050565b600060208201905061328e600083018461326a565b92915050565b6000602082840312156132aa576132a9612d1b565b5b60006132b884828501612f9b565b91505092915050565b600080604083850312156132d8576132d7612d1b565b5b60006132e685828601612f9b565b92505060206132f785828601613185565b9150509250929050565b600067ffffffffffffffff82111561331c5761331b612ffa565b5b61332582612e63565b9050602081019050919050565b600061334561334084613301565b61305a565b90508281526020810184848401111561336157613360612ff5565b5b61336c8482856130a6565b509392505050565b600082601f83011261338957613388612ff0565b5b8135613399848260208601613332565b91505092915050565b600080600080608085870312156133bc576133bb612d1b565b5b60006133ca87828801612f9b565b94505060206133db87828801612f9b565b93505060406133ec87828801612ee6565b925050606085013567ffffffffffffffff81111561340d5761340c612d20565b5b61341987828801613374565b91505092959194509250565b6000806040838503121561343c5761343b612d1b565b5b600061344a85828601612f9b565b925050602061345b85828601612f9b565b9150509250929050565b6000806040838503121561347c5761347b612d1b565b5b600061348a85828601612ee6565b925050602061349b85828601612f9b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134ec57607f821691505b6020821081036134ff576134fe6134a5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061353b602083612e1f565b915061354682613505565b602082019050919050565b6000602082019050818103600083015261356a8161352e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006135a7601f83612e1f565b91506135b282613571565b602082019050919050565b600060208201905081810360008301526135d68161359a565b9050919050565b600081905092915050565b50565b60006135f86000836135dd565b9150613603826135e8565b600082019050919050565b6000613619826135eb565b9150819050919050565b7f42726577696e67206f6620706f74696f6e7320697320636c6f7365642e000000600082015250565b6000613659601d83612e1f565b915061366482613623565b602082019050919050565b600060208201905081810360008301526136888161364c565b9050919050565b7f596f752063616e206f6e6c7920627265772061206d6178696d756d206f66203160008201527f3020706f74696f6e7320706572207472616e73616374696f6e2e000000000000602082015250565b60006136eb603a83612e1f565b91506136f68261368f565b604082019050919050565b6000602082019050818103600083015261371a816136de565b9050919050565b7f596f752063616e6e6f742062726577207573696e6720636f6e7472616374732e600082015250565b6000613757602083612e1f565b915061376282613721565b602082019050919050565b600060208201905081810360008301526137868161374a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137c782612de0565b91506137d283612de0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138075761380661378d565b5b828201905092915050565b7f4e6f20706f74696f6e7320617265206c6566742e000000000000000000000000600082015250565b6000613848601483612e1f565b915061385382613812565b602082019050919050565b600060208201905081810360008301526138778161383b565b9050919050565b7f596f75206d61792068617665207265616368656420796f757220706f74696f6e60008201527f73206c696d69742c20636f6d65206261636b20616e6f746865722074696d652e602082015250565b60006138da604083612e1f565b91506138e58261387e565b604082019050919050565b60006020820190508181036000830152613909816138cd565b9050919050565b600061391b82612de0565b915061392683612de0565b9250828210156139395761393861378d565b5b828203905092915050565b600061394f82612de0565b915061395a83612de0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139935761399261378d565b5b828202905092915050565b7f496e73756666696369656e742066756e647320666f722062726577696e672e00600082015250565b60006139d4601f83612e1f565b91506139df8261399e565b602082019050919050565b60006020820190508181036000830152613a03816139c7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a66602f83612e1f565b9150613a7182613a0a565b604082019050919050565b60006020820190508181036000830152613a9581613a59565b9050919050565b600081905092915050565b6000613ab282612e14565b613abc8185613a9c565b9350613acc818560208601612e30565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613afa816134d4565b613b048186613a9c565b94506001821660008114613b1f5760018114613b3057613b63565b60ff19831686528186019350613b63565b613b3985613ad8565b60005b83811015613b5b57815481890152600182019150602081019050613b3c565b838801955050505b50505092915050565b6000613b788286613aa7565b9150613b848285613aa7565b9150613b908284613aed565b9150819050949350505050565b7f416c6c20706f74696f6e73206272657765642e00000000000000000000000000600082015250565b6000613bd3601383612e1f565b9150613bde82613b9d565b602082019050919050565b60006020820190508181036000830152613c0281613bc6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c65602683612e1f565b9150613c7082613c09565b604082019050919050565b60006020820190508181036000830152613c9481613c58565b9050919050565b6000604082019050613cb06000830185612f5a565b613cbd6020830184612f5a565b9392505050565b600081519050613cd38161316e565b92915050565b600060208284031215613cef57613cee612d1b565b5b6000613cfd84828501613cc4565b91505092915050565b6000613d1182612de0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d4357613d4261378d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d8882612de0565b9150613d9383612de0565b925082613da357613da2613d4e565b5b828204905092915050565b6000613db982612de0565b9150613dc483612de0565b925082613dd457613dd3613d4e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613e3582613e0e565b613e3f8185613e19565b9350613e4f818560208601612e30565b613e5881612e63565b840191505092915050565b6000608082019050613e786000830187612f5a565b613e856020830186612f5a565b613e926040830185612dea565b8181036060830152613ea48184613e2a565b905095945050505050565b600081519050613ebe81612d51565b92915050565b600060208284031215613eda57613ed9612d1b565b5b6000613ee884828501613eaf565b9150509291505056fea2646970667358221220d8041b8375163aec200a367207a689d61835b8a5ad45f1dd4750cbb69cc3258664736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d53686164792057497a6172647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c534841445957495a415244530000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80635c975abb1161012e578063a22cb465116100ab578063e0a808531161006f578063e0a808531461080a578063e985e9c514610833578063e9e4d4e114610870578063efbd73f41461089b578063f2fde38b146108c457610230565b8063a22cb46514610713578063b6b6f0c31461073c578063b88d4fde14610767578063c87b56dd14610790578063dc33e681146107cd57610230565b80637ec4a659116100f25780637ec4a6591461064f5780638da5cb5b1461067857806395d89b41146106a35780639a152077146106ce578063a0712d68146106f757610230565b80635c975abb1461056857806362b99ad4146105935780636352211e146105be57806370a08231146105fb578063715018a61461063857610230565b806323b872dd116101bc57806342842e0e1161018057806342842e0e1461049557806344a0d68a146104be57806351830227146104e75780635503a0e8146105125780635b70ea9f1461053d57610230565b806323b872dd146103d65780632822a5a8146103ff5780633ccfd60b146104285780633feb6a6f1461043f57806341f434341461046a57610230565b8063095ea7b311610203578063095ea7b31461030557806313faede61461032e57806316ba10e01461035957806316c38b3c1461038257806318160ddd146103ab57610230565b806301ffc9a714610235578063047fc9aa1461027257806306fdde031461029d578063081812fc146102c8575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612d7d565b6108ed565b6040516102699190612dc5565b60405180910390f35b34801561027e57600080fd5b5061028761097f565b6040516102949190612df9565b60405180910390f35b3480156102a957600080fd5b506102b2610985565b6040516102bf9190612ead565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190612efb565b610a17565b6040516102fc9190612f69565b60405180910390f35b34801561031157600080fd5b5061032c60048036038101906103279190612fb0565b610a93565b005b34801561033a57600080fd5b50610343610aac565b6040516103509190612df9565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190613125565b610ab2565b005b34801561038e57600080fd5b506103a960048036038101906103a4919061319a565b610b48565b005b3480156103b757600080fd5b506103c0610be1565b6040516103cd9190612df9565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f891906131c7565b610bf8565b005b34801561040b57600080fd5b5061042660048036038101906104219190613125565b610c47565b005b34801561043457600080fd5b5061043d610cdd565b005b34801561044b57600080fd5b50610454610e2e565b6040516104619190612df9565b60405180910390f35b34801561047657600080fd5b5061047f610e34565b60405161048c9190613279565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b791906131c7565b610e46565b005b3480156104ca57600080fd5b506104e560048036038101906104e09190612efb565b610e95565b005b3480156104f357600080fd5b506104fc610f1b565b6040516105099190612dc5565b60405180910390f35b34801561051e57600080fd5b50610527610f2e565b6040516105349190612ead565b60405180910390f35b34801561054957600080fd5b50610552610fbc565b60405161055f9190612df9565b60405180910390f35b34801561057457600080fd5b5061057d610fc2565b60405161058a9190612dc5565b60405180910390f35b34801561059f57600080fd5b506105a8610fd5565b6040516105b59190612ead565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190612efb565b611063565b6040516105f29190612f69565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613294565b611075565b60405161062f9190612df9565b60405180910390f35b34801561064457600080fd5b5061064d61112d565b005b34801561065b57600080fd5b5061067660048036038101906106719190613125565b6111b5565b005b34801561068457600080fd5b5061068d61124b565b60405161069a9190612f69565b60405180910390f35b3480156106af57600080fd5b506106b8611275565b6040516106c59190612ead565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190612efb565b611307565b005b610711600480360381019061070c9190612efb565b61138d565b005b34801561071f57600080fd5b5061073a600480360381019061073591906132c1565b611609565b005b34801561074857600080fd5b50610751611622565b60405161075e9190612df9565b60405180910390f35b34801561077357600080fd5b5061078e600480360381019061078991906133a2565b611628565b005b34801561079c57600080fd5b506107b760048036038101906107b29190612efb565b611679565b6040516107c49190612ead565b60405180910390f35b3480156107d957600080fd5b506107f460048036038101906107ef9190613294565b6117d1565b6040516108019190612df9565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c919061319a565b6117e3565b005b34801561083f57600080fd5b5061085a60048036038101906108559190613425565b61187c565b6040516108679190612dc5565b60405180910390f35b34801561087c57600080fd5b50610885611910565b6040516108929190612ead565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613465565b61199e565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613294565b611a7f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109785750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b606060028054610994906134d4565b80601f01602080910402602001604051908101604052809291908181526020018280546109c0906134d4565b8015610a0d5780601f106109e257610100808354040283529160200191610a0d565b820191906000526020600020905b8154815290600101906020018083116109f057829003601f168201915b5050505050905090565b6000610a2282611b76565b610a58576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610a9d81611bd5565b610aa78383611cd2565b505050565b600a5481565b610aba611e78565b73ffffffffffffffffffffffffffffffffffffffff16610ad861124b565b73ffffffffffffffffffffffffffffffffffffffff1614610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2590613551565b60405180910390fd5b8060119080519060200190610b44929190612c6e565b5050565b610b50611e78565b73ffffffffffffffffffffffffffffffffffffffff16610b6e61124b565b73ffffffffffffffffffffffffffffffffffffffff1614610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90613551565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b6000610beb611e80565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c3657610c3533611bd5565b5b610c41848484611e89565b50505050565b610c4f611e78565b73ffffffffffffffffffffffffffffffffffffffff16610c6d61124b565b73ffffffffffffffffffffffffffffffffffffffff1614610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90613551565b60405180910390fd5b80600f9080519060200190610cd9929190612c6e565b5050565b610ce5611e78565b73ffffffffffffffffffffffffffffffffffffffff16610d0361124b565b73ffffffffffffffffffffffffffffffffffffffff1614610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090613551565b60405180910390fd5b600260095403610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d95906135bd565b60405180910390fd5b60026009819055506000610db061124b565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dd39061360e565b60006040518083038185875af1925050503d8060008114610e10576040519150601f19603f3d011682016040523d82523d6000602084013e610e15565b606091505b5050905080610e2357600080fd5b506001600981905550565b600c5481565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e8457610e8333611bd5565b5b610e8f848484611e99565b50505050565b610e9d611e78565b73ffffffffffffffffffffffffffffffffffffffff16610ebb61124b565b73ffffffffffffffffffffffffffffffffffffffff1614610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890613551565b60405180910390fd5b80600a8190555050565b601260009054906101000a900460ff1681565b60118054610f3b906134d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f67906134d4565b8015610fb45780601f10610f8957610100808354040283529160200191610fb4565b820191906000526020600020905b815481529060010190602001808311610f9757829003601f168201915b505050505081565b600e5481565b601260019054906101000a900460ff1681565b60108054610fe2906134d4565b80601f016020809104026020016040519081016040528092919081815260200182805461100e906134d4565b801561105b5780601f106110305761010080835404028352916020019161105b565b820191906000526020600020905b81548152906001019060200180831161103e57829003601f168201915b505050505081565b600061106e82611eb9565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110dc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611135611e78565b73ffffffffffffffffffffffffffffffffffffffff1661115361124b565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613551565b60405180910390fd5b6111b36000611f85565b565b6111bd611e78565b73ffffffffffffffffffffffffffffffffffffffff166111db61124b565b73ffffffffffffffffffffffffffffffffffffffff1614611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122890613551565b60405180910390fd5b8060109080519060200190611247929190612c6e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611284906134d4565b80601f01602080910402602001604051908101604052809291908181526020018280546112b0906134d4565b80156112fd5780601f106112d2576101008083540402835291602001916112fd565b820191906000526020600020905b8154815290600101906020018083116112e057829003601f168201915b5050505050905090565b61130f611e78565b73ffffffffffffffffffffffffffffffffffffffff1661132d61124b565b73ffffffffffffffffffffffffffffffffffffffff1614611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90613551565b60405180910390fd5b80600d8190555050565b80601260019054906101000a900460ff16156113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d59061366f565b60405180910390fd5b6000811180156113f05750600c548111155b61142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690613701565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461149d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114949061376d565b60405180910390fd5b600b54816114a9610be1565b6114b391906137bc565b11156114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb9061385e565b60405180910390fd5b6000811180156115195750600d548161150c336117d1565b61151691906137bc565b11155b611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f906138f0565b60405180910390fd5b6000600e54611566336117d1565b1015611598576000611577336117d1565b600e546115849190613910565b9050600a54816115949190613944565b9150505b8082600a546115a79190613944565b6115b19190613910565b3410156115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea906139ea565b60405180910390fd5b6116046115fe611e78565b8461204b565b505050565b8161161381611bd5565b61161d8383612069565b505050565b600d5481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116665761166533611bd5565b5b611672858585856121e0565b5050505050565b606061168482611b76565b6116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba90613a7c565b60405180910390fd5b60001515601260009054906101000a900460ff1615150361177057600f80546116eb906134d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611717906134d4565b80156117645780601f1061173957610100808354040283529160200191611764565b820191906000526020600020905b81548152906001019060200180831161174757829003601f168201915b505050505090506117cc565b600061177a612253565b9050600081511161179a57604051806020016040528060008152506117c8565b806117a4846122e5565b60116040516020016117b893929190613b6c565b6040516020818303038152906040525b9150505b919050565b60006117dc82612445565b9050919050565b6117eb611e78565b73ffffffffffffffffffffffffffffffffffffffff1661180961124b565b73ffffffffffffffffffffffffffffffffffffffff161461185f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185690613551565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f805461191d906134d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611949906134d4565b80156119965780601f1061196b57610100808354040283529160200191611996565b820191906000526020600020905b81548152906001019060200180831161197957829003601f168201915b505050505081565b6119a6611e78565b73ffffffffffffffffffffffffffffffffffffffff166119c461124b565b73ffffffffffffffffffffffffffffffffffffffff1614611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190613551565b60405180910390fd5b600b5482611a26610be1565b611a3091906137bc565b1115611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6890613be9565b60405180910390fd5b611a7b818361204b565b5050565b611a87611e78565b73ffffffffffffffffffffffffffffffffffffffff16611aa561124b565b73ffffffffffffffffffffffffffffffffffffffff1614611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290613551565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190613c7b565b60405180910390fd5b611b7381611f85565b50565b600081611b81611e80565b11158015611b90575060005482105b8015611bce575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611ccf576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611c4c929190613c9b565b602060405180830381865afa158015611c69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8d9190613cd9565b611cce57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611cc59190612f69565b60405180910390fd5b5b50565b6000611cdd82611eb9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d44576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611d6361249c565b73ffffffffffffffffffffffffffffffffffffffff1614611dc657611d8f81611d8a61249c565b61187c565b611dc5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600033905090565b60006001905090565b611e948383836124a4565b505050565b611eb483838360405180602001604052806000815250611628565b505050565b60008082905080611ec8611e80565b11611f4e57600054811015611f4d5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f4b575b60008103611f41576004600083600190039350838152602001908152602001600020549050611f17565b8092505050611f80565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61206582826040518060200160405280600081525061284b565b5050565b61207161249c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120d5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006120e261249c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661218f61249c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121d49190612dc5565b60405180910390a35050565b6121eb8484846124a4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461224d5761221684848484612afe565b61224c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060108054612262906134d4565b80601f016020809104026020016040519081016040528092919081815260200182805461228e906134d4565b80156122db5780601f106122b0576101008083540402835291602001916122db565b820191906000526020600020905b8154815290600101906020018083116122be57829003601f168201915b5050505050905090565b60606000820361232c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612440565b600082905060005b6000821461235e57808061234790613d06565b915050600a826123579190613d7d565b9150612334565b60008167ffffffffffffffff81111561237a57612379612ffa565b5b6040519080825280601f01601f1916602001820160405280156123ac5781602001600182028036833780820191505090505b5090505b60008514612439576001826123c59190613910565b9150600a856123d49190613dae565b60306123e091906137bc565b60f81b8183815181106123f6576123f5613ddf565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124329190613d7d565b94506123b0565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60006124af82611eb9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612516576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661253761249c565b73ffffffffffffffffffffffffffffffffffffffff16148061256657506125658561256061249c565b61187c565b5b806125ab575061257461249c565b73ffffffffffffffffffffffffffffffffffffffff1661259384610a17565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806125e4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361264a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126578585856001612c4e565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61275486612c54565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036127dc57600060018401905060006004600083815260200190815260200160002054036127da5760005481146127d9578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128448585856001612c5e565b5050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036128b7576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083036128f1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128fe6000858386612c4e565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161296360018514612c64565b901b60a042901b61297386612c54565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612a77575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a276000878480600101955087612afe565b612a5d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129b8578260005414612a7257600080fd5b612ae2565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a78575b816000819055505050612af86000858386612c5e565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b2461249c565b8786866040518563ffffffff1660e01b8152600401612b469493929190613e63565b6020604051808303816000875af1925050508015612b8257506040513d601f19601f82011682018060405250810190612b7f9190613ec4565b60015b612bfb573d8060008114612bb2576040519150601f19603f3d011682016040523d82523d6000602084013e612bb7565b606091505b506000815103612bf3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b6000819050919050565b50505050565b6000819050919050565b828054612c7a906134d4565b90600052602060002090601f016020900481019282612c9c5760008555612ce3565b82601f10612cb557805160ff1916838001178555612ce3565b82800160010185558215612ce3579182015b82811115612ce2578251825591602001919060010190612cc7565b5b509050612cf09190612cf4565b5090565b5b80821115612d0d576000816000905550600101612cf5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d5a81612d25565b8114612d6557600080fd5b50565b600081359050612d7781612d51565b92915050565b600060208284031215612d9357612d92612d1b565b5b6000612da184828501612d68565b91505092915050565b60008115159050919050565b612dbf81612daa565b82525050565b6000602082019050612dda6000830184612db6565b92915050565b6000819050919050565b612df381612de0565b82525050565b6000602082019050612e0e6000830184612dea565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e4e578082015181840152602081019050612e33565b83811115612e5d576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e7f82612e14565b612e898185612e1f565b9350612e99818560208601612e30565b612ea281612e63565b840191505092915050565b60006020820190508181036000830152612ec78184612e74565b905092915050565b612ed881612de0565b8114612ee357600080fd5b50565b600081359050612ef581612ecf565b92915050565b600060208284031215612f1157612f10612d1b565b5b6000612f1f84828501612ee6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f5382612f28565b9050919050565b612f6381612f48565b82525050565b6000602082019050612f7e6000830184612f5a565b92915050565b612f8d81612f48565b8114612f9857600080fd5b50565b600081359050612faa81612f84565b92915050565b60008060408385031215612fc757612fc6612d1b565b5b6000612fd585828601612f9b565b9250506020612fe685828601612ee6565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61303282612e63565b810181811067ffffffffffffffff8211171561305157613050612ffa565b5b80604052505050565b6000613064612d11565b90506130708282613029565b919050565b600067ffffffffffffffff8211156130905761308f612ffa565b5b61309982612e63565b9050602081019050919050565b82818337600083830152505050565b60006130c86130c384613075565b61305a565b9050828152602081018484840111156130e4576130e3612ff5565b5b6130ef8482856130a6565b509392505050565b600082601f83011261310c5761310b612ff0565b5b813561311c8482602086016130b5565b91505092915050565b60006020828403121561313b5761313a612d1b565b5b600082013567ffffffffffffffff81111561315957613158612d20565b5b613165848285016130f7565b91505092915050565b61317781612daa565b811461318257600080fd5b50565b6000813590506131948161316e565b92915050565b6000602082840312156131b0576131af612d1b565b5b60006131be84828501613185565b91505092915050565b6000806000606084860312156131e0576131df612d1b565b5b60006131ee86828701612f9b565b93505060206131ff86828701612f9b565b925050604061321086828701612ee6565b9150509250925092565b6000819050919050565b600061323f61323a61323584612f28565b61321a565b612f28565b9050919050565b600061325182613224565b9050919050565b600061326382613246565b9050919050565b61327381613258565b82525050565b600060208201905061328e600083018461326a565b92915050565b6000602082840312156132aa576132a9612d1b565b5b60006132b884828501612f9b565b91505092915050565b600080604083850312156132d8576132d7612d1b565b5b60006132e685828601612f9b565b92505060206132f785828601613185565b9150509250929050565b600067ffffffffffffffff82111561331c5761331b612ffa565b5b61332582612e63565b9050602081019050919050565b600061334561334084613301565b61305a565b90508281526020810184848401111561336157613360612ff5565b5b61336c8482856130a6565b509392505050565b600082601f83011261338957613388612ff0565b5b8135613399848260208601613332565b91505092915050565b600080600080608085870312156133bc576133bb612d1b565b5b60006133ca87828801612f9b565b94505060206133db87828801612f9b565b93505060406133ec87828801612ee6565b925050606085013567ffffffffffffffff81111561340d5761340c612d20565b5b61341987828801613374565b91505092959194509250565b6000806040838503121561343c5761343b612d1b565b5b600061344a85828601612f9b565b925050602061345b85828601612f9b565b9150509250929050565b6000806040838503121561347c5761347b612d1b565b5b600061348a85828601612ee6565b925050602061349b85828601612f9b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134ec57607f821691505b6020821081036134ff576134fe6134a5565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061353b602083612e1f565b915061354682613505565b602082019050919050565b6000602082019050818103600083015261356a8161352e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006135a7601f83612e1f565b91506135b282613571565b602082019050919050565b600060208201905081810360008301526135d68161359a565b9050919050565b600081905092915050565b50565b60006135f86000836135dd565b9150613603826135e8565b600082019050919050565b6000613619826135eb565b9150819050919050565b7f42726577696e67206f6620706f74696f6e7320697320636c6f7365642e000000600082015250565b6000613659601d83612e1f565b915061366482613623565b602082019050919050565b600060208201905081810360008301526136888161364c565b9050919050565b7f596f752063616e206f6e6c7920627265772061206d6178696d756d206f66203160008201527f3020706f74696f6e7320706572207472616e73616374696f6e2e000000000000602082015250565b60006136eb603a83612e1f565b91506136f68261368f565b604082019050919050565b6000602082019050818103600083015261371a816136de565b9050919050565b7f596f752063616e6e6f742062726577207573696e6720636f6e7472616374732e600082015250565b6000613757602083612e1f565b915061376282613721565b602082019050919050565b600060208201905081810360008301526137868161374a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137c782612de0565b91506137d283612de0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138075761380661378d565b5b828201905092915050565b7f4e6f20706f74696f6e7320617265206c6566742e000000000000000000000000600082015250565b6000613848601483612e1f565b915061385382613812565b602082019050919050565b600060208201905081810360008301526138778161383b565b9050919050565b7f596f75206d61792068617665207265616368656420796f757220706f74696f6e60008201527f73206c696d69742c20636f6d65206261636b20616e6f746865722074696d652e602082015250565b60006138da604083612e1f565b91506138e58261387e565b604082019050919050565b60006020820190508181036000830152613909816138cd565b9050919050565b600061391b82612de0565b915061392683612de0565b9250828210156139395761393861378d565b5b828203905092915050565b600061394f82612de0565b915061395a83612de0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139935761399261378d565b5b828202905092915050565b7f496e73756666696369656e742066756e647320666f722062726577696e672e00600082015250565b60006139d4601f83612e1f565b91506139df8261399e565b602082019050919050565b60006020820190508181036000830152613a03816139c7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a66602f83612e1f565b9150613a7182613a0a565b604082019050919050565b60006020820190508181036000830152613a9581613a59565b9050919050565b600081905092915050565b6000613ab282612e14565b613abc8185613a9c565b9350613acc818560208601612e30565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613afa816134d4565b613b048186613a9c565b94506001821660008114613b1f5760018114613b3057613b63565b60ff19831686528186019350613b63565b613b3985613ad8565b60005b83811015613b5b57815481890152600182019150602081019050613b3c565b838801955050505b50505092915050565b6000613b788286613aa7565b9150613b848285613aa7565b9150613b908284613aed565b9150819050949350505050565b7f416c6c20706f74696f6e73206272657765642e00000000000000000000000000600082015250565b6000613bd3601383612e1f565b9150613bde82613b9d565b602082019050919050565b60006020820190508181036000830152613c0281613bc6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c65602683612e1f565b9150613c7082613c09565b604082019050919050565b60006020820190508181036000830152613c9481613c58565b9050919050565b6000604082019050613cb06000830185612f5a565b613cbd6020830184612f5a565b9392505050565b600081519050613cd38161316e565b92915050565b600060208284031215613cef57613cee612d1b565b5b6000613cfd84828501613cc4565b91505092915050565b6000613d1182612de0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d4357613d4261378d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d8882612de0565b9150613d9383612de0565b925082613da357613da2613d4e565b5b828204905092915050565b6000613db982612de0565b9150613dc483612de0565b925082613dd457613dd3613d4e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613e3582613e0e565b613e3f8185613e19565b9350613e4f818560208601612e30565b613e5881612e63565b840191505092915050565b6000608082019050613e786000830187612f5a565b613e856020830186612f5a565b613e926040830185612dea565b8181036060830152613ea48184613e2a565b905095945050505050565b600081519050613ebe81612d51565b92915050565b600060208284031215613eda57613ed9612d1b565b5b6000613ee884828501613eaf565b9150509291505056fea2646970667358221220d8041b8375163aec200a367207a689d61835b8a5ad45f1dd4750cbb69cc3258664736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d53686164792057497a6172647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c534841445957495a415244530000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Shady WIzards
Arg [1] : _tokenSymbol (string): SHADYWIZARDS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 53686164792057497a6172647300000000000000000000000000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 534841445957495a415244530000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51647:4413:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13051:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51799:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18064:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20140:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55328:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51761:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54641:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54356:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12105:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55489:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54238:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54747:172;;;;;;;;;;;;;:::i;:::-;;51832:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49560:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55656:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54070:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52032:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51994:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51898:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52065:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51961:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17853:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13730:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40894:103;;;;;;;;;;;;;:::i;:::-;;54535:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40243:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18233:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54439:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53184:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55148:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51865:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55831:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53624:440;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54925:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54150:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20795:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51930:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53314:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41152:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13051:615;13136:4;13451:10;13436:25;;:11;:25;;;;:102;;;;13528:10;13513:25;;:11;:25;;;;13436:102;:179;;;;13605:10;13590:25;;:11;:25;;;;13436:179;13416:199;;13051:615;;;:::o;51799:28::-;;;;:::o;18064:100::-;18118:13;18151:5;18144:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18064:100;:::o;20140:204::-;20208:7;20233:16;20241:7;20233;:16::i;:::-;20228:64;;20258:34;;;;;;;;;;;;;;20228:64;20312:15;:24;20328:7;20312:24;;;;;;;;;;;;;;;;;;;;;20305:31;;20140:204;;;:::o;55328:155::-;55424:8;51081:30;51102:8;51081:20;:30::i;:::-;55445:32:::1;55459:8;55469:7;55445:13;:32::i;:::-;55328:155:::0;;;:::o;51761:33::-;;;;:::o;54641:100::-;40474:12;:10;:12::i;:::-;40463:23;;:7;:5;:7::i;:::-;:23;;;40455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54725:10:::1;54713:9;:22;;;;;;;;;;;;:::i;:::-;;54641:100:::0;:::o;54356:77::-;40474:12;:10;:12::i;:::-;40463:23;;:7;:5;:7::i;:::-;:23;;;40455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54421:6:::1;54412;;:15;;;;;;;;;;;;;;;;;;54356:77:::0;:::o;12105:315::-;12158:7;12386:15;:13;:15::i;:::-;12371:12;;12355:13;;:28;:46;12348:53;;12105:315;:::o;55489:161::-;55590:4;50909:10;50901:18;;:4;:18;;;50897:83;;50936:32;50957:10;50936:20;:32::i;:::-;50897:83;55607:37:::1;55626:4;55632:2;55636:7;55607:18;:37::i;:::-;55489:161:::0;;;;:::o;54238:112::-;40474:12;:10;:12::i;:::-;40463:23;;:7;:5;:7::i;:::-;:23;;;40455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54331:13:::1;54316:12;:28;;;;;;;;;;;;:::i;:::-;;54238:112:::0;:::o;54747:172::-;40474:12;:10;:12::i;:::-;40463:23;;:7;:5;:7::i;:::-;:23;;;40455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45600:1:::1;46198:7;;:19:::0;46190:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;45600:1;46331:7;:18;;;;54805::::2;54837:7;:5;:7::i;:::-;54829:21;;54858;54829:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54804:80;;;54899:13;54891:22;;;::::0;::::2;;54797:122;45556:1:::1;46510:7;:22;;;;54747:172::o:0;51832:28::-;;;;:::o;49560:143::-;49660:42;49560:143;:::o;55656:169::-;55761:4;50909:10;50901:18;;:4;:18;;;50897:83;;50936:32;50957:10;50936:20;:32::i;:::-;50897:83;55778:41:::1;55801:4;55807:2;55811:7;55778:22;:41::i;:::-;55656:169:::0;;;;:::o;54070:74::-;40474:12;:10;:12::i;:::-;40463:23;;:7;:5;:7::i;:::-;:23;;;40455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54133:5:::1;54126:4;:12;;;;54070:74:::0;:::o;52032:28::-;;;;;;;;;;;;;:::o;51994:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51898:27::-;;;;:::o;52065:25::-;;;;;;;;;;;;;:::o;51961:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17853:144::-;17917:7;17960:27;17979:7;17960:18;:27::i;:::-;17937:52;;17853:144;;;:::o;13730:224::-;13794:7;13835:1;13818:19;;:5;:19;;;13814:60;;13846:28;;;;;;;;;;;;;;13814:60;9069:13;13892:18;:25;13911:5;13892:25;;;;;;;;;;;;;;;;:54;13885:61;;13730:224;;;:::o;40894:103::-;40474:12;:10;:12::i;:::-;40463:23;;:7;:5;:7::i;:::-;:23;;;40455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40959:30:::1;40986:1;40959:18;:30::i;:::-;40894:103::o:0;54535:100::-;40474:12;:10;:12::i;:::-;40463:23;;:7;:5;:7::i;:::-;:23;;;40455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54619:10:::1;54607:9;:22;;;;;;;;;;;;:::i;:::-;;54535:100:::0;:::o;40243:87::-;40289:7;40316:6;;;;;;;;;;;40309:13;;40243:87;:::o;18233:104::-;18289:13;18322:7;18315:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18233:104;:::o;54439:90::-;40474:12;:10;:12::i;:::-;40463:23;;:7;:5;:7::i;:::-;:23;;;40455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54514:9:::1;54503:8;:20;;;;54439:90:::0;:::o;53184:122::-;53244:11;52355:6;;;;;;;;;;;52354:7;52346:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;52424:1;52410:11;:15;:42;;;;;52444:8;;52429:11;:23;;52410:42;52402:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;52543:10;52530:23;;:9;:23;;;52522:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52636:6;;52621:11;52605:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:37;;52597:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;52704:1;52690:11;:15;:69;;;;;52751:8;;52736:11;52709:24;52722:10;52709:12;:24::i;:::-;:38;;;;:::i;:::-;:50;;52690:69;52674:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;52855:24;52927:8;;52900:24;52913:10;52900:12;:24::i;:::-;:35;52896:163;;;52946:20;52980:24;52993:10;52980:12;:24::i;:::-;52969:8;;:35;;;;:::i;:::-;52946:58;;53047:4;;53032:12;:19;;;;:::i;:::-;53013:38;;52937:122;52896:163;53112:16;53098:11;53091:4;;:18;;;;:::i;:::-;:37;;;;:::i;:::-;53078:9;:50;;53070:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;53264:36:::1;53274:12;:10;:12::i;:::-;53288:11;53264:9;:36::i;:::-;52337:841:::0;53184:122;;:::o;55148:174::-;55252:8;51081:30;51102:8;51081:20;:30::i;:::-;55273:43:::1;55297:8;55307;55273:23;:43::i;:::-;55148:174:::0;;;:::o;51865:28::-;;;;:::o;55831:224::-;55982:4;50909:10;50901:18;;:4;:18;;;50897:83;;50936:32;50957:10;50936:20;:32::i;:::-;50897:83;56002:47:::1;56025:4;56031:2;56035:7;56044:4;56002:22;:47::i;:::-;55831:224:::0;;;;;:::o;53624:440::-;53698:13;53728:17;53736:8;53728:7;:17::i;:::-;53720:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;53822:5;53810:17;;:8;;;;;;;;;;;:17;;;53806:59;;53845:12;53838:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53806:59;53873:28;53904:10;:8;:10::i;:::-;53873:41;;53959:1;53934:14;53928:28;:32;:130;;;;;;;;;;;;;;;;;53996:14;54012:19;:8;:17;:19::i;:::-;54033:9;53979:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53928:130;53921:137;;;53624:440;;;;:::o;54925:107::-;54983:7;55006:20;55020:5;55006:13;:20::i;:::-;54999:27;;54925:107;;;:::o;54150:81::-;40474:12;:10;:12::i;:::-;40463:23;;:7;:5;:7::i;:::-;:23;;;40455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54219:6:::1;54208:8;;:17;;;;;;;;;;;;;;;;;;54150:81:::0;:::o;20795:164::-;20892:4;20916:18;:25;20935:5;20916:25;;;;;;;;;;;;;;;:35;20942:8;20916:35;;;;;;;;;;;;;;;;;;;;;;;;;20909:42;;20795:164;;;;:::o;51930:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53314:203::-;40474:12;:10;:12::i;:::-;40463:23;;:7;:5;:7::i;:::-;:23;;;40455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53441:6:::1;;53426:11;53410:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:37;;53402:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;53478:33;53488:9;53499:11;53478:9;:33::i;:::-;53314:203:::0;;:::o;41152:201::-;40474:12;:10;:12::i;:::-;40463:23;;:7;:5;:7::i;:::-;:23;;;40455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41261:1:::1;41241:22;;:8;:22;;::::0;41233:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41317:28;41336:8;41317:18;:28::i;:::-;41152:201:::0;:::o;22174:273::-;22231:4;22287:7;22268:15;:13;:15::i;:::-;:26;;:66;;;;;22321:13;;22311:7;:23;22268:66;:152;;;;;22419:1;9839:8;22372:17;:26;22390:7;22372:26;;;;;;;;;;;;:43;:48;22268:152;22248:172;;22174:273;;;:::o;51139:419::-;51378:1;49660:42;51330:45;;;:49;51326:225;;;49660:42;51401;;;51452:4;51459:8;51401:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51396:144;;51515:8;51496:28;;;;;;;;;;;:::i;:::-;;;;;;;;51396:144;51326:225;51139:419;:::o;19592:482::-;19673:13;19705:27;19724:7;19705:18;:27::i;:::-;19673:61;;19755:5;19749:11;;:2;:11;;;19745:48;;19769:24;;;;;;;;;;;;;;19745:48;19833:5;19810:28;;:19;:17;:19::i;:::-;:28;;;19806:175;;19858:44;19875:5;19882:19;:17;:19::i;:::-;19858:16;:44::i;:::-;19853:128;;19930:35;;;;;;;;;;;;;;19853:128;19806:175;20020:2;19993:15;:24;20009:7;19993:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20058:7;20054:2;20038:28;;20047:5;20038:28;;;;;;;;;;;;19662:412;19592:482;;:::o;38990:98::-;39043:7;39070:10;39063:17;;38990:98;:::o;53523:95::-;53588:7;53611:1;53604:8;;53523:95;:::o;21026:170::-;21160:28;21170:4;21176:2;21180:7;21160:9;:28::i;:::-;21026:170;;;:::o;21267:185::-;21405:39;21422:4;21428:2;21432:7;21405:39;;;;;;;;;;;;:16;:39::i;:::-;21267:185;;;:::o;15368:1129::-;15435:7;15455:12;15470:7;15455:22;;15538:4;15519:15;:13;:15::i;:::-;:23;15515:915;;15572:13;;15565:4;:20;15561:869;;;15610:14;15627:17;:23;15645:4;15627:23;;;;;;;;;;;;15610:40;;15743:1;9839:8;15716:6;:23;:28;15712:699;;16235:113;16252:1;16242:6;:11;16235:113;;16295:17;:25;16313:6;;;;;;;16295:25;;;;;;;;;;;;16286:34;;16235:113;;;16381:6;16374:13;;;;;;15712:699;15587:843;15561:869;15515:915;16458:31;;;;;;;;;;;;;;15368:1129;;;;:::o;41513:191::-;41587:16;41606:6;;;;;;;;;;;41587:25;;41632:8;41623:6;;:17;;;;;;;;;;;;;;;;;;41687:8;41656:40;;41677:8;41656:40;;;;;;;;;;;;41576:128;41513:191;:::o;22531:104::-;22600:27;22610:2;22614:8;22600:27;;;;;;;;;;;;:9;:27::i;:::-;22531:104;;:::o;20416:308::-;20527:19;:17;:19::i;:::-;20515:31;;:8;:31;;;20511:61;;20555:17;;;;;;;;;;;;;;20511:61;20637:8;20585:18;:39;20604:19;:17;:19::i;:::-;20585:39;;;;;;;;;;;;;;;:49;20625:8;20585:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20697:8;20661:55;;20676:19;:17;:19::i;:::-;20661:55;;;20707:8;20661:55;;;;;;:::i;:::-;;;;;;;;20416:308;;:::o;21523:396::-;21690:28;21700:4;21706:2;21710:7;21690:9;:28::i;:::-;21751:1;21733:2;:14;;;:19;21729:183;;21772:56;21803:4;21809:2;21813:7;21822:5;21772:30;:56::i;:::-;21767:145;;21856:40;;;;;;;;;;;;;;21767:145;21729:183;21523:396;;;;:::o;55038:104::-;55098:13;55127:9;55120:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55038:104;:::o;42054:723::-;42110:13;42340:1;42331:5;:10;42327:53;;42358:10;;;;;;;;;;;;;;;;;;;;;42327:53;42390:12;42405:5;42390:20;;42421:14;42446:78;42461:1;42453:4;:9;42446:78;;42479:8;;;;;:::i;:::-;;;;42510:2;42502:10;;;;;:::i;:::-;;;42446:78;;;42534:19;42566:6;42556:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42534:39;;42584:154;42600:1;42591:5;:10;42584:154;;42628:1;42618:11;;;;;:::i;:::-;;;42695:2;42687:5;:10;;;;:::i;:::-;42674:2;:24;;;;:::i;:::-;42661:39;;42644:6;42651;42644:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;42724:2;42715:11;;;;;:::i;:::-;;;42584:154;;;42762:6;42748:21;;;;;42054:723;;;;:::o;14036:176::-;14097:7;9069:13;9206:2;14125:18;:25;14144:5;14125:25;;;;;;;;;;;;;;;;:49;;14124:80;14117:87;;14036:176;;;:::o;36156:105::-;36216:7;36243:10;36236:17;;36156:105;:::o;27413:2515::-;27528:27;27558;27577:7;27558:18;:27::i;:::-;27528:57;;27643:4;27602:45;;27618:19;27602:45;;;27598:86;;27656:28;;;;;;;;;;;;;;27598:86;27697:22;27746:4;27723:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27767:43;27784:4;27790:19;:17;:19::i;:::-;27767:16;:43::i;:::-;27723:87;:147;;;;27851:19;:17;:19::i;:::-;27827:43;;:20;27839:7;27827:11;:20::i;:::-;:43;;;27723:147;27697:174;;27889:17;27884:66;;27915:35;;;;;;;;;;;;;;27884:66;27979:1;27965:16;;:2;:16;;;27961:52;;27990:23;;;;;;;;;;;;;;27961:52;28026:43;28048:4;28054:2;28058:7;28067:1;28026:21;:43::i;:::-;28142:15;:24;28158:7;28142:24;;;;;;;;;;;;28135:31;;;;;;;;;;;28534:18;:24;28553:4;28534:24;;;;;;;;;;;;;;;;28532:26;;;;;;;;;;;;28603:18;:22;28622:2;28603:22;;;;;;;;;;;;;;;;28601:24;;;;;;;;;;;10121:8;9723:3;28984:15;:41;;28942:21;28960:2;28942:17;:21::i;:::-;:84;:128;28896:17;:26;28914:7;28896:26;;;;;;;;;;;:174;;;;29240:1;10121:8;29190:19;:46;:51;29186:626;;29262:19;29294:1;29284:7;:11;29262:33;;29451:1;29417:17;:30;29435:11;29417:30;;;;;;;;;;;;:35;29413:384;;29555:13;;29540:11;:28;29536:242;;29735:19;29702:17;:30;29720:11;29702:30;;;;;;;;;;;:52;;;;29536:242;29413:384;29243:569;29186:626;29859:7;29855:2;29840:27;;29849:4;29840:27;;;;;;;;;;;;29878:42;29899:4;29905:2;29909:7;29918:1;29878:20;:42::i;:::-;27517:2411;;27413:2515;;;:::o;23008:2236::-;23131:20;23154:13;;23131:36;;23196:1;23182:16;;:2;:16;;;23178:48;;23207:19;;;;;;;;;;;;;;23178:48;23253:1;23241:8;:13;23237:44;;23263:18;;;;;;;;;;;;;;23237:44;23294:61;23324:1;23328:2;23332:12;23346:8;23294:21;:61::i;:::-;23898:1;9206:2;23869:1;:25;;23868:31;23856:8;:44;23830:18;:22;23849:2;23830:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;9986:3;24299:29;24326:1;24314:8;:13;24299:14;:29::i;:::-;:56;;9723:3;24236:15;:41;;24194:21;24212:2;24194:17;:21::i;:::-;:84;:162;24143:17;:31;24161:12;24143:31;;;;;;;;;;;:213;;;;24373:20;24396:12;24373:35;;24423:11;24452:8;24437:12;:23;24423:37;;24499:1;24481:2;:14;;;:19;24477:635;;24521:313;24577:12;24573:2;24552:38;;24569:1;24552:38;;;;;;;;;;;;24618:69;24657:1;24661:2;24665:14;;;;;;24681:5;24618:30;:69::i;:::-;24613:174;;24723:40;;;;;;;;;;;;;;24613:174;24829:3;24814:12;:18;24521:313;;24915:12;24898:13;;:29;24894:43;;24929:8;;;24894:43;24477:635;;;24978:119;25034:14;;;;;;25030:2;25009:40;;25026:1;25009:40;;;;;;;;;;;;25092:3;25077:12;:18;24978:119;;24477:635;25142:12;25126:13;:28;;;;23607:1559;;25176:60;25205:1;25209:2;25213:12;25227:8;25176:20;:60::i;:::-;23120:2124;23008:2236;;;:::o;33625:716::-;33788:4;33834:2;33809:45;;;33855:19;:17;:19::i;:::-;33876:4;33882:7;33891:5;33809:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33805:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34109:1;34092:6;:13;:18;34088:235;;34138:40;;;;;;;;;;;;;;34088:235;34281:6;34275:13;34266:6;34262:2;34258:15;34251:38;33805:529;33978:54;;;33968:64;;;:6;:64;;;;33961:71;;;33625:716;;;;;;:::o;34989:159::-;;;;;:::o;19153:148::-;19217:14;19278:5;19268:15;;19153:148;;;:::o;35807:158::-;;;;;:::o;19388:142::-;19446:14;19507:5;19497:15;;19388:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:60::-;9154:3;9175:5;9168:12;;9126:60;;;:::o;9192:142::-;9242:9;9275:53;9293:34;9302:24;9320:5;9302:24;:::i;:::-;9293:34;:::i;:::-;9275:53;:::i;:::-;9262:66;;9192:142;;;:::o;9340:126::-;9390:9;9423:37;9454:5;9423:37;:::i;:::-;9410:50;;9340:126;;;:::o;9472:158::-;9554:9;9587:37;9618:5;9587:37;:::i;:::-;9574:50;;9472:158;;;:::o;9636:195::-;9755:69;9818:5;9755:69;:::i;:::-;9750:3;9743:82;9636:195;;:::o;9837:286::-;9962:4;10000:2;9989:9;9985:18;9977:26;;10013:103;10113:1;10102:9;10098:17;10089:6;10013:103;:::i;:::-;9837:286;;;;:::o;10129:329::-;10188:6;10237:2;10225:9;10216:7;10212:23;10208:32;10205:119;;;10243:79;;:::i;:::-;10205:119;10363:1;10388:53;10433:7;10424:6;10413:9;10409:22;10388:53;:::i;:::-;10378:63;;10334:117;10129:329;;;;:::o;10464:468::-;10529:6;10537;10586:2;10574:9;10565:7;10561:23;10557:32;10554:119;;;10592:79;;:::i;:::-;10554:119;10712:1;10737:53;10782:7;10773:6;10762:9;10758:22;10737:53;:::i;:::-;10727:63;;10683:117;10839:2;10865:50;10907:7;10898:6;10887:9;10883:22;10865:50;:::i;:::-;10855:60;;10810:115;10464:468;;;;;:::o;10938:307::-;10999:4;11089:18;11081:6;11078:30;11075:56;;;11111:18;;:::i;:::-;11075:56;11149:29;11171:6;11149:29;:::i;:::-;11141:37;;11233:4;11227;11223:15;11215:23;;10938:307;;;:::o;11251:410::-;11328:5;11353:65;11369:48;11410:6;11369:48;:::i;:::-;11353:65;:::i;:::-;11344:74;;11441:6;11434:5;11427:21;11479:4;11472:5;11468:16;11517:3;11508:6;11503:3;11499:16;11496:25;11493:112;;;11524:79;;:::i;:::-;11493:112;11614:41;11648:6;11643:3;11638;11614:41;:::i;:::-;11334:327;11251:410;;;;;:::o;11680:338::-;11735:5;11784:3;11777:4;11769:6;11765:17;11761:27;11751:122;;11792:79;;:::i;:::-;11751:122;11909:6;11896:20;11934:78;12008:3;12000:6;11993:4;11985:6;11981:17;11934:78;:::i;:::-;11925:87;;11741:277;11680:338;;;;:::o;12024:943::-;12119:6;12127;12135;12143;12192:3;12180:9;12171:7;12167:23;12163:33;12160:120;;;12199:79;;:::i;:::-;12160:120;12319:1;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12290:117;12446:2;12472:53;12517:7;12508:6;12497:9;12493:22;12472:53;:::i;:::-;12462:63;;12417:118;12574:2;12600:53;12645:7;12636:6;12625:9;12621:22;12600:53;:::i;:::-;12590:63;;12545:118;12730:2;12719:9;12715:18;12702:32;12761:18;12753:6;12750:30;12747:117;;;12783:79;;:::i;:::-;12747:117;12888:62;12942:7;12933:6;12922:9;12918:22;12888:62;:::i;:::-;12878:72;;12673:287;12024:943;;;;;;;:::o;12973:474::-;13041:6;13049;13098:2;13086:9;13077:7;13073:23;13069:32;13066:119;;;13104:79;;:::i;:::-;13066:119;13224:1;13249:53;13294:7;13285:6;13274:9;13270:22;13249:53;:::i;:::-;13239:63;;13195:117;13351:2;13377:53;13422:7;13413:6;13402:9;13398:22;13377:53;:::i;:::-;13367:63;;13322:118;12973:474;;;;;:::o;13453:::-;13521:6;13529;13578:2;13566:9;13557:7;13553:23;13549:32;13546:119;;;13584:79;;:::i;:::-;13546:119;13704:1;13729:53;13774:7;13765:6;13754:9;13750:22;13729:53;:::i;:::-;13719:63;;13675:117;13831:2;13857:53;13902:7;13893:6;13882:9;13878:22;13857:53;:::i;:::-;13847:63;;13802:118;13453:474;;;;;:::o;13933:180::-;13981:77;13978:1;13971:88;14078:4;14075:1;14068:15;14102:4;14099:1;14092:15;14119:320;14163:6;14200:1;14194:4;14190:12;14180:22;;14247:1;14241:4;14237:12;14268:18;14258:81;;14324:4;14316:6;14312:17;14302:27;;14258:81;14386:2;14378:6;14375:14;14355:18;14352:38;14349:84;;14405:18;;:::i;:::-;14349:84;14170:269;14119:320;;;:::o;14445:182::-;14585:34;14581:1;14573:6;14569:14;14562:58;14445:182;:::o;14633:366::-;14775:3;14796:67;14860:2;14855:3;14796:67;:::i;:::-;14789:74;;14872:93;14961:3;14872:93;:::i;:::-;14990:2;14985:3;14981:12;14974:19;;14633:366;;;:::o;15005:419::-;15171:4;15209:2;15198:9;15194:18;15186:26;;15258:9;15252:4;15248:20;15244:1;15233:9;15229:17;15222:47;15286:131;15412:4;15286:131;:::i;:::-;15278:139;;15005:419;;;:::o;15430:181::-;15570:33;15566:1;15558:6;15554:14;15547:57;15430:181;:::o;15617:366::-;15759:3;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15856:93;15945:3;15856:93;:::i;:::-;15974:2;15969:3;15965:12;15958:19;;15617:366;;;:::o;15989:419::-;16155:4;16193:2;16182:9;16178:18;16170:26;;16242:9;16236:4;16232:20;16228:1;16217:9;16213:17;16206:47;16270:131;16396:4;16270:131;:::i;:::-;16262:139;;15989:419;;;:::o;16414:147::-;16515:11;16552:3;16537:18;;16414:147;;;;:::o;16567:114::-;;:::o;16687:398::-;16846:3;16867:83;16948:1;16943:3;16867:83;:::i;:::-;16860:90;;16959:93;17048:3;16959:93;:::i;:::-;17077:1;17072:3;17068:11;17061:18;;16687:398;;;:::o;17091:379::-;17275:3;17297:147;17440:3;17297:147;:::i;:::-;17290:154;;17461:3;17454:10;;17091:379;;;:::o;17476:179::-;17616:31;17612:1;17604:6;17600:14;17593:55;17476:179;:::o;17661:366::-;17803:3;17824:67;17888:2;17883:3;17824:67;:::i;:::-;17817:74;;17900:93;17989:3;17900:93;:::i;:::-;18018:2;18013:3;18009:12;18002:19;;17661:366;;;:::o;18033:419::-;18199:4;18237:2;18226:9;18222:18;18214:26;;18286:9;18280:4;18276:20;18272:1;18261:9;18257:17;18250:47;18314:131;18440:4;18314:131;:::i;:::-;18306:139;;18033:419;;;:::o;18458:245::-;18598:34;18594:1;18586:6;18582:14;18575:58;18667:28;18662:2;18654:6;18650:15;18643:53;18458:245;:::o;18709:366::-;18851:3;18872:67;18936:2;18931:3;18872:67;:::i;:::-;18865:74;;18948:93;19037:3;18948:93;:::i;:::-;19066:2;19061:3;19057:12;19050:19;;18709:366;;;:::o;19081:419::-;19247:4;19285:2;19274:9;19270:18;19262:26;;19334:9;19328:4;19324:20;19320:1;19309:9;19305:17;19298:47;19362:131;19488:4;19362:131;:::i;:::-;19354:139;;19081:419;;;:::o;19506:182::-;19646:34;19642:1;19634:6;19630:14;19623:58;19506:182;:::o;19694:366::-;19836:3;19857:67;19921:2;19916:3;19857:67;:::i;:::-;19850:74;;19933:93;20022:3;19933:93;:::i;:::-;20051:2;20046:3;20042:12;20035:19;;19694:366;;;:::o;20066:419::-;20232:4;20270:2;20259:9;20255:18;20247:26;;20319:9;20313:4;20309:20;20305:1;20294:9;20290:17;20283:47;20347:131;20473:4;20347:131;:::i;:::-;20339:139;;20066:419;;;:::o;20491:180::-;20539:77;20536:1;20529:88;20636:4;20633:1;20626:15;20660:4;20657:1;20650:15;20677:305;20717:3;20736:20;20754:1;20736:20;:::i;:::-;20731:25;;20770:20;20788:1;20770:20;:::i;:::-;20765:25;;20924:1;20856:66;20852:74;20849:1;20846:81;20843:107;;;20930:18;;:::i;:::-;20843:107;20974:1;20971;20967:9;20960:16;;20677:305;;;;:::o;20988:170::-;21128:22;21124:1;21116:6;21112:14;21105:46;20988:170;:::o;21164:366::-;21306:3;21327:67;21391:2;21386:3;21327:67;:::i;:::-;21320:74;;21403:93;21492:3;21403:93;:::i;:::-;21521:2;21516:3;21512:12;21505:19;;21164:366;;;:::o;21536:419::-;21702:4;21740:2;21729:9;21725:18;21717:26;;21789:9;21783:4;21779:20;21775:1;21764:9;21760:17;21753:47;21817:131;21943:4;21817:131;:::i;:::-;21809:139;;21536:419;;;:::o;21961:251::-;22101:34;22097:1;22089:6;22085:14;22078:58;22170:34;22165:2;22157:6;22153:15;22146:59;21961:251;:::o;22218:366::-;22360:3;22381:67;22445:2;22440:3;22381:67;:::i;:::-;22374:74;;22457:93;22546:3;22457:93;:::i;:::-;22575:2;22570:3;22566:12;22559:19;;22218:366;;;:::o;22590:419::-;22756:4;22794:2;22783:9;22779:18;22771:26;;22843:9;22837:4;22833:20;22829:1;22818:9;22814:17;22807:47;22871:131;22997:4;22871:131;:::i;:::-;22863:139;;22590:419;;;:::o;23015:191::-;23055:4;23075:20;23093:1;23075:20;:::i;:::-;23070:25;;23109:20;23127:1;23109:20;:::i;:::-;23104:25;;23148:1;23145;23142:8;23139:34;;;23153:18;;:::i;:::-;23139:34;23198:1;23195;23191:9;23183:17;;23015:191;;;;:::o;23212:348::-;23252:7;23275:20;23293:1;23275:20;:::i;:::-;23270:25;;23309:20;23327:1;23309:20;:::i;:::-;23304:25;;23497:1;23429:66;23425:74;23422:1;23419:81;23414:1;23407:9;23400:17;23396:105;23393:131;;;23504:18;;:::i;:::-;23393:131;23552:1;23549;23545:9;23534:20;;23212:348;;;;:::o;23566:181::-;23706:33;23702:1;23694:6;23690:14;23683:57;23566:181;:::o;23753:366::-;23895:3;23916:67;23980:2;23975:3;23916:67;:::i;:::-;23909:74;;23992:93;24081:3;23992:93;:::i;:::-;24110:2;24105:3;24101:12;24094:19;;23753:366;;;:::o;24125:419::-;24291:4;24329:2;24318:9;24314:18;24306:26;;24378:9;24372:4;24368:20;24364:1;24353:9;24349:17;24342:47;24406:131;24532:4;24406:131;:::i;:::-;24398:139;;24125:419;;;:::o;24550:234::-;24690:34;24686:1;24678:6;24674:14;24667:58;24759:17;24754:2;24746:6;24742:15;24735:42;24550:234;:::o;24790:366::-;24932:3;24953:67;25017:2;25012:3;24953:67;:::i;:::-;24946:74;;25029:93;25118:3;25029:93;:::i;:::-;25147:2;25142:3;25138:12;25131:19;;24790:366;;;:::o;25162:419::-;25328:4;25366:2;25355:9;25351:18;25343:26;;25415:9;25409:4;25405:20;25401:1;25390:9;25386:17;25379:47;25443:131;25569:4;25443:131;:::i;:::-;25435:139;;25162:419;;;:::o;25587:148::-;25689:11;25726:3;25711:18;;25587:148;;;;:::o;25741:377::-;25847:3;25875:39;25908:5;25875:39;:::i;:::-;25930:89;26012:6;26007:3;25930:89;:::i;:::-;25923:96;;26028:52;26073:6;26068:3;26061:4;26054:5;26050:16;26028:52;:::i;:::-;26105:6;26100:3;26096:16;26089:23;;25851:267;25741:377;;;;:::o;26124:141::-;26173:4;26196:3;26188:11;;26219:3;26216:1;26209:14;26253:4;26250:1;26240:18;26232:26;;26124:141;;;:::o;26295:845::-;26398:3;26435:5;26429:12;26464:36;26490:9;26464:36;:::i;:::-;26516:89;26598:6;26593:3;26516:89;:::i;:::-;26509:96;;26636:1;26625:9;26621:17;26652:1;26647:137;;;;26798:1;26793:341;;;;26614:520;;26647:137;26731:4;26727:9;26716;26712:25;26707:3;26700:38;26767:6;26762:3;26758:16;26751:23;;26647:137;;26793:341;26860:38;26892:5;26860:38;:::i;:::-;26920:1;26934:154;26948:6;26945:1;26942:13;26934:154;;;27022:7;27016:14;27012:1;27007:3;27003:11;26996:35;27072:1;27063:7;27059:15;27048:26;;26970:4;26967:1;26963:12;26958:17;;26934:154;;;27117:6;27112:3;27108:16;27101:23;;26800:334;;26614:520;;26402:738;;26295:845;;;;:::o;27146:589::-;27371:3;27393:95;27484:3;27475:6;27393:95;:::i;:::-;27386:102;;27505:95;27596:3;27587:6;27505:95;:::i;:::-;27498:102;;27617:92;27705:3;27696:6;27617:92;:::i;:::-;27610:99;;27726:3;27719:10;;27146:589;;;;;;:::o;27741:169::-;27881:21;27877:1;27869:6;27865:14;27858:45;27741:169;:::o;27916:366::-;28058:3;28079:67;28143:2;28138:3;28079:67;:::i;:::-;28072:74;;28155:93;28244:3;28155:93;:::i;:::-;28273:2;28268:3;28264:12;28257:19;;27916:366;;;:::o;28288:419::-;28454:4;28492:2;28481:9;28477:18;28469:26;;28541:9;28535:4;28531:20;28527:1;28516:9;28512:17;28505:47;28569:131;28695:4;28569:131;:::i;:::-;28561:139;;28288:419;;;:::o;28713:225::-;28853:34;28849:1;28841:6;28837:14;28830:58;28922:8;28917:2;28909:6;28905:15;28898:33;28713:225;:::o;28944:366::-;29086:3;29107:67;29171:2;29166:3;29107:67;:::i;:::-;29100:74;;29183:93;29272:3;29183:93;:::i;:::-;29301:2;29296:3;29292:12;29285:19;;28944:366;;;:::o;29316:419::-;29482:4;29520:2;29509:9;29505:18;29497:26;;29569:9;29563:4;29559:20;29555:1;29544:9;29540:17;29533:47;29597:131;29723:4;29597:131;:::i;:::-;29589:139;;29316:419;;;:::o;29741:332::-;29862:4;29900:2;29889:9;29885:18;29877:26;;29913:71;29981:1;29970:9;29966:17;29957:6;29913:71;:::i;:::-;29994:72;30062:2;30051:9;30047:18;30038:6;29994:72;:::i;:::-;29741:332;;;;;:::o;30079:137::-;30133:5;30164:6;30158:13;30149:22;;30180:30;30204:5;30180:30;:::i;:::-;30079:137;;;;:::o;30222:345::-;30289:6;30338:2;30326:9;30317:7;30313:23;30309:32;30306:119;;;30344:79;;:::i;:::-;30306:119;30464:1;30489:61;30542:7;30533:6;30522:9;30518:22;30489:61;:::i;:::-;30479:71;;30435:125;30222:345;;;;:::o;30573:233::-;30612:3;30635:24;30653:5;30635:24;:::i;:::-;30626:33;;30681:66;30674:5;30671:77;30668:103;;30751:18;;:::i;:::-;30668:103;30798:1;30791:5;30787:13;30780:20;;30573:233;;;:::o;30812:180::-;30860:77;30857:1;30850:88;30957:4;30954:1;30947:15;30981:4;30978:1;30971:15;30998:185;31038:1;31055:20;31073:1;31055:20;:::i;:::-;31050:25;;31089:20;31107:1;31089:20;:::i;:::-;31084:25;;31128:1;31118:35;;31133:18;;:::i;:::-;31118:35;31175:1;31172;31168:9;31163:14;;30998:185;;;;:::o;31189:176::-;31221:1;31238:20;31256:1;31238:20;:::i;:::-;31233:25;;31272:20;31290:1;31272:20;:::i;:::-;31267:25;;31311:1;31301:35;;31316:18;;:::i;:::-;31301:35;31357:1;31354;31350:9;31345:14;;31189:176;;;;:::o;31371:180::-;31419:77;31416:1;31409:88;31516:4;31513:1;31506:15;31540:4;31537:1;31530:15;31557:98;31608:6;31642:5;31636:12;31626:22;;31557:98;;;:::o;31661:168::-;31744:11;31778:6;31773:3;31766:19;31818:4;31813:3;31809:14;31794:29;;31661:168;;;;:::o;31835:360::-;31921:3;31949:38;31981:5;31949:38;:::i;:::-;32003:70;32066:6;32061:3;32003:70;:::i;:::-;31996:77;;32082:52;32127:6;32122:3;32115:4;32108:5;32104:16;32082:52;:::i;:::-;32159:29;32181:6;32159:29;:::i;:::-;32154:3;32150:39;32143:46;;31925:270;31835:360;;;;:::o;32201:640::-;32396:4;32434:3;32423:9;32419:19;32411:27;;32448:71;32516:1;32505:9;32501:17;32492:6;32448:71;:::i;:::-;32529:72;32597:2;32586:9;32582:18;32573:6;32529:72;:::i;:::-;32611;32679:2;32668:9;32664:18;32655:6;32611:72;:::i;:::-;32730:9;32724:4;32720:20;32715:2;32704:9;32700:18;32693:48;32758:76;32829:4;32820:6;32758:76;:::i;:::-;32750:84;;32201:640;;;;;;;:::o;32847:141::-;32903:5;32934:6;32928:13;32919:22;;32950:32;32976:5;32950:32;:::i;:::-;32847:141;;;;:::o;32994:349::-;33063:6;33112:2;33100:9;33091:7;33087:23;33083:32;33080:119;;;33118:79;;:::i;:::-;33080:119;33238:1;33263:63;33318:7;33309:6;33298:9;33294:22;33263:63;:::i;:::-;33253:73;;33209:127;32994:349;;;;:::o

Swarm Source

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