ETH Price: $3,387.74 (-1.73%)
Gas: 3 Gwei

Token

McLady Maker (MCLADY)
 

Overview

Max Total Supply

128 MCLADY

Holders

66

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
goul.guardianof.eth
Balance
1 MCLADY
0x3bda56ef07bf6f996f8e3defddde6c8109b7e7be
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:
McLadyMaker

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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);
}

// File: @openzeppelin/contracts/interfaces/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: contracts/McLadyMaker.sol

//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

//  WELCOME TO MCLADY CAN I TAKE YOUR ORDER?
//                      .;!!!!!!!!!!!!!!!;;!!!!!!!!>;;.
//                     .;!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!>;
//                 .;!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!>
//                <!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!;
//              ;!!!!!!!!!!!!!!!!!!!!!!!!!!'!!!!!!!!!!!!!!!!!!!!.
//             <!!!!!!!!!!!!!!!!!!!!!!!!'`  `''!!!!!!!!!!!!!!!!!!!;
//            <!!!!!!!!!!!!!!!!!!!!!!!!'  uc.  `''!!!!!!!!!!!!!!!!!!
//            !!!!!!!!!!!!!!!!!!!!!''   z$$$$$beu  `'!!!!!!!!!!!!!!!!
//           :!!!!!!!!!!!!!!''`   .,=n$$$$$$$$$$$$P==._`'!!!!!!!!!!!!!
//           '!!!!!!!!!!!!`   zdP"      "$$$$$$$   ..  `. `!!!!!!!!!!!>
//           !!!!!!!!!!!!:  J$F  zd$$$bee$$$$$$  ,$$$$c  ;  !!!!!!!!!!>
//         ;!!!!!!!!!!!!!!  Jbu$$$$$$$$$$$$$$$$$$$$$$$$$$L :!!!!!!!!!!'
//       ;!!!!!!!!!!!!!!!!  d$$$$$$?????$$$$$$$$$???$$$$$$  !!!!!!!!!!
//      .!!!!!!!!!!!!!!!!!  $$$$$F  z+c.`?$$$$$$  ...`?$$$k `!!!!!!!!!
//      !!!!!!!!!!!!!!!!!!  d$$$$  `      3$$$$L.-     3$$$ '!!!!!!!!!>
//      `!!!!!!!!!!!!!!!!  d$$$$$bec   .ed$$$$$$bc.  .e$$$$ :!!!!!!!!!!
//      `!!!!!!!!!!!!!!'  z$$$$$$$$$be$$$$$P" `"?$$b,$$$$$F <!!!!!!!!!!
//       !!!!!!!!!!!!!!  J$$$$$$$$$$$$$$$F .e$$e. ?$$$$$$$$  !!!!!!!!!!
//       `!!!!!!!!!!!'   $$$$$$$$$$$$$$$$c  `     d$$$$$$$$  `!!!!!!!!!
//         `!!!!!!!!!   '$$$$$$$$"  `?$$$$$$$$$$$$$$$P"?$$$b  !!!!!!!'
//          `'!!!!!!!;   $$$$$$$"       """"""""""""    "$$P  !!!!!!
//            ```!!!!!>  $$$$$$$.      . . ......        $$P  !!!''
//              `'!!!!!  3$$$$$$$.       " """"""       d$$  ;!'
//                 ``''   $$$$$$$$b        -===       .d$$$
//                        "$$$$$$$$c                  d$$$"
//                  ..zdc  $$$$$$$$$b.               d$$$
//               .d$$""?$  4$$$$$$$$$$c.           .d$$$"
//            .,d$$$$u     d$$$P"?$$$$$$$$buc,,,ce$$$$$   4.
//         .zd$$$$$$$$b.   `?$$$c,.`"?$$$$$$$$$$$$$$P"    `?b.
//     .,d$$$$$$$$$$$$$$bu  `?$$$$$bc,. `"????????"        J$$.
// .zd$$$$$$$$$$$$$$$$$$$$$b,. `?$$$$$$$$$eeccuzee$$$F   ,d$$$$u
//  ?$$$$$$$$$$$$$$$$$$$$$$$$$bu. `?$$$$$$$$$$$$$P"  ,zd$$$$$$$$b.
// . ?$$$$$$$$$$$$$$$$$$$$$$$$$$$$b. `""??????"  .ed$$$$$$$$$$$$$$u ..
// :. ?$$$$$$$$$$$$$$$$$$$$$$$$$$$$$b.   ::   .d$$$$$$$$$$$$$$$$$$$b`:::...
// ::.`$$$$$$$$$$$$$$$$$$$$$$$$$F "$$$b      d$$$$$$$$$$$$$$$$$$$$$$ :::::::
// :::.`$$$$$$$$$$$$$$$$$$$$$$$" ,  `"$$   :$PF"'"$$$$$$$$$$$$$$$$$E :::::::
// :::: `$$$$$$$$$$$$$$$$$$$$P" nM  h. $b.z  .nn. ?$$$$$$$$$$$$$$$$F :::::::
// ::::: $$$$$$$$$$$$$$$$$$$'  dMMh '$$$$$$  MMMM  ?$$$$$$$$$$$$$$$F :::::::
/// @author The Hamburglar






contract McLadyMaker is  ERC721A, Ownable, ReentrancyGuard {
  
  address public drainGang = 0x5Af0D9827E0c53E4799BB226655A1de152A425a5;
  uint256 public MAX_SUPPLY = 1955; // MCLADY EST. 1955
  bool public mcMinting;
  bool public iceCreamMachineWorking;
  bool public mcRevealed;

  constructor() ERC721A("McLady Maker", "MCLADY") {}

  function mint(uint256 quantity) public payable {
    require(mcMinting, "No szechaun sauce");
    require(totalSupply() + quantity <= MAX_SUPPLY, "Ice cream machine broke");

    uint256 happyMealPrice;
    if (miladyMeal(msg.sender) || quantity >= 3) {
      happyMealPrice = 0.022 ether;
      require(msg.value >= happyMealPrice * quantity, "McPoor");
    } else {
      happyMealPrice = 0.033 ether;
      require(msg.value >= happyMealPrice * quantity, "Need a job application?");
    }
    _safeMint(msg.sender, quantity);
  }

  function mintTeam() external onlyOwner {
    require(!iceCreamMachineWorking, "Angry customer jumped through the McLady drive thru window");
    iceCreamMachineWorking = !iceCreamMachineWorking;
    _safeMint(msg.sender, 10);
  }

  function mcMintSwitch() external onlyOwner {
    mcMinting = !mcMinting;
  }

  function miladyMeal(address mcLadyCustomer) public view returns (bool) {
    return IERC721(drainGang).balanceOf(mcLadyCustomer) > 0;
  }

  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  string public unemployedURI = "ipfs://bafybeibvsx2bgbi2ey7t5fgsu3ohhsv3jxb437g6kefhhenrhy3bm2q66q/69";
  string public baseURI;

  function tokenURI(uint256 tokenId_) public view override returns (string memory) {
    if(!mcRevealed) {
      return unemployedURI;
    }
    return string(abi.encodePacked(baseURI, Strings.toString(tokenId_)));
  }

  function mcRevealSwitch() external onlyOwner {
    require(!mcRevealed, "Crack heads fighting in McLady parking lot");
    mcRevealed = !mcRevealed;
  }

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

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"drainGang","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"iceCreamMachineWorking","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mcMintSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mcMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mcRevealSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mcRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mcLadyCustomer","type":"address"}],"name":"miladyMeal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"mcURI","type":"string"}],"name":"setBaseURI","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":"unemployedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052735af0d9827e0c53e4799bb226655a1de152a425a5600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506107a3600b55604051806080016040528060458152602001620038a060459139600d90805190602001906200009092919062000256565b503480156200009e57600080fd5b506040518060400160405280600c81526020017f4d634c616479204d616b657200000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d434c414459000000000000000000000000000000000000000000000000000081525081600290805190602001906200012392919062000256565b5080600390805190602001906200013c92919062000256565b506200014d6200018360201b60201c565b600081905550505062000175620001696200018860201b60201c565b6200019060201b60201c565b60016009819055506200036b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002649062000306565b90600052602060002090601f016020900481019282620002885760008555620002d4565b82601f10620002a357805160ff1916838001178555620002d4565b82800160010185558215620002d4579182015b82811115620002d3578251825591602001919060010190620002b6565b5b509050620002e39190620002e7565b5090565b5b8082111562000302576000816000905550600101620002e8565b5090565b600060028204905060018216806200031f57607f821691505b602082108114156200033657620003356200033c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613525806200037b6000396000f3fe6080604052600436106101d85760003560e01c806370e197b311610102578063b88d4fde11610095578063e7898f9811610064578063e7898f9814610667578063e985e9c51461067e578063f2fde38b146106bb578063f58f1f8c146106e4576101d8565b8063b88d4fde146105ab578063c55c2568146105d4578063c87b56dd146105ff578063d72806cf1461063c576101d8565b8063a0712d68116100d1578063a0712d6814610524578063a22cb46514610540578063a493757d14610569578063a4c2773714610580576101d8565b806370e197b3146104a0578063715018a6146104b75780638da5cb5b146104ce57806395d89b41146104f9576101d8565b806323b872dd1161017a57806355f804b31161014957806355f804b3146103d25780636352211e146103fb5780636c0360eb1461043857806370a0823114610463576101d8565b806323b872dd1461033e57806332cb6b0c146103675780633ccfd60b1461039257806342842e0e146103a9576101d8565b8063081812fc116101b6578063081812fc14610282578063095ea7b3146102bf5780631804cda9146102e857806318160ddd14610313576101d8565b80630138c52a146101dd57806301ffc9a71461021a57806306fdde0314610257575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061263d565b61070f565b6040516102119190612c71565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612800565b6107c5565b60405161024e9190612c71565b60405180910390f35b34801561026357600080fd5b5061026c610857565b6040516102799190612c8c565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906128a7565b6108e9565b6040516102b69190612c0a565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e191906127c0565b610965565b005b3480156102f457600080fd5b506102fd610aa6565b60405161030a9190612c71565b60405180910390f35b34801561031f57600080fd5b50610328610ab9565b6040516103359190612dee565b60405180910390f35b34801561034a57600080fd5b50610365600480360381019061036091906126aa565b610ad0565b005b34801561037357600080fd5b5061037c610df5565b6040516103899190612dee565b60405180910390f35b34801561039e57600080fd5b506103a7610dfb565b005b3480156103b557600080fd5b506103d060048036038101906103cb91906126aa565b610f7c565b005b3480156103de57600080fd5b506103f960048036038101906103f4919061285a565b610f9c565b005b34801561040757600080fd5b50610422600480360381019061041d91906128a7565b61102e565b60405161042f9190612c0a565b60405180910390f35b34801561044457600080fd5b5061044d611040565b60405161045a9190612c8c565b60405180910390f35b34801561046f57600080fd5b5061048a6004803603810190610485919061263d565b6110ce565b6040516104979190612dee565b60405180910390f35b3480156104ac57600080fd5b506104b5611187565b005b3480156104c357600080fd5b506104cc61128a565b005b3480156104da57600080fd5b506104e3611312565b6040516104f09190612c0a565b60405180910390f35b34801561050557600080fd5b5061050e61133c565b60405161051b9190612c8c565b60405180910390f35b61053e600480360381019061053991906128a7565b6113ce565b005b34801561054c57600080fd5b5061056760048036038101906105629190612780565b611554565b005b34801561057557600080fd5b5061057e6116cc565b005b34801561058c57600080fd5b506105956117c4565b6040516105a29190612c0a565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd91906126fd565b6117ea565b005b3480156105e057600080fd5b506105e961185d565b6040516105f69190612c8c565b60405180910390f35b34801561060b57600080fd5b50610626600480360381019061062191906128a7565b6118eb565b6040516106339190612c8c565b60405180910390f35b34801561064857600080fd5b506106516119c6565b60405161065e9190612c71565b60405180910390f35b34801561067357600080fd5b5061067c6119d9565b005b34801561068a57600080fd5b506106a560048036038101906106a0919061266a565b611a81565b6040516106b29190612c71565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd919061263d565b611b15565b005b3480156106f057600080fd5b506106f9611c0d565b6040516107069190612c71565b60405180910390f35b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161076d9190612c0a565b60206040518083038186803b15801561078557600080fd5b505afa158015610799573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107bd91906128d4565b119050919050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108505750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108669061308d565b80601f01602080910402602001604051908101604052809291908181526020018280546108929061308d565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050905090565b60006108f482611c20565b61092a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109708261102e565b90508073ffffffffffffffffffffffffffffffffffffffff16610991611c7f565b73ffffffffffffffffffffffffffffffffffffffff16146109f4576109bd816109b8611c7f565b611a81565b6109f3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c60019054906101000a900460ff1681565b6000610ac3611c87565b6001546000540303905090565b6000610adb82611c8c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b42576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b4e84611d5a565b91509150610b648187610b5f611c7f565b611d7c565b610bb057610b7986610b74611c7f565b611a81565b610baf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c17576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c248686866001611dc0565b8015610c2f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cfd85610cd9888887611dc6565b7c020000000000000000000000000000000000000000000000000000000017611dee565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d85576000600185019050600060046000838152602001908152602001600020541415610d83576000548114610d82578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ded8686866001611e19565b505050505050565b600b5481565b610e03611e1f565b73ffffffffffffffffffffffffffffffffffffffff16610e21611312565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90612d0e565b60405180910390fd5b60026009541415610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490612dae565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610eeb90612bf5565b60006040518083038185875af1925050503d8060008114610f28576040519150601f19603f3d011682016040523d82523d6000602084013e610f2d565b606091505b5050905080610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890612d6e565b60405180910390fd5b506001600981905550565b610f97838383604051806020016040528060008152506117ea565b505050565b610fa4611e1f565b73ffffffffffffffffffffffffffffffffffffffff16610fc2611312565b73ffffffffffffffffffffffffffffffffffffffff1614611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90612d0e565b60405180910390fd5b8181600e9190611029929190612456565b505050565b600061103982611c8c565b9050919050565b600e805461104d9061308d565b80601f01602080910402602001604051908101604052809291908181526020018280546110799061308d565b80156110c65780601f1061109b576101008083540402835291602001916110c6565b820191906000526020600020905b8154815290600101906020018083116110a957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611136576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61118f611e1f565b73ffffffffffffffffffffffffffffffffffffffff166111ad611312565b73ffffffffffffffffffffffffffffffffffffffff1614611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90612d0e565b60405180910390fd5b600c60019054906101000a900460ff1615611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90612d4e565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff02191690831515021790555061128833600a611e27565b565b611292611e1f565b73ffffffffffffffffffffffffffffffffffffffff166112b0611312565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90612d0e565b60405180910390fd5b6113106000611e45565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461134b9061308d565b80601f01602080910402602001604051908101604052809291908181526020018280546113779061308d565b80156113c45780601f10611399576101008083540402835291602001916113c4565b820191906000526020600020905b8154815290600101906020018083116113a757829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1661141d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141490612d8e565b60405180910390fd5b600b5481611429610ab9565b6114339190612ec2565b1115611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b90612cee565b60405180910390fd5b600061147f3361070f565b8061148b575060038210155b156114ed57664e28e2290f0000905081816114a69190612f49565b3410156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90612d2e565b60405180910390fd5b611546565b66753d533d968000905081816115039190612f49565b341015611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90612dce565b60405180910390fd5b5b6115503383611e27565b5050565b61155c611c7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115ce611c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661167b611c7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c09190612c71565b60405180910390a35050565b6116d4611e1f565b73ffffffffffffffffffffffffffffffffffffffff166116f2611312565b73ffffffffffffffffffffffffffffffffffffffff1614611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90612d0e565b60405180910390fd5b600c60029054906101000a900460ff1615611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90612cce565b60405180910390fd5b600c60029054906101000a900460ff1615600c60026101000a81548160ff021916908315150217905550565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117f5848484610ad0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118575761182084848484611f0b565b611856576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d805461186a9061308d565b80601f01602080910402602001604051908101604052809291908181526020018280546118969061308d565b80156118e35780601f106118b8576101008083540402835291602001916118e3565b820191906000526020600020905b8154815290600101906020018083116118c657829003601f168201915b505050505081565b6060600c60029054906101000a900460ff1661199357600d805461190e9061308d565b80601f016020809104026020016040519081016040528092919081815260200182805461193a9061308d565b80156119875780601f1061195c57610100808354040283529160200191611987565b820191906000526020600020905b81548152906001019060200180831161196a57829003601f168201915b505050505090506119c1565b600e61199e8361206b565b6040516020016119af929190612bd1565b60405160208183030381529060405290505b919050565b600c60029054906101000a900460ff1681565b6119e1611e1f565b73ffffffffffffffffffffffffffffffffffffffff166119ff611312565b73ffffffffffffffffffffffffffffffffffffffff1614611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90612d0e565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b1d611e1f565b73ffffffffffffffffffffffffffffffffffffffff16611b3b611312565b73ffffffffffffffffffffffffffffffffffffffff1614611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890612d0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890612cae565b60405180910390fd5b611c0a81611e45565b50565b600c60009054906101000a900460ff1681565b600081611c2b611c87565b11158015611c3a575060005482105b8015611c78575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611c9b611c87565b11611d2357600054811015611d225760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d20575b6000811415611d16576004600083600190039350838152602001908152602001600020549050611ceb565b8092505050611d55565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ddd8686846121cc565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611e418282604051806020016040528060008152506121d5565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f31611c7f565b8786866040518563ffffffff1660e01b8152600401611f539493929190612c25565b602060405180830381600087803b158015611f6d57600080fd5b505af1925050508015611f9e57506040513d601f19601f82011682018060405250810190611f9b919061282d565b60015b612018573d8060008114611fce576040519150601f19603f3d011682016040523d82523d6000602084013e611fd3565b606091505b50600081511415612010576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156120b3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121c7565b600082905060005b600082146120e55780806120ce906130f0565b915050600a826120de9190612f18565b91506120bb565b60008167ffffffffffffffff81111561210157612100613226565b5b6040519080825280601f01601f1916602001820160405280156121335781602001600182028036833780820191505090505b5090505b600085146121c05760018261214c9190612fa3565b9150600a8561215b9190613139565b60306121679190612ec2565b60f81b81838151811061217d5761217c6131f7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121b99190612f18565b9450612137565b8093505050505b919050565b60009392505050565b6121df8383612272565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461226d57600080549050600083820390505b61221f6000868380600101945086611f0b565b612255576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061220c57816000541461226a57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122df576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561231a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123276000848385611dc0565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061239e8361238f6000866000611dc6565b61239885612446565b17611dee565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123c2578060008190555050506124416000848385611e19565b505050565b60006001821460e11b9050919050565b8280546124629061308d565b90600052602060002090601f01602090048101928261248457600085556124cb565b82601f1061249d57803560ff19168380011785556124cb565b828001600101855582156124cb579182015b828111156124ca5782358255916020019190600101906124af565b5b5090506124d891906124dc565b5090565b5b808211156124f55760008160009055506001016124dd565b5090565b600061250c61250784612e2e565b612e09565b90508281526020810184848401111561252857612527613264565b5b61253384828561304b565b509392505050565b60008135905061254a81613493565b92915050565b60008135905061255f816134aa565b92915050565b600081359050612574816134c1565b92915050565b600081519050612589816134c1565b92915050565b600082601f8301126125a4576125a361325a565b5b81356125b48482602086016124f9565b91505092915050565b60008083601f8401126125d3576125d261325a565b5b8235905067ffffffffffffffff8111156125f0576125ef613255565b5b60208301915083600182028301111561260c5761260b61325f565b5b9250929050565b600081359050612622816134d8565b92915050565b600081519050612637816134d8565b92915050565b6000602082840312156126535761265261326e565b5b60006126618482850161253b565b91505092915050565b600080604083850312156126815761268061326e565b5b600061268f8582860161253b565b92505060206126a08582860161253b565b9150509250929050565b6000806000606084860312156126c3576126c261326e565b5b60006126d18682870161253b565b93505060206126e28682870161253b565b92505060406126f386828701612613565b9150509250925092565b600080600080608085870312156127175761271661326e565b5b60006127258782880161253b565b94505060206127368782880161253b565b935050604061274787828801612613565b925050606085013567ffffffffffffffff81111561276857612767613269565b5b6127748782880161258f565b91505092959194509250565b600080604083850312156127975761279661326e565b5b60006127a58582860161253b565b92505060206127b685828601612550565b9150509250929050565b600080604083850312156127d7576127d661326e565b5b60006127e58582860161253b565b92505060206127f685828601612613565b9150509250929050565b6000602082840312156128165761281561326e565b5b600061282484828501612565565b91505092915050565b6000602082840312156128435761284261326e565b5b60006128518482850161257a565b91505092915050565b600080602083850312156128715761287061326e565b5b600083013567ffffffffffffffff81111561288f5761288e613269565b5b61289b858286016125bd565b92509250509250929050565b6000602082840312156128bd576128bc61326e565b5b60006128cb84828501612613565b91505092915050565b6000602082840312156128ea576128e961326e565b5b60006128f884828501612628565b91505092915050565b61290a81612fd7565b82525050565b61291981612fe9565b82525050565b600061292a82612e74565b6129348185612e8a565b935061294481856020860161305a565b61294d81613273565b840191505092915050565b600061296382612e7f565b61296d8185612ea6565b935061297d81856020860161305a565b61298681613273565b840191505092915050565b600061299c82612e7f565b6129a68185612eb7565b93506129b681856020860161305a565b80840191505092915050565b600081546129cf8161308d565b6129d98186612eb7565b945060018216600081146129f45760018114612a0557612a38565b60ff19831686528186019350612a38565b612a0e85612e5f565b60005b83811015612a3057815481890152600182019150602081019050612a11565b838801955050505b50505092915050565b6000612a4e602683612ea6565b9150612a5982613284565b604082019050919050565b6000612a71602a83612ea6565b9150612a7c826132d3565b604082019050919050565b6000612a94601783612ea6565b9150612a9f82613322565b602082019050919050565b6000612ab7602083612ea6565b9150612ac28261334b565b602082019050919050565b6000612ada600683612ea6565b9150612ae582613374565b602082019050919050565b6000612afd603a83612ea6565b9150612b088261339d565b604082019050919050565b6000612b20600083612e9b565b9150612b2b826133ec565b600082019050919050565b6000612b43601083612ea6565b9150612b4e826133ef565b602082019050919050565b6000612b66601183612ea6565b9150612b7182613418565b602082019050919050565b6000612b89601f83612ea6565b9150612b9482613441565b602082019050919050565b6000612bac601783612ea6565b9150612bb78261346a565b602082019050919050565b612bcb81613041565b82525050565b6000612bdd82856129c2565b9150612be98284612991565b91508190509392505050565b6000612c0082612b13565b9150819050919050565b6000602082019050612c1f6000830184612901565b92915050565b6000608082019050612c3a6000830187612901565b612c476020830186612901565b612c546040830185612bc2565b8181036060830152612c66818461291f565b905095945050505050565b6000602082019050612c866000830184612910565b92915050565b60006020820190508181036000830152612ca68184612958565b905092915050565b60006020820190508181036000830152612cc781612a41565b9050919050565b60006020820190508181036000830152612ce781612a64565b9050919050565b60006020820190508181036000830152612d0781612a87565b9050919050565b60006020820190508181036000830152612d2781612aaa565b9050919050565b60006020820190508181036000830152612d4781612acd565b9050919050565b60006020820190508181036000830152612d6781612af0565b9050919050565b60006020820190508181036000830152612d8781612b36565b9050919050565b60006020820190508181036000830152612da781612b59565b9050919050565b60006020820190508181036000830152612dc781612b7c565b9050919050565b60006020820190508181036000830152612de781612b9f565b9050919050565b6000602082019050612e036000830184612bc2565b92915050565b6000612e13612e24565b9050612e1f82826130bf565b919050565b6000604051905090565b600067ffffffffffffffff821115612e4957612e48613226565b5b612e5282613273565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ecd82613041565b9150612ed883613041565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f0d57612f0c61316a565b5b828201905092915050565b6000612f2382613041565b9150612f2e83613041565b925082612f3e57612f3d613199565b5b828204905092915050565b6000612f5482613041565b9150612f5f83613041565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f9857612f9761316a565b5b828202905092915050565b6000612fae82613041565b9150612fb983613041565b925082821015612fcc57612fcb61316a565b5b828203905092915050565b6000612fe282613021565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561307857808201518184015260208101905061305d565b83811115613087576000848401525b50505050565b600060028204905060018216806130a557607f821691505b602082108114156130b9576130b86131c8565b5b50919050565b6130c882613273565b810181811067ffffffffffffffff821117156130e7576130e6613226565b5b80604052505050565b60006130fb82613041565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561312e5761312d61316a565b5b600182019050919050565b600061314482613041565b915061314f83613041565b92508261315f5761315e613199565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f437261636b206865616473206669676874696e6720696e204d634c616479207060008201527f61726b696e67206c6f7400000000000000000000000000000000000000000000602082015250565b7f49636520637265616d206d616368696e652062726f6b65000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d63506f6f720000000000000000000000000000000000000000000000000000600082015250565b7f416e67727920637573746f6d6572206a756d706564207468726f75676820746860008201527f65204d634c61647920647269766520746872752077696e646f77000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e6f20737a65636861756e207361756365000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e6565642061206a6f62206170706c69636174696f6e3f000000000000000000600082015250565b61349c81612fd7565b81146134a757600080fd5b50565b6134b381612fe9565b81146134be57600080fd5b50565b6134ca81612ff5565b81146134d557600080fd5b50565b6134e181613041565b81146134ec57600080fd5b5056fea2646970667358221220bf2bdb8e7a2c037086478130d5eb7818423eb2eee613730820404a58e3eacf2664736f6c63430008070033697066733a2f2f6261667962656962767378326267626932657937743566677375336f68687376336a786234333767366b65666868656e72687933626d32713636712f3639

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370e197b311610102578063b88d4fde11610095578063e7898f9811610064578063e7898f9814610667578063e985e9c51461067e578063f2fde38b146106bb578063f58f1f8c146106e4576101d8565b8063b88d4fde146105ab578063c55c2568146105d4578063c87b56dd146105ff578063d72806cf1461063c576101d8565b8063a0712d68116100d1578063a0712d6814610524578063a22cb46514610540578063a493757d14610569578063a4c2773714610580576101d8565b806370e197b3146104a0578063715018a6146104b75780638da5cb5b146104ce57806395d89b41146104f9576101d8565b806323b872dd1161017a57806355f804b31161014957806355f804b3146103d25780636352211e146103fb5780636c0360eb1461043857806370a0823114610463576101d8565b806323b872dd1461033e57806332cb6b0c146103675780633ccfd60b1461039257806342842e0e146103a9576101d8565b8063081812fc116101b6578063081812fc14610282578063095ea7b3146102bf5780631804cda9146102e857806318160ddd14610313576101d8565b80630138c52a146101dd57806301ffc9a71461021a57806306fdde0314610257575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061263d565b61070f565b6040516102119190612c71565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612800565b6107c5565b60405161024e9190612c71565b60405180910390f35b34801561026357600080fd5b5061026c610857565b6040516102799190612c8c565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906128a7565b6108e9565b6040516102b69190612c0a565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e191906127c0565b610965565b005b3480156102f457600080fd5b506102fd610aa6565b60405161030a9190612c71565b60405180910390f35b34801561031f57600080fd5b50610328610ab9565b6040516103359190612dee565b60405180910390f35b34801561034a57600080fd5b50610365600480360381019061036091906126aa565b610ad0565b005b34801561037357600080fd5b5061037c610df5565b6040516103899190612dee565b60405180910390f35b34801561039e57600080fd5b506103a7610dfb565b005b3480156103b557600080fd5b506103d060048036038101906103cb91906126aa565b610f7c565b005b3480156103de57600080fd5b506103f960048036038101906103f4919061285a565b610f9c565b005b34801561040757600080fd5b50610422600480360381019061041d91906128a7565b61102e565b60405161042f9190612c0a565b60405180910390f35b34801561044457600080fd5b5061044d611040565b60405161045a9190612c8c565b60405180910390f35b34801561046f57600080fd5b5061048a6004803603810190610485919061263d565b6110ce565b6040516104979190612dee565b60405180910390f35b3480156104ac57600080fd5b506104b5611187565b005b3480156104c357600080fd5b506104cc61128a565b005b3480156104da57600080fd5b506104e3611312565b6040516104f09190612c0a565b60405180910390f35b34801561050557600080fd5b5061050e61133c565b60405161051b9190612c8c565b60405180910390f35b61053e600480360381019061053991906128a7565b6113ce565b005b34801561054c57600080fd5b5061056760048036038101906105629190612780565b611554565b005b34801561057557600080fd5b5061057e6116cc565b005b34801561058c57600080fd5b506105956117c4565b6040516105a29190612c0a565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd91906126fd565b6117ea565b005b3480156105e057600080fd5b506105e961185d565b6040516105f69190612c8c565b60405180910390f35b34801561060b57600080fd5b50610626600480360381019061062191906128a7565b6118eb565b6040516106339190612c8c565b60405180910390f35b34801561064857600080fd5b506106516119c6565b60405161065e9190612c71565b60405180910390f35b34801561067357600080fd5b5061067c6119d9565b005b34801561068a57600080fd5b506106a560048036038101906106a0919061266a565b611a81565b6040516106b29190612c71565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd919061263d565b611b15565b005b3480156106f057600080fd5b506106f9611c0d565b6040516107069190612c71565b60405180910390f35b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161076d9190612c0a565b60206040518083038186803b15801561078557600080fd5b505afa158015610799573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107bd91906128d4565b119050919050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108505750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108669061308d565b80601f01602080910402602001604051908101604052809291908181526020018280546108929061308d565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050905090565b60006108f482611c20565b61092a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109708261102e565b90508073ffffffffffffffffffffffffffffffffffffffff16610991611c7f565b73ffffffffffffffffffffffffffffffffffffffff16146109f4576109bd816109b8611c7f565b611a81565b6109f3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c60019054906101000a900460ff1681565b6000610ac3611c87565b6001546000540303905090565b6000610adb82611c8c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b42576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b4e84611d5a565b91509150610b648187610b5f611c7f565b611d7c565b610bb057610b7986610b74611c7f565b611a81565b610baf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c17576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c248686866001611dc0565b8015610c2f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cfd85610cd9888887611dc6565b7c020000000000000000000000000000000000000000000000000000000017611dee565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d85576000600185019050600060046000838152602001908152602001600020541415610d83576000548114610d82578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ded8686866001611e19565b505050505050565b600b5481565b610e03611e1f565b73ffffffffffffffffffffffffffffffffffffffff16610e21611312565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90612d0e565b60405180910390fd5b60026009541415610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490612dae565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610eeb90612bf5565b60006040518083038185875af1925050503d8060008114610f28576040519150601f19603f3d011682016040523d82523d6000602084013e610f2d565b606091505b5050905080610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890612d6e565b60405180910390fd5b506001600981905550565b610f97838383604051806020016040528060008152506117ea565b505050565b610fa4611e1f565b73ffffffffffffffffffffffffffffffffffffffff16610fc2611312565b73ffffffffffffffffffffffffffffffffffffffff1614611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90612d0e565b60405180910390fd5b8181600e9190611029929190612456565b505050565b600061103982611c8c565b9050919050565b600e805461104d9061308d565b80601f01602080910402602001604051908101604052809291908181526020018280546110799061308d565b80156110c65780601f1061109b576101008083540402835291602001916110c6565b820191906000526020600020905b8154815290600101906020018083116110a957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611136576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61118f611e1f565b73ffffffffffffffffffffffffffffffffffffffff166111ad611312565b73ffffffffffffffffffffffffffffffffffffffff1614611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90612d0e565b60405180910390fd5b600c60019054906101000a900460ff1615611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90612d4e565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff02191690831515021790555061128833600a611e27565b565b611292611e1f565b73ffffffffffffffffffffffffffffffffffffffff166112b0611312565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90612d0e565b60405180910390fd5b6113106000611e45565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461134b9061308d565b80601f01602080910402602001604051908101604052809291908181526020018280546113779061308d565b80156113c45780601f10611399576101008083540402835291602001916113c4565b820191906000526020600020905b8154815290600101906020018083116113a757829003601f168201915b5050505050905090565b600c60009054906101000a900460ff1661141d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141490612d8e565b60405180910390fd5b600b5481611429610ab9565b6114339190612ec2565b1115611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b90612cee565b60405180910390fd5b600061147f3361070f565b8061148b575060038210155b156114ed57664e28e2290f0000905081816114a69190612f49565b3410156114e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114df90612d2e565b60405180910390fd5b611546565b66753d533d968000905081816115039190612f49565b341015611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90612dce565b60405180910390fd5b5b6115503383611e27565b5050565b61155c611c7f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115ce611c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661167b611c7f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c09190612c71565b60405180910390a35050565b6116d4611e1f565b73ffffffffffffffffffffffffffffffffffffffff166116f2611312565b73ffffffffffffffffffffffffffffffffffffffff1614611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90612d0e565b60405180910390fd5b600c60029054906101000a900460ff1615611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f90612cce565b60405180910390fd5b600c60029054906101000a900460ff1615600c60026101000a81548160ff021916908315150217905550565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117f5848484610ad0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118575761182084848484611f0b565b611856576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d805461186a9061308d565b80601f01602080910402602001604051908101604052809291908181526020018280546118969061308d565b80156118e35780601f106118b8576101008083540402835291602001916118e3565b820191906000526020600020905b8154815290600101906020018083116118c657829003601f168201915b505050505081565b6060600c60029054906101000a900460ff1661199357600d805461190e9061308d565b80601f016020809104026020016040519081016040528092919081815260200182805461193a9061308d565b80156119875780601f1061195c57610100808354040283529160200191611987565b820191906000526020600020905b81548152906001019060200180831161196a57829003601f168201915b505050505090506119c1565b600e61199e8361206b565b6040516020016119af929190612bd1565b60405160208183030381529060405290505b919050565b600c60029054906101000a900460ff1681565b6119e1611e1f565b73ffffffffffffffffffffffffffffffffffffffff166119ff611312565b73ffffffffffffffffffffffffffffffffffffffff1614611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90612d0e565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b1d611e1f565b73ffffffffffffffffffffffffffffffffffffffff16611b3b611312565b73ffffffffffffffffffffffffffffffffffffffff1614611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890612d0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890612cae565b60405180910390fd5b611c0a81611e45565b50565b600c60009054906101000a900460ff1681565b600081611c2b611c87565b11158015611c3a575060005482105b8015611c78575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611c9b611c87565b11611d2357600054811015611d225760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d20575b6000811415611d16576004600083600190039350838152602001908152602001600020549050611ceb565b8092505050611d55565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ddd8686846121cc565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611e418282604051806020016040528060008152506121d5565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f31611c7f565b8786866040518563ffffffff1660e01b8152600401611f539493929190612c25565b602060405180830381600087803b158015611f6d57600080fd5b505af1925050508015611f9e57506040513d601f19601f82011682018060405250810190611f9b919061282d565b60015b612018573d8060008114611fce576040519150601f19603f3d011682016040523d82523d6000602084013e611fd3565b606091505b50600081511415612010576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156120b3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121c7565b600082905060005b600082146120e55780806120ce906130f0565b915050600a826120de9190612f18565b91506120bb565b60008167ffffffffffffffff81111561210157612100613226565b5b6040519080825280601f01601f1916602001820160405280156121335781602001600182028036833780820191505090505b5090505b600085146121c05760018261214c9190612fa3565b9150600a8561215b9190613139565b60306121679190612ec2565b60f81b81838151811061217d5761217c6131f7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121b99190612f18565b9450612137565b8093505050505b919050565b60009392505050565b6121df8383612272565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461226d57600080549050600083820390505b61221f6000868380600101945086611f0b565b612255576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061220c57816000541461226a57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122df576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561231a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123276000848385611dc0565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061239e8361238f6000866000611dc6565b61239885612446565b17611dee565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106123c2578060008190555050506124416000848385611e19565b505050565b60006001821460e11b9050919050565b8280546124629061308d565b90600052602060002090601f01602090048101928261248457600085556124cb565b82601f1061249d57803560ff19168380011785556124cb565b828001600101855582156124cb579182015b828111156124ca5782358255916020019190600101906124af565b5b5090506124d891906124dc565b5090565b5b808211156124f55760008160009055506001016124dd565b5090565b600061250c61250784612e2e565b612e09565b90508281526020810184848401111561252857612527613264565b5b61253384828561304b565b509392505050565b60008135905061254a81613493565b92915050565b60008135905061255f816134aa565b92915050565b600081359050612574816134c1565b92915050565b600081519050612589816134c1565b92915050565b600082601f8301126125a4576125a361325a565b5b81356125b48482602086016124f9565b91505092915050565b60008083601f8401126125d3576125d261325a565b5b8235905067ffffffffffffffff8111156125f0576125ef613255565b5b60208301915083600182028301111561260c5761260b61325f565b5b9250929050565b600081359050612622816134d8565b92915050565b600081519050612637816134d8565b92915050565b6000602082840312156126535761265261326e565b5b60006126618482850161253b565b91505092915050565b600080604083850312156126815761268061326e565b5b600061268f8582860161253b565b92505060206126a08582860161253b565b9150509250929050565b6000806000606084860312156126c3576126c261326e565b5b60006126d18682870161253b565b93505060206126e28682870161253b565b92505060406126f386828701612613565b9150509250925092565b600080600080608085870312156127175761271661326e565b5b60006127258782880161253b565b94505060206127368782880161253b565b935050604061274787828801612613565b925050606085013567ffffffffffffffff81111561276857612767613269565b5b6127748782880161258f565b91505092959194509250565b600080604083850312156127975761279661326e565b5b60006127a58582860161253b565b92505060206127b685828601612550565b9150509250929050565b600080604083850312156127d7576127d661326e565b5b60006127e58582860161253b565b92505060206127f685828601612613565b9150509250929050565b6000602082840312156128165761281561326e565b5b600061282484828501612565565b91505092915050565b6000602082840312156128435761284261326e565b5b60006128518482850161257a565b91505092915050565b600080602083850312156128715761287061326e565b5b600083013567ffffffffffffffff81111561288f5761288e613269565b5b61289b858286016125bd565b92509250509250929050565b6000602082840312156128bd576128bc61326e565b5b60006128cb84828501612613565b91505092915050565b6000602082840312156128ea576128e961326e565b5b60006128f884828501612628565b91505092915050565b61290a81612fd7565b82525050565b61291981612fe9565b82525050565b600061292a82612e74565b6129348185612e8a565b935061294481856020860161305a565b61294d81613273565b840191505092915050565b600061296382612e7f565b61296d8185612ea6565b935061297d81856020860161305a565b61298681613273565b840191505092915050565b600061299c82612e7f565b6129a68185612eb7565b93506129b681856020860161305a565b80840191505092915050565b600081546129cf8161308d565b6129d98186612eb7565b945060018216600081146129f45760018114612a0557612a38565b60ff19831686528186019350612a38565b612a0e85612e5f565b60005b83811015612a3057815481890152600182019150602081019050612a11565b838801955050505b50505092915050565b6000612a4e602683612ea6565b9150612a5982613284565b604082019050919050565b6000612a71602a83612ea6565b9150612a7c826132d3565b604082019050919050565b6000612a94601783612ea6565b9150612a9f82613322565b602082019050919050565b6000612ab7602083612ea6565b9150612ac28261334b565b602082019050919050565b6000612ada600683612ea6565b9150612ae582613374565b602082019050919050565b6000612afd603a83612ea6565b9150612b088261339d565b604082019050919050565b6000612b20600083612e9b565b9150612b2b826133ec565b600082019050919050565b6000612b43601083612ea6565b9150612b4e826133ef565b602082019050919050565b6000612b66601183612ea6565b9150612b7182613418565b602082019050919050565b6000612b89601f83612ea6565b9150612b9482613441565b602082019050919050565b6000612bac601783612ea6565b9150612bb78261346a565b602082019050919050565b612bcb81613041565b82525050565b6000612bdd82856129c2565b9150612be98284612991565b91508190509392505050565b6000612c0082612b13565b9150819050919050565b6000602082019050612c1f6000830184612901565b92915050565b6000608082019050612c3a6000830187612901565b612c476020830186612901565b612c546040830185612bc2565b8181036060830152612c66818461291f565b905095945050505050565b6000602082019050612c866000830184612910565b92915050565b60006020820190508181036000830152612ca68184612958565b905092915050565b60006020820190508181036000830152612cc781612a41565b9050919050565b60006020820190508181036000830152612ce781612a64565b9050919050565b60006020820190508181036000830152612d0781612a87565b9050919050565b60006020820190508181036000830152612d2781612aaa565b9050919050565b60006020820190508181036000830152612d4781612acd565b9050919050565b60006020820190508181036000830152612d6781612af0565b9050919050565b60006020820190508181036000830152612d8781612b36565b9050919050565b60006020820190508181036000830152612da781612b59565b9050919050565b60006020820190508181036000830152612dc781612b7c565b9050919050565b60006020820190508181036000830152612de781612b9f565b9050919050565b6000602082019050612e036000830184612bc2565b92915050565b6000612e13612e24565b9050612e1f82826130bf565b919050565b6000604051905090565b600067ffffffffffffffff821115612e4957612e48613226565b5b612e5282613273565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ecd82613041565b9150612ed883613041565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f0d57612f0c61316a565b5b828201905092915050565b6000612f2382613041565b9150612f2e83613041565b925082612f3e57612f3d613199565b5b828204905092915050565b6000612f5482613041565b9150612f5f83613041565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f9857612f9761316a565b5b828202905092915050565b6000612fae82613041565b9150612fb983613041565b925082821015612fcc57612fcb61316a565b5b828203905092915050565b6000612fe282613021565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561307857808201518184015260208101905061305d565b83811115613087576000848401525b50505050565b600060028204905060018216806130a557607f821691505b602082108114156130b9576130b86131c8565b5b50919050565b6130c882613273565b810181811067ffffffffffffffff821117156130e7576130e6613226565b5b80604052505050565b60006130fb82613041565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561312e5761312d61316a565b5b600182019050919050565b600061314482613041565b915061314f83613041565b92508261315f5761315e613199565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f437261636b206865616473206669676874696e6720696e204d634c616479207060008201527f61726b696e67206c6f7400000000000000000000000000000000000000000000602082015250565b7f49636520637265616d206d616368696e652062726f6b65000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d63506f6f720000000000000000000000000000000000000000000000000000600082015250565b7f416e67727920637573746f6d6572206a756d706564207468726f75676820746860008201527f65204d634c61647920647269766520746872752077696e646f77000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e6f20737a65636861756e207361756365000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e6565642061206a6f62206170706c69636174696f6e3f000000000000000000600082015250565b61349c81612fd7565b81146134a757600080fd5b50565b6134b381612fe9565b81146134be57600080fd5b50565b6134ca81612ff5565b81146134d557600080fd5b50565b6134e181613041565b81146134ec57600080fd5b5056fea2646970667358221220bf2bdb8e7a2c037086478130d5eb7818423eb2eee613730820404a58e3eacf2664736f6c63430008070033

Deployed Bytecode Sourcemap

61790:2165:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63013:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20774:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26421:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28367:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27915:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62015:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19828:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37632:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61932:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63158:176;;;;;;;;;;;;;:::i;:::-;;29257:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63862:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26210:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63446:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21453:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62690:233;;;;;;;;;;;;;:::i;:::-;;5365:103;;;;;;;;;;;;;:::i;:::-;;4714:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26590:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62139:545;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28643:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63701:155;;;;;;;;;;;;;:::i;:::-;;61858:69;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29513:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63340:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63474:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62054:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62929:78;;;;;;;;;;;;;:::i;:::-;;29022:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5623:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61989:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63013:139;63078:4;63145:1;63106:9;;;;;;;;;;;63098:28;;;63127:14;63098:44;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;63091:55;;63013:139;;;:::o;20774:615::-;20859:4;21174:10;21159:25;;:11;:25;;;;:102;;;;21251:10;21236:25;;:11;:25;;;;21159:102;:179;;;;21328:10;21313:25;;:11;:25;;;;21159:179;21139:199;;20774:615;;;:::o;26421:100::-;26475:13;26508:5;26501:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:100;:::o;28367:204::-;28435:7;28460:16;28468:7;28460;:16::i;:::-;28455:64;;28485:34;;;;;;;;;;;;;;28455:64;28539:15;:24;28555:7;28539:24;;;;;;;;;;;;;;;;;;;;;28532:31;;28367:204;;;:::o;27915:386::-;27988:13;28004:16;28012:7;28004;:16::i;:::-;27988:32;;28060:5;28037:28;;:19;:17;:19::i;:::-;:28;;;28033:175;;28085:44;28102:5;28109:19;:17;:19::i;:::-;28085:16;:44::i;:::-;28080:128;;28157:35;;;;;;;;;;;;;;28080:128;28033:175;28247:2;28220:15;:24;28236:7;28220:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28285:7;28281:2;28265:28;;28274:5;28265:28;;;;;;;;;;;;27977:324;27915:386;;:::o;62015:34::-;;;;;;;;;;;;;:::o;19828:315::-;19881:7;20109:15;:13;:15::i;:::-;20094:12;;20078:13;;:28;:46;20071:53;;19828:315;:::o;37632:2800::-;37766:27;37796;37815:7;37796:18;:27::i;:::-;37766:57;;37881:4;37840:45;;37856:19;37840:45;;;37836:86;;37894:28;;;;;;;;;;;;;;37836:86;37936:27;37965:23;37992:28;38012:7;37992:19;:28::i;:::-;37935:85;;;;38120:62;38139:15;38156:4;38162:19;:17;:19::i;:::-;38120:18;:62::i;:::-;38115:174;;38202:43;38219:4;38225:19;:17;:19::i;:::-;38202:16;:43::i;:::-;38197:92;;38254:35;;;;;;;;;;;;;;38197:92;38115:174;38320:1;38306:16;;:2;:16;;;38302:52;;;38331:23;;;;;;;;;;;;;;38302:52;38367:43;38389:4;38395:2;38399:7;38408:1;38367:21;:43::i;:::-;38503:15;38500:160;;;38643:1;38622:19;38615:30;38500:160;39038:18;:24;39057:4;39038:24;;;;;;;;;;;;;;;;39036:26;;;;;;;;;;;;39107:18;:22;39126:2;39107:22;;;;;;;;;;;;;;;;39105:24;;;;;;;;;;;39429:145;39466:2;39514:45;39529:4;39535:2;39539:19;39514:14;:45::i;:::-;17056:8;39487:72;39429:18;:145::i;:::-;39400:17;:26;39418:7;39400:26;;;;;;;;;;;:174;;;;39744:1;17056:8;39694:19;:46;:51;39690:626;;;39766:19;39798:1;39788:7;:11;39766:33;;39955:1;39921:17;:30;39939:11;39921:30;;;;;;;;;;;;:35;39917:384;;;40059:13;;40044:11;:28;40040:242;;40239:19;40206:17;:30;40224:11;40206:30;;;;;;;;;;;:52;;;;40040:242;39917:384;39747:569;39690:626;40363:7;40359:2;40344:27;;40353:4;40344:27;;;;;;;;;;;;40382:42;40403:4;40409:2;40413:7;40422:1;40382:20;:42::i;:::-;37755:2677;;;37632:2800;;;:::o;61932:32::-;;;;:::o;63158:176::-;4945:12;:10;:12::i;:::-;4934:23;;:7;:5;:7::i;:::-;:23;;;4926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;63218:12:::2;63236:10;:15;;63259:21;63236:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63217:68;;;63300:7;63292:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;63210:124;1768:1:::1;2722:7;:22;;;;63158:176::o:0;29257:185::-;29395:39;29412:4;29418:2;29422:7;29395:39;;;;;;;;;;;;:16;:39::i;:::-;29257:185;;;:::o;63862:90::-;4945:12;:10;:12::i;:::-;4934:23;;:7;:5;:7::i;:::-;:23;;;4926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63941:5:::1;;63931:7;:15;;;;;;;:::i;:::-;;63862:90:::0;;:::o;26210:144::-;26274:7;26317:27;26336:7;26317:18;:27::i;:::-;26294:52;;26210:144;;;:::o;63446:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21453:224::-;21517:7;21558:1;21541:19;;:5;:19;;;21537:60;;;21569:28;;;;;;;;;;;;;;21537:60;16008:13;21615:18;:25;21634:5;21615:25;;;;;;;;;;;;;;;;:54;21608:61;;21453:224;;;:::o;62690:233::-;4945:12;:10;:12::i;:::-;4934:23;;:7;:5;:7::i;:::-;:23;;;4926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62745:22:::1;;;;;;;;;;;62744:23;62736:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;62863:22;;;;;;;;;;;62862:23;62837:22;;:48;;;;;;;;;;;;;;;;;;62892:25;62902:10;62914:2;62892:9;:25::i;:::-;62690:233::o:0;5365:103::-;4945:12;:10;:12::i;:::-;4934:23;;:7;:5;:7::i;:::-;:23;;;4926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5430:30:::1;5457:1;5430:18;:30::i;:::-;5365:103::o:0;4714:87::-;4760:7;4787:6;;;;;;;;;;;4780:13;;4714:87;:::o;26590:104::-;26646:13;26679:7;26672:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26590:104;:::o;62139:545::-;62201:9;;;;;;;;;;;62193:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;62275:10;;62263:8;62247:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;62239:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;62322:22;62355;62366:10;62355;:22::i;:::-;:39;;;;62393:1;62381:8;:13;;62355:39;62351:290;;;62422:11;62405:28;;62480:8;62463:14;:25;;;;:::i;:::-;62450:9;:38;;62442:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;62351:290;;;62539:11;62522:28;;62597:8;62580:14;:25;;;;:::i;:::-;62567:9;:38;;62559:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;62351:290;62647:31;62657:10;62669:8;62647:9;:31::i;:::-;62186:498;62139:545;:::o;28643:308::-;28754:19;:17;:19::i;:::-;28742:31;;:8;:31;;;28738:61;;;28782:17;;;;;;;;;;;;;;28738:61;28864:8;28812:18;:39;28831:19;:17;:19::i;:::-;28812:39;;;;;;;;;;;;;;;:49;28852:8;28812:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28924:8;28888:55;;28903:19;:17;:19::i;:::-;28888:55;;;28934:8;28888:55;;;;;;:::i;:::-;;;;;;;;28643:308;;:::o;63701:155::-;4945:12;:10;:12::i;:::-;4934:23;;:7;:5;:7::i;:::-;:23;;;4926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63762:10:::1;;;;;;;;;;;63761:11;63753:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;63840:10;;;;;;;;;;;63839:11;63826:10;;:24;;;;;;;;;;;;;;;;;;63701:155::o:0;61858:69::-;;;;;;;;;;;;;:::o;29513:399::-;29680:31;29693:4;29699:2;29703:7;29680:12;:31::i;:::-;29744:1;29726:2;:14;;;:19;29722:183;;29765:56;29796:4;29802:2;29806:7;29815:5;29765:30;:56::i;:::-;29760:145;;29849:40;;;;;;;;;;;;;;29760:145;29722:183;29513:399;;;;:::o;63340:101::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63474:221::-;63540:13;63566:10;;;;;;;;;;;63562:53;;63594:13;63587:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63562:53;63652:7;63661:26;63678:8;63661:16;:26::i;:::-;63635:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63621:68;;63474:221;;;;:::o;62054:22::-;;;;;;;;;;;;;:::o;62929:78::-;4945:12;:10;:12::i;:::-;4934:23;;:7;:5;:7::i;:::-;:23;;;4926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62992:9:::1;;;;;;;;;;;62991:10;62979:9;;:22;;;;;;;;;;;;;;;;;;62929:78::o:0;29022:164::-;29119:4;29143:18;:25;29162:5;29143:25;;;;;;;;;;;;;;;:35;29169:8;29143:35;;;;;;;;;;;;;;;;;;;;;;;;;29136:42;;29022:164;;;;:::o;5623:201::-;4945:12;:10;:12::i;:::-;4934:23;;:7;:5;:7::i;:::-;:23;;;4926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5732:1:::1;5712:22;;:8;:22;;;;5704:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5788:28;5807:8;5788:18;:28::i;:::-;5623:201:::0;:::o;61989:21::-;;;;;;;;;;;;;:::o;30167:273::-;30224:4;30280:7;30261:15;:13;:15::i;:::-;:26;;:66;;;;;30314:13;;30304:7;:23;30261:66;:152;;;;;30412:1;16778:8;30365:17;:26;30383:7;30365:26;;;;;;;;;;;;:43;:48;30261:152;30241:172;;30167:273;;;:::o;48728:105::-;48788:7;48815:10;48808:17;;48728:105;:::o;19352:92::-;19408:7;19352:92;:::o;23127:1129::-;23194:7;23214:12;23229:7;23214:22;;23297:4;23278:15;:13;:15::i;:::-;:23;23274:915;;23331:13;;23324:4;:20;23320:869;;;23369:14;23386:17;:23;23404:4;23386:23;;;;;;;;;;;;23369:40;;23502:1;16778:8;23475:6;:23;:28;23471:699;;;23994:113;24011:1;24001:6;:11;23994:113;;;24054:17;:25;24072:6;;;;;;;24054:25;;;;;;;;;;;;24045:34;;23994:113;;;24140:6;24133:13;;;;;;23471:699;23346:843;23320:869;23274:915;24217:31;;;;;;;;;;;;;;23127:1129;;;;:::o;35968:652::-;36063:27;36092:23;36133:53;36189:15;36133:71;;36375:7;36369:4;36362:21;36410:22;36404:4;36397:36;36486:4;36480;36470:21;36447:44;;36582:19;36576:26;36557:45;;36313:300;35968:652;;;:::o;36733:645::-;36875:11;37037:15;37031:4;37027:26;37019:34;;37196:15;37185:9;37181:31;37168:44;;37343:15;37332:9;37329:30;37322:4;37311:9;37308:19;37305:55;37295:65;;36733:645;;;;;:::o;47561:159::-;;;;;:::o;45873:309::-;46008:7;46028:16;17179:3;46054:19;:40;;46028:67;;17179:3;46121:31;46132:4;46138:2;46142:9;46121:10;:31::i;:::-;46113:40;;:61;;46106:68;;;45873:309;;;;;:::o;25701:447::-;25781:14;25949:15;25942:5;25938:27;25929:36;;26123:5;26109:11;26085:22;26081:40;26078:51;26071:5;26068:62;26058:72;;25701:447;;;;:::o;48379:158::-;;;;;:::o;3438:98::-;3491:7;3518:10;3511:17;;3438:98;:::o;30524:104::-;30593:27;30603:2;30607:8;30593:27;;;;;;;;;;;;:9;:27::i;:::-;30524:104;;:::o;5984:191::-;6058:16;6077:6;;;;;;;;;;;6058:25;;6103:8;6094:6;;:17;;;;;;;;;;;;;;;;;;6158:8;6127:40;;6148:8;6127:40;;;;;;;;;;;;6047:128;5984:191;:::o;44383:716::-;44546:4;44592:2;44567:45;;;44613:19;:17;:19::i;:::-;44634:4;44640:7;44649:5;44567:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44563:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44867:1;44850:6;:13;:18;44846:235;;;44896:40;;;;;;;;;;;;;;44846:235;45039:6;45033:13;45024:6;45020:2;45016:15;45009:38;44563:529;44736:54;;;44726:64;;;:6;:64;;;;44719:71;;;44383:716;;;;;;:::o;57216:723::-;57272:13;57502:1;57493:5;:10;57489:53;;;57520:10;;;;;;;;;;;;;;;;;;;;;57489:53;57552:12;57567:5;57552:20;;57583:14;57608:78;57623:1;57615:4;:9;57608:78;;57641:8;;;;;:::i;:::-;;;;57672:2;57664:10;;;;;:::i;:::-;;;57608:78;;;57696:19;57728:6;57718:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57696:39;;57746:154;57762:1;57753:5;:10;57746:154;;57790:1;57780:11;;;;;:::i;:::-;;;57857:2;57849:5;:10;;;;:::i;:::-;57836:2;:24;;;;:::i;:::-;57823:39;;57806:6;57813;57806:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;57886:2;57877:11;;;;;:::i;:::-;;;57746:154;;;57924:6;57910:21;;;;;57216:723;;;;:::o;46758:147::-;46895:6;46758:147;;;;;:::o;31044:681::-;31167:19;31173:2;31177:8;31167:5;:19::i;:::-;31246:1;31228:2;:14;;;:19;31224:483;;31268:11;31282:13;;31268:27;;31314:13;31336:8;31330:3;:14;31314:30;;31363:233;31394:62;31433:1;31437:2;31441:7;;;;;;31450:5;31394:30;:62::i;:::-;31389:167;;31492:40;;;;;;;;;;;;;;31389:167;31591:3;31583:5;:11;31363:233;;31678:3;31661:13;;:20;31657:34;;31683:8;;;31657:34;31249:458;;31224:483;31044:681;;;:::o;31998:1529::-;32063:20;32086:13;;32063:36;;32128:1;32114:16;;:2;:16;;;32110:48;;;32139:19;;;;;;;;;;;;;;32110:48;32185:1;32173:8;:13;32169:44;;;32195:18;;;;;;;;;;;;;;32169:44;32226:61;32256:1;32260:2;32264:12;32278:8;32226:21;:61::i;:::-;32769:1;16145:2;32740:1;:25;;32739:31;32727:8;:44;32701:18;:22;32720:2;32701:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;33048:139;33085:2;33139:33;33162:1;33166:2;33170:1;33139:14;:33::i;:::-;33106:30;33127:8;33106:20;:30::i;:::-;:66;33048:18;:139::i;:::-;33014:17;:31;33032:12;33014:31;;;;;;;;;;;:173;;;;33204:15;33222:12;33204:30;;33249:11;33278:8;33263:12;:23;33249:37;;33301:101;33353:9;;;;;;33349:2;33328:35;;33345:1;33328:35;;;;;;;;;;;;33397:3;33387:7;:13;33301:101;;33434:3;33418:13;:19;;;;32475:974;;33459:60;33488:1;33492:2;33496:12;33510:8;33459:20;:60::i;:::-;32052:1475;31998:1529;;:::o;27531:322::-;27601:14;27832:1;27822:8;27819:15;27794:23;27790:45;27780:55;;27531: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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:143::-;2129:5;2160:6;2154:13;2145:22;;2176:33;2203:5;2176:33;:::i;:::-;2072:143;;;;:::o;2221:329::-;2280:6;2329:2;2317:9;2308:7;2304:23;2300:32;2297:119;;;2335:79;;:::i;:::-;2297:119;2455:1;2480:53;2525:7;2516:6;2505:9;2501:22;2480:53;:::i;:::-;2470:63;;2426:117;2221:329;;;;:::o;2556:474::-;2624:6;2632;2681:2;2669:9;2660:7;2656:23;2652:32;2649:119;;;2687:79;;:::i;:::-;2649:119;2807:1;2832:53;2877:7;2868:6;2857:9;2853:22;2832:53;:::i;:::-;2822:63;;2778:117;2934:2;2960:53;3005:7;2996:6;2985:9;2981:22;2960:53;:::i;:::-;2950:63;;2905:118;2556:474;;;;;:::o;3036:619::-;3113:6;3121;3129;3178:2;3166:9;3157:7;3153:23;3149:32;3146:119;;;3184:79;;:::i;:::-;3146:119;3304:1;3329:53;3374:7;3365:6;3354:9;3350:22;3329:53;:::i;:::-;3319:63;;3275:117;3431:2;3457:53;3502:7;3493:6;3482:9;3478:22;3457:53;:::i;:::-;3447:63;;3402:118;3559:2;3585:53;3630:7;3621:6;3610:9;3606:22;3585:53;:::i;:::-;3575:63;;3530:118;3036:619;;;;;:::o;3661:943::-;3756:6;3764;3772;3780;3829:3;3817:9;3808:7;3804:23;3800:33;3797:120;;;3836:79;;:::i;:::-;3797:120;3956:1;3981:53;4026:7;4017:6;4006:9;4002:22;3981:53;:::i;:::-;3971:63;;3927:117;4083:2;4109:53;4154:7;4145:6;4134:9;4130:22;4109:53;:::i;:::-;4099:63;;4054:118;4211:2;4237:53;4282:7;4273:6;4262:9;4258:22;4237:53;:::i;:::-;4227:63;;4182:118;4367:2;4356:9;4352:18;4339:32;4398:18;4390:6;4387:30;4384:117;;;4420:79;;:::i;:::-;4384:117;4525:62;4579:7;4570:6;4559:9;4555:22;4525:62;:::i;:::-;4515:72;;4310:287;3661:943;;;;;;;:::o;4610:468::-;4675:6;4683;4732:2;4720:9;4711:7;4707:23;4703:32;4700:119;;;4738:79;;:::i;:::-;4700:119;4858:1;4883:53;4928:7;4919:6;4908:9;4904:22;4883:53;:::i;:::-;4873:63;;4829:117;4985:2;5011:50;5053:7;5044:6;5033:9;5029:22;5011:50;:::i;:::-;5001:60;;4956:115;4610:468;;;;;:::o;5084:474::-;5152:6;5160;5209:2;5197:9;5188:7;5184:23;5180:32;5177:119;;;5215:79;;:::i;:::-;5177:119;5335:1;5360:53;5405:7;5396:6;5385:9;5381:22;5360:53;:::i;:::-;5350:63;;5306:117;5462:2;5488:53;5533:7;5524:6;5513:9;5509:22;5488:53;:::i;:::-;5478:63;;5433:118;5084:474;;;;;:::o;5564:327::-;5622:6;5671:2;5659:9;5650:7;5646:23;5642:32;5639:119;;;5677:79;;:::i;:::-;5639:119;5797:1;5822:52;5866:7;5857:6;5846:9;5842:22;5822:52;:::i;:::-;5812:62;;5768:116;5564:327;;;;:::o;5897:349::-;5966:6;6015:2;6003:9;5994:7;5990:23;5986:32;5983:119;;;6021:79;;:::i;:::-;5983:119;6141:1;6166:63;6221:7;6212:6;6201:9;6197:22;6166:63;:::i;:::-;6156:73;;6112:127;5897:349;;;;:::o;6252:529::-;6323:6;6331;6380:2;6368:9;6359:7;6355:23;6351:32;6348:119;;;6386:79;;:::i;:::-;6348:119;6534:1;6523:9;6519:17;6506:31;6564:18;6556:6;6553:30;6550:117;;;6586:79;;:::i;:::-;6550:117;6699:65;6756:7;6747:6;6736:9;6732:22;6699:65;:::i;:::-;6681:83;;;;6477:297;6252:529;;;;;:::o;6787:329::-;6846:6;6895:2;6883:9;6874:7;6870:23;6866:32;6863:119;;;6901:79;;:::i;:::-;6863:119;7021:1;7046:53;7091:7;7082:6;7071:9;7067:22;7046:53;:::i;:::-;7036:63;;6992:117;6787:329;;;;:::o;7122:351::-;7192:6;7241:2;7229:9;7220:7;7216:23;7212:32;7209:119;;;7247:79;;:::i;:::-;7209:119;7367:1;7392:64;7448:7;7439:6;7428:9;7424:22;7392:64;:::i;:::-;7382:74;;7338:128;7122:351;;;;:::o;7479:118::-;7566:24;7584:5;7566:24;:::i;:::-;7561:3;7554:37;7479:118;;:::o;7603:109::-;7684:21;7699:5;7684:21;:::i;:::-;7679:3;7672:34;7603:109;;:::o;7718:360::-;7804:3;7832:38;7864:5;7832:38;:::i;:::-;7886:70;7949:6;7944:3;7886:70;:::i;:::-;7879:77;;7965:52;8010:6;8005:3;7998:4;7991:5;7987:16;7965:52;:::i;:::-;8042:29;8064:6;8042:29;:::i;:::-;8037:3;8033:39;8026:46;;7808:270;7718:360;;;;:::o;8084:364::-;8172:3;8200:39;8233:5;8200:39;:::i;:::-;8255:71;8319:6;8314:3;8255:71;:::i;:::-;8248:78;;8335:52;8380:6;8375:3;8368:4;8361:5;8357:16;8335:52;:::i;:::-;8412:29;8434:6;8412:29;:::i;:::-;8407:3;8403:39;8396:46;;8176:272;8084:364;;;;:::o;8454:377::-;8560:3;8588:39;8621:5;8588:39;:::i;:::-;8643:89;8725:6;8720:3;8643:89;:::i;:::-;8636:96;;8741:52;8786:6;8781:3;8774:4;8767:5;8763:16;8741:52;:::i;:::-;8818:6;8813:3;8809:16;8802:23;;8564:267;8454:377;;;;:::o;8861:845::-;8964:3;9001:5;8995:12;9030:36;9056:9;9030:36;:::i;:::-;9082:89;9164:6;9159:3;9082:89;:::i;:::-;9075:96;;9202:1;9191:9;9187:17;9218:1;9213:137;;;;9364:1;9359:341;;;;9180:520;;9213:137;9297:4;9293:9;9282;9278:25;9273:3;9266:38;9333:6;9328:3;9324:16;9317:23;;9213:137;;9359:341;9426:38;9458:5;9426:38;:::i;:::-;9486:1;9500:154;9514:6;9511:1;9508:13;9500:154;;;9588:7;9582:14;9578:1;9573:3;9569:11;9562:35;9638:1;9629:7;9625:15;9614:26;;9536:4;9533:1;9529:12;9524:17;;9500:154;;;9683:6;9678:3;9674:16;9667:23;;9366:334;;9180:520;;8968:738;;8861:845;;;;:::o;9712:366::-;9854:3;9875:67;9939:2;9934:3;9875:67;:::i;:::-;9868:74;;9951:93;10040:3;9951:93;:::i;:::-;10069:2;10064:3;10060:12;10053:19;;9712:366;;;:::o;10084:::-;10226:3;10247:67;10311:2;10306:3;10247:67;:::i;:::-;10240:74;;10323:93;10412:3;10323:93;:::i;:::-;10441:2;10436:3;10432:12;10425:19;;10084:366;;;:::o;10456:::-;10598:3;10619:67;10683:2;10678:3;10619:67;:::i;:::-;10612:74;;10695:93;10784:3;10695:93;:::i;:::-;10813:2;10808:3;10804:12;10797:19;;10456:366;;;:::o;10828:::-;10970:3;10991:67;11055:2;11050:3;10991:67;:::i;:::-;10984:74;;11067:93;11156:3;11067:93;:::i;:::-;11185:2;11180:3;11176:12;11169:19;;10828:366;;;:::o;11200:365::-;11342:3;11363:66;11427:1;11422:3;11363:66;:::i;:::-;11356:73;;11438:93;11527:3;11438:93;:::i;:::-;11556:2;11551:3;11547:12;11540:19;;11200:365;;;:::o;11571:366::-;11713:3;11734:67;11798:2;11793:3;11734:67;:::i;:::-;11727:74;;11810:93;11899:3;11810:93;:::i;:::-;11928:2;11923:3;11919:12;11912:19;;11571:366;;;:::o;11943:398::-;12102:3;12123:83;12204:1;12199:3;12123:83;:::i;:::-;12116:90;;12215:93;12304:3;12215:93;:::i;:::-;12333:1;12328:3;12324:11;12317:18;;11943:398;;;:::o;12347:366::-;12489:3;12510:67;12574:2;12569:3;12510:67;:::i;:::-;12503:74;;12586:93;12675:3;12586:93;:::i;:::-;12704:2;12699:3;12695:12;12688:19;;12347:366;;;:::o;12719:::-;12861:3;12882:67;12946:2;12941:3;12882:67;:::i;:::-;12875:74;;12958:93;13047:3;12958:93;:::i;:::-;13076:2;13071:3;13067:12;13060:19;;12719:366;;;:::o;13091:::-;13233:3;13254:67;13318:2;13313:3;13254:67;:::i;:::-;13247:74;;13330:93;13419:3;13330:93;:::i;:::-;13448:2;13443:3;13439:12;13432:19;;13091:366;;;:::o;13463:::-;13605:3;13626:67;13690:2;13685:3;13626:67;:::i;:::-;13619:74;;13702:93;13791:3;13702:93;:::i;:::-;13820:2;13815:3;13811:12;13804:19;;13463:366;;;:::o;13835:118::-;13922:24;13940:5;13922:24;:::i;:::-;13917:3;13910:37;13835:118;;:::o;13959:429::-;14136:3;14158:92;14246:3;14237:6;14158:92;:::i;:::-;14151:99;;14267:95;14358:3;14349:6;14267:95;:::i;:::-;14260:102;;14379:3;14372:10;;13959:429;;;;;:::o;14394:379::-;14578:3;14600:147;14743:3;14600:147;:::i;:::-;14593:154;;14764:3;14757:10;;14394:379;;;:::o;14779:222::-;14872:4;14910:2;14899:9;14895:18;14887:26;;14923:71;14991:1;14980:9;14976:17;14967:6;14923:71;:::i;:::-;14779:222;;;;:::o;15007:640::-;15202:4;15240:3;15229:9;15225:19;15217:27;;15254:71;15322:1;15311:9;15307:17;15298:6;15254:71;:::i;:::-;15335:72;15403:2;15392:9;15388:18;15379:6;15335:72;:::i;:::-;15417;15485:2;15474:9;15470:18;15461:6;15417:72;:::i;:::-;15536:9;15530:4;15526:20;15521:2;15510:9;15506:18;15499:48;15564:76;15635:4;15626:6;15564:76;:::i;:::-;15556:84;;15007:640;;;;;;;:::o;15653:210::-;15740:4;15778:2;15767:9;15763:18;15755:26;;15791:65;15853:1;15842:9;15838:17;15829:6;15791:65;:::i;:::-;15653:210;;;;:::o;15869:313::-;15982:4;16020:2;16009:9;16005:18;15997:26;;16069:9;16063:4;16059:20;16055:1;16044:9;16040:17;16033:47;16097:78;16170:4;16161:6;16097:78;:::i;:::-;16089:86;;15869:313;;;;:::o;16188:419::-;16354:4;16392:2;16381:9;16377:18;16369:26;;16441:9;16435:4;16431:20;16427:1;16416:9;16412:17;16405:47;16469:131;16595:4;16469:131;:::i;:::-;16461:139;;16188:419;;;:::o;16613:::-;16779:4;16817:2;16806:9;16802:18;16794:26;;16866:9;16860:4;16856:20;16852:1;16841:9;16837:17;16830:47;16894:131;17020:4;16894:131;:::i;:::-;16886:139;;16613:419;;;:::o;17038:::-;17204:4;17242:2;17231:9;17227:18;17219:26;;17291:9;17285:4;17281:20;17277:1;17266:9;17262:17;17255:47;17319:131;17445:4;17319:131;:::i;:::-;17311:139;;17038:419;;;:::o;17463:::-;17629:4;17667:2;17656:9;17652:18;17644:26;;17716:9;17710:4;17706:20;17702:1;17691:9;17687:17;17680:47;17744:131;17870:4;17744:131;:::i;:::-;17736:139;;17463:419;;;:::o;17888:::-;18054:4;18092:2;18081:9;18077:18;18069:26;;18141:9;18135:4;18131:20;18127:1;18116:9;18112:17;18105:47;18169:131;18295:4;18169:131;:::i;:::-;18161:139;;17888:419;;;:::o;18313:::-;18479:4;18517:2;18506:9;18502:18;18494:26;;18566:9;18560:4;18556:20;18552:1;18541:9;18537:17;18530:47;18594:131;18720:4;18594:131;:::i;:::-;18586:139;;18313:419;;;:::o;18738:::-;18904:4;18942:2;18931:9;18927:18;18919:26;;18991:9;18985:4;18981:20;18977:1;18966:9;18962:17;18955:47;19019:131;19145:4;19019:131;:::i;:::-;19011:139;;18738:419;;;:::o;19163:::-;19329:4;19367:2;19356:9;19352:18;19344:26;;19416:9;19410:4;19406:20;19402:1;19391:9;19387:17;19380:47;19444:131;19570:4;19444:131;:::i;:::-;19436:139;;19163:419;;;:::o;19588:::-;19754:4;19792:2;19781:9;19777:18;19769:26;;19841:9;19835:4;19831:20;19827:1;19816:9;19812:17;19805:47;19869:131;19995:4;19869:131;:::i;:::-;19861:139;;19588:419;;;:::o;20013:::-;20179:4;20217:2;20206:9;20202:18;20194:26;;20266:9;20260:4;20256:20;20252:1;20241:9;20237:17;20230:47;20294:131;20420:4;20294:131;:::i;:::-;20286:139;;20013:419;;;:::o;20438:222::-;20531:4;20569:2;20558:9;20554:18;20546:26;;20582:71;20650:1;20639:9;20635:17;20626:6;20582:71;:::i;:::-;20438:222;;;;:::o;20666:129::-;20700:6;20727:20;;:::i;:::-;20717:30;;20756:33;20784:4;20776:6;20756:33;:::i;:::-;20666:129;;;:::o;20801:75::-;20834:6;20867:2;20861:9;20851:19;;20801:75;:::o;20882:307::-;20943:4;21033:18;21025:6;21022:30;21019:56;;;21055:18;;:::i;:::-;21019:56;21093:29;21115:6;21093:29;:::i;:::-;21085:37;;21177:4;21171;21167:15;21159:23;;20882:307;;;:::o;21195:141::-;21244:4;21267:3;21259:11;;21290:3;21287:1;21280:14;21324:4;21321:1;21311:18;21303:26;;21195:141;;;:::o;21342:98::-;21393:6;21427:5;21421:12;21411:22;;21342:98;;;:::o;21446:99::-;21498:6;21532:5;21526:12;21516:22;;21446:99;;;:::o;21551:168::-;21634:11;21668:6;21663:3;21656:19;21708:4;21703:3;21699:14;21684:29;;21551:168;;;;:::o;21725:147::-;21826:11;21863:3;21848:18;;21725:147;;;;:::o;21878:169::-;21962:11;21996:6;21991:3;21984:19;22036:4;22031:3;22027:14;22012:29;;21878:169;;;;:::o;22053:148::-;22155:11;22192:3;22177:18;;22053:148;;;;:::o;22207:305::-;22247:3;22266:20;22284:1;22266:20;:::i;:::-;22261:25;;22300:20;22318:1;22300:20;:::i;:::-;22295:25;;22454:1;22386:66;22382:74;22379:1;22376:81;22373:107;;;22460:18;;:::i;:::-;22373:107;22504:1;22501;22497:9;22490:16;;22207:305;;;;:::o;22518:185::-;22558:1;22575:20;22593:1;22575:20;:::i;:::-;22570:25;;22609:20;22627:1;22609:20;:::i;:::-;22604:25;;22648:1;22638:35;;22653:18;;:::i;:::-;22638:35;22695:1;22692;22688:9;22683:14;;22518:185;;;;:::o;22709:348::-;22749:7;22772:20;22790:1;22772:20;:::i;:::-;22767:25;;22806:20;22824:1;22806:20;:::i;:::-;22801:25;;22994:1;22926:66;22922:74;22919:1;22916:81;22911:1;22904:9;22897:17;22893:105;22890:131;;;23001:18;;:::i;:::-;22890:131;23049:1;23046;23042:9;23031:20;;22709:348;;;;:::o;23063:191::-;23103:4;23123:20;23141:1;23123:20;:::i;:::-;23118:25;;23157:20;23175:1;23157:20;:::i;:::-;23152:25;;23196:1;23193;23190:8;23187:34;;;23201:18;;:::i;:::-;23187:34;23246:1;23243;23239:9;23231:17;;23063:191;;;;:::o;23260:96::-;23297:7;23326:24;23344:5;23326:24;:::i;:::-;23315:35;;23260:96;;;:::o;23362:90::-;23396:7;23439:5;23432:13;23425:21;23414:32;;23362:90;;;:::o;23458:149::-;23494:7;23534:66;23527:5;23523:78;23512:89;;23458:149;;;:::o;23613:126::-;23650:7;23690:42;23683:5;23679:54;23668:65;;23613:126;;;:::o;23745:77::-;23782:7;23811:5;23800:16;;23745:77;;;:::o;23828:154::-;23912:6;23907:3;23902;23889:30;23974:1;23965:6;23960:3;23956:16;23949:27;23828:154;;;:::o;23988:307::-;24056:1;24066:113;24080:6;24077:1;24074:13;24066:113;;;24165:1;24160:3;24156:11;24150:18;24146:1;24141:3;24137:11;24130:39;24102:2;24099:1;24095:10;24090:15;;24066:113;;;24197:6;24194:1;24191:13;24188:101;;;24277:1;24268:6;24263:3;24259:16;24252:27;24188:101;24037:258;23988:307;;;:::o;24301:320::-;24345:6;24382:1;24376:4;24372:12;24362:22;;24429:1;24423:4;24419:12;24450:18;24440:81;;24506:4;24498:6;24494:17;24484:27;;24440:81;24568:2;24560:6;24557:14;24537:18;24534:38;24531:84;;;24587:18;;:::i;:::-;24531:84;24352:269;24301:320;;;:::o;24627:281::-;24710:27;24732:4;24710:27;:::i;:::-;24702:6;24698:40;24840:6;24828:10;24825:22;24804:18;24792:10;24789:34;24786:62;24783:88;;;24851:18;;:::i;:::-;24783:88;24891:10;24887:2;24880:22;24670:238;24627:281;;:::o;24914:233::-;24953:3;24976:24;24994:5;24976:24;:::i;:::-;24967:33;;25022:66;25015:5;25012:77;25009:103;;;25092:18;;:::i;:::-;25009:103;25139:1;25132:5;25128:13;25121:20;;24914:233;;;:::o;25153:176::-;25185:1;25202:20;25220:1;25202:20;:::i;:::-;25197:25;;25236:20;25254:1;25236:20;:::i;:::-;25231:25;;25275:1;25265:35;;25280:18;;:::i;:::-;25265:35;25321:1;25318;25314:9;25309:14;;25153:176;;;;:::o;25335:180::-;25383:77;25380:1;25373:88;25480:4;25477:1;25470:15;25504:4;25501:1;25494:15;25521:180;25569:77;25566:1;25559:88;25666:4;25663:1;25656:15;25690:4;25687:1;25680:15;25707:180;25755:77;25752:1;25745:88;25852:4;25849:1;25842:15;25876:4;25873:1;25866:15;25893:180;25941:77;25938:1;25931:88;26038:4;26035:1;26028:15;26062:4;26059:1;26052:15;26079:180;26127:77;26124:1;26117:88;26224:4;26221:1;26214:15;26248:4;26245:1;26238:15;26265:117;26374:1;26371;26364:12;26388:117;26497:1;26494;26487:12;26511:117;26620:1;26617;26610:12;26634:117;26743:1;26740;26733:12;26757:117;26866:1;26863;26856:12;26880:117;26989:1;26986;26979:12;27003:102;27044:6;27095:2;27091:7;27086:2;27079:5;27075:14;27071:28;27061:38;;27003:102;;;:::o;27111:225::-;27251:34;27247:1;27239:6;27235:14;27228:58;27320:8;27315:2;27307:6;27303:15;27296:33;27111:225;:::o;27342:229::-;27482:34;27478:1;27470:6;27466:14;27459:58;27551:12;27546:2;27538:6;27534:15;27527:37;27342:229;:::o;27577:173::-;27717:25;27713:1;27705:6;27701:14;27694:49;27577:173;:::o;27756:182::-;27896:34;27892:1;27884:6;27880:14;27873:58;27756:182;:::o;27944:156::-;28084:8;28080:1;28072:6;28068:14;28061:32;27944:156;:::o;28106:245::-;28246:34;28242:1;28234:6;28230:14;28223:58;28315:28;28310:2;28302:6;28298:15;28291:53;28106:245;:::o;28357:114::-;;:::o;28477:166::-;28617:18;28613:1;28605:6;28601:14;28594:42;28477:166;:::o;28649:167::-;28789:19;28785:1;28777:6;28773:14;28766:43;28649:167;:::o;28822:181::-;28962:33;28958:1;28950:6;28946:14;28939:57;28822:181;:::o;29009:173::-;29149:25;29145:1;29137:6;29133:14;29126:49;29009:173;:::o;29188:122::-;29261:24;29279:5;29261:24;:::i;:::-;29254:5;29251:35;29241:63;;29300:1;29297;29290:12;29241:63;29188:122;:::o;29316:116::-;29386:21;29401:5;29386:21;:::i;:::-;29379:5;29376:32;29366:60;;29422:1;29419;29412:12;29366:60;29316:116;:::o;29438:120::-;29510:23;29527:5;29510:23;:::i;:::-;29503:5;29500:34;29490:62;;29548:1;29545;29538:12;29490:62;29438:120;:::o;29564:122::-;29637:24;29655:5;29637:24;:::i;:::-;29630:5;29627:35;29617:63;;29676:1;29673;29666:12;29617:63;29564:122;:::o

Swarm Source

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