ETH Price: $2,677.05 (+1.60%)

Token

Dogebirds (DB)
 

Overview

Max Total Supply

86 DB

Holders

26

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 DB
0xdafe9399ad9f641bcd386959052d649df3dbba4f
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:
DB

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/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 (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores 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 via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

    /**
     * @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 payable;

    /**
     * @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](https://eips.ethereum.org/EIPS/eip-2309) 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.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 virtual {
        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;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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 '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev 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);
    }

    /**
     * @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 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))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        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 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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 virtual {
        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 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 virtual {
        _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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        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 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 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;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

// File: 1.sol


pragma solidity ^0.8.9;






 


contract DB is ERC721A, Ownable, ReentrancyGuard, ERC2981 { 
event DevMintEvent(address ownerAddress, uint256 startWith, uint256 amountMinted);
uint256 public devTotal;
    uint256 public _maxSupply = 8888;
    uint256 public _mintPrice = 0.002 ether;
    uint256 public _maxMintPerTx = 50;
 
    uint256 public _maxFreeMintPerAddr = 2;
    uint256 public _maxFreeMintSupply = 2000;
     uint256 public devSupply = 388;
 
    using Strings for uint256;
    string public baseURI;

    mapping(address => uint256) private _mintedFreeAmount;
   
 
    // Royalties
    address public royaltyAdd;
 
    constructor(string memory initBaseURI) ERC721A("Dogebirds", "DB") {
        baseURI = initBaseURI;
        setDefaultRoyalty(msg.sender, 1000); // 10%
    }
 
    // Set default royalty account & percentage
    function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) public {
        royaltyAdd = _receiver;
        _setDefaultRoyalty(_receiver, _feeNumerator);
    }
 
    // Set token specific royalty
    function setTokenRoyalty(
        uint256 tokenId,
        uint96 feeNumerator
    ) external onlyOwner {
        _setTokenRoyalty(tokenId, royaltyAdd, feeNumerator);
    }
 
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view override returns (address, uint256) {
        // Get royalty info from ERC2981 base implementation
        (, uint royaltyAmt) = super.royaltyInfo(_tokenId, _salePrice);
        // Royalty address is always the one specified in this contract 
        return (royaltyAdd, royaltyAmt);
    }
 
    // /**
    //  * @dev See {IERC165-supportsInterface}.
    //  */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || 
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }
 
 
    function mint(uint256 count) external payable {
        uint256 cost = _mintPrice;
        bool isFree = ((totalSupply() + count < _maxFreeMintSupply + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= _maxFreeMintPerAddr)) ||
            (msg.sender == owner());
 
        if (isFree) {
            cost = 0;
        }
 
        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < _maxSupply - devSupply + 1, "Sold out!");
        require(count < _maxMintPerTx + 1, "Max per TX reached.");
 
        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }
 
        _safeMint(msg.sender, count);
    }
 
     function devMint() public onlyOwner {
        devTotal += devSupply;
        emit DevMintEvent(_msgSender(), devTotal, devSupply);
        _safeMint(msg.sender, devSupply);
    }
 
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    
function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Block X2Y2
        if (operator == 0xF849de01B080aDC3A814FaBE1E2087475cF2E354) {
            return false;
        }

        return super.isApprovedForAll(owner, operator);
    }
  
 
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }
 
    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }
 
    function setFreeAmount(uint256 amount) external onlyOwner {
        _maxFreeMintSupply = amount;
    }
 
    function setPrice(uint256 _newPrice) external onlyOwner {
        _mintPrice = _newPrice;
    }
 
    function withdraw() public payable onlyOwner nonReentrant {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":false,"internalType":"address","name":"ownerAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountMinted","type":"uint256"}],"name":"DevMintEvent","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":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","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":"payable","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":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[],"name":"royaltyAdd","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526122b8600d5566071afd498d0000600e556032600f5560026010556107d06011556101846012553480156200003857600080fd5b50604051620045343803806200453483398181016040528101906200005e9190620005c5565b6040518060400160405280600981526020017f446f6765626972647300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f44420000000000000000000000000000000000000000000000000000000000008152508160029081620000db919062000861565b508060039081620000ed919062000861565b50620000fe6200015b60201b60201c565b6000819055505050620001266200011a6200016060201b60201c565b6200016860201b60201c565b600160098190555080601390816200013f919062000861565b5062000154336103e86200022e60201b60201c565b5062000a63565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200028182826200028560201b60201c565b5050565b620002956200042860201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620002f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ed90620009cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000368576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035f9062000a41565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200049b8262000450565b810181811067ffffffffffffffff82111715620004bd57620004bc62000461565b5b80604052505050565b6000620004d262000432565b9050620004e0828262000490565b919050565b600067ffffffffffffffff82111562000503576200050262000461565b5b6200050e8262000450565b9050602081019050919050565b60005b838110156200053b5780820151818401526020810190506200051e565b60008484015250505050565b60006200055e6200055884620004e5565b620004c6565b9050828152602081018484840111156200057d576200057c6200044b565b5b6200058a8482856200051b565b509392505050565b600082601f830112620005aa57620005a962000446565b5b8151620005bc84826020860162000547565b91505092915050565b600060208284031215620005de57620005dd6200043c565b5b600082015167ffffffffffffffff811115620005ff57620005fe62000441565b5b6200060d8482850162000592565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066957607f821691505b6020821081036200067f576200067e62000621565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006e97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006aa565b620006f58683620006aa565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007426200073c62000736846200070d565b62000717565b6200070d565b9050919050565b6000819050919050565b6200075e8362000721565b620007766200076d8262000749565b848454620006b7565b825550505050565b600090565b6200078d6200077e565b6200079a81848462000753565b505050565b5b81811015620007c257620007b660008262000783565b600181019050620007a0565b5050565b601f8211156200081157620007db8162000685565b620007e6846200069a565b81016020851015620007f6578190505b6200080e62000805856200069a565b8301826200079f565b50505b505050565b600082821c905092915050565b6000620008366000198460080262000816565b1980831691505092915050565b600062000851838362000823565b9150826002028217905092915050565b6200086c8262000616565b67ffffffffffffffff81111562000888576200088762000461565b5b62000894825462000650565b620008a1828285620007c6565b600060209050601f831160018114620008d95760008415620008c4578287015190505b620008d0858262000843565b86555062000940565b601f198416620008e98662000685565b60005b828110156200091357848901518255600182019150602085019450602081019050620008ec565b868310156200093357848901516200092f601f89168262000823565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000620009b7602a8362000948565b9150620009c48262000959565b604082019050919050565b60006020820190508181036000830152620009ea81620009a8565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000a2960198362000948565b915062000a3682620009f1565b602082019050919050565b6000602082019050818103600083015262000a5c8162000a1a565b9050919050565b613ac18062000a736000396000f3fe6080604052600436106102045760003560e01c80636352211e1161011857806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde146106dd578063c87b56dd146106f9578063de314a5914610736578063e985e9c514610761578063f2fde38b1461079e57610204565b806395d89b41146106425780639cb57d201461066d578063a0712d6814610698578063a22cb465146106b457610204565b8063715018a6116100e7578063715018a6146105975780637c69e207146105ae5780638da5cb5b146105c557806391b7f5ed146105f057806392910eec1461061957610204565b80636352211e146104c957806367a4f4a9146105065780636c0360eb1461052f57806370a082311461055a57610204565b8063190866921161019b5780633ccfd60b1161016a5780633ccfd60b1461042457806341c66d0a1461042e57806342842e0e1461045957806355f804b3146104755780635e1c4b601461049e57610204565b8063190866921461037457806322f4596f1461039f57806323b872dd146103ca5780632a55205a146103e657610204565b8063081812fc116101d7578063081812fc146102c5578063095ea7b3146103025780630afb04db1461031e57806318160ddd1461034957610204565b806301ffc9a7146102095780630387da421461024657806304634d8d1461027157806306fdde031461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612723565b6107c7565b60405161023d919061276b565b60405180910390f35b34801561025257600080fd5b5061025b6108c1565b604051610268919061279f565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061285c565b6108c7565b005b3480156102a657600080fd5b506102af610916565b6040516102bc919061292c565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e7919061297a565b6109a8565b6040516102f991906129b6565b60405180910390f35b61031c600480360381019061031791906129d1565b610a27565b005b34801561032a57600080fd5b50610333610b6b565b604051610340919061279f565b60405180910390f35b34801561035557600080fd5b5061035e610b71565b60405161036b919061279f565b60405180910390f35b34801561038057600080fd5b50610389610b88565b60405161039691906129b6565b60405180910390f35b3480156103ab57600080fd5b506103b4610bae565b6040516103c1919061279f565b60405180910390f35b6103e460048036038101906103df9190612a11565b610bb4565b005b3480156103f257600080fd5b5061040d60048036038101906104089190612a64565b610ed6565b60405161041b929190612aa4565b60405180910390f35b61042c610f18565b005b34801561043a57600080fd5b50610443610fee565b604051610450919061279f565b60405180910390f35b610473600480360381019061046e9190612a11565b610ff4565b005b34801561048157600080fd5b5061049c60048036038101906104979190612c02565b611014565b005b3480156104aa57600080fd5b506104b361102f565b6040516104c0919061279f565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb919061297a565b611035565b6040516104fd91906129b6565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190612c4b565b611047565b005b34801561053b57600080fd5b50610544611080565b604051610551919061292c565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190612c8b565b61110e565b60405161058e919061279f565b60405180910390f35b3480156105a357600080fd5b506105ac6111c6565b005b3480156105ba57600080fd5b506105c36111da565b005b3480156105d157600080fd5b506105da611251565b6040516105e791906129b6565b60405180910390f35b3480156105fc57600080fd5b506106176004803603810190610612919061297a565b61127b565b005b34801561062557600080fd5b50610640600480360381019061063b919061297a565b61128d565b005b34801561064e57600080fd5b5061065761129f565b604051610664919061292c565b60405180910390f35b34801561067957600080fd5b50610682611331565b60405161068f919061279f565b60405180910390f35b6106b260048036038101906106ad919061297a565b611337565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612ce4565b61157e565b005b6106f760048036038101906106f29190612dc5565b611689565b005b34801561070557600080fd5b50610720600480360381019061071b919061297a565b6116fc565b60405161072d919061292c565b60405180910390f35b34801561074257600080fd5b5061074b611778565b604051610758919061279f565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612e48565b61177e565b604051610795919061276b565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190612c8b565b6117e3565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085a57506301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ba5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e5481565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109128282611866565b5050565b60606002805461092590612eb7565b80601f016020809104026020016040519081016040528092919081815260200182805461095190612eb7565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b60006109b3826119fb565b6109e9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3282611035565b90508073ffffffffffffffffffffffffffffffffffffffff16610a53611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614610ab657610a7f81610a7a611a5a565b61177e565b610ab5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610b7b611a62565b6001546000540303905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000610bbf82611a67565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c26576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3284611b33565b91509150610c488187610c43611a5a565b611b5a565b610c9457610c5d86610c58611a5a565b61177e565b610c93576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cfa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d078686866001611b9e565b8015610d1257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de085610dbc888887611ba4565b7c020000000000000000000000000000000000000000000000000000000017611bcc565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e665760006001850190506000600460008381526020019081526020016000205403610e64576000548114610e63578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ece8686866001611bf7565b505050505050565b6000806000610ee58585611bfd565b915050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b610f20611de7565b600260095403610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90612f34565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610f9390612f85565b60006040518083038185875af1925050503d8060008114610fd0576040519150601f19603f3d011682016040523d82523d6000602084013e610fd5565b606091505b5050905080610fe357600080fd5b506001600981905550565b60125481565b61100f83838360405180602001604052806000815250611689565b505050565b61101c611de7565b806013908161102b9190613146565b5050565b60115481565b600061104082611a67565b9050919050565b61104f611de7565b61107c82601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611e65565b5050565b6013805461108d90612eb7565b80601f01602080910402602001604051908101604052809291908181526020018280546110b990612eb7565b80156111065780601f106110db57610100808354040283529160200191611106565b820191906000526020600020905b8154815290600101906020018083116110e957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611175576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111ce611de7565b6111d8600061200c565b565b6111e2611de7565b601254600c60008282546111f69190613247565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e6112266120d2565b600c5460125460405161123b9392919061327b565b60405180910390a161124f336012546120da565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611283611de7565b80600e8190555050565b611295611de7565b8060118190555050565b6060600380546112ae90612eb7565b80601f01602080910402602001604051908101604052809291908181526020018280546112da90612eb7565b80156113275780601f106112fc57610100808354040283529160200191611327565b820191906000526020600020905b81548152906001019060200180831161130a57829003601f168201915b5050505050905090565b60105481565b6000600e5490506000600160115461134f9190613247565b83611358610b71565b6113629190613247565b1080156113bb575060105483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113b89190613247565b11155b806113f857506113c9611251565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561140557600091505b818361141191906132b2565b341015611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90613340565b60405180910390fd5b6001601254600d546114659190613360565b61146f9190613247565b83611478610b71565b6114829190613247565b106114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b9906133e0565b60405180910390fd5b6001600f546114d19190613247565b8310611512576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115099061344c565b60405180910390fd5b801561156f5782601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115679190613247565b925050819055505b61157933846120da565b505050565b806007600061158b611a5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611638611a5a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161167d919061276b565b60405180910390a35050565b611694848484610bb4565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116f6576116bf848484846120f8565b6116f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611707826119fb565b611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d906134de565b60405180910390fd5b601361175183612248565b604051602001611762929190613609565b6040516020818303038152906040529050919050565b600f5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d057600090506117dd565b6117da83836123a8565b90505b92915050565b6117eb611de7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361185a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611851906136aa565b60405180910390fd5b6118638161200c565b50565b61186e61243c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c39061373c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361193b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611932906137a8565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611a06611a62565b11158015611a15575060005482105b8015611a53575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611a76611a62565b11611afc57600054811015611afb5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611af9575b60008103611aef576004600083600190039350838152602001908152602001600020549050611ac5565b8092505050611b2e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bbb868684612446565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603611d9257600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611d9c61243c565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686611dc891906132b2565b611dd291906137f7565b90508160000151819350935050509250929050565b611def6120d2565b73ffffffffffffffffffffffffffffffffffffffff16611e0d611251565b73ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90613874565b60405180910390fd5b565b611e6d61243c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec29061373c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f31906138e0565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6120f482826040518060200160405280600081525061244f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261211e611a5a565b8786866040518563ffffffff1660e01b81526004016121409493929190613955565b6020604051808303816000875af192505050801561217c57506040513d601f19601f8201168201806040525081019061217991906139b6565b60015b6121f5573d80600081146121ac576040519150601f19603f3d011682016040523d82523d6000602084013e6121b1565b606091505b5060008151036121ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361228f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123a3565b600082905060005b600082146122c15780806122aa906139e3565b915050600a826122ba91906137f7565b9150612297565b60008167ffffffffffffffff8111156122dd576122dc612ad7565b5b6040519080825280601f01601f19166020018201604052801561230f5781602001600182028036833780820191505090505b5090505b6000851461239c576001826123289190613360565b9150600a856123379190613a2b565b60306123439190613247565b60f81b81838151811061235957612358613a5c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561239591906137f7565b9450612313565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612710905090565b60009392505050565b61245983836124ec565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124e757600080549050600083820390505b61249960008683806001019450866120f8565b6124cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124865781600054146124e457600080fd5b50505b505050565b6000805490506000820361252c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125396000848385611b9e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125b0836125a16000866000611ba4565b6125aa856126a7565b17611bcc565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461265157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612616565b506000820361268c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126a26000848385611bf7565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612700816126cb565b811461270b57600080fd5b50565b60008135905061271d816126f7565b92915050565b600060208284031215612739576127386126c1565b5b60006127478482850161270e565b91505092915050565b60008115159050919050565b61276581612750565b82525050565b6000602082019050612780600083018461275c565b92915050565b6000819050919050565b61279981612786565b82525050565b60006020820190506127b46000830184612790565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127e5826127ba565b9050919050565b6127f5816127da565b811461280057600080fd5b50565b600081359050612812816127ec565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61283981612818565b811461284457600080fd5b50565b60008135905061285681612830565b92915050565b60008060408385031215612873576128726126c1565b5b600061288185828601612803565b925050602061289285828601612847565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128d65780820151818401526020810190506128bb565b60008484015250505050565b6000601f19601f8301169050919050565b60006128fe8261289c565b61290881856128a7565b93506129188185602086016128b8565b612921816128e2565b840191505092915050565b6000602082019050818103600083015261294681846128f3565b905092915050565b61295781612786565b811461296257600080fd5b50565b6000813590506129748161294e565b92915050565b6000602082840312156129905761298f6126c1565b5b600061299e84828501612965565b91505092915050565b6129b0816127da565b82525050565b60006020820190506129cb60008301846129a7565b92915050565b600080604083850312156129e8576129e76126c1565b5b60006129f685828601612803565b9250506020612a0785828601612965565b9150509250929050565b600080600060608486031215612a2a57612a296126c1565b5b6000612a3886828701612803565b9350506020612a4986828701612803565b9250506040612a5a86828701612965565b9150509250925092565b60008060408385031215612a7b57612a7a6126c1565b5b6000612a8985828601612965565b9250506020612a9a85828601612965565b9150509250929050565b6000604082019050612ab960008301856129a7565b612ac66020830184612790565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b0f826128e2565b810181811067ffffffffffffffff82111715612b2e57612b2d612ad7565b5b80604052505050565b6000612b416126b7565b9050612b4d8282612b06565b919050565b600067ffffffffffffffff821115612b6d57612b6c612ad7565b5b612b76826128e2565b9050602081019050919050565b82818337600083830152505050565b6000612ba5612ba084612b52565b612b37565b905082815260208101848484011115612bc157612bc0612ad2565b5b612bcc848285612b83565b509392505050565b600082601f830112612be957612be8612acd565b5b8135612bf9848260208601612b92565b91505092915050565b600060208284031215612c1857612c176126c1565b5b600082013567ffffffffffffffff811115612c3657612c356126c6565b5b612c4284828501612bd4565b91505092915050565b60008060408385031215612c6257612c616126c1565b5b6000612c7085828601612965565b9250506020612c8185828601612847565b9150509250929050565b600060208284031215612ca157612ca06126c1565b5b6000612caf84828501612803565b91505092915050565b612cc181612750565b8114612ccc57600080fd5b50565b600081359050612cde81612cb8565b92915050565b60008060408385031215612cfb57612cfa6126c1565b5b6000612d0985828601612803565b9250506020612d1a85828601612ccf565b9150509250929050565b600067ffffffffffffffff821115612d3f57612d3e612ad7565b5b612d48826128e2565b9050602081019050919050565b6000612d68612d6384612d24565b612b37565b905082815260208101848484011115612d8457612d83612ad2565b5b612d8f848285612b83565b509392505050565b600082601f830112612dac57612dab612acd565b5b8135612dbc848260208601612d55565b91505092915050565b60008060008060808587031215612ddf57612dde6126c1565b5b6000612ded87828801612803565b9450506020612dfe87828801612803565b9350506040612e0f87828801612965565b925050606085013567ffffffffffffffff811115612e3057612e2f6126c6565b5b612e3c87828801612d97565b91505092959194509250565b60008060408385031215612e5f57612e5e6126c1565b5b6000612e6d85828601612803565b9250506020612e7e85828601612803565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ecf57607f821691505b602082108103612ee257612ee1612e88565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612f1e601f836128a7565b9150612f2982612ee8565b602082019050919050565b60006020820190508181036000830152612f4d81612f11565b9050919050565b600081905092915050565b50565b6000612f6f600083612f54565b9150612f7a82612f5f565b600082019050919050565b6000612f9082612f62565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ffc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612fbf565b6130068683612fbf565b95508019841693508086168417925050509392505050565b6000819050919050565b600061304361303e61303984612786565b61301e565b612786565b9050919050565b6000819050919050565b61305d83613028565b6130716130698261304a565b848454612fcc565b825550505050565b600090565b613086613079565b613091818484613054565b505050565b5b818110156130b5576130aa60008261307e565b600181019050613097565b5050565b601f8211156130fa576130cb81612f9a565b6130d484612faf565b810160208510156130e3578190505b6130f76130ef85612faf565b830182613096565b50505b505050565b600082821c905092915050565b600061311d600019846008026130ff565b1980831691505092915050565b6000613136838361310c565b9150826002028217905092915050565b61314f8261289c565b67ffffffffffffffff81111561316857613167612ad7565b5b6131728254612eb7565b61317d8282856130b9565b600060209050601f8311600181146131b0576000841561319e578287015190505b6131a8858261312a565b865550613210565b601f1984166131be86612f9a565b60005b828110156131e6578489015182556001820191506020850194506020810190506131c1565b8683101561320357848901516131ff601f89168261310c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061325282612786565b915061325d83612786565b925082820190508082111561327557613274613218565b5b92915050565b600060608201905061329060008301866129a7565b61329d6020830185612790565b6132aa6040830184612790565b949350505050565b60006132bd82612786565b91506132c883612786565b92508282026132d681612786565b915082820484148315176132ed576132ec613218565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061332a601d836128a7565b9150613335826132f4565b602082019050919050565b600060208201905081810360008301526133598161331d565b9050919050565b600061336b82612786565b915061337683612786565b925082820390508181111561338e5761338d613218565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b60006133ca6009836128a7565b91506133d582613394565b602082019050919050565b600060208201905081810360008301526133f9816133bd565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006134366013836128a7565b915061344182613400565b602082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006134c8602f836128a7565b91506134d38261346c565b604082019050919050565b600060208201905081810360008301526134f7816134bb565b9050919050565b600081905092915050565b6000815461351681612eb7565b61352081866134fe565b9450600182166000811461353b576001811461355057613583565b60ff1983168652811515820286019350613583565b61355985612f9a565b60005b8381101561357b5781548189015260018201915060208101905061355c565b838801955050505b50505092915050565b60006135978261289c565b6135a181856134fe565b93506135b18185602086016128b8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006135f36005836134fe565b91506135fe826135bd565b600582019050919050565b60006136158285613509565b9150613621828461358c565b915061362c826135e6565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136946026836128a7565b915061369f82613638565b604082019050919050565b600060208201905081810360008301526136c381613687565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000613726602a836128a7565b9150613731826136ca565b604082019050919050565b6000602082019050818103600083015261375581613719565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006137926019836128a7565b915061379d8261375c565b602082019050919050565b600060208201905081810360008301526137c181613785565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061380282612786565b915061380d83612786565b92508261381d5761381c6137c8565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061385e6020836128a7565b915061386982613828565b602082019050919050565b6000602082019050818103600083015261388d81613851565b9050919050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b60006138ca601b836128a7565b91506138d582613894565b602082019050919050565b600060208201905081810360008301526138f9816138bd565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061392782613900565b613931818561390b565b93506139418185602086016128b8565b61394a816128e2565b840191505092915050565b600060808201905061396a60008301876129a7565b61397760208301866129a7565b6139846040830185612790565b8181036060830152613996818461391c565b905095945050505050565b6000815190506139b0816126f7565b92915050565b6000602082840312156139cc576139cb6126c1565b5b60006139da848285016139a1565b91505092915050565b60006139ee82612786565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a2057613a1f613218565b5b600182019050919050565b6000613a3682612786565b9150613a4183612786565b925082613a5157613a506137c8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220367c9b252f472d8099e1d4cdbbb6f5f80079d1ff7ac21a7ce2edc178de11cf6264736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5570656871736d6755557a5635456f5150477961564273714e773972685536673537697944785a4e347672682f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e1161011857806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde146106dd578063c87b56dd146106f9578063de314a5914610736578063e985e9c514610761578063f2fde38b1461079e57610204565b806395d89b41146106425780639cb57d201461066d578063a0712d6814610698578063a22cb465146106b457610204565b8063715018a6116100e7578063715018a6146105975780637c69e207146105ae5780638da5cb5b146105c557806391b7f5ed146105f057806392910eec1461061957610204565b80636352211e146104c957806367a4f4a9146105065780636c0360eb1461052f57806370a082311461055a57610204565b8063190866921161019b5780633ccfd60b1161016a5780633ccfd60b1461042457806341c66d0a1461042e57806342842e0e1461045957806355f804b3146104755780635e1c4b601461049e57610204565b8063190866921461037457806322f4596f1461039f57806323b872dd146103ca5780632a55205a146103e657610204565b8063081812fc116101d7578063081812fc146102c5578063095ea7b3146103025780630afb04db1461031e57806318160ddd1461034957610204565b806301ffc9a7146102095780630387da421461024657806304634d8d1461027157806306fdde031461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612723565b6107c7565b60405161023d919061276b565b60405180910390f35b34801561025257600080fd5b5061025b6108c1565b604051610268919061279f565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061285c565b6108c7565b005b3480156102a657600080fd5b506102af610916565b6040516102bc919061292c565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e7919061297a565b6109a8565b6040516102f991906129b6565b60405180910390f35b61031c600480360381019061031791906129d1565b610a27565b005b34801561032a57600080fd5b50610333610b6b565b604051610340919061279f565b60405180910390f35b34801561035557600080fd5b5061035e610b71565b60405161036b919061279f565b60405180910390f35b34801561038057600080fd5b50610389610b88565b60405161039691906129b6565b60405180910390f35b3480156103ab57600080fd5b506103b4610bae565b6040516103c1919061279f565b60405180910390f35b6103e460048036038101906103df9190612a11565b610bb4565b005b3480156103f257600080fd5b5061040d60048036038101906104089190612a64565b610ed6565b60405161041b929190612aa4565b60405180910390f35b61042c610f18565b005b34801561043a57600080fd5b50610443610fee565b604051610450919061279f565b60405180910390f35b610473600480360381019061046e9190612a11565b610ff4565b005b34801561048157600080fd5b5061049c60048036038101906104979190612c02565b611014565b005b3480156104aa57600080fd5b506104b361102f565b6040516104c0919061279f565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb919061297a565b611035565b6040516104fd91906129b6565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190612c4b565b611047565b005b34801561053b57600080fd5b50610544611080565b604051610551919061292c565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190612c8b565b61110e565b60405161058e919061279f565b60405180910390f35b3480156105a357600080fd5b506105ac6111c6565b005b3480156105ba57600080fd5b506105c36111da565b005b3480156105d157600080fd5b506105da611251565b6040516105e791906129b6565b60405180910390f35b3480156105fc57600080fd5b506106176004803603810190610612919061297a565b61127b565b005b34801561062557600080fd5b50610640600480360381019061063b919061297a565b61128d565b005b34801561064e57600080fd5b5061065761129f565b604051610664919061292c565b60405180910390f35b34801561067957600080fd5b50610682611331565b60405161068f919061279f565b60405180910390f35b6106b260048036038101906106ad919061297a565b611337565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612ce4565b61157e565b005b6106f760048036038101906106f29190612dc5565b611689565b005b34801561070557600080fd5b50610720600480360381019061071b919061297a565b6116fc565b60405161072d919061292c565b60405180910390f35b34801561074257600080fd5b5061074b611778565b604051610758919061279f565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612e48565b61177e565b604051610795919061276b565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190612c8b565b6117e3565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085a57506301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ba5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e5481565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109128282611866565b5050565b60606002805461092590612eb7565b80601f016020809104026020016040519081016040528092919081815260200182805461095190612eb7565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b60006109b3826119fb565b6109e9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3282611035565b90508073ffffffffffffffffffffffffffffffffffffffff16610a53611a5a565b73ffffffffffffffffffffffffffffffffffffffff1614610ab657610a7f81610a7a611a5a565b61177e565b610ab5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610b7b611a62565b6001546000540303905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000610bbf82611a67565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c26576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3284611b33565b91509150610c488187610c43611a5a565b611b5a565b610c9457610c5d86610c58611a5a565b61177e565b610c93576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cfa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d078686866001611b9e565b8015610d1257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de085610dbc888887611ba4565b7c020000000000000000000000000000000000000000000000000000000017611bcc565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e665760006001850190506000600460008381526020019081526020016000205403610e64576000548114610e63578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ece8686866001611bf7565b505050505050565b6000806000610ee58585611bfd565b915050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b610f20611de7565b600260095403610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90612f34565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610f9390612f85565b60006040518083038185875af1925050503d8060008114610fd0576040519150601f19603f3d011682016040523d82523d6000602084013e610fd5565b606091505b5050905080610fe357600080fd5b506001600981905550565b60125481565b61100f83838360405180602001604052806000815250611689565b505050565b61101c611de7565b806013908161102b9190613146565b5050565b60115481565b600061104082611a67565b9050919050565b61104f611de7565b61107c82601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611e65565b5050565b6013805461108d90612eb7565b80601f01602080910402602001604051908101604052809291908181526020018280546110b990612eb7565b80156111065780601f106110db57610100808354040283529160200191611106565b820191906000526020600020905b8154815290600101906020018083116110e957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611175576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111ce611de7565b6111d8600061200c565b565b6111e2611de7565b601254600c60008282546111f69190613247565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e6112266120d2565b600c5460125460405161123b9392919061327b565b60405180910390a161124f336012546120da565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611283611de7565b80600e8190555050565b611295611de7565b8060118190555050565b6060600380546112ae90612eb7565b80601f01602080910402602001604051908101604052809291908181526020018280546112da90612eb7565b80156113275780601f106112fc57610100808354040283529160200191611327565b820191906000526020600020905b81548152906001019060200180831161130a57829003601f168201915b5050505050905090565b60105481565b6000600e5490506000600160115461134f9190613247565b83611358610b71565b6113629190613247565b1080156113bb575060105483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113b89190613247565b11155b806113f857506113c9611251565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561140557600091505b818361141191906132b2565b341015611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90613340565b60405180910390fd5b6001601254600d546114659190613360565b61146f9190613247565b83611478610b71565b6114829190613247565b106114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b9906133e0565b60405180910390fd5b6001600f546114d19190613247565b8310611512576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115099061344c565b60405180910390fd5b801561156f5782601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115679190613247565b925050819055505b61157933846120da565b505050565b806007600061158b611a5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611638611a5a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161167d919061276b565b60405180910390a35050565b611694848484610bb4565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116f6576116bf848484846120f8565b6116f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611707826119fb565b611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d906134de565b60405180910390fd5b601361175183612248565b604051602001611762929190613609565b6040516020818303038152906040529050919050565b600f5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d057600090506117dd565b6117da83836123a8565b90505b92915050565b6117eb611de7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361185a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611851906136aa565b60405180910390fd5b6118638161200c565b50565b61186e61243c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c39061373c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361193b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611932906137a8565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611a06611a62565b11158015611a15575060005482105b8015611a53575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611a76611a62565b11611afc57600054811015611afb5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611af9575b60008103611aef576004600083600190039350838152602001908152602001600020549050611ac5565b8092505050611b2e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bbb868684612446565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603611d9257600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611d9c61243c565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686611dc891906132b2565b611dd291906137f7565b90508160000151819350935050509250929050565b611def6120d2565b73ffffffffffffffffffffffffffffffffffffffff16611e0d611251565b73ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90613874565b60405180910390fd5b565b611e6d61243c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec29061373c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f31906138e0565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6120f482826040518060200160405280600081525061244f565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261211e611a5a565b8786866040518563ffffffff1660e01b81526004016121409493929190613955565b6020604051808303816000875af192505050801561217c57506040513d601f19601f8201168201806040525081019061217991906139b6565b60015b6121f5573d80600081146121ac576040519150601f19603f3d011682016040523d82523d6000602084013e6121b1565b606091505b5060008151036121ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361228f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123a3565b600082905060005b600082146122c15780806122aa906139e3565b915050600a826122ba91906137f7565b9150612297565b60008167ffffffffffffffff8111156122dd576122dc612ad7565b5b6040519080825280601f01601f19166020018201604052801561230f5781602001600182028036833780820191505090505b5090505b6000851461239c576001826123289190613360565b9150600a856123379190613a2b565b60306123439190613247565b60f81b81838151811061235957612358613a5c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561239591906137f7565b9450612313565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612710905090565b60009392505050565b61245983836124ec565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124e757600080549050600083820390505b61249960008683806001019450866120f8565b6124cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124865781600054146124e457600080fd5b50505b505050565b6000805490506000820361252c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125396000848385611b9e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125b0836125a16000866000611ba4565b6125aa856126a7565b17611bcc565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461265157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612616565b506000820361268c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126a26000848385611bf7565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612700816126cb565b811461270b57600080fd5b50565b60008135905061271d816126f7565b92915050565b600060208284031215612739576127386126c1565b5b60006127478482850161270e565b91505092915050565b60008115159050919050565b61276581612750565b82525050565b6000602082019050612780600083018461275c565b92915050565b6000819050919050565b61279981612786565b82525050565b60006020820190506127b46000830184612790565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127e5826127ba565b9050919050565b6127f5816127da565b811461280057600080fd5b50565b600081359050612812816127ec565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61283981612818565b811461284457600080fd5b50565b60008135905061285681612830565b92915050565b60008060408385031215612873576128726126c1565b5b600061288185828601612803565b925050602061289285828601612847565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128d65780820151818401526020810190506128bb565b60008484015250505050565b6000601f19601f8301169050919050565b60006128fe8261289c565b61290881856128a7565b93506129188185602086016128b8565b612921816128e2565b840191505092915050565b6000602082019050818103600083015261294681846128f3565b905092915050565b61295781612786565b811461296257600080fd5b50565b6000813590506129748161294e565b92915050565b6000602082840312156129905761298f6126c1565b5b600061299e84828501612965565b91505092915050565b6129b0816127da565b82525050565b60006020820190506129cb60008301846129a7565b92915050565b600080604083850312156129e8576129e76126c1565b5b60006129f685828601612803565b9250506020612a0785828601612965565b9150509250929050565b600080600060608486031215612a2a57612a296126c1565b5b6000612a3886828701612803565b9350506020612a4986828701612803565b9250506040612a5a86828701612965565b9150509250925092565b60008060408385031215612a7b57612a7a6126c1565b5b6000612a8985828601612965565b9250506020612a9a85828601612965565b9150509250929050565b6000604082019050612ab960008301856129a7565b612ac66020830184612790565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b0f826128e2565b810181811067ffffffffffffffff82111715612b2e57612b2d612ad7565b5b80604052505050565b6000612b416126b7565b9050612b4d8282612b06565b919050565b600067ffffffffffffffff821115612b6d57612b6c612ad7565b5b612b76826128e2565b9050602081019050919050565b82818337600083830152505050565b6000612ba5612ba084612b52565b612b37565b905082815260208101848484011115612bc157612bc0612ad2565b5b612bcc848285612b83565b509392505050565b600082601f830112612be957612be8612acd565b5b8135612bf9848260208601612b92565b91505092915050565b600060208284031215612c1857612c176126c1565b5b600082013567ffffffffffffffff811115612c3657612c356126c6565b5b612c4284828501612bd4565b91505092915050565b60008060408385031215612c6257612c616126c1565b5b6000612c7085828601612965565b9250506020612c8185828601612847565b9150509250929050565b600060208284031215612ca157612ca06126c1565b5b6000612caf84828501612803565b91505092915050565b612cc181612750565b8114612ccc57600080fd5b50565b600081359050612cde81612cb8565b92915050565b60008060408385031215612cfb57612cfa6126c1565b5b6000612d0985828601612803565b9250506020612d1a85828601612ccf565b9150509250929050565b600067ffffffffffffffff821115612d3f57612d3e612ad7565b5b612d48826128e2565b9050602081019050919050565b6000612d68612d6384612d24565b612b37565b905082815260208101848484011115612d8457612d83612ad2565b5b612d8f848285612b83565b509392505050565b600082601f830112612dac57612dab612acd565b5b8135612dbc848260208601612d55565b91505092915050565b60008060008060808587031215612ddf57612dde6126c1565b5b6000612ded87828801612803565b9450506020612dfe87828801612803565b9350506040612e0f87828801612965565b925050606085013567ffffffffffffffff811115612e3057612e2f6126c6565b5b612e3c87828801612d97565b91505092959194509250565b60008060408385031215612e5f57612e5e6126c1565b5b6000612e6d85828601612803565b9250506020612e7e85828601612803565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ecf57607f821691505b602082108103612ee257612ee1612e88565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612f1e601f836128a7565b9150612f2982612ee8565b602082019050919050565b60006020820190508181036000830152612f4d81612f11565b9050919050565b600081905092915050565b50565b6000612f6f600083612f54565b9150612f7a82612f5f565b600082019050919050565b6000612f9082612f62565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ffc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612fbf565b6130068683612fbf565b95508019841693508086168417925050509392505050565b6000819050919050565b600061304361303e61303984612786565b61301e565b612786565b9050919050565b6000819050919050565b61305d83613028565b6130716130698261304a565b848454612fcc565b825550505050565b600090565b613086613079565b613091818484613054565b505050565b5b818110156130b5576130aa60008261307e565b600181019050613097565b5050565b601f8211156130fa576130cb81612f9a565b6130d484612faf565b810160208510156130e3578190505b6130f76130ef85612faf565b830182613096565b50505b505050565b600082821c905092915050565b600061311d600019846008026130ff565b1980831691505092915050565b6000613136838361310c565b9150826002028217905092915050565b61314f8261289c565b67ffffffffffffffff81111561316857613167612ad7565b5b6131728254612eb7565b61317d8282856130b9565b600060209050601f8311600181146131b0576000841561319e578287015190505b6131a8858261312a565b865550613210565b601f1984166131be86612f9a565b60005b828110156131e6578489015182556001820191506020850194506020810190506131c1565b8683101561320357848901516131ff601f89168261310c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061325282612786565b915061325d83612786565b925082820190508082111561327557613274613218565b5b92915050565b600060608201905061329060008301866129a7565b61329d6020830185612790565b6132aa6040830184612790565b949350505050565b60006132bd82612786565b91506132c883612786565b92508282026132d681612786565b915082820484148315176132ed576132ec613218565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b600061332a601d836128a7565b9150613335826132f4565b602082019050919050565b600060208201905081810360008301526133598161331d565b9050919050565b600061336b82612786565b915061337683612786565b925082820390508181111561338e5761338d613218565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b60006133ca6009836128a7565b91506133d582613394565b602082019050919050565b600060208201905081810360008301526133f9816133bd565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006134366013836128a7565b915061344182613400565b602082019050919050565b6000602082019050818103600083015261346581613429565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006134c8602f836128a7565b91506134d38261346c565b604082019050919050565b600060208201905081810360008301526134f7816134bb565b9050919050565b600081905092915050565b6000815461351681612eb7565b61352081866134fe565b9450600182166000811461353b576001811461355057613583565b60ff1983168652811515820286019350613583565b61355985612f9a565b60005b8381101561357b5781548189015260018201915060208101905061355c565b838801955050505b50505092915050565b60006135978261289c565b6135a181856134fe565b93506135b18185602086016128b8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006135f36005836134fe565b91506135fe826135bd565b600582019050919050565b60006136158285613509565b9150613621828461358c565b915061362c826135e6565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136946026836128a7565b915061369f82613638565b604082019050919050565b600060208201905081810360008301526136c381613687565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000613726602a836128a7565b9150613731826136ca565b604082019050919050565b6000602082019050818103600083015261375581613719565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006137926019836128a7565b915061379d8261375c565b602082019050919050565b600060208201905081810360008301526137c181613785565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061380282612786565b915061380d83612786565b92508261381d5761381c6137c8565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061385e6020836128a7565b915061386982613828565b602082019050919050565b6000602082019050818103600083015261388d81613851565b9050919050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b60006138ca601b836128a7565b91506138d582613894565b602082019050919050565b600060208201905081810360008301526138f9816138bd565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061392782613900565b613931818561390b565b93506139418185602086016128b8565b61394a816128e2565b840191505092915050565b600060808201905061396a60008301876129a7565b61397760208301866129a7565b6139846040830185612790565b8181036060830152613996818461391c565b905095945050505050565b6000815190506139b0816126f7565b92915050565b6000602082840312156139cc576139cb6126c1565b5b60006139da848285016139a1565b91505092915050565b60006139ee82612786565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a2057613a1f613218565b5b600182019050919050565b6000613a3682612786565b9150613a4183612786565b925082613a5157613a506137c8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220367c9b252f472d8099e1d4cdbbb6f5f80079d1ff7ac21a7ce2edc178de11cf6264736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5570656871736d6755557a5635456f5150477961564273714e773972685536673537697944785a4e347672682f00000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmUpehqsmgUUzV5EoQPGyaVBsqNw9rhU6g57iyDxZN4vrh/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5570656871736d6755557a5635456f5150477961564273
Arg [3] : 714e773972685536673537697944785a4e347672682f00000000000000000000


Deployed Bytecode Sourcemap

67345:4371:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69030:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67560:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68182:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35152:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41643:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41076:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67491:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30903:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67930:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67521:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45282:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68583:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;71508:205;;;:::i;:::-;;67742:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48203:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71192:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67694:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36545:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68397:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67814:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32087:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15029:103;;;;;;;;;;;;;:::i;:::-;;70176:182;;;;;;;;;;;;;:::i;:::-;;14381:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71402:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71289:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35328;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67649:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69458:708;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42201:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48994:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70833:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67606:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70485:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15287:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69030:416;69133:4;69172:26;69157:41;;;:11;:41;;;;:84;;;;69231:10;69216:25;;:11;:25;;;;69157:84;:161;;;;69308:10;69293:25;;:11;:25;;;;69157:161;:238;;;;69385:10;69370:25;;:11;:25;;;;69157:238;69150:245;;69030:416;;;:::o;67560:39::-;;;;:::o;68182:171::-;68281:9;68268:10;;:22;;;;;;;;;;;;;;;;;;68301:44;68320:9;68331:13;68301:18;:44::i;:::-;68182:171;;:::o;35152:100::-;35206:13;35239:5;35232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35152:100;:::o;41643:218::-;41719:7;41744:16;41752:7;41744;:16::i;:::-;41739:64;;41769:34;;;;;;;;;;;;;;41739:64;41823:15;:24;41839:7;41823:24;;;;;;;;;;;:30;;;;;;;;;;;;41816:37;;41643:218;;;:::o;41076:408::-;41165:13;41181:16;41189:7;41181;:16::i;:::-;41165:32;;41237:5;41214:28;;:19;:17;:19::i;:::-;:28;;;41210:175;;41262:44;41279:5;41286:19;:17;:19::i;:::-;41262:16;:44::i;:::-;41257:128;;41334:35;;;;;;;;;;;;;;41257:128;41210:175;41430:2;41397:15;:24;41413:7;41397:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;41468:7;41464:2;41448:28;;41457:5;41448:28;;;;;;;;;;;;41154:330;41076:408;;:::o;67491:23::-;;;;:::o;30903:323::-;30964:7;31192:15;:13;:15::i;:::-;31177:12;;31161:13;;:28;:46;31154:53;;30903:323;:::o;67930:25::-;;;;;;;;;;;;;:::o;67521:32::-;;;;:::o;45282:2825::-;45424:27;45454;45473:7;45454:18;:27::i;:::-;45424:57;;45539:4;45498:45;;45514:19;45498:45;;;45494:86;;45552:28;;;;;;;;;;;;;;45494:86;45594:27;45623:23;45650:35;45677:7;45650:26;:35::i;:::-;45593:92;;;;45785:68;45810:15;45827:4;45833:19;:17;:19::i;:::-;45785:24;:68::i;:::-;45780:180;;45873:43;45890:4;45896:19;:17;:19::i;:::-;45873:16;:43::i;:::-;45868:92;;45925:35;;;;;;;;;;;;;;45868:92;45780:180;45991:1;45977:16;;:2;:16;;;45973:52;;46002:23;;;;;;;;;;;;;;45973:52;46038:43;46060:4;46066:2;46070:7;46079:1;46038:21;:43::i;:::-;46174:15;46171:160;;;46314:1;46293:19;46286:30;46171:160;46711:18;:24;46730:4;46711:24;;;;;;;;;;;;;;;;46709:26;;;;;;;;;;;;46780:18;:22;46799:2;46780:22;;;;;;;;;;;;;;;;46778:24;;;;;;;;;;;47102:146;47139:2;47188:45;47203:4;47209:2;47213:19;47188:14;:45::i;:::-;27302:8;47160:73;47102:18;:146::i;:::-;47073:17;:26;47091:7;47073:26;;;;;;;;;;;:175;;;;47419:1;27302:8;47368:19;:47;:52;47364:627;;47441:19;47473:1;47463:7;:11;47441:33;;47630:1;47596:17;:30;47614:11;47596:30;;;;;;;;;;;;:35;47592:384;;47734:13;;47719:11;:28;47715:242;;47914:19;47881:17;:30;47899:11;47881:30;;;;;;;;;;;:52;;;;47715:242;47592:384;47422:569;47364:627;48038:7;48034:2;48019:27;;48028:4;48019:27;;;;;;;;;;;;48057:42;48078:4;48084:2;48088:7;48097:1;48057:20;:42::i;:::-;45413:2694;;;45282:2825;;;:::o;68583:365::-;68672:7;68681;68766:15;68785:39;68803:8;68813:10;68785:17;:39::i;:::-;68763:61;;;68917:10;;;;;;;;;;;68929;68909:31;;;;;68583:365;;;;;:::o;71508:205::-;14267:13;:11;:13::i;:::-;11306:1:::1;11904:7;;:19:::0;11896:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11306:1;12037:7;:18;;;;71578:12:::2;71604:10;71596:24;;71642:21;71596:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71577:101;;;71697:7;71689:16;;;::::0;::::2;;71566:147;11262:1:::1;12216:7;:22;;;;71508:205::o:0;67742:30::-;;;;:::o;48203:193::-;48349:39;48366:4;48372:2;48376:7;48349:39;;;;;;;;;;;;:16;:39::i;:::-;48203:193;;;:::o;71192:88::-;14267:13;:11;:13::i;:::-;71269:3:::1;71259:7;:13;;;;;;:::i;:::-;;71192:88:::0;:::o;67694:40::-;;;;:::o;36545:152::-;36617:7;36660:27;36679:7;36660:18;:27::i;:::-;36637:52;;36545:152;;;:::o;68397:177::-;14267:13;:11;:13::i;:::-;68515:51:::1;68532:7;68541:10;;;;;;;;;;;68553:12;68515:16;:51::i;:::-;68397:177:::0;;:::o;67814:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32087:233::-;32159:7;32200:1;32183:19;;:5;:19;;;32179:60;;32211:28;;;;;;;;;;;;;;32179:60;26246:13;32257:18;:25;32276:5;32257:25;;;;;;;;;;;;;;;;:55;32250:62;;32087:233;;;:::o;15029:103::-;14267:13;:11;:13::i;:::-;15094:30:::1;15121:1;15094:18;:30::i;:::-;15029:103::o:0;70176:182::-;14267:13;:11;:13::i;:::-;70235:9:::1;;70223:8;;:21;;;;;;;:::i;:::-;;;;;;;;70260:47;70273:12;:10;:12::i;:::-;70287:8;;70297:9;;70260:47;;;;;;;;:::i;:::-;;;;;;;;70318:32;70328:10;70340:9;;70318;:32::i;:::-;70176:182::o:0;14381:87::-;14427:7;14454:6;;;;;;;;;;;14447:13;;14381:87;:::o;71402:97::-;14267:13;:11;:13::i;:::-;71482:9:::1;71469:10;:22;;;;71402:97:::0;:::o;71289:104::-;14267:13;:11;:13::i;:::-;71379:6:::1;71358:18;:27;;;;71289:104:::0;:::o;35328:::-;35384:13;35417:7;35410:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35328:104;:::o;67649:38::-;;;;:::o;69458:708::-;69515:12;69530:10;;69515:25;;69551:11;69612:1;69591:18;;:22;;;;:::i;:::-;69583:5;69567:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:46;69566:127;;;;;69673:19;;69664:5;69632:17;:29;69650:10;69632:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;;69566:127;69565:169;;;;69726:7;:5;:7::i;:::-;69712:21;;:10;:21;;;69565:169;69551:183;;69752:6;69748:47;;;69782:1;69775:8;;69748:47;69837:4;69829:5;:12;;;;:::i;:::-;69816:9;:25;;69808:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;69943:1;69931:9;;69918:10;;:22;;;;:::i;:::-;:26;;;;:::i;:::-;69910:5;69894:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:50;69886:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;70001:1;69985:13;;:17;;;;:::i;:::-;69977:5;:25;69969:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;70044:6;70040:77;;;70100:5;70067:17;:29;70085:10;70067:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;70040:77;70130:28;70140:10;70152:5;70130:9;:28::i;:::-;69504:662;;69458:708;:::o;42201:234::-;42348:8;42296:18;:39;42315:19;:17;:19::i;:::-;42296:39;;;;;;;;;;;;;;;:49;42336:8;42296:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;42408:8;42372:55;;42387:19;:17;:19::i;:::-;42372:55;;;42418:8;42372:55;;;;;;:::i;:::-;;;;;;;;42201:234;;:::o;48994:407::-;49169:31;49182:4;49188:2;49192:7;49169:12;:31::i;:::-;49233:1;49215:2;:14;;;:19;49211:183;;49254:56;49285:4;49291:2;49295:7;49304:5;49254:30;:56::i;:::-;49249:145;;49338:40;;;;;;;;;;;;;;49249:145;49211:183;48994:407;;;;:::o;70833:350::-;70951:13;71004:16;71012:7;71004;:16::i;:::-;70982:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;71137:7;71146:18;:7;:16;:18::i;:::-;71120:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71106:69;;70833:350;;;:::o;67606:33::-;;;;:::o;70485:335::-;70610:4;70671:42;70659:54;;:8;:54;;;70655:99;;70737:5;70730:12;;;;70655:99;70773:39;70796:5;70803:8;70773:22;:39::i;:::-;70766:46;;70485:335;;;;;:::o;15287:201::-;14267:13;:11;:13::i;:::-;15396:1:::1;15376:22;;:8;:22;;::::0;15368:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15452:28;15471:8;15452:18;:28::i;:::-;15287:201:::0;:::o;5592:332::-;5711:17;:15;:17::i;:::-;5695:33;;:12;:33;;;;5687:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;5814:1;5794:22;;:8;:22;;;5786:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5881:35;;;;;;;;5893:8;5881:35;;;;;;5903:12;5881:35;;;;;5859:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5592:332;;:::o;43014:282::-;43079:4;43135:7;43116:15;:13;:15::i;:::-;:26;;:66;;;;;43169:13;;43159:7;:23;43116:66;:153;;;;;43268:1;27022:8;43220:17;:26;43238:7;43220:26;;;;;;;;;;;;:44;:49;43116:153;43096:173;;43014:282;;;:::o;65322:105::-;65382:7;65409:10;65402:17;;65322:105;:::o;30419:92::-;30475:7;30419:92;:::o;37700:1275::-;37767:7;37787:12;37802:7;37787:22;;37870:4;37851:15;:13;:15::i;:::-;:23;37847:1061;;37904:13;;37897:4;:20;37893:1015;;;37942:14;37959:17;:23;37977:4;37959:23;;;;;;;;;;;;37942:40;;38076:1;27022:8;38048:6;:24;:29;38044:845;;38713:113;38730:1;38720:6;:11;38713:113;;38773:17;:25;38791:6;;;;;;;38773:25;;;;;;;;;;;;38764:34;;38713:113;;;38859:6;38852:13;;;;;;38044:845;37919:989;37893:1015;37847:1061;38936:31;;;;;;;;;;;;;;37700:1275;;;;:::o;44177:485::-;44279:27;44308:23;44349:38;44390:15;:24;44406:7;44390:24;;;;;;;;;;;44349:65;;44567:18;44544:41;;44624:19;44618:26;44599:45;;44529:126;44177:485;;;:::o;43405:659::-;43554:11;43719:16;43712:5;43708:28;43699:37;;43879:16;43868:9;43864:32;43851:45;;44029:15;44018:9;44015:30;44007:5;43996:9;43993:20;43990:56;43980:66;;43405:659;;;;;:::o;50063:159::-;;;;;:::o;64631:311::-;64766:7;64786:16;27426:3;64812:19;:41;;64786:68;;27426:3;64880:31;64891:4;64897:2;64901:9;64880:10;:31::i;:::-;64872:40;;:62;;64865:69;;;64631:311;;;;;:::o;39523:450::-;39603:14;39771:16;39764:5;39760:28;39751:37;;39948:5;39934:11;39909:23;39905:41;39902:52;39895:5;39892:63;39882:73;;39523:450;;;;:::o;50887:158::-;;;;;:::o;4500:442::-;4597:7;4606;4626:26;4655:17;:27;4673:8;4655:27;;;;;;;;;;;4626:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4727:1;4699:30;;:7;:16;;;:30;;;4695:92;;4756:19;4746:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4695:92;4799:21;4864:17;:15;:17::i;:::-;4823:58;;4837:7;:23;;;4824:36;;:10;:36;;;;:::i;:::-;4823:58;;;;:::i;:::-;4799:82;;4902:7;:16;;;4920:13;4894:40;;;;;;4500:442;;;;;:::o;14546:132::-;14621:12;:10;:12::i;:::-;14610:23;;:7;:5;:7::i;:::-;:23;;;14602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14546:132::o;6375:390::-;6543:17;:15;:17::i;:::-;6527:33;;:12;:33;;;;6519:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;6646:1;6626:22;;:8;:22;;;6618:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;6722:35;;;;;;;;6734:8;6722:35;;;;;;6744:12;6722:35;;;;;6693:17;:26;6711:7;6693:26;;;;;;;;;;;:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6375:390;;;:::o;15648:191::-;15722:16;15741:6;;;;;;;;;;;15722:25;;15767:8;15758:6;;:17;;;;;;;;;;;;;;;;;;15822:8;15791:40;;15812:8;15791:40;;;;;;;;;;;;15711:128;15648:191;:::o;12932:98::-;12985:7;13012:10;13005:17;;12932:98;:::o;59154:112::-;59231:27;59241:2;59245:8;59231:27;;;;;;;;;;;;:9;:27::i;:::-;59154:112;;:::o;51485:716::-;51648:4;51694:2;51669:45;;;51715:19;:17;:19::i;:::-;51736:4;51742:7;51751:5;51669:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51665:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51969:1;51952:6;:13;:18;51948:235;;51998:40;;;;;;;;;;;;;;51948:235;52141:6;52135:13;52126:6;52122:2;52118:15;52111:38;51665:529;51838:54;;;51828:64;;;:6;:64;;;;51821:71;;;51485:716;;;;;;:::o;7427:723::-;7483:13;7713:1;7704:5;:10;7700:53;;7731:10;;;;;;;;;;;;;;;;;;;;;7700:53;7763:12;7778:5;7763:20;;7794:14;7819:78;7834:1;7826:4;:9;7819:78;;7852:8;;;;;:::i;:::-;;;;7883:2;7875:10;;;;;:::i;:::-;;;7819:78;;;7907:19;7939:6;7929:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7907:39;;7957:154;7973:1;7964:5;:10;7957:154;;8001:1;7991:11;;;;;:::i;:::-;;;8068:2;8060:5;:10;;;;:::i;:::-;8047:2;:24;;;;:::i;:::-;8034:39;;8017:6;8024;8017:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8097:2;8088:11;;;;;:::i;:::-;;;7957:154;;;8135:6;8121:21;;;;;7427:723;;;;:::o;42592:164::-;42689:4;42713:18;:25;42732:5;42713:25;;;;;;;;;;;;;;;:35;42739:8;42713:35;;;;;;;;;;;;;;;;;;;;;;;;;42706:42;;42592:164;;;;:::o;5224:97::-;5282:6;5308:5;5301:12;;5224:97;:::o;64332:147::-;64469:6;64332:147;;;;;:::o;58381:689::-;58512:19;58518:2;58522:8;58512:5;:19::i;:::-;58591:1;58573:2;:14;;;:19;58569:483;;58613:11;58627:13;;58613:27;;58659:13;58681:8;58675:3;:14;58659:30;;58708:233;58739:62;58778:1;58782:2;58786:7;;;;;;58795:5;58739:30;:62::i;:::-;58734:167;;58837:40;;;;;;;;;;;;;;58734:167;58936:3;58928:5;:11;58708:233;;59023:3;59006:13;;:20;59002:34;;59028:8;;;59002:34;58594:458;;58569:483;58381:689;;;:::o;52663:2966::-;52736:20;52759:13;;52736:36;;52799:1;52787:8;:13;52783:44;;52809:18;;;;;;;;;;;;;;52783:44;52840:61;52870:1;52874:2;52878:12;52892:8;52840:21;:61::i;:::-;53384:1;26384:2;53354:1;:26;;53353:32;53341:8;:45;53315:18;:22;53334:2;53315:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;53663:139;53700:2;53754:33;53777:1;53781:2;53785:1;53754:14;:33::i;:::-;53721:30;53742:8;53721:20;:30::i;:::-;:66;53663:18;:139::i;:::-;53629:17;:31;53647:12;53629:31;;;;;;;;;;;:173;;;;53819:16;53850:11;53879:8;53864:12;:23;53850:37;;54400:16;54396:2;54392:25;54380:37;;54772:12;54732:8;54691:1;54629:25;54570:1;54509;54482:335;55143:1;55129:12;55125:20;55083:346;55184:3;55175:7;55172:16;55083:346;;55402:7;55392:8;55389:1;55362:25;55359:1;55356;55351:59;55237:1;55228:7;55224:15;55213:26;;55083:346;;;55087:77;55474:1;55462:8;:13;55458:45;;55484:19;;;;;;;;;;;;;;55458:45;55536:3;55520:13;:19;;;;53089:2462;;55561:60;55590:1;55594:2;55598:12;55612:8;55561:20;:60::i;:::-;52725:2904;52663:2966;;:::o;40075:324::-;40145:14;40378:1;40368:8;40365:15;40339:24;40335:46;40325:56;;40075:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:126::-;1990:7;2030:42;2023:5;2019:54;2008:65;;1953:126;;;:::o;2085:96::-;2122:7;2151:24;2169:5;2151:24;:::i;:::-;2140:35;;2085:96;;;:::o;2187:122::-;2260:24;2278:5;2260:24;:::i;:::-;2253:5;2250:35;2240:63;;2299:1;2296;2289:12;2240:63;2187:122;:::o;2315:139::-;2361:5;2399:6;2386:20;2377:29;;2415:33;2442:5;2415:33;:::i;:::-;2315:139;;;;:::o;2460:109::-;2496:7;2536:26;2529:5;2525:38;2514:49;;2460:109;;;:::o;2575:120::-;2647:23;2664:5;2647:23;:::i;:::-;2640:5;2637:34;2627:62;;2685:1;2682;2675:12;2627:62;2575:120;:::o;2701:137::-;2746:5;2784:6;2771:20;2762:29;;2800:32;2826:5;2800:32;:::i;:::-;2701:137;;;;:::o;2844:472::-;2911:6;2919;2968:2;2956:9;2947:7;2943:23;2939:32;2936:119;;;2974:79;;:::i;:::-;2936:119;3094:1;3119:53;3164:7;3155:6;3144:9;3140:22;3119:53;:::i;:::-;3109:63;;3065:117;3221:2;3247:52;3291:7;3282:6;3271:9;3267:22;3247:52;:::i;:::-;3237:62;;3192:117;2844:472;;;;;:::o;3322:99::-;3374:6;3408:5;3402:12;3392:22;;3322:99;;;:::o;3427:169::-;3511:11;3545:6;3540:3;3533:19;3585:4;3580:3;3576:14;3561:29;;3427:169;;;;:::o;3602:246::-;3683:1;3693:113;3707:6;3704:1;3701:13;3693:113;;;3792:1;3787:3;3783:11;3777:18;3773:1;3768:3;3764:11;3757:39;3729:2;3726:1;3722:10;3717:15;;3693:113;;;3840:1;3831:6;3826:3;3822:16;3815:27;3664:184;3602:246;;;:::o;3854:102::-;3895:6;3946:2;3942:7;3937:2;3930:5;3926:14;3922:28;3912:38;;3854:102;;;:::o;3962:377::-;4050:3;4078:39;4111:5;4078:39;:::i;:::-;4133:71;4197:6;4192:3;4133:71;:::i;:::-;4126:78;;4213:65;4271:6;4266:3;4259:4;4252:5;4248:16;4213:65;:::i;:::-;4303:29;4325:6;4303:29;:::i;:::-;4298:3;4294:39;4287:46;;4054:285;3962:377;;;;:::o;4345:313::-;4458:4;4496:2;4485:9;4481:18;4473:26;;4545:9;4539:4;4535:20;4531:1;4520:9;4516:17;4509:47;4573:78;4646:4;4637:6;4573:78;:::i;:::-;4565:86;;4345:313;;;;:::o;4664:122::-;4737:24;4755:5;4737:24;:::i;:::-;4730:5;4727:35;4717:63;;4776:1;4773;4766:12;4717:63;4664:122;:::o;4792:139::-;4838:5;4876:6;4863:20;4854:29;;4892:33;4919:5;4892:33;:::i;:::-;4792:139;;;;:::o;4937:329::-;4996:6;5045:2;5033:9;5024:7;5020:23;5016:32;5013:119;;;5051:79;;:::i;:::-;5013:119;5171:1;5196:53;5241:7;5232:6;5221:9;5217:22;5196:53;:::i;:::-;5186:63;;5142:117;4937:329;;;;:::o;5272:118::-;5359:24;5377:5;5359:24;:::i;:::-;5354:3;5347:37;5272:118;;:::o;5396:222::-;5489:4;5527:2;5516:9;5512:18;5504:26;;5540:71;5608:1;5597:9;5593:17;5584:6;5540:71;:::i;:::-;5396:222;;;;:::o;5624:474::-;5692:6;5700;5749:2;5737:9;5728:7;5724:23;5720:32;5717:119;;;5755:79;;:::i;:::-;5717:119;5875:1;5900:53;5945:7;5936:6;5925:9;5921:22;5900:53;:::i;:::-;5890:63;;5846:117;6002:2;6028:53;6073:7;6064:6;6053:9;6049:22;6028:53;:::i;:::-;6018:63;;5973:118;5624:474;;;;;:::o;6104:619::-;6181:6;6189;6197;6246:2;6234:9;6225:7;6221:23;6217:32;6214:119;;;6252:79;;:::i;:::-;6214:119;6372:1;6397:53;6442:7;6433:6;6422:9;6418:22;6397:53;:::i;:::-;6387:63;;6343:117;6499:2;6525:53;6570:7;6561:6;6550:9;6546:22;6525:53;:::i;:::-;6515:63;;6470:118;6627:2;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6598:118;6104:619;;;;;:::o;6729:474::-;6797:6;6805;6854:2;6842:9;6833:7;6829:23;6825:32;6822:119;;;6860:79;;:::i;:::-;6822:119;6980:1;7005:53;7050:7;7041:6;7030:9;7026:22;7005:53;:::i;:::-;6995:63;;6951:117;7107:2;7133:53;7178:7;7169:6;7158:9;7154:22;7133:53;:::i;:::-;7123:63;;7078:118;6729:474;;;;;:::o;7209:332::-;7330:4;7368:2;7357:9;7353:18;7345:26;;7381:71;7449:1;7438:9;7434:17;7425:6;7381:71;:::i;:::-;7462:72;7530:2;7519:9;7515:18;7506:6;7462:72;:::i;:::-;7209:332;;;;;:::o;7547:117::-;7656:1;7653;7646:12;7670:117;7779:1;7776;7769:12;7793:180;7841:77;7838:1;7831:88;7938:4;7935:1;7928:15;7962:4;7959:1;7952:15;7979:281;8062:27;8084:4;8062:27;:::i;:::-;8054:6;8050:40;8192:6;8180:10;8177:22;8156:18;8144:10;8141:34;8138:62;8135:88;;;8203:18;;:::i;:::-;8135:88;8243:10;8239:2;8232:22;8022:238;7979:281;;:::o;8266:129::-;8300:6;8327:20;;:::i;:::-;8317:30;;8356:33;8384:4;8376:6;8356:33;:::i;:::-;8266:129;;;:::o;8401:308::-;8463:4;8553:18;8545:6;8542:30;8539:56;;;8575:18;;:::i;:::-;8539:56;8613:29;8635:6;8613:29;:::i;:::-;8605:37;;8697:4;8691;8687:15;8679:23;;8401:308;;;:::o;8715:146::-;8812:6;8807:3;8802;8789:30;8853:1;8844:6;8839:3;8835:16;8828:27;8715:146;;;:::o;8867:425::-;8945:5;8970:66;8986:49;9028:6;8986:49;:::i;:::-;8970:66;:::i;:::-;8961:75;;9059:6;9052:5;9045:21;9097:4;9090:5;9086:16;9135:3;9126:6;9121:3;9117:16;9114:25;9111:112;;;9142:79;;:::i;:::-;9111:112;9232:54;9279:6;9274:3;9269;9232:54;:::i;:::-;8951:341;8867:425;;;;;:::o;9312:340::-;9368:5;9417:3;9410:4;9402:6;9398:17;9394:27;9384:122;;9425:79;;:::i;:::-;9384:122;9542:6;9529:20;9567:79;9642:3;9634:6;9627:4;9619:6;9615:17;9567:79;:::i;:::-;9558:88;;9374:278;9312:340;;;;:::o;9658:509::-;9727:6;9776:2;9764:9;9755:7;9751:23;9747:32;9744:119;;;9782:79;;:::i;:::-;9744:119;9930:1;9919:9;9915:17;9902:31;9960:18;9952:6;9949:30;9946:117;;;9982:79;;:::i;:::-;9946:117;10087:63;10142:7;10133:6;10122:9;10118:22;10087:63;:::i;:::-;10077:73;;9873:287;9658:509;;;;:::o;10173:472::-;10240:6;10248;10297:2;10285:9;10276:7;10272:23;10268:32;10265:119;;;10303:79;;:::i;:::-;10265:119;10423:1;10448:53;10493:7;10484:6;10473:9;10469:22;10448:53;:::i;:::-;10438:63;;10394:117;10550:2;10576:52;10620:7;10611:6;10600:9;10596:22;10576:52;:::i;:::-;10566:62;;10521:117;10173:472;;;;;:::o;10651:329::-;10710:6;10759:2;10747:9;10738:7;10734:23;10730:32;10727:119;;;10765:79;;:::i;:::-;10727:119;10885:1;10910:53;10955:7;10946:6;10935:9;10931:22;10910:53;:::i;:::-;10900:63;;10856:117;10651:329;;;;:::o;10986:116::-;11056:21;11071:5;11056:21;:::i;:::-;11049:5;11046:32;11036:60;;11092:1;11089;11082:12;11036:60;10986:116;:::o;11108:133::-;11151:5;11189:6;11176:20;11167:29;;11205:30;11229:5;11205:30;:::i;:::-;11108:133;;;;:::o;11247:468::-;11312:6;11320;11369:2;11357:9;11348:7;11344:23;11340:32;11337:119;;;11375:79;;:::i;:::-;11337:119;11495:1;11520:53;11565:7;11556:6;11545:9;11541:22;11520:53;:::i;:::-;11510:63;;11466:117;11622:2;11648:50;11690:7;11681:6;11670:9;11666:22;11648:50;:::i;:::-;11638:60;;11593:115;11247:468;;;;;:::o;11721:307::-;11782:4;11872:18;11864:6;11861:30;11858:56;;;11894:18;;:::i;:::-;11858:56;11932:29;11954:6;11932:29;:::i;:::-;11924:37;;12016:4;12010;12006:15;11998:23;;11721:307;;;:::o;12034:423::-;12111:5;12136:65;12152:48;12193:6;12152:48;:::i;:::-;12136:65;:::i;:::-;12127:74;;12224:6;12217:5;12210:21;12262:4;12255:5;12251:16;12300:3;12291:6;12286:3;12282:16;12279:25;12276:112;;;12307:79;;:::i;:::-;12276:112;12397:54;12444:6;12439:3;12434;12397:54;:::i;:::-;12117:340;12034:423;;;;;:::o;12476:338::-;12531:5;12580:3;12573:4;12565:6;12561:17;12557:27;12547:122;;12588:79;;:::i;:::-;12547:122;12705:6;12692:20;12730:78;12804:3;12796:6;12789:4;12781:6;12777:17;12730:78;:::i;:::-;12721:87;;12537:277;12476:338;;;;:::o;12820:943::-;12915:6;12923;12931;12939;12988:3;12976:9;12967:7;12963:23;12959:33;12956:120;;;12995:79;;:::i;:::-;12956:120;13115:1;13140:53;13185:7;13176:6;13165:9;13161:22;13140:53;:::i;:::-;13130:63;;13086:117;13242:2;13268:53;13313:7;13304:6;13293:9;13289:22;13268:53;:::i;:::-;13258:63;;13213:118;13370:2;13396:53;13441:7;13432:6;13421:9;13417:22;13396:53;:::i;:::-;13386:63;;13341:118;13526:2;13515:9;13511:18;13498:32;13557:18;13549:6;13546:30;13543:117;;;13579:79;;:::i;:::-;13543:117;13684:62;13738:7;13729:6;13718:9;13714:22;13684:62;:::i;:::-;13674:72;;13469:287;12820:943;;;;;;;:::o;13769:474::-;13837:6;13845;13894:2;13882:9;13873:7;13869:23;13865:32;13862:119;;;13900:79;;:::i;:::-;13862:119;14020:1;14045:53;14090:7;14081:6;14070:9;14066:22;14045:53;:::i;:::-;14035:63;;13991:117;14147:2;14173:53;14218:7;14209:6;14198:9;14194:22;14173:53;:::i;:::-;14163:63;;14118:118;13769:474;;;;;:::o;14249:180::-;14297:77;14294:1;14287:88;14394:4;14391:1;14384:15;14418:4;14415:1;14408:15;14435:320;14479:6;14516:1;14510:4;14506:12;14496:22;;14563:1;14557:4;14553:12;14584:18;14574:81;;14640:4;14632:6;14628:17;14618:27;;14574:81;14702:2;14694:6;14691:14;14671:18;14668:38;14665:84;;14721:18;;:::i;:::-;14665:84;14486:269;14435:320;;;:::o;14761:181::-;14901:33;14897:1;14889:6;14885:14;14878:57;14761:181;:::o;14948:366::-;15090:3;15111:67;15175:2;15170:3;15111:67;:::i;:::-;15104:74;;15187:93;15276:3;15187:93;:::i;:::-;15305:2;15300:3;15296:12;15289:19;;14948:366;;;:::o;15320:419::-;15486:4;15524:2;15513:9;15509:18;15501:26;;15573:9;15567:4;15563:20;15559:1;15548:9;15544:17;15537:47;15601:131;15727:4;15601:131;:::i;:::-;15593:139;;15320:419;;;:::o;15745:147::-;15846:11;15883:3;15868:18;;15745:147;;;;:::o;15898:114::-;;:::o;16018:398::-;16177:3;16198:83;16279:1;16274:3;16198:83;:::i;:::-;16191:90;;16290:93;16379:3;16290:93;:::i;:::-;16408:1;16403:3;16399:11;16392:18;;16018:398;;;:::o;16422:379::-;16606:3;16628:147;16771:3;16628:147;:::i;:::-;16621:154;;16792:3;16785:10;;16422:379;;;:::o;16807:141::-;16856:4;16879:3;16871:11;;16902:3;16899:1;16892:14;16936:4;16933:1;16923:18;16915:26;;16807:141;;;:::o;16954:93::-;16991:6;17038:2;17033;17026:5;17022:14;17018:23;17008:33;;16954:93;;;:::o;17053:107::-;17097:8;17147:5;17141:4;17137:16;17116:37;;17053:107;;;;:::o;17166:393::-;17235:6;17285:1;17273:10;17269:18;17308:97;17338:66;17327:9;17308:97;:::i;:::-;17426:39;17456:8;17445:9;17426:39;:::i;:::-;17414:51;;17498:4;17494:9;17487:5;17483:21;17474:30;;17547:4;17537:8;17533:19;17526:5;17523:30;17513:40;;17242:317;;17166:393;;;;;:::o;17565:60::-;17593:3;17614:5;17607:12;;17565:60;;;:::o;17631:142::-;17681:9;17714:53;17732:34;17741:24;17759:5;17741:24;:::i;:::-;17732:34;:::i;:::-;17714:53;:::i;:::-;17701:66;;17631:142;;;:::o;17779:75::-;17822:3;17843:5;17836:12;;17779:75;;;:::o;17860:269::-;17970:39;18001:7;17970:39;:::i;:::-;18031:91;18080:41;18104:16;18080:41;:::i;:::-;18072:6;18065:4;18059:11;18031:91;:::i;:::-;18025:4;18018:105;17936:193;17860:269;;;:::o;18135:73::-;18180:3;18135:73;:::o;18214:189::-;18291:32;;:::i;:::-;18332:65;18390:6;18382;18376:4;18332:65;:::i;:::-;18267:136;18214:189;;:::o;18409:186::-;18469:120;18486:3;18479:5;18476:14;18469:120;;;18540:39;18577:1;18570:5;18540:39;:::i;:::-;18513:1;18506:5;18502:13;18493:22;;18469:120;;;18409:186;;:::o;18601:543::-;18702:2;18697:3;18694:11;18691:446;;;18736:38;18768:5;18736:38;:::i;:::-;18820:29;18838:10;18820:29;:::i;:::-;18810:8;18806:44;19003:2;18991:10;18988:18;18985:49;;;19024:8;19009:23;;18985:49;19047:80;19103:22;19121:3;19103:22;:::i;:::-;19093:8;19089:37;19076:11;19047:80;:::i;:::-;18706:431;;18691:446;18601:543;;;:::o;19150:117::-;19204:8;19254:5;19248:4;19244:16;19223:37;;19150:117;;;;:::o;19273:169::-;19317:6;19350:51;19398:1;19394:6;19386:5;19383:1;19379:13;19350:51;:::i;:::-;19346:56;19431:4;19425;19421:15;19411:25;;19324:118;19273:169;;;;:::o;19447:295::-;19523:4;19669:29;19694:3;19688:4;19669:29;:::i;:::-;19661:37;;19731:3;19728:1;19724:11;19718:4;19715:21;19707:29;;19447:295;;;;:::o;19747:1395::-;19864:37;19897:3;19864:37;:::i;:::-;19966:18;19958:6;19955:30;19952:56;;;19988:18;;:::i;:::-;19952:56;20032:38;20064:4;20058:11;20032:38;:::i;:::-;20117:67;20177:6;20169;20163:4;20117:67;:::i;:::-;20211:1;20235:4;20222:17;;20267:2;20259:6;20256:14;20284:1;20279:618;;;;20941:1;20958:6;20955:77;;;21007:9;21002:3;20998:19;20992:26;20983:35;;20955:77;21058:67;21118:6;21111:5;21058:67;:::i;:::-;21052:4;21045:81;20914:222;20249:887;;20279:618;20331:4;20327:9;20319:6;20315:22;20365:37;20397:4;20365:37;:::i;:::-;20424:1;20438:208;20452:7;20449:1;20446:14;20438:208;;;20531:9;20526:3;20522:19;20516:26;20508:6;20501:42;20582:1;20574:6;20570:14;20560:24;;20629:2;20618:9;20614:18;20601:31;;20475:4;20472:1;20468:12;20463:17;;20438:208;;;20674:6;20665:7;20662:19;20659:179;;;20732:9;20727:3;20723:19;20717:26;20775:48;20817:4;20809:6;20805:17;20794:9;20775:48;:::i;:::-;20767:6;20760:64;20682:156;20659:179;20884:1;20880;20872:6;20868:14;20864:22;20858:4;20851:36;20286:611;;;20249:887;;19839:1303;;;19747:1395;;:::o;21148:180::-;21196:77;21193:1;21186:88;21293:4;21290:1;21283:15;21317:4;21314:1;21307:15;21334:191;21374:3;21393:20;21411:1;21393:20;:::i;:::-;21388:25;;21427:20;21445:1;21427:20;:::i;:::-;21422:25;;21470:1;21467;21463:9;21456:16;;21491:3;21488:1;21485:10;21482:36;;;21498:18;;:::i;:::-;21482:36;21334:191;;;;:::o;21531:442::-;21680:4;21718:2;21707:9;21703:18;21695:26;;21731:71;21799:1;21788:9;21784:17;21775:6;21731:71;:::i;:::-;21812:72;21880:2;21869:9;21865:18;21856:6;21812:72;:::i;:::-;21894;21962:2;21951:9;21947:18;21938:6;21894:72;:::i;:::-;21531:442;;;;;;:::o;21979:410::-;22019:7;22042:20;22060:1;22042:20;:::i;:::-;22037:25;;22076:20;22094:1;22076:20;:::i;:::-;22071:25;;22131:1;22128;22124:9;22153:30;22171:11;22153:30;:::i;:::-;22142:41;;22332:1;22323:7;22319:15;22316:1;22313:22;22293:1;22286:9;22266:83;22243:139;;22362:18;;:::i;:::-;22243:139;22027:362;21979:410;;;;:::o;22395:179::-;22535:31;22531:1;22523:6;22519:14;22512:55;22395:179;:::o;22580:366::-;22722:3;22743:67;22807:2;22802:3;22743:67;:::i;:::-;22736:74;;22819:93;22908:3;22819:93;:::i;:::-;22937:2;22932:3;22928:12;22921:19;;22580:366;;;:::o;22952:419::-;23118:4;23156:2;23145:9;23141:18;23133:26;;23205:9;23199:4;23195:20;23191:1;23180:9;23176:17;23169:47;23233:131;23359:4;23233:131;:::i;:::-;23225:139;;22952:419;;;:::o;23377:194::-;23417:4;23437:20;23455:1;23437:20;:::i;:::-;23432:25;;23471:20;23489:1;23471:20;:::i;:::-;23466:25;;23515:1;23512;23508:9;23500:17;;23539:1;23533:4;23530:11;23527:37;;;23544:18;;:::i;:::-;23527:37;23377:194;;;;:::o;23577:159::-;23717:11;23713:1;23705:6;23701:14;23694:35;23577:159;:::o;23742:365::-;23884:3;23905:66;23969:1;23964:3;23905:66;:::i;:::-;23898:73;;23980:93;24069:3;23980:93;:::i;:::-;24098:2;24093:3;24089:12;24082:19;;23742:365;;;:::o;24113:419::-;24279:4;24317:2;24306:9;24302:18;24294:26;;24366:9;24360:4;24356:20;24352:1;24341:9;24337:17;24330:47;24394:131;24520:4;24394:131;:::i;:::-;24386:139;;24113:419;;;:::o;24538:169::-;24678:21;24674:1;24666:6;24662:14;24655:45;24538:169;:::o;24713:366::-;24855:3;24876:67;24940:2;24935:3;24876:67;:::i;:::-;24869:74;;24952:93;25041:3;24952:93;:::i;:::-;25070:2;25065:3;25061:12;25054:19;;24713:366;;;:::o;25085:419::-;25251:4;25289:2;25278:9;25274:18;25266:26;;25338:9;25332:4;25328:20;25324:1;25313:9;25309:17;25302:47;25366:131;25492:4;25366:131;:::i;:::-;25358:139;;25085:419;;;:::o;25510:234::-;25650:34;25646:1;25638:6;25634:14;25627:58;25719:17;25714:2;25706:6;25702:15;25695:42;25510:234;:::o;25750:366::-;25892:3;25913:67;25977:2;25972:3;25913:67;:::i;:::-;25906:74;;25989:93;26078:3;25989:93;:::i;:::-;26107:2;26102:3;26098:12;26091:19;;25750:366;;;:::o;26122:419::-;26288:4;26326:2;26315:9;26311:18;26303:26;;26375:9;26369:4;26365:20;26361:1;26350:9;26346:17;26339:47;26403:131;26529:4;26403:131;:::i;:::-;26395:139;;26122:419;;;:::o;26547:148::-;26649:11;26686:3;26671:18;;26547:148;;;;:::o;26725:874::-;26828:3;26865:5;26859:12;26894:36;26920:9;26894:36;:::i;:::-;26946:89;27028:6;27023:3;26946:89;:::i;:::-;26939:96;;27066:1;27055:9;27051:17;27082:1;27077:166;;;;27257:1;27252:341;;;;27044:549;;27077:166;27161:4;27157:9;27146;27142:25;27137:3;27130:38;27223:6;27216:14;27209:22;27201:6;27197:35;27192:3;27188:45;27181:52;;27077:166;;27252:341;27319:38;27351:5;27319:38;:::i;:::-;27379:1;27393:154;27407:6;27404:1;27401:13;27393:154;;;27481:7;27475:14;27471:1;27466:3;27462:11;27455:35;27531:1;27522:7;27518:15;27507:26;;27429:4;27426:1;27422:12;27417:17;;27393:154;;;27576:6;27571:3;27567:16;27560:23;;27259:334;;27044:549;;26832:767;;26725:874;;;;:::o;27605:390::-;27711:3;27739:39;27772:5;27739:39;:::i;:::-;27794:89;27876:6;27871:3;27794:89;:::i;:::-;27787:96;;27892:65;27950:6;27945:3;27938:4;27931:5;27927:16;27892:65;:::i;:::-;27982:6;27977:3;27973:16;27966:23;;27715:280;27605:390;;;;:::o;28001:155::-;28141:7;28137:1;28129:6;28125:14;28118:31;28001:155;:::o;28162:400::-;28322:3;28343:84;28425:1;28420:3;28343:84;:::i;:::-;28336:91;;28436:93;28525:3;28436:93;:::i;:::-;28554:1;28549:3;28545:11;28538:18;;28162:400;;;:::o;28568:695::-;28846:3;28868:92;28956:3;28947:6;28868:92;:::i;:::-;28861:99;;28977:95;29068:3;29059:6;28977:95;:::i;:::-;28970:102;;29089:148;29233:3;29089:148;:::i;:::-;29082:155;;29254:3;29247:10;;28568:695;;;;;:::o;29269:225::-;29409:34;29405:1;29397:6;29393:14;29386:58;29478:8;29473:2;29465:6;29461:15;29454:33;29269:225;:::o;29500:366::-;29642:3;29663:67;29727:2;29722:3;29663:67;:::i;:::-;29656:74;;29739:93;29828:3;29739:93;:::i;:::-;29857:2;29852:3;29848:12;29841:19;;29500:366;;;:::o;29872:419::-;30038:4;30076:2;30065:9;30061:18;30053:26;;30125:9;30119:4;30115:20;30111:1;30100:9;30096:17;30089:47;30153:131;30279:4;30153:131;:::i;:::-;30145:139;;29872:419;;;:::o;30297:229::-;30437:34;30433:1;30425:6;30421:14;30414:58;30506:12;30501:2;30493:6;30489:15;30482:37;30297:229;:::o;30532:366::-;30674:3;30695:67;30759:2;30754:3;30695:67;:::i;:::-;30688:74;;30771:93;30860:3;30771:93;:::i;:::-;30889:2;30884:3;30880:12;30873:19;;30532:366;;;:::o;30904:419::-;31070:4;31108:2;31097:9;31093:18;31085:26;;31157:9;31151:4;31147:20;31143:1;31132:9;31128:17;31121:47;31185:131;31311:4;31185:131;:::i;:::-;31177:139;;30904:419;;;:::o;31329:175::-;31469:27;31465:1;31457:6;31453:14;31446:51;31329:175;:::o;31510:366::-;31652:3;31673:67;31737:2;31732:3;31673:67;:::i;:::-;31666:74;;31749:93;31838:3;31749:93;:::i;:::-;31867:2;31862:3;31858:12;31851:19;;31510:366;;;:::o;31882:419::-;32048:4;32086:2;32075:9;32071:18;32063:26;;32135:9;32129:4;32125:20;32121:1;32110:9;32106:17;32099:47;32163:131;32289:4;32163:131;:::i;:::-;32155:139;;31882:419;;;:::o;32307:180::-;32355:77;32352:1;32345:88;32452:4;32449:1;32442:15;32476:4;32473:1;32466:15;32493:185;32533:1;32550:20;32568:1;32550:20;:::i;:::-;32545:25;;32584:20;32602:1;32584:20;:::i;:::-;32579:25;;32623:1;32613:35;;32628:18;;:::i;:::-;32613:35;32670:1;32667;32663:9;32658:14;;32493:185;;;;:::o;32684:182::-;32824:34;32820:1;32812:6;32808:14;32801:58;32684:182;:::o;32872:366::-;33014:3;33035:67;33099:2;33094:3;33035:67;:::i;:::-;33028:74;;33111:93;33200:3;33111:93;:::i;:::-;33229:2;33224:3;33220:12;33213:19;;32872:366;;;:::o;33244:419::-;33410:4;33448:2;33437:9;33433:18;33425:26;;33497:9;33491:4;33487:20;33483:1;33472:9;33468:17;33461:47;33525:131;33651:4;33525:131;:::i;:::-;33517:139;;33244:419;;;:::o;33669:177::-;33809:29;33805:1;33797:6;33793:14;33786:53;33669:177;:::o;33852:366::-;33994:3;34015:67;34079:2;34074:3;34015:67;:::i;:::-;34008:74;;34091:93;34180:3;34091:93;:::i;:::-;34209:2;34204:3;34200:12;34193:19;;33852:366;;;:::o;34224:419::-;34390:4;34428:2;34417:9;34413:18;34405:26;;34477:9;34471:4;34467:20;34463:1;34452:9;34448:17;34441:47;34505:131;34631:4;34505:131;:::i;:::-;34497:139;;34224:419;;;:::o;34649:98::-;34700:6;34734:5;34728:12;34718:22;;34649:98;;;:::o;34753:168::-;34836:11;34870:6;34865:3;34858:19;34910:4;34905:3;34901:14;34886:29;;34753:168;;;;:::o;34927:373::-;35013:3;35041:38;35073:5;35041:38;:::i;:::-;35095:70;35158:6;35153:3;35095:70;:::i;:::-;35088:77;;35174:65;35232:6;35227:3;35220:4;35213:5;35209:16;35174:65;:::i;:::-;35264:29;35286:6;35264:29;:::i;:::-;35259:3;35255:39;35248:46;;35017:283;34927:373;;;;:::o;35306:640::-;35501:4;35539:3;35528:9;35524:19;35516:27;;35553:71;35621:1;35610:9;35606:17;35597:6;35553:71;:::i;:::-;35634:72;35702:2;35691:9;35687:18;35678:6;35634:72;:::i;:::-;35716;35784:2;35773:9;35769:18;35760:6;35716:72;:::i;:::-;35835:9;35829:4;35825:20;35820:2;35809:9;35805:18;35798:48;35863:76;35934:4;35925:6;35863:76;:::i;:::-;35855:84;;35306:640;;;;;;;:::o;35952:141::-;36008:5;36039:6;36033:13;36024:22;;36055:32;36081:5;36055:32;:::i;:::-;35952:141;;;;:::o;36099:349::-;36168:6;36217:2;36205:9;36196:7;36192:23;36188:32;36185:119;;;36223:79;;:::i;:::-;36185:119;36343:1;36368:63;36423:7;36414:6;36403:9;36399:22;36368:63;:::i;:::-;36358:73;;36314:127;36099:349;;;;:::o;36454:233::-;36493:3;36516:24;36534:5;36516:24;:::i;:::-;36507:33;;36562:66;36555:5;36552:77;36549:103;;36632:18;;:::i;:::-;36549:103;36679:1;36672:5;36668:13;36661:20;;36454:233;;;:::o;36693:176::-;36725:1;36742:20;36760:1;36742:20;:::i;:::-;36737:25;;36776:20;36794:1;36776:20;:::i;:::-;36771:25;;36815:1;36805:35;;36820:18;;:::i;:::-;36805:35;36861:1;36858;36854:9;36849:14;;36693:176;;;;:::o;36875:180::-;36923:77;36920:1;36913:88;37020:4;37017:1;37010:15;37044:4;37041:1;37034:15

Swarm Source

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