ETH Price: $3,122.02 (+1.11%)
Gas: 5 Gwei

Token

Wench 2043 Rebooted (WENCH)
 

Overview

Max Total Supply

1,202 WENCH

Holders

236

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
15 WENCH
0x8001edaf71dc22df812d906758754218b93b9aed
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:
Wench

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

// File: contracts/Wench.sol



// Because pancakes are better than waffles.

pragma solidity ^0.8.0;




contract Wench is ERC721A, Ownable, Pausable {
    uint256 public mintPrice = .0069 ether;
    uint256 public maxSupply = 2043;
    uint256 public maxMint = 20;
    string public baseURI;

    constructor() ERC721A("Wench 2043 Rebooted", "WENCH") {
        setBaseURI("ipfs://bafybeicbljctj7w5b3r3ccdjan2fanamkurmjwd5k2d232xv2abajtgspa/");
        _pause();
    }

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

    function mint(uint256 amount) external payable whenNotPaused {
        require(
            msg.value >= mintPrice * amount,
            "Not enough ETH for purchase."
        );
        require(amount <= maxMint, "exceeded max mint amount.");
        require(totalSupply() + amount <= maxSupply, "Not enough remaining.");
        _safeMint(msg.sender, amount);
    }

    function devMint(address to, uint256 amount) external onlyOwner {
        require(totalSupply() + amount <= maxSupply, "Not enough remaining.");
        _safeMint(to, amount);
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        mintPrice = newPrice;
    }

    function setMaxMintAmount(uint256 _newMaxMintAmount) public onlyOwner {
        maxMint = _newMaxMintAmount;
    }

    function lowerMaxSupply(uint256 _newMaxSupply) public onlyOwner {
        require(
            _newMaxSupply < maxSupply,
            "New supply must be less than current."
        );
        maxSupply = _newMaxSupply;
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

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

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526618838370f340006009556107fb600a556014600b553480156200002757600080fd5b506040518060400160405280601381526020017f57656e63682032303433205265626f6f746564000000000000000000000000008152506040518060400160405280600581526020017f57454e43480000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ac929190620003f8565b508060039080519060200190620000c5929190620003f8565b50620000d66200015960201b60201c565b6000819055505050620000fe620000f26200016260201b60201c565b6200016a60201b60201c565b6000600860146101000a81548160ff021916908315150217905550620001436040518060800160405280604381526020016200337e604391396200023060201b60201c565b620001536200025c60201b60201c565b62000664565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000240620002d160201b60201c565b80600c908051906020019062000258929190620003f8565b5050565b6200026c6200036260201b60201c565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002b86200016260201b60201c565b604051620002c7919062000507565b60405180910390a1565b620002e16200016260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000307620003b760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000360576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003579062000546565b60405180910390fd5b565b62000372620003e160201b60201c565b15620003b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ac9062000524565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600860149054906101000a900460ff16905090565b8280546200040690620005ad565b90600052602060002090601f0160209004810192826200042a576000855562000476565b82601f106200044557805160ff191683800117855562000476565b8280016001018555821562000476579182015b828111156200047557825182559160200191906001019062000458565b5b50905062000485919062000489565b5090565b5b80821115620004a45760008160009055506001016200048a565b5090565b620004b38162000579565b82525050565b6000620004c860108362000568565b9150620004d58262000612565b602082019050919050565b6000620004ef60208362000568565b9150620004fc826200063b565b602082019050919050565b60006020820190506200051e6000830184620004a8565b92915050565b600060208201905081810360008301526200053f81620004b9565b9050919050565b600060208201905081810360008301526200056181620004e0565b9050919050565b600082825260208201905092915050565b600062000586826200058d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620005c657607f821691505b60208210811415620005dd57620005dc620005e3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612d0a80620006746000396000f3fe6080604052600436106101d85760003560e01c80636c0360eb11610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461063b578063d5abeb0114610678578063e985e9c5146106a3578063f2fde38b146106e0576101d8565b8063a0712d68146105a4578063a22cb465146105c0578063b88d4fde146105e9578063c4e9374d14610612576101d8565b80638456cb59116100d15780638456cb591461050e5780638da5cb5b1461052557806391b7f5ed1461055057806395d89b4114610579576101d8565b80636c0360eb1461046457806370a082311461048f578063715018a6146104cc5780637501f741146104e3576101d8565b80633ccfd60b1161017a5780635c975abb116101495780635c975abb146103a8578063627804af146103d35780636352211e146103fc5780636817c76c14610439576101d8565b80633ccfd60b146103285780633f4ba83a1461033f57806342842e0e1461035657806355f804b31461037f576101d8565b8063088a4ed0116101b6578063088a4ed014610282578063095ea7b3146102ab57806318160ddd146102d457806323b872dd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612304565b610709565b6040516102119190612647565b60405180910390f35b34801561022657600080fd5b5061022f61079b565b60405161023c9190612662565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906123a7565b61082d565b60405161027991906125e0565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906123a7565b6108a9565b005b3480156102b757600080fd5b506102d260048036038101906102cd91906122c4565b6108bb565b005b3480156102e057600080fd5b506102e96109fc565b6040516102f69190612784565b60405180910390f35b34801561030b57600080fd5b50610326600480360381019061032191906121ae565b610a13565b005b34801561033457600080fd5b5061033d610d38565b005b34801561034b57600080fd5b50610354610d89565b005b34801561036257600080fd5b5061037d600480360381019061037891906121ae565b610d9b565b005b34801561038b57600080fd5b506103a660048036038101906103a1919061235e565b610dbb565b005b3480156103b457600080fd5b506103bd610ddd565b6040516103ca9190612647565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f591906122c4565b610df4565b005b34801561040857600080fd5b50610423600480360381019061041e91906123a7565b610e61565b60405161043091906125e0565b60405180910390f35b34801561044557600080fd5b5061044e610e73565b60405161045b9190612784565b60405180910390f35b34801561047057600080fd5b50610479610e79565b6040516104869190612662565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b19190612141565b610f07565b6040516104c39190612784565b60405180910390f35b3480156104d857600080fd5b506104e1610fc0565b005b3480156104ef57600080fd5b506104f8610fd4565b6040516105059190612784565b60405180910390f35b34801561051a57600080fd5b50610523610fda565b005b34801561053157600080fd5b5061053a610fec565b60405161054791906125e0565b60405180910390f35b34801561055c57600080fd5b50610577600480360381019061057291906123a7565b611016565b005b34801561058557600080fd5b5061058e611028565b60405161059b9190612662565b60405180910390f35b6105be60048036038101906105b991906123a7565b6110ba565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612284565b6111bb565b005b3480156105f557600080fd5b50610610600480360381019061060b9190612201565b611333565b005b34801561061e57600080fd5b50610639600480360381019061063491906123a7565b6113a6565b005b34801561064757600080fd5b50610662600480360381019061065d91906123a7565b6113fc565b60405161066f9190612662565b60405180910390f35b34801561068457600080fd5b5061068d61149b565b60405161069a9190612784565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c5919061216e565b6114a1565b6040516106d79190612647565b60405180910390f35b3480156106ec57600080fd5b5061070760048036038101906107029190612141565b611535565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107945750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107aa906129cf565b80601f01602080910402602001604051908101604052809291908181526020018280546107d6906129cf565b80156108235780601f106107f857610100808354040283529160200191610823565b820191906000526020600020905b81548152906001019060200180831161080657829003601f168201915b5050505050905090565b6000610838826115b9565b61086e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108b1611618565b80600b8190555050565b60006108c682610e61565b90508073ffffffffffffffffffffffffffffffffffffffff166108e7611696565b73ffffffffffffffffffffffffffffffffffffffff161461094a576109138161090e611696565b6114a1565b610949576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a0661169e565b6001546000540303905090565b6000610a1e826116a7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a85576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a9184611775565b91509150610aa78187610aa2611696565b611797565b610af357610abc86610ab7611696565b6114a1565b610af2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b5a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b6786868660016117db565b8015610b7257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c4085610c1c8888876117e1565b7c020000000000000000000000000000000000000000000000000000000017611809565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cc8576000600185019050600060046000838152602001908152602001600020541415610cc6576000548114610cc5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d308686866001611834565b505050505050565b610d40611618565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d86573d6000803e3d6000fd5b50565b610d91611618565b610d9961183a565b565b610db683838360405180602001604052806000815250611333565b505050565b610dc3611618565b80600c9080519060200190610dd9929190611f55565b5050565b6000600860149054906101000a900460ff16905090565b610dfc611618565b600a5481610e086109fc565b610e129190612869565b1115610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a906126e4565b60405180910390fd5b610e5d828261189d565b5050565b6000610e6c826116a7565b9050919050565b60095481565b600c8054610e86906129cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb2906129cf565b8015610eff5780601f10610ed457610100808354040283529160200191610eff565b820191906000526020600020905b815481529060010190602001808311610ee257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fc8611618565b610fd260006118bb565b565b600b5481565b610fe2611618565b610fea611981565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61101e611618565b8060098190555050565b606060038054611037906129cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611063906129cf565b80156110b05780601f10611085576101008083540402835291602001916110b0565b820191906000526020600020905b81548152906001019060200180831161109357829003601f168201915b5050505050905090565b6110c26119e4565b806009546110d091906128bf565b341015611112576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611109906126a4565b60405180910390fd5b600b54811115611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90612704565b60405180910390fd5b600a54816111636109fc565b61116d9190612869565b11156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a5906126e4565b60405180910390fd5b6111b8338261189d565b50565b6111c3611696565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611228576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611235611696565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112e2611696565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113279190612647565b60405180910390a35050565b61133e848484610a13565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113a05761136984848484611a2e565b61139f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6113ae611618565b600a5481106113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e990612744565b60405180910390fd5b80600a8190555050565b6060611407826115b9565b61143d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611447611b8e565b90506000815114156114685760405180602001604052806000815250611493565b8061147284611c20565b6040516020016114839291906125bc565b6040516020818303038152906040525b915050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61153d611618565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a4906126c4565b60405180910390fd5b6115b6816118bb565b50565b6000816115c461169e565b111580156115d3575060005482105b8015611611575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b611620611c7a565b73ffffffffffffffffffffffffffffffffffffffff1661163e610fec565b73ffffffffffffffffffffffffffffffffffffffff1614611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90612764565b60405180910390fd5b565b600033905090565b60006001905090565b600080829050806116b661169e565b1161173e5760005481101561173d5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561173b575b6000811415611731576004600083600190039350838152602001908152602001600020549050611706565b8092505050611770565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117f8868684611c82565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611842611c8b565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611886611c7a565b60405161189391906125e0565b60405180910390a1565b6118b7828260405180602001604052806000815250611cd4565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119896119e4565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119cd611c7a565b6040516119da91906125e0565b60405180910390a1565b6119ec610ddd565b15611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390612724565b60405180910390fd5b565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a54611696565b8786866040518563ffffffff1660e01b8152600401611a7694939291906125fb565b602060405180830381600087803b158015611a9057600080fd5b505af1925050508015611ac157506040513d601f19601f82011682018060405250810190611abe9190612331565b60015b611b3b573d8060008114611af1576040519150601f19603f3d011682016040523d82523d6000602084013e611af6565b606091505b50600081511415611b33576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611b9d906129cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc9906129cf565b8015611c165780601f10611beb57610100808354040283529160200191611c16565b820191906000526020600020905b815481529060010190602001808311611bf957829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611c6657600183039250600a81066030018353600a81049050611c46565b508181036020830392508083525050919050565b600033905090565b60009392505050565b611c93610ddd565b611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990612684565b60405180910390fd5b565b611cde8383611d71565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6c57600080549050600083820390505b611d1e6000868380600101945086611a2e565b611d54576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d0b578160005414611d6957600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dde576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611e19576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e2660008483856117db565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e9d83611e8e60008660006117e1565b611e9785611f45565b17611809565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611ec157806000819055505050611f406000848385611834565b505050565b60006001821460e11b9050919050565b828054611f61906129cf565b90600052602060002090601f016020900481019282611f835760008555611fca565b82601f10611f9c57805160ff1916838001178555611fca565b82800160010185558215611fca579182015b82811115611fc9578251825591602001919060010190611fae565b5b509050611fd79190611fdb565b5090565b5b80821115611ff4576000816000905550600101611fdc565b5090565b600061200b612006846127c4565b61279f565b90508281526020810184848401111561202757612026612ac4565b5b61203284828561298d565b509392505050565b600061204d612048846127f5565b61279f565b90508281526020810184848401111561206957612068612ac4565b5b61207484828561298d565b509392505050565b60008135905061208b81612c78565b92915050565b6000813590506120a081612c8f565b92915050565b6000813590506120b581612ca6565b92915050565b6000815190506120ca81612ca6565b92915050565b600082601f8301126120e5576120e4612abf565b5b81356120f5848260208601611ff8565b91505092915050565b600082601f83011261211357612112612abf565b5b813561212384826020860161203a565b91505092915050565b60008135905061213b81612cbd565b92915050565b60006020828403121561215757612156612ace565b5b60006121658482850161207c565b91505092915050565b6000806040838503121561218557612184612ace565b5b60006121938582860161207c565b92505060206121a48582860161207c565b9150509250929050565b6000806000606084860312156121c7576121c6612ace565b5b60006121d58682870161207c565b93505060206121e68682870161207c565b92505060406121f78682870161212c565b9150509250925092565b6000806000806080858703121561221b5761221a612ace565b5b60006122298782880161207c565b945050602061223a8782880161207c565b935050604061224b8782880161212c565b925050606085013567ffffffffffffffff81111561226c5761226b612ac9565b5b612278878288016120d0565b91505092959194509250565b6000806040838503121561229b5761229a612ace565b5b60006122a98582860161207c565b92505060206122ba85828601612091565b9150509250929050565b600080604083850312156122db576122da612ace565b5b60006122e98582860161207c565b92505060206122fa8582860161212c565b9150509250929050565b60006020828403121561231a57612319612ace565b5b6000612328848285016120a6565b91505092915050565b60006020828403121561234757612346612ace565b5b6000612355848285016120bb565b91505092915050565b60006020828403121561237457612373612ace565b5b600082013567ffffffffffffffff81111561239257612391612ac9565b5b61239e848285016120fe565b91505092915050565b6000602082840312156123bd576123bc612ace565b5b60006123cb8482850161212c565b91505092915050565b6123dd81612919565b82525050565b6123ec8161292b565b82525050565b60006123fd82612826565b612407818561283c565b935061241781856020860161299c565b61242081612ad3565b840191505092915050565b600061243682612831565b612440818561284d565b935061245081856020860161299c565b61245981612ad3565b840191505092915050565b600061246f82612831565b612479818561285e565b935061248981856020860161299c565b80840191505092915050565b60006124a260148361284d565b91506124ad82612ae4565b602082019050919050565b60006124c5601c8361284d565b91506124d082612b0d565b602082019050919050565b60006124e860268361284d565b91506124f382612b36565b604082019050919050565b600061250b60158361284d565b915061251682612b85565b602082019050919050565b600061252e60198361284d565b915061253982612bae565b602082019050919050565b600061255160108361284d565b915061255c82612bd7565b602082019050919050565b600061257460258361284d565b915061257f82612c00565b604082019050919050565b600061259760208361284d565b91506125a282612c4f565b602082019050919050565b6125b681612983565b82525050565b60006125c88285612464565b91506125d48284612464565b91508190509392505050565b60006020820190506125f560008301846123d4565b92915050565b600060808201905061261060008301876123d4565b61261d60208301866123d4565b61262a60408301856125ad565b818103606083015261263c81846123f2565b905095945050505050565b600060208201905061265c60008301846123e3565b92915050565b6000602082019050818103600083015261267c818461242b565b905092915050565b6000602082019050818103600083015261269d81612495565b9050919050565b600060208201905081810360008301526126bd816124b8565b9050919050565b600060208201905081810360008301526126dd816124db565b9050919050565b600060208201905081810360008301526126fd816124fe565b9050919050565b6000602082019050818103600083015261271d81612521565b9050919050565b6000602082019050818103600083015261273d81612544565b9050919050565b6000602082019050818103600083015261275d81612567565b9050919050565b6000602082019050818103600083015261277d8161258a565b9050919050565b600060208201905061279960008301846125ad565b92915050565b60006127a96127ba565b90506127b58282612a01565b919050565b6000604051905090565b600067ffffffffffffffff8211156127df576127de612a90565b5b6127e882612ad3565b9050602081019050919050565b600067ffffffffffffffff8211156128105761280f612a90565b5b61281982612ad3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061287482612983565b915061287f83612983565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128b4576128b3612a32565b5b828201905092915050565b60006128ca82612983565b91506128d583612983565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561290e5761290d612a32565b5b828202905092915050565b600061292482612963565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156129ba57808201518184015260208101905061299f565b838111156129c9576000848401525b50505050565b600060028204905060018216806129e757607f821691505b602082108114156129fb576129fa612a61565b5b50919050565b612a0a82612ad3565b810181811067ffffffffffffffff82111715612a2957612a28612a90565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045544820666f722070757263686173652e00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682072656d61696e696e672e0000000000000000000000600082015250565b7f6578636565646564206d6178206d696e7420616d6f756e742e00000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4e657720737570706c79206d757374206265206c657373207468616e2063757260008201527f72656e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612c8181612919565b8114612c8c57600080fd5b50565b612c988161292b565b8114612ca357600080fd5b50565b612caf81612937565b8114612cba57600080fd5b50565b612cc681612983565b8114612cd157600080fd5b5056fea26469706673582212208500d3fd5a15c9a72e4f4613999a97aeccbe1d2666e5a65d864198f78fd77ed564736f6c63430008070033697066733a2f2f6261667962656963626c6a63746a377735623372336363646a616e3266616e616d6b75726d6a7764356b32643233327876326162616a74677370612f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636c0360eb11610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd1461063b578063d5abeb0114610678578063e985e9c5146106a3578063f2fde38b146106e0576101d8565b8063a0712d68146105a4578063a22cb465146105c0578063b88d4fde146105e9578063c4e9374d14610612576101d8565b80638456cb59116100d15780638456cb591461050e5780638da5cb5b1461052557806391b7f5ed1461055057806395d89b4114610579576101d8565b80636c0360eb1461046457806370a082311461048f578063715018a6146104cc5780637501f741146104e3576101d8565b80633ccfd60b1161017a5780635c975abb116101495780635c975abb146103a8578063627804af146103d35780636352211e146103fc5780636817c76c14610439576101d8565b80633ccfd60b146103285780633f4ba83a1461033f57806342842e0e1461035657806355f804b31461037f576101d8565b8063088a4ed0116101b6578063088a4ed014610282578063095ea7b3146102ab57806318160ddd146102d457806323b872dd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612304565b610709565b6040516102119190612647565b60405180910390f35b34801561022657600080fd5b5061022f61079b565b60405161023c9190612662565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906123a7565b61082d565b60405161027991906125e0565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906123a7565b6108a9565b005b3480156102b757600080fd5b506102d260048036038101906102cd91906122c4565b6108bb565b005b3480156102e057600080fd5b506102e96109fc565b6040516102f69190612784565b60405180910390f35b34801561030b57600080fd5b50610326600480360381019061032191906121ae565b610a13565b005b34801561033457600080fd5b5061033d610d38565b005b34801561034b57600080fd5b50610354610d89565b005b34801561036257600080fd5b5061037d600480360381019061037891906121ae565b610d9b565b005b34801561038b57600080fd5b506103a660048036038101906103a1919061235e565b610dbb565b005b3480156103b457600080fd5b506103bd610ddd565b6040516103ca9190612647565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f591906122c4565b610df4565b005b34801561040857600080fd5b50610423600480360381019061041e91906123a7565b610e61565b60405161043091906125e0565b60405180910390f35b34801561044557600080fd5b5061044e610e73565b60405161045b9190612784565b60405180910390f35b34801561047057600080fd5b50610479610e79565b6040516104869190612662565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b19190612141565b610f07565b6040516104c39190612784565b60405180910390f35b3480156104d857600080fd5b506104e1610fc0565b005b3480156104ef57600080fd5b506104f8610fd4565b6040516105059190612784565b60405180910390f35b34801561051a57600080fd5b50610523610fda565b005b34801561053157600080fd5b5061053a610fec565b60405161054791906125e0565b60405180910390f35b34801561055c57600080fd5b50610577600480360381019061057291906123a7565b611016565b005b34801561058557600080fd5b5061058e611028565b60405161059b9190612662565b60405180910390f35b6105be60048036038101906105b991906123a7565b6110ba565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612284565b6111bb565b005b3480156105f557600080fd5b50610610600480360381019061060b9190612201565b611333565b005b34801561061e57600080fd5b50610639600480360381019061063491906123a7565b6113a6565b005b34801561064757600080fd5b50610662600480360381019061065d91906123a7565b6113fc565b60405161066f9190612662565b60405180910390f35b34801561068457600080fd5b5061068d61149b565b60405161069a9190612784565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c5919061216e565b6114a1565b6040516106d79190612647565b60405180910390f35b3480156106ec57600080fd5b5061070760048036038101906107029190612141565b611535565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107945750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107aa906129cf565b80601f01602080910402602001604051908101604052809291908181526020018280546107d6906129cf565b80156108235780601f106107f857610100808354040283529160200191610823565b820191906000526020600020905b81548152906001019060200180831161080657829003601f168201915b5050505050905090565b6000610838826115b9565b61086e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108b1611618565b80600b8190555050565b60006108c682610e61565b90508073ffffffffffffffffffffffffffffffffffffffff166108e7611696565b73ffffffffffffffffffffffffffffffffffffffff161461094a576109138161090e611696565b6114a1565b610949576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a0661169e565b6001546000540303905090565b6000610a1e826116a7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a85576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a9184611775565b91509150610aa78187610aa2611696565b611797565b610af357610abc86610ab7611696565b6114a1565b610af2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b5a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b6786868660016117db565b8015610b7257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c4085610c1c8888876117e1565b7c020000000000000000000000000000000000000000000000000000000017611809565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cc8576000600185019050600060046000838152602001908152602001600020541415610cc6576000548114610cc5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d308686866001611834565b505050505050565b610d40611618565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d86573d6000803e3d6000fd5b50565b610d91611618565b610d9961183a565b565b610db683838360405180602001604052806000815250611333565b505050565b610dc3611618565b80600c9080519060200190610dd9929190611f55565b5050565b6000600860149054906101000a900460ff16905090565b610dfc611618565b600a5481610e086109fc565b610e129190612869565b1115610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a906126e4565b60405180910390fd5b610e5d828261189d565b5050565b6000610e6c826116a7565b9050919050565b60095481565b600c8054610e86906129cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb2906129cf565b8015610eff5780601f10610ed457610100808354040283529160200191610eff565b820191906000526020600020905b815481529060010190602001808311610ee257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f6f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fc8611618565b610fd260006118bb565b565b600b5481565b610fe2611618565b610fea611981565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61101e611618565b8060098190555050565b606060038054611037906129cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611063906129cf565b80156110b05780601f10611085576101008083540402835291602001916110b0565b820191906000526020600020905b81548152906001019060200180831161109357829003601f168201915b5050505050905090565b6110c26119e4565b806009546110d091906128bf565b341015611112576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611109906126a4565b60405180910390fd5b600b54811115611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90612704565b60405180910390fd5b600a54816111636109fc565b61116d9190612869565b11156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a5906126e4565b60405180910390fd5b6111b8338261189d565b50565b6111c3611696565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611228576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611235611696565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112e2611696565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113279190612647565b60405180910390a35050565b61133e848484610a13565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113a05761136984848484611a2e565b61139f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6113ae611618565b600a5481106113f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e990612744565b60405180910390fd5b80600a8190555050565b6060611407826115b9565b61143d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611447611b8e565b90506000815114156114685760405180602001604052806000815250611493565b8061147284611c20565b6040516020016114839291906125bc565b6040516020818303038152906040525b915050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61153d611618565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a4906126c4565b60405180910390fd5b6115b6816118bb565b50565b6000816115c461169e565b111580156115d3575060005482105b8015611611575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b611620611c7a565b73ffffffffffffffffffffffffffffffffffffffff1661163e610fec565b73ffffffffffffffffffffffffffffffffffffffff1614611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b90612764565b60405180910390fd5b565b600033905090565b60006001905090565b600080829050806116b661169e565b1161173e5760005481101561173d5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561173b575b6000811415611731576004600083600190039350838152602001908152602001600020549050611706565b8092505050611770565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117f8868684611c82565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611842611c8b565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611886611c7a565b60405161189391906125e0565b60405180910390a1565b6118b7828260405180602001604052806000815250611cd4565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119896119e4565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586119cd611c7a565b6040516119da91906125e0565b60405180910390a1565b6119ec610ddd565b15611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390612724565b60405180910390fd5b565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a54611696565b8786866040518563ffffffff1660e01b8152600401611a7694939291906125fb565b602060405180830381600087803b158015611a9057600080fd5b505af1925050508015611ac157506040513d601f19601f82011682018060405250810190611abe9190612331565b60015b611b3b573d8060008114611af1576040519150601f19603f3d011682016040523d82523d6000602084013e611af6565b606091505b50600081511415611b33576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611b9d906129cf565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc9906129cf565b8015611c165780601f10611beb57610100808354040283529160200191611c16565b820191906000526020600020905b815481529060010190602001808311611bf957829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611c6657600183039250600a81066030018353600a81049050611c46565b508181036020830392508083525050919050565b600033905090565b60009392505050565b611c93610ddd565b611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990612684565b60405180910390fd5b565b611cde8383611d71565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6c57600080549050600083820390505b611d1e6000868380600101945086611a2e565b611d54576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d0b578160005414611d6957600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dde576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611e19576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e2660008483856117db565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e9d83611e8e60008660006117e1565b611e9785611f45565b17611809565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611ec157806000819055505050611f406000848385611834565b505050565b60006001821460e11b9050919050565b828054611f61906129cf565b90600052602060002090601f016020900481019282611f835760008555611fca565b82601f10611f9c57805160ff1916838001178555611fca565b82800160010185558215611fca579182015b82811115611fc9578251825591602001919060010190611fae565b5b509050611fd79190611fdb565b5090565b5b80821115611ff4576000816000905550600101611fdc565b5090565b600061200b612006846127c4565b61279f565b90508281526020810184848401111561202757612026612ac4565b5b61203284828561298d565b509392505050565b600061204d612048846127f5565b61279f565b90508281526020810184848401111561206957612068612ac4565b5b61207484828561298d565b509392505050565b60008135905061208b81612c78565b92915050565b6000813590506120a081612c8f565b92915050565b6000813590506120b581612ca6565b92915050565b6000815190506120ca81612ca6565b92915050565b600082601f8301126120e5576120e4612abf565b5b81356120f5848260208601611ff8565b91505092915050565b600082601f83011261211357612112612abf565b5b813561212384826020860161203a565b91505092915050565b60008135905061213b81612cbd565b92915050565b60006020828403121561215757612156612ace565b5b60006121658482850161207c565b91505092915050565b6000806040838503121561218557612184612ace565b5b60006121938582860161207c565b92505060206121a48582860161207c565b9150509250929050565b6000806000606084860312156121c7576121c6612ace565b5b60006121d58682870161207c565b93505060206121e68682870161207c565b92505060406121f78682870161212c565b9150509250925092565b6000806000806080858703121561221b5761221a612ace565b5b60006122298782880161207c565b945050602061223a8782880161207c565b935050604061224b8782880161212c565b925050606085013567ffffffffffffffff81111561226c5761226b612ac9565b5b612278878288016120d0565b91505092959194509250565b6000806040838503121561229b5761229a612ace565b5b60006122a98582860161207c565b92505060206122ba85828601612091565b9150509250929050565b600080604083850312156122db576122da612ace565b5b60006122e98582860161207c565b92505060206122fa8582860161212c565b9150509250929050565b60006020828403121561231a57612319612ace565b5b6000612328848285016120a6565b91505092915050565b60006020828403121561234757612346612ace565b5b6000612355848285016120bb565b91505092915050565b60006020828403121561237457612373612ace565b5b600082013567ffffffffffffffff81111561239257612391612ac9565b5b61239e848285016120fe565b91505092915050565b6000602082840312156123bd576123bc612ace565b5b60006123cb8482850161212c565b91505092915050565b6123dd81612919565b82525050565b6123ec8161292b565b82525050565b60006123fd82612826565b612407818561283c565b935061241781856020860161299c565b61242081612ad3565b840191505092915050565b600061243682612831565b612440818561284d565b935061245081856020860161299c565b61245981612ad3565b840191505092915050565b600061246f82612831565b612479818561285e565b935061248981856020860161299c565b80840191505092915050565b60006124a260148361284d565b91506124ad82612ae4565b602082019050919050565b60006124c5601c8361284d565b91506124d082612b0d565b602082019050919050565b60006124e860268361284d565b91506124f382612b36565b604082019050919050565b600061250b60158361284d565b915061251682612b85565b602082019050919050565b600061252e60198361284d565b915061253982612bae565b602082019050919050565b600061255160108361284d565b915061255c82612bd7565b602082019050919050565b600061257460258361284d565b915061257f82612c00565b604082019050919050565b600061259760208361284d565b91506125a282612c4f565b602082019050919050565b6125b681612983565b82525050565b60006125c88285612464565b91506125d48284612464565b91508190509392505050565b60006020820190506125f560008301846123d4565b92915050565b600060808201905061261060008301876123d4565b61261d60208301866123d4565b61262a60408301856125ad565b818103606083015261263c81846123f2565b905095945050505050565b600060208201905061265c60008301846123e3565b92915050565b6000602082019050818103600083015261267c818461242b565b905092915050565b6000602082019050818103600083015261269d81612495565b9050919050565b600060208201905081810360008301526126bd816124b8565b9050919050565b600060208201905081810360008301526126dd816124db565b9050919050565b600060208201905081810360008301526126fd816124fe565b9050919050565b6000602082019050818103600083015261271d81612521565b9050919050565b6000602082019050818103600083015261273d81612544565b9050919050565b6000602082019050818103600083015261275d81612567565b9050919050565b6000602082019050818103600083015261277d8161258a565b9050919050565b600060208201905061279960008301846125ad565b92915050565b60006127a96127ba565b90506127b58282612a01565b919050565b6000604051905090565b600067ffffffffffffffff8211156127df576127de612a90565b5b6127e882612ad3565b9050602081019050919050565b600067ffffffffffffffff8211156128105761280f612a90565b5b61281982612ad3565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061287482612983565b915061287f83612983565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128b4576128b3612a32565b5b828201905092915050565b60006128ca82612983565b91506128d583612983565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561290e5761290d612a32565b5b828202905092915050565b600061292482612963565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156129ba57808201518184015260208101905061299f565b838111156129c9576000848401525b50505050565b600060028204905060018216806129e757607f821691505b602082108114156129fb576129fa612a61565b5b50919050565b612a0a82612ad3565b810181811067ffffffffffffffff82111715612a2957612a28612a90565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045544820666f722070757263686173652e00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682072656d61696e696e672e0000000000000000000000600082015250565b7f6578636565646564206d6178206d696e7420616d6f756e742e00000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4e657720737570706c79206d757374206265206c657373207468616e2063757260008201527f72656e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612c8181612919565b8114612c8c57600080fd5b50565b612c988161292b565b8114612ca357600080fd5b50565b612caf81612937565b8114612cba57600080fd5b50565b612cc681612983565b8114612cd157600080fd5b5056fea26469706673582212208500d3fd5a15c9a72e4f4613999a97aeccbe1d2666e5a65d864198f78fd77ed564736f6c63430008070033

Deployed Bytecode Sourcemap

51089:1999:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20840:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26487:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28433:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52256:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27981:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19894:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37698:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52619:107;;;;;;;;;;;;;:::i;:::-;;52919:65;;;;;;;;;;;;;:::i;:::-;;29323:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51469:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2566:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51964:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26276:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51141:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51258:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21519:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5431:103;;;;;;;;;;;;;:::i;:::-;;51224:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52850:61;;;;;;;;;;;;;:::i;:::-;;4783:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52156:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26656:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51581:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28709:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29579:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52380:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26831:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51186:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29088:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5689:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20840:615;20925:4;21240:10;21225:25;;:11;:25;;;;:102;;;;21317:10;21302:25;;:11;:25;;;;21225:102;:179;;;;21394:10;21379:25;;:11;:25;;;;21225:179;21205:199;;20840:615;;;:::o;26487:100::-;26541:13;26574:5;26567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26487:100;:::o;28433:204::-;28501:7;28526:16;28534:7;28526;:16::i;:::-;28521:64;;28551:34;;;;;;;;;;;;;;28521:64;28605:15;:24;28621:7;28605:24;;;;;;;;;;;;;;;;;;;;;28598:31;;28433:204;;;:::o;52256:116::-;4669:13;:11;:13::i;:::-;52347:17:::1;52337:7;:27;;;;52256:116:::0;:::o;27981:386::-;28054:13;28070:16;28078:7;28070;:16::i;:::-;28054:32;;28126:5;28103:28;;:19;:17;:19::i;:::-;:28;;;28099:175;;28151:44;28168:5;28175:19;:17;:19::i;:::-;28151:16;:44::i;:::-;28146:128;;28223:35;;;;;;;;;;;;;;28146:128;28099:175;28313:2;28286:15;:24;28302:7;28286:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28351:7;28347:2;28331:28;;28340:5;28331:28;;;;;;;;;;;;28043:324;27981:386;;:::o;19894:315::-;19947:7;20175:15;:13;:15::i;:::-;20160:12;;20144:13;;:28;:46;20137:53;;19894:315;:::o;37698:2800::-;37832:27;37862;37881:7;37862:18;:27::i;:::-;37832:57;;37947:4;37906:45;;37922:19;37906:45;;;37902:86;;37960:28;;;;;;;;;;;;;;37902:86;38002:27;38031:23;38058:28;38078:7;38058:19;:28::i;:::-;38001:85;;;;38186:62;38205:15;38222:4;38228:19;:17;:19::i;:::-;38186:18;:62::i;:::-;38181:174;;38268:43;38285:4;38291:19;:17;:19::i;:::-;38268:16;:43::i;:::-;38263:92;;38320:35;;;;;;;;;;;;;;38263:92;38181:174;38386:1;38372:16;;:2;:16;;;38368:52;;;38397:23;;;;;;;;;;;;;;38368:52;38433:43;38455:4;38461:2;38465:7;38474:1;38433:21;:43::i;:::-;38569:15;38566:160;;;38709:1;38688:19;38681:30;38566:160;39104:18;:24;39123:4;39104:24;;;;;;;;;;;;;;;;39102:26;;;;;;;;;;;;39173:18;:22;39192:2;39173:22;;;;;;;;;;;;;;;;39171:24;;;;;;;;;;;39495:145;39532:2;39580:45;39595:4;39601:2;39605:19;39580:14;:45::i;:::-;17122:8;39553:72;39495:18;:145::i;:::-;39466:17;:26;39484:7;39466:26;;;;;;;;;;;:174;;;;39810:1;17122:8;39760:19;:46;:51;39756:626;;;39832:19;39864:1;39854:7;:11;39832:33;;40021:1;39987:17;:30;40005:11;39987:30;;;;;;;;;;;;:35;39983:384;;;40125:13;;40110:11;:28;40106:242;;40305:19;40272:17;:30;40290:11;40272:30;;;;;;;;;;;:52;;;;40106:242;39983:384;39813:569;39756:626;40429:7;40425:2;40410:27;;40419:4;40410:27;;;;;;;;;;;;40448:42;40469:4;40475:2;40479:7;40488:1;40448:20;:42::i;:::-;37821:2677;;;37698:2800;;;:::o;52619:107::-;4669:13;:11;:13::i;:::-;52675:10:::1;52667:28;;:51;52696:21;52667:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52619:107::o:0;52919:65::-;4669:13;:11;:13::i;:::-;52966:10:::1;:8;:10::i;:::-;52919:65::o:0;29323:185::-;29461:39;29478:4;29484:2;29488:7;29461:39;;;;;;;;;;;;:16;:39::i;:::-;29323:185;;;:::o;51469:104::-;4669:13;:11;:13::i;:::-;51554:11:::1;51544:7;:21;;;;;;;;;;;;:::i;:::-;;51469:104:::0;:::o;2566:86::-;2613:4;2637:7;;;;;;;;;;;2630:14;;2566:86;:::o;51964:184::-;4669:13;:11;:13::i;:::-;52073:9:::1;;52063:6;52047:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;52039:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52119:21;52129:2;52133:6;52119:9;:21::i;:::-;51964:184:::0;;:::o;26276:144::-;26340:7;26383:27;26402:7;26383:18;:27::i;:::-;26360:52;;26276:144;;;:::o;51141:38::-;;;;:::o;51258:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21519:224::-;21583:7;21624:1;21607:19;;:5;:19;;;21603:60;;;21635:28;;;;;;;;;;;;;;21603:60;16074:13;21681:18;:25;21700:5;21681:25;;;;;;;;;;;;;;;;:54;21674:61;;21519:224;;;:::o;5431:103::-;4669:13;:11;:13::i;:::-;5496:30:::1;5523:1;5496:18;:30::i;:::-;5431:103::o:0;51224:27::-;;;;:::o;52850:61::-;4669:13;:11;:13::i;:::-;52895:8:::1;:6;:8::i;:::-;52850:61::o:0;4783:87::-;4829:7;4856:6;;;;;;;;;;;4849:13;;4783:87;:::o;52156:92::-;4669:13;:11;:13::i;:::-;52232:8:::1;52220:9;:20;;;;52156:92:::0;:::o;26656:104::-;26712:13;26745:7;26738:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26656:104;:::o;51581:375::-;2171:19;:17;:19::i;:::-;51700:6:::1;51688:9;;:18;;;;:::i;:::-;51675:9;:31;;51653:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;51791:7;;51781:6;:17;;51773:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;51873:9;;51863:6;51847:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;51839:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;51919:29;51929:10;51941:6;51919:9;:29::i;:::-;51581:375:::0;:::o;28709:308::-;28820:19;:17;:19::i;:::-;28808:31;;:8;:31;;;28804:61;;;28848:17;;;;;;;;;;;;;;28804:61;28930:8;28878:18;:39;28897:19;:17;:19::i;:::-;28878:39;;;;;;;;;;;;;;;:49;28918:8;28878:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28990:8;28954:55;;28969:19;:17;:19::i;:::-;28954:55;;;29000:8;28954:55;;;;;;:::i;:::-;;;;;;;;28709:308;;:::o;29579:399::-;29746:31;29759:4;29765:2;29769:7;29746:12;:31::i;:::-;29810:1;29792:2;:14;;;:19;29788:183;;29831:56;29862:4;29868:2;29872:7;29881:5;29831:30;:56::i;:::-;29826:145;;29915:40;;;;;;;;;;;;;;29826:145;29788:183;29579:399;;;;:::o;52380:231::-;4669:13;:11;:13::i;:::-;52493:9:::1;;52477:13;:25;52455:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;52590:13;52578:9;:25;;;;52380:231:::0;:::o;26831:318::-;26904:13;26935:16;26943:7;26935;:16::i;:::-;26930:59;;26960:29;;;;;;;;;;;;;;26930:59;27002:21;27026:10;:8;:10::i;:::-;27002:34;;27079:1;27060:7;27054:21;:26;;:87;;;;;;;;;;;;;;;;;27107:7;27116:18;27126:7;27116:9;:18::i;:::-;27090:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27054:87;27047:94;;;26831:318;;;:::o;51186:31::-;;;;:::o;29088:164::-;29185:4;29209:18;:25;29228:5;29209:25;;;;;;;;;;;;;;;:35;29235:8;29209:35;;;;;;;;;;;;;;;;;;;;;;;;;29202:42;;29088:164;;;;:::o;5689:201::-;4669:13;:11;:13::i;:::-;5798:1:::1;5778:22;;:8;:22;;;;5770:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5854:28;5873:8;5854:18;:28::i;:::-;5689:201:::0;:::o;30233:273::-;30290:4;30346:7;30327:15;:13;:15::i;:::-;:26;;:66;;;;;30380:13;;30370:7;:23;30327:66;:152;;;;;30478:1;16844:8;30431:17;:26;30449:7;30431:26;;;;;;;;;;;;:43;:48;30327:152;30307:172;;30233:273;;;:::o;4948:132::-;5023:12;:10;:12::i;:::-;5012:23;;:7;:5;:7::i;:::-;:23;;;5004:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4948:132::o;48794:105::-;48854:7;48881:10;48874:17;;48794:105;:::o;52992:93::-;53049:7;53076:1;53069:8;;52992:93;:::o;23193:1129::-;23260:7;23280:12;23295:7;23280:22;;23363:4;23344:15;:13;:15::i;:::-;:23;23340:915;;23397:13;;23390:4;:20;23386:869;;;23435:14;23452:17;:23;23470:4;23452:23;;;;;;;;;;;;23435:40;;23568:1;16844:8;23541:6;:23;:28;23537:699;;;24060:113;24077:1;24067:6;:11;24060:113;;;24120:17;:25;24138:6;;;;;;;24120:25;;;;;;;;;;;;24111:34;;24060:113;;;24206:6;24199:13;;;;;;23537:699;23412:843;23386:869;23340:915;24283:31;;;;;;;;;;;;;;23193:1129;;;;:::o;36034:652::-;36129:27;36158:23;36199:53;36255:15;36199:71;;36441:7;36435:4;36428:21;36476:22;36470:4;36463:36;36552:4;36546;36536:21;36513:44;;36648:19;36642:26;36623:45;;36379:300;36034:652;;;:::o;36799:645::-;36941:11;37103:15;37097:4;37093:26;37085:34;;37262:15;37251:9;37247:31;37234:44;;37409:15;37398:9;37395:30;37388:4;37377:9;37374:19;37371:55;37361:65;;36799:645;;;;;:::o;47627:159::-;;;;;:::o;45939:309::-;46074:7;46094:16;17245:3;46120:19;:40;;46094:67;;17245:3;46187:31;46198:4;46204:2;46208:9;46187:10;:31::i;:::-;46179:40;;:61;;46172:68;;;45939:309;;;;;:::o;25767:447::-;25847:14;26015:15;26008:5;26004:27;25995:36;;26189:5;26175:11;26151:22;26147:40;26144:51;26137:5;26134:62;26124:72;;25767:447;;;;:::o;48445:158::-;;;;;:::o;3421:120::-;2430:16;:14;:16::i;:::-;3490:5:::1;3480:7;;:15;;;;;;;;;;;;;;;;;;3511:22;3520:12;:10;:12::i;:::-;3511:22;;;;;;:::i;:::-;;;;;;;;3421:120::o:0;30590:104::-;30659:27;30669:2;30673:8;30659:27;;;;;;;;;;;;:9;:27::i;:::-;30590:104;;:::o;6050:191::-;6124:16;6143:6;;;;;;;;;;;6124:25;;6169:8;6160:6;;:17;;;;;;;;;;;;;;;;;;6224:8;6193:40;;6214:8;6193:40;;;;;;;;;;;;6113:128;6050:191;:::o;3162:118::-;2171:19;:17;:19::i;:::-;3232:4:::1;3222:7;;:14;;;;;;;;;;;;;;;;;;3252:20;3259:12;:10;:12::i;:::-;3252:20;;;;;;:::i;:::-;;;;;;;;3162:118::o:0;2725:108::-;2796:8;:6;:8::i;:::-;2795:9;2787:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;2725:108::o;44449:716::-;44612:4;44658:2;44633:45;;;44679:19;:17;:19::i;:::-;44700:4;44706:7;44715:5;44633:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44629:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44933:1;44916:6;:13;:18;44912:235;;;44962:40;;;;;;;;;;;;;;44912:235;45105:6;45099:13;45090:6;45086:2;45082:15;45075:38;44629:529;44802:54;;;44792:64;;;:6;:64;;;;44785:71;;;44449:716;;;;;;:::o;52734:108::-;52794:13;52827:7;52820:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52734:108;:::o;49005:1960::-;49062:17;49481:3;49474:4;49468:11;49464:21;49457:28;;49572:3;49566:4;49559:17;49678:3;50134:5;50264:1;50259:3;50255:11;50248:18;;50401:2;50395:4;50391:13;50387:2;50383:22;50378:3;50370:36;50442:2;50436:4;50432:13;50424:21;;50026:697;50461:4;50026:697;;;50652:1;50647:3;50643:11;50636:18;;50703:2;50697:4;50693:13;50689:2;50685:22;50680:3;50672:36;50556:2;50550:4;50546:13;50538:21;;50026:697;;;50030:430;50762:3;50757;50753:13;50877:2;50872:3;50868:12;50861:19;;50940:6;50935:3;50928:19;49101:1857;;49005:1960;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;46824:147::-;46961:6;46824:147;;;;;:::o;2910:108::-;2977:8;:6;:8::i;:::-;2969:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2910:108::o;31110:681::-;31233:19;31239:2;31243:8;31233:5;:19::i;:::-;31312:1;31294:2;:14;;;:19;31290:483;;31334:11;31348:13;;31334:27;;31380:13;31402:8;31396:3;:14;31380:30;;31429:233;31460:62;31499:1;31503:2;31507:7;;;;;;31516:5;31460:30;:62::i;:::-;31455:167;;31558:40;;;;;;;;;;;;;;31455:167;31657:3;31649:5;:11;31429:233;;31744:3;31727:13;;:20;31723:34;;31749:8;;;31723:34;31315:458;;31290:483;31110:681;;;:::o;32064:1529::-;32129:20;32152:13;;32129:36;;32194:1;32180:16;;:2;:16;;;32176:48;;;32205:19;;;;;;;;;;;;;;32176:48;32251:1;32239:8;:13;32235:44;;;32261:18;;;;;;;;;;;;;;32235:44;32292:61;32322:1;32326:2;32330:12;32344:8;32292:21;:61::i;:::-;32835:1;16211:2;32806:1;:25;;32805:31;32793:8;:44;32767:18;:22;32786:2;32767:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;33114:139;33151:2;33205:33;33228:1;33232:2;33236:1;33205:14;:33::i;:::-;33172:30;33193:8;33172:20;:30::i;:::-;:66;33114:18;:139::i;:::-;33080:17;:31;33098:12;33080:31;;;;;;;;;;;:173;;;;33270:15;33288:12;33270:30;;33315:11;33344:8;33329:12;:23;33315:37;;33367:101;33419:9;;;;;;33415:2;33394:35;;33411:1;33394:35;;;;;;;;;;;;33463:3;33453:7;:13;33367:101;;33500:3;33484:13;:19;;;;32541:974;;33525:60;33554:1;33558:2;33562:12;33576:8;33525:20;:60::i;:::-;32118:1475;32064:1529;;:::o;27597:322::-;27667:14;27898:1;27888:8;27885:15;27860:23;27856:45;27846:55;;27597:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:118::-;11579:24;11597:5;11579:24;:::i;:::-;11574:3;11567:37;11492:118;;:::o;11616:435::-;11796:3;11818:95;11909:3;11900:6;11818:95;:::i;:::-;11811:102;;11930:95;12021:3;12012:6;11930:95;:::i;:::-;11923:102;;12042:3;12035:10;;11616:435;;;;;:::o;12057:222::-;12150:4;12188:2;12177:9;12173:18;12165:26;;12201:71;12269:1;12258:9;12254:17;12245:6;12201:71;:::i;:::-;12057:222;;;;:::o;12285:640::-;12480:4;12518:3;12507:9;12503:19;12495:27;;12532:71;12600:1;12589:9;12585:17;12576:6;12532:71;:::i;:::-;12613:72;12681:2;12670:9;12666:18;12657:6;12613:72;:::i;:::-;12695;12763:2;12752:9;12748:18;12739:6;12695:72;:::i;:::-;12814:9;12808:4;12804:20;12799:2;12788:9;12784:18;12777:48;12842:76;12913:4;12904:6;12842:76;:::i;:::-;12834:84;;12285:640;;;;;;;:::o;12931:210::-;13018:4;13056:2;13045:9;13041:18;13033:26;;13069:65;13131:1;13120:9;13116:17;13107:6;13069:65;:::i;:::-;12931:210;;;;:::o;13147:313::-;13260:4;13298:2;13287:9;13283:18;13275:26;;13347:9;13341:4;13337:20;13333:1;13322:9;13318:17;13311:47;13375:78;13448:4;13439:6;13375:78;:::i;:::-;13367:86;;13147:313;;;;:::o;13466:419::-;13632:4;13670:2;13659:9;13655:18;13647:26;;13719:9;13713:4;13709:20;13705:1;13694:9;13690:17;13683:47;13747:131;13873:4;13747:131;:::i;:::-;13739:139;;13466:419;;;:::o;13891:::-;14057:4;14095:2;14084:9;14080:18;14072:26;;14144:9;14138:4;14134:20;14130:1;14119:9;14115:17;14108:47;14172:131;14298:4;14172:131;:::i;:::-;14164:139;;13891:419;;;:::o;14316:::-;14482:4;14520:2;14509:9;14505:18;14497:26;;14569:9;14563:4;14559:20;14555:1;14544:9;14540:17;14533:47;14597:131;14723:4;14597:131;:::i;:::-;14589:139;;14316:419;;;:::o;14741:::-;14907:4;14945:2;14934:9;14930:18;14922:26;;14994:9;14988:4;14984:20;14980:1;14969:9;14965:17;14958:47;15022:131;15148:4;15022:131;:::i;:::-;15014:139;;14741:419;;;:::o;15166:::-;15332:4;15370:2;15359:9;15355:18;15347:26;;15419:9;15413:4;15409:20;15405:1;15394:9;15390:17;15383:47;15447:131;15573:4;15447:131;:::i;:::-;15439:139;;15166:419;;;:::o;15591:::-;15757:4;15795:2;15784:9;15780:18;15772:26;;15844:9;15838:4;15834:20;15830:1;15819:9;15815:17;15808:47;15872:131;15998:4;15872:131;:::i;:::-;15864:139;;15591:419;;;:::o;16016:::-;16182:4;16220:2;16209:9;16205:18;16197:26;;16269:9;16263:4;16259:20;16255:1;16244:9;16240:17;16233:47;16297:131;16423:4;16297:131;:::i;:::-;16289:139;;16016:419;;;:::o;16441:::-;16607:4;16645:2;16634:9;16630:18;16622:26;;16694:9;16688:4;16684:20;16680:1;16669:9;16665:17;16658:47;16722:131;16848:4;16722:131;:::i;:::-;16714:139;;16441:419;;;:::o;16866:222::-;16959:4;16997:2;16986:9;16982:18;16974:26;;17010:71;17078:1;17067:9;17063:17;17054:6;17010:71;:::i;:::-;16866:222;;;;:::o;17094:129::-;17128:6;17155:20;;:::i;:::-;17145:30;;17184:33;17212:4;17204:6;17184:33;:::i;:::-;17094:129;;;:::o;17229:75::-;17262:6;17295:2;17289:9;17279:19;;17229:75;:::o;17310:307::-;17371:4;17461:18;17453:6;17450:30;17447:56;;;17483:18;;:::i;:::-;17447:56;17521:29;17543:6;17521:29;:::i;:::-;17513:37;;17605:4;17599;17595:15;17587:23;;17310:307;;;:::o;17623:308::-;17685:4;17775:18;17767:6;17764:30;17761:56;;;17797:18;;:::i;:::-;17761:56;17835:29;17857:6;17835:29;:::i;:::-;17827:37;;17919:4;17913;17909:15;17901:23;;17623:308;;;:::o;17937:98::-;17988:6;18022:5;18016:12;18006:22;;17937:98;;;:::o;18041:99::-;18093:6;18127:5;18121:12;18111:22;;18041:99;;;:::o;18146:168::-;18229:11;18263:6;18258:3;18251:19;18303:4;18298:3;18294:14;18279:29;;18146:168;;;;:::o;18320:169::-;18404:11;18438:6;18433:3;18426:19;18478:4;18473:3;18469:14;18454:29;;18320:169;;;;:::o;18495:148::-;18597:11;18634:3;18619:18;;18495:148;;;;:::o;18649:305::-;18689:3;18708:20;18726:1;18708:20;:::i;:::-;18703:25;;18742:20;18760:1;18742:20;:::i;:::-;18737:25;;18896:1;18828:66;18824:74;18821:1;18818:81;18815:107;;;18902:18;;:::i;:::-;18815:107;18946:1;18943;18939:9;18932:16;;18649:305;;;;:::o;18960:348::-;19000:7;19023:20;19041:1;19023:20;:::i;:::-;19018:25;;19057:20;19075:1;19057:20;:::i;:::-;19052:25;;19245:1;19177:66;19173:74;19170:1;19167:81;19162:1;19155:9;19148:17;19144:105;19141:131;;;19252:18;;:::i;:::-;19141:131;19300:1;19297;19293:9;19282:20;;18960:348;;;;:::o;19314:96::-;19351:7;19380:24;19398:5;19380:24;:::i;:::-;19369:35;;19314:96;;;:::o;19416:90::-;19450:7;19493:5;19486:13;19479:21;19468:32;;19416:90;;;:::o;19512:149::-;19548:7;19588:66;19581:5;19577:78;19566:89;;19512:149;;;:::o;19667:126::-;19704:7;19744:42;19737:5;19733:54;19722:65;;19667:126;;;:::o;19799:77::-;19836:7;19865:5;19854:16;;19799:77;;;:::o;19882:154::-;19966:6;19961:3;19956;19943:30;20028:1;20019:6;20014:3;20010:16;20003:27;19882:154;;;:::o;20042:307::-;20110:1;20120:113;20134:6;20131:1;20128:13;20120:113;;;20219:1;20214:3;20210:11;20204:18;20200:1;20195:3;20191:11;20184:39;20156:2;20153:1;20149:10;20144:15;;20120:113;;;20251:6;20248:1;20245:13;20242:101;;;20331:1;20322:6;20317:3;20313:16;20306:27;20242:101;20091:258;20042:307;;;:::o;20355:320::-;20399:6;20436:1;20430:4;20426:12;20416:22;;20483:1;20477:4;20473:12;20504:18;20494:81;;20560:4;20552:6;20548:17;20538:27;;20494:81;20622:2;20614:6;20611:14;20591:18;20588:38;20585:84;;;20641:18;;:::i;:::-;20585:84;20406:269;20355:320;;;:::o;20681:281::-;20764:27;20786:4;20764:27;:::i;:::-;20756:6;20752:40;20894:6;20882:10;20879:22;20858:18;20846:10;20843:34;20840:62;20837:88;;;20905:18;;:::i;:::-;20837:88;20945:10;20941:2;20934:22;20724:238;20681:281;;:::o;20968:180::-;21016:77;21013:1;21006:88;21113:4;21110:1;21103:15;21137:4;21134:1;21127:15;21154:180;21202:77;21199:1;21192:88;21299:4;21296:1;21289:15;21323:4;21320:1;21313:15;21340:180;21388:77;21385:1;21378:88;21485:4;21482:1;21475:15;21509:4;21506:1;21499:15;21526:117;21635:1;21632;21625:12;21649:117;21758:1;21755;21748:12;21772:117;21881:1;21878;21871:12;21895:117;22004:1;22001;21994:12;22018:102;22059:6;22110:2;22106:7;22101:2;22094:5;22090:14;22086:28;22076:38;;22018:102;;;:::o;22126:170::-;22266:22;22262:1;22254:6;22250:14;22243:46;22126:170;:::o;22302:178::-;22442:30;22438:1;22430:6;22426:14;22419:54;22302:178;:::o;22486:225::-;22626:34;22622:1;22614:6;22610:14;22603:58;22695:8;22690:2;22682:6;22678:15;22671:33;22486:225;:::o;22717:171::-;22857:23;22853:1;22845:6;22841:14;22834:47;22717:171;:::o;22894:175::-;23034:27;23030:1;23022:6;23018:14;23011:51;22894:175;:::o;23075:166::-;23215:18;23211:1;23203:6;23199:14;23192:42;23075:166;:::o;23247:224::-;23387:34;23383:1;23375:6;23371:14;23364:58;23456:7;23451:2;23443:6;23439:15;23432:32;23247:224;:::o;23477:182::-;23617:34;23613:1;23605:6;23601:14;23594:58;23477:182;:::o;23665:122::-;23738:24;23756:5;23738:24;:::i;:::-;23731:5;23728:35;23718:63;;23777:1;23774;23767:12;23718:63;23665:122;:::o;23793:116::-;23863:21;23878:5;23863:21;:::i;:::-;23856:5;23853:32;23843:60;;23899:1;23896;23889:12;23843:60;23793:116;:::o;23915:120::-;23987:23;24004:5;23987:23;:::i;:::-;23980:5;23977:34;23967:62;;24025:1;24022;24015:12;23967:62;23915:120;:::o;24041:122::-;24114:24;24132:5;24114:24;:::i;:::-;24107:5;24104:35;24094:63;;24153:1;24150;24143:12;24094:63;24041:122;:::o

Swarm Source

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