ETH Price: $2,420.29 (+3.52%)

Token

UnderWorld Assassins GENESIS RELOADED (UWAGR)
 

Overview

Max Total Supply

333 UWAGR

Holders

319

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 UWAGR
0x9c75378699bbfde8bf04d3c65887650eb811dc36
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:
UWAG_RELOADED

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-16
*/

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


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

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                            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;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](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.2
// 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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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


pragma solidity ^0.8.9;






contract UWAG_RELOADED is 
     ERC721A, 
     IERC2981,
     Ownable, 
     ReentrancyGuard 
{
  using Strings for uint256;
  string public hiddenMetadataUri = "ipfs://QmaRsfbhkJnZC8epMs4SLHGRy5FPkQpcM7ypb9F9nRA1iF";
  uint256 public maxSupply = 333;
  uint256 public mintAmount = 1;

  address public royaltyAddress = 0xdE551e3D1A6c09Bd94d8bdF753055d394126AB86;
  uint256 public royalty = 100; // Must be a whole number 7.5% is 75
  string public uriPrefix = '';
  string public uriSuffix = '.json';
  bool public paused = true;
  bool public revealed = false;
  mapping(address => bool) public addressClaimed; // mark if claimed
  constructor() 
  ERC721A("UnderWorld Assassins GENESIS RELOADED", "UWAGR") {
  }

/// @dev === MODIFIER ===
  modifier mintCompliance() {
    require(!paused, 'The sale is paused!');
    require(!addressClaimed[_msgSender()], 'Address already claimed!');
    require(totalSupply() + mintAmount <= maxSupply, 'Sold out!');
    _;
  }

/// @dev === Minting Function - Input ====
  function mint() external payable mintCompliance() nonReentrant {
      addressClaimed[_msgSender()] = true;
      _safeMint(_msgSender(), mintAmount);
    }

  function mintForAddress(uint256 _amount, address _receiver) public onlyOwner {
    require(totalSupply() + _amount < maxSupply, 'Sold out!');
    _safeMint(_receiver, _amount);
  }

/// @dev === Override ERC721A ===
  function _startTokenId() internal view virtual override returns (uint256) {
      return 1;
    }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'Nonexistent token!');
    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

/// @dev === Owner Control/Configuration Functions ===
  function pause() public onlyOwner {
    paused = !paused;
  }

  function setMintAmount(uint256 _amount) public onlyOwner {
    mintAmount = _amount;
  }
  
  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

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

  function setRoyaltyAddress(address _royaltyAddress) public onlyOwner {
    royaltyAddress = _royaltyAddress;
  }

  function setRoyaly(uint256 _royalty) external onlyOwner {
        royalty = _royalty;
  }

/// @dev === INTERNAL READ-ONLY ===
  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }

/// @dev === Withdraw ====
  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

//IERC2981 Royalty Standard
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external view override returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Nonexistent token");
        return (royaltyAddress, (salePrice * royalty) / 1000);
    }                                                

/// @dev === Support Functions ==
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC165) returns (bool) {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyAddress","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":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyAddress","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_royalty","type":"uint256"}],"name":"setRoyaly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806035815260200162003da960359139600a90816200002e91906200054b565b5061014d600b556001600c5573de551e3d1a6c09bd94d8bdf753055d394126ab86600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506064600e5560405180602001604052806000815250600f9081620000b491906200054b565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060109081620000fb91906200054b565b506001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055503480156200013f57600080fd5b5060405180606001604052806025815260200162003dde602591396040518060400160405280600581526020017f55574147520000000000000000000000000000000000000000000000000000008152508160029081620001a191906200054b565b508060039081620001b391906200054b565b50620001c4620001fa60201b60201c565b6000819055505050620001ec620001e06200020360201b60201c565b6200020b60201b60201c565b600160098190555062000632565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200035357607f821691505b6020821081036200036957620003686200030b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000394565b620003df868362000394565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200042c620004266200042084620003f7565b62000401565b620003f7565b9050919050565b6000819050919050565b62000448836200040b565b62000460620004578262000433565b848454620003a1565b825550505050565b600090565b6200047762000468565b620004848184846200043d565b505050565b5b81811015620004ac57620004a06000826200046d565b6001810190506200048a565b5050565b601f821115620004fb57620004c5816200036f565b620004d08462000384565b81016020851015620004e0578190505b620004f8620004ef8562000384565b83018262000489565b50505b505050565b600082821c905092915050565b6000620005206000198460080262000500565b1980831691505092915050565b60006200053b83836200050d565b9150826002028217905092915050565b6200055682620002d1565b67ffffffffffffffff811115620005725762000571620002dc565b5b6200057e82546200033a565b6200058b828285620004b0565b600060209050601f831160018114620005c35760008415620005ae578287015190505b620005ba85826200052d565b8655506200062a565b601f198416620005d3866200036f565b60005b82811015620005fd57848901518255600182019150602085019450602081019050620005d6565b868310156200061d578489015162000619601f8916826200050d565b8355505b6001600288020188555050505b505050505050565b61376780620006426000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd1461079d578063d5abeb01146107da578063e985e9c514610805578063efbd73f414610842578063f2fde38b1461086b57610225565b8063a22cb465146106cc578063a45ba8e7146106f5578063ad2f852a14610720578063b88d4fde1461074b578063c7cd997f1461077457610225565b806377b7399e116100f257806377b7399e1461060d5780637ec4a659146106365780638456cb591461065f5780638da5cb5b1461067657806395d89b41146106a157610225565b80636352211e1461053f57806370a082311461057c578063715018a6146105b9578063772dc32f146105d057610225565b806329ee566c116101b1578063518302271161017557806351830227146104685780635503a0e8146104935780635a2bcc18146104be5780635c975abb146104e957806362b99ad41461051457610225565b806329ee566c146103a85780632a55205a146103d35780633bd64968146104115780633ccfd60b1461042857806342842e0e1461043f57610225565b8063095ea7b3116101f8578063095ea7b3146102f85780631249c58b1461032157806316ba10e01461032b57806318160ddd1461035457806323b872dd1461037f57610225565b806301ffc9a71461022a57806306d254da1461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906125da565b610894565b60405161025e9190612622565b60405180910390f35b34801561027357600080fd5b5061028e6004803603810190610289919061269b565b61090e565b005b34801561029c57600080fd5b506102a561095a565b6040516102b29190612758565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd91906127b0565b6109ec565b6040516102ef91906127ec565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190612807565b610a6b565b005b610329610baf565b005b34801561033757600080fd5b50610352600480360381019061034d919061297c565b610db5565b005b34801561036057600080fd5b50610369610dd0565b60405161037691906129d4565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a191906129ef565b610de7565b005b3480156103b457600080fd5b506103bd611109565b6040516103ca91906129d4565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190612a42565b61110f565b604051610408929190612a82565b60405180910390f35b34801561041d57600080fd5b506104266111a3565b005b34801561043457600080fd5b5061043d6111c8565b005b34801561044b57600080fd5b50610466600480360381019061046191906129ef565b6112a5565b005b34801561047457600080fd5b5061047d6112c5565b60405161048a9190612622565b60405180910390f35b34801561049f57600080fd5b506104a86112d8565b6040516104b59190612758565b60405180910390f35b3480156104ca57600080fd5b506104d3611366565b6040516104e091906129d4565b60405180910390f35b3480156104f557600080fd5b506104fe61136c565b60405161050b9190612622565b60405180910390f35b34801561052057600080fd5b5061052961137f565b6040516105369190612758565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906127b0565b61140d565b60405161057391906127ec565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e919061269b565b61141f565b6040516105b091906129d4565b60405180910390f35b3480156105c557600080fd5b506105ce6114d7565b005b3480156105dc57600080fd5b506105f760048036038101906105f2919061269b565b6114eb565b6040516106049190612622565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f91906127b0565b61150b565b005b34801561064257600080fd5b5061065d6004803603810190610658919061297c565b61151d565b005b34801561066b57600080fd5b50610674611538565b005b34801561068257600080fd5b5061068b61156c565b60405161069891906127ec565b60405180910390f35b3480156106ad57600080fd5b506106b6611596565b6040516106c39190612758565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612ad7565b611628565b005b34801561070157600080fd5b5061070a61179f565b6040516107179190612758565b60405180910390f35b34801561072c57600080fd5b5061073561182d565b60405161074291906127ec565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190612bb8565b611853565b005b34801561078057600080fd5b5061079b600480360381019061079691906127b0565b6118c6565b005b3480156107a957600080fd5b506107c460048036038101906107bf91906127b0565b6118d8565b6040516107d19190612758565b60405180910390f35b3480156107e657600080fd5b506107ef611a30565b6040516107fc91906129d4565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190612c3b565b611a36565b6040516108399190612622565b60405180910390f35b34801561084e57600080fd5b5061086960048036038101906108649190612c7b565b611aca565b005b34801561087757600080fd5b50610892600480360381019061088d919061269b565b611b36565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610907575061090682611bb9565b5b9050919050565b610916611c4b565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606002805461096990612cea565b80601f016020809104026020016040519081016040528092919081815260200182805461099590612cea565b80156109e25780601f106109b7576101008083540402835291602001916109e2565b820191906000526020600020905b8154815290600101906020018083116109c557829003601f168201915b5050505050905090565b60006109f782611cc9565b610a2d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a768261140d565b90508073ffffffffffffffffffffffffffffffffffffffff16610a97611d28565b73ffffffffffffffffffffffffffffffffffffffff1614610afa57610ac381610abe611d28565b611a36565b610af9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601160009054906101000a900460ff1615610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690612d67565b60405180910390fd5b60126000610c0b611d30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90612dd3565b60405180910390fd5b600b54600c54610ca1610dd0565b610cab9190612e22565b1115610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390612ea2565b60405180910390fd5b600260095403610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890612f0e565b60405180910390fd5b6002600981905550600160126000610d47611d30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610dab610da3611d30565b600c54611d38565b6001600981905550565b610dbd611c4b565b8060109081610dcc91906130da565b5050565b6000610dda611d56565b6001546000540303905090565b6000610df282611d5f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e59576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e6584611e2b565b91509150610e7b8187610e76611d28565b611e52565b610ec757610e9086610e8b611d28565b611a36565b610ec6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610f2d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f3a8686866001611e96565b8015610f4557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061101385610fef888887611e9c565b7c020000000000000000000000000000000000000000000000000000000017611ec4565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036110995760006001850190506000600460008381526020019081526020016000205403611097576000548114611096578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111018686866001611eef565b505050505050565b600e5481565b60008061111b84611cc9565b61115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906131f8565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8600e548561118e9190613218565b61119891906132a1565b915091509250929050565b6111ab611c4b565b6001601160016101000a81548160ff021916908315150217905550565b6111d0611c4b565b600260095403611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c90612f0e565b60405180910390fd5b6002600981905550600061122761156c565b73ffffffffffffffffffffffffffffffffffffffff164760405161124a90613303565b60006040518083038185875af1925050503d8060008114611287576040519150601f19603f3d011682016040523d82523d6000602084013e61128c565b606091505b505090508061129a57600080fd5b506001600981905550565b6112c083838360405180602001604052806000815250611853565b505050565b601160019054906101000a900460ff1681565b601080546112e590612cea565b80601f016020809104026020016040519081016040528092919081815260200182805461131190612cea565b801561135e5780601f106113335761010080835404028352916020019161135e565b820191906000526020600020905b81548152906001019060200180831161134157829003601f168201915b505050505081565b600c5481565b601160009054906101000a900460ff1681565b600f805461138c90612cea565b80601f01602080910402602001604051908101604052809291908181526020018280546113b890612cea565b80156114055780601f106113da57610100808354040283529160200191611405565b820191906000526020600020905b8154815290600101906020018083116113e857829003601f168201915b505050505081565b600061141882611d5f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611486576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114df611c4b565b6114e96000611ef5565b565b60126020528060005260406000206000915054906101000a900460ff1681565b611513611c4b565b80600e8190555050565b611525611c4b565b80600f908161153491906130da565b5050565b611540611c4b565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546115a590612cea565b80601f01602080910402602001604051908101604052809291908181526020018280546115d190612cea565b801561161e5780601f106115f35761010080835404028352916020019161161e565b820191906000526020600020905b81548152906001019060200180831161160157829003601f168201915b5050505050905090565b611630611d28565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611694576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116a1611d28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661174e611d28565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117939190612622565b60405180910390a35050565b600a80546117ac90612cea565b80601f01602080910402602001604051908101604052809291908181526020018280546117d890612cea565b80156118255780601f106117fa57610100808354040283529160200191611825565b820191906000526020600020905b81548152906001019060200180831161180857829003601f168201915b505050505081565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61185e848484610de7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118c05761188984848484611fbb565b6118bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6118ce611c4b565b80600c8190555050565b60606118e382611cc9565b611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990613364565b60405180910390fd5b60001515601160019054906101000a900460ff161515036119cf57600a805461194a90612cea565b80601f016020809104026020016040519081016040528092919081815260200182805461197690612cea565b80156119c35780601f10611998576101008083540402835291602001916119c3565b820191906000526020600020905b8154815290600101906020018083116119a657829003601f168201915b50505050509050611a2b565b60006119d961210b565b905060008151116119f95760405180602001604052806000815250611a27565b80611a038461219d565b6010604051602001611a1793929190613443565b6040516020818303038152906040525b9150505b919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ad2611c4b565b600b5482611ade610dd0565b611ae89190612e22565b10611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90612ea2565b60405180910390fd5b611b328183611d38565b5050565b611b3e611c4b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba4906134e6565b60405180910390fd5b611bb681611ef5565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c1457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c445750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b611c53611d30565b73ffffffffffffffffffffffffffffffffffffffff16611c7161156c565b73ffffffffffffffffffffffffffffffffffffffff1614611cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbe90613552565b60405180910390fd5b565b600081611cd4611d56565b11158015611ce3575060005482105b8015611d21575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b611d528282604051806020016040528060008152506122fd565b5050565b60006001905090565b60008082905080611d6e611d56565b11611df457600054811015611df35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611df1575b60008103611de7576004600083600190039350838152602001908152602001600020549050611dbd565b8092505050611e26565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611eb386868461239a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe1611d28565b8786866040518563ffffffff1660e01b815260040161200394939291906135c7565b6020604051808303816000875af192505050801561203f57506040513d601f19601f8201168201806040525081019061203c9190613628565b60015b6120b8573d806000811461206f576040519150601f19603f3d011682016040523d82523d6000602084013e612074565b606091505b5060008151036120b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f805461211a90612cea565b80601f016020809104026020016040519081016040528092919081815260200182805461214690612cea565b80156121935780601f1061216857610100808354040283529160200191612193565b820191906000526020600020905b81548152906001019060200180831161217657829003601f168201915b5050505050905090565b6060600082036121e4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122f8565b600082905060005b600082146122165780806121ff90613655565b915050600a8261220f91906132a1565b91506121ec565b60008167ffffffffffffffff81111561223257612231612851565b5b6040519080825280601f01601f1916602001820160405280156122645781602001600182028036833780820191505090505b5090505b600085146122f15760018261227d919061369d565b9150600a8561228c91906136d1565b60306122989190612e22565b60f81b8183815181106122ae576122ad613702565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ea91906132a1565b9450612268565b8093505050505b919050565b61230783836123a3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461239557600080549050600083820390505b6123476000868380600101945086611fbb565b61237d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061233457816000541461239257600080fd5b50505b505050565b60009392505050565b600080549050600082036123e3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123f06000848385611e96565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612467836124586000866000611e9c565b6124618561255e565b17611ec4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461250857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506124cd565b5060008203612543576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125596000848385611eef565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125b781612582565b81146125c257600080fd5b50565b6000813590506125d4816125ae565b92915050565b6000602082840312156125f0576125ef612578565b5b60006125fe848285016125c5565b91505092915050565b60008115159050919050565b61261c81612607565b82525050565b60006020820190506126376000830184612613565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126688261263d565b9050919050565b6126788161265d565b811461268357600080fd5b50565b6000813590506126958161266f565b92915050565b6000602082840312156126b1576126b0612578565b5b60006126bf84828501612686565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127025780820151818401526020810190506126e7565b60008484015250505050565b6000601f19601f8301169050919050565b600061272a826126c8565b61273481856126d3565b93506127448185602086016126e4565b61274d8161270e565b840191505092915050565b60006020820190508181036000830152612772818461271f565b905092915050565b6000819050919050565b61278d8161277a565b811461279857600080fd5b50565b6000813590506127aa81612784565b92915050565b6000602082840312156127c6576127c5612578565b5b60006127d48482850161279b565b91505092915050565b6127e68161265d565b82525050565b600060208201905061280160008301846127dd565b92915050565b6000806040838503121561281e5761281d612578565b5b600061282c85828601612686565b925050602061283d8582860161279b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128898261270e565b810181811067ffffffffffffffff821117156128a8576128a7612851565b5b80604052505050565b60006128bb61256e565b90506128c78282612880565b919050565b600067ffffffffffffffff8211156128e7576128e6612851565b5b6128f08261270e565b9050602081019050919050565b82818337600083830152505050565b600061291f61291a846128cc565b6128b1565b90508281526020810184848401111561293b5761293a61284c565b5b6129468482856128fd565b509392505050565b600082601f83011261296357612962612847565b5b813561297384826020860161290c565b91505092915050565b60006020828403121561299257612991612578565b5b600082013567ffffffffffffffff8111156129b0576129af61257d565b5b6129bc8482850161294e565b91505092915050565b6129ce8161277a565b82525050565b60006020820190506129e960008301846129c5565b92915050565b600080600060608486031215612a0857612a07612578565b5b6000612a1686828701612686565b9350506020612a2786828701612686565b9250506040612a388682870161279b565b9150509250925092565b60008060408385031215612a5957612a58612578565b5b6000612a678582860161279b565b9250506020612a788582860161279b565b9150509250929050565b6000604082019050612a9760008301856127dd565b612aa460208301846129c5565b9392505050565b612ab481612607565b8114612abf57600080fd5b50565b600081359050612ad181612aab565b92915050565b60008060408385031215612aee57612aed612578565b5b6000612afc85828601612686565b9250506020612b0d85828601612ac2565b9150509250929050565b600067ffffffffffffffff821115612b3257612b31612851565b5b612b3b8261270e565b9050602081019050919050565b6000612b5b612b5684612b17565b6128b1565b905082815260208101848484011115612b7757612b7661284c565b5b612b828482856128fd565b509392505050565b600082601f830112612b9f57612b9e612847565b5b8135612baf848260208601612b48565b91505092915050565b60008060008060808587031215612bd257612bd1612578565b5b6000612be087828801612686565b9450506020612bf187828801612686565b9350506040612c028782880161279b565b925050606085013567ffffffffffffffff811115612c2357612c2261257d565b5b612c2f87828801612b8a565b91505092959194509250565b60008060408385031215612c5257612c51612578565b5b6000612c6085828601612686565b9250506020612c7185828601612686565b9150509250929050565b60008060408385031215612c9257612c91612578565b5b6000612ca08582860161279b565b9250506020612cb185828601612686565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d0257607f821691505b602082108103612d1557612d14612cbb565b5b50919050565b7f5468652073616c65206973207061757365642100000000000000000000000000600082015250565b6000612d516013836126d3565b9150612d5c82612d1b565b602082019050919050565b60006020820190508181036000830152612d8081612d44565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b6000612dbd6018836126d3565b9150612dc882612d87565b602082019050919050565b60006020820190508181036000830152612dec81612db0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e2d8261277a565b9150612e388361277a565b9250828201905080821115612e5057612e4f612df3565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612e8c6009836126d3565b9150612e9782612e56565b602082019050919050565b60006020820190508181036000830152612ebb81612e7f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612ef8601f836126d3565b9150612f0382612ec2565b602082019050919050565b60006020820190508181036000830152612f2781612eeb565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612f907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f53565b612f9a8683612f53565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612fd7612fd2612fcd8461277a565b612fb2565b61277a565b9050919050565b6000819050919050565b612ff183612fbc565b613005612ffd82612fde565b848454612f60565b825550505050565b600090565b61301a61300d565b613025818484612fe8565b505050565b5b818110156130495761303e600082613012565b60018101905061302b565b5050565b601f82111561308e5761305f81612f2e565b61306884612f43565b81016020851015613077578190505b61308b61308385612f43565b83018261302a565b50505b505050565b600082821c905092915050565b60006130b160001984600802613093565b1980831691505092915050565b60006130ca83836130a0565b9150826002028217905092915050565b6130e3826126c8565b67ffffffffffffffff8111156130fc576130fb612851565b5b6131068254612cea565b61311182828561304d565b600060209050601f8311600181146131445760008415613132578287015190505b61313c85826130be565b8655506131a4565b601f19841661315286612f2e565b60005b8281101561317a57848901518255600182019150602085019450602081019050613155565b868310156131975784890151613193601f8916826130a0565b8355505b6001600288020188555050505b505050505050565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b60006131e26011836126d3565b91506131ed826131ac565b602082019050919050565b60006020820190508181036000830152613211816131d5565b9050919050565b60006132238261277a565b915061322e8361277a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561326757613266612df3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132ac8261277a565b91506132b78361277a565b9250826132c7576132c6613272565b5b828204905092915050565b600081905092915050565b50565b60006132ed6000836132d2565b91506132f8826132dd565b600082019050919050565b600061330e826132e0565b9150819050919050565b7f4e6f6e6578697374656e7420746f6b656e210000000000000000000000000000600082015250565b600061334e6012836126d3565b915061335982613318565b602082019050919050565b6000602082019050818103600083015261337d81613341565b9050919050565b600081905092915050565b600061339a826126c8565b6133a48185613384565b93506133b48185602086016126e4565b80840191505092915050565b600081546133cd81612cea565b6133d78186613384565b945060018216600081146133f257600181146134075761343a565b60ff198316865281151582028601935061343a565b61341085612f2e565b60005b8381101561343257815481890152600182019150602081019050613413565b838801955050505b50505092915050565b600061344f828661338f565b915061345b828561338f565b915061346782846133c0565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134d06026836126d3565b91506134db82613474565b604082019050919050565b600060208201905081810360008301526134ff816134c3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061353c6020836126d3565b915061354782613506565b602082019050919050565b6000602082019050818103600083015261356b8161352f565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061359982613572565b6135a3818561357d565b93506135b38185602086016126e4565b6135bc8161270e565b840191505092915050565b60006080820190506135dc60008301876127dd565b6135e960208301866127dd565b6135f660408301856129c5565b8181036060830152613608818461358e565b905095945050505050565b600081519050613622816125ae565b92915050565b60006020828403121561363e5761363d612578565b5b600061364c84828501613613565b91505092915050565b60006136608261277a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361369257613691612df3565b5b600182019050919050565b60006136a88261277a565b91506136b38361277a565b92508282039050818111156136cb576136ca612df3565b5b92915050565b60006136dc8261277a565b91506136e78361277a565b9250826136f7576136f6613272565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212201c1876d3501f2e8f14fbea48f36a454ac58637e3798ee0b582afa1d7b3f8d6bd64736f6c63430008100033697066733a2f2f516d6152736662686b4a6e5a433865704d7334534c484752793546506b5170634d377970623946396e5241316946556e646572576f726c6420417373617373696e732047454e455349532052454c4f41444544

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636352211e11610123578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd1461079d578063d5abeb01146107da578063e985e9c514610805578063efbd73f414610842578063f2fde38b1461086b57610225565b8063a22cb465146106cc578063a45ba8e7146106f5578063ad2f852a14610720578063b88d4fde1461074b578063c7cd997f1461077457610225565b806377b7399e116100f257806377b7399e1461060d5780637ec4a659146106365780638456cb591461065f5780638da5cb5b1461067657806395d89b41146106a157610225565b80636352211e1461053f57806370a082311461057c578063715018a6146105b9578063772dc32f146105d057610225565b806329ee566c116101b1578063518302271161017557806351830227146104685780635503a0e8146104935780635a2bcc18146104be5780635c975abb146104e957806362b99ad41461051457610225565b806329ee566c146103a85780632a55205a146103d35780633bd64968146104115780633ccfd60b1461042857806342842e0e1461043f57610225565b8063095ea7b3116101f8578063095ea7b3146102f85780631249c58b1461032157806316ba10e01461032b57806318160ddd1461035457806323b872dd1461037f57610225565b806301ffc9a71461022a57806306d254da1461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906125da565b610894565b60405161025e9190612622565b60405180910390f35b34801561027357600080fd5b5061028e6004803603810190610289919061269b565b61090e565b005b34801561029c57600080fd5b506102a561095a565b6040516102b29190612758565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd91906127b0565b6109ec565b6040516102ef91906127ec565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190612807565b610a6b565b005b610329610baf565b005b34801561033757600080fd5b50610352600480360381019061034d919061297c565b610db5565b005b34801561036057600080fd5b50610369610dd0565b60405161037691906129d4565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a191906129ef565b610de7565b005b3480156103b457600080fd5b506103bd611109565b6040516103ca91906129d4565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190612a42565b61110f565b604051610408929190612a82565b60405180910390f35b34801561041d57600080fd5b506104266111a3565b005b34801561043457600080fd5b5061043d6111c8565b005b34801561044b57600080fd5b50610466600480360381019061046191906129ef565b6112a5565b005b34801561047457600080fd5b5061047d6112c5565b60405161048a9190612622565b60405180910390f35b34801561049f57600080fd5b506104a86112d8565b6040516104b59190612758565b60405180910390f35b3480156104ca57600080fd5b506104d3611366565b6040516104e091906129d4565b60405180910390f35b3480156104f557600080fd5b506104fe61136c565b60405161050b9190612622565b60405180910390f35b34801561052057600080fd5b5061052961137f565b6040516105369190612758565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906127b0565b61140d565b60405161057391906127ec565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e919061269b565b61141f565b6040516105b091906129d4565b60405180910390f35b3480156105c557600080fd5b506105ce6114d7565b005b3480156105dc57600080fd5b506105f760048036038101906105f2919061269b565b6114eb565b6040516106049190612622565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f91906127b0565b61150b565b005b34801561064257600080fd5b5061065d6004803603810190610658919061297c565b61151d565b005b34801561066b57600080fd5b50610674611538565b005b34801561068257600080fd5b5061068b61156c565b60405161069891906127ec565b60405180910390f35b3480156106ad57600080fd5b506106b6611596565b6040516106c39190612758565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612ad7565b611628565b005b34801561070157600080fd5b5061070a61179f565b6040516107179190612758565b60405180910390f35b34801561072c57600080fd5b5061073561182d565b60405161074291906127ec565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190612bb8565b611853565b005b34801561078057600080fd5b5061079b600480360381019061079691906127b0565b6118c6565b005b3480156107a957600080fd5b506107c460048036038101906107bf91906127b0565b6118d8565b6040516107d19190612758565b60405180910390f35b3480156107e657600080fd5b506107ef611a30565b6040516107fc91906129d4565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190612c3b565b611a36565b6040516108399190612622565b60405180910390f35b34801561084e57600080fd5b5061086960048036038101906108649190612c7b565b611aca565b005b34801561087757600080fd5b50610892600480360381019061088d919061269b565b611b36565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610907575061090682611bb9565b5b9050919050565b610916611c4b565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606002805461096990612cea565b80601f016020809104026020016040519081016040528092919081815260200182805461099590612cea565b80156109e25780601f106109b7576101008083540402835291602001916109e2565b820191906000526020600020905b8154815290600101906020018083116109c557829003601f168201915b5050505050905090565b60006109f782611cc9565b610a2d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a768261140d565b90508073ffffffffffffffffffffffffffffffffffffffff16610a97611d28565b73ffffffffffffffffffffffffffffffffffffffff1614610afa57610ac381610abe611d28565b611a36565b610af9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601160009054906101000a900460ff1615610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690612d67565b60405180910390fd5b60126000610c0b611d30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90612dd3565b60405180910390fd5b600b54600c54610ca1610dd0565b610cab9190612e22565b1115610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce390612ea2565b60405180910390fd5b600260095403610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890612f0e565b60405180910390fd5b6002600981905550600160126000610d47611d30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610dab610da3611d30565b600c54611d38565b6001600981905550565b610dbd611c4b565b8060109081610dcc91906130da565b5050565b6000610dda611d56565b6001546000540303905090565b6000610df282611d5f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e59576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e6584611e2b565b91509150610e7b8187610e76611d28565b611e52565b610ec757610e9086610e8b611d28565b611a36565b610ec6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610f2d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f3a8686866001611e96565b8015610f4557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061101385610fef888887611e9c565b7c020000000000000000000000000000000000000000000000000000000017611ec4565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036110995760006001850190506000600460008381526020019081526020016000205403611097576000548114611096578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111018686866001611eef565b505050505050565b600e5481565b60008061111b84611cc9565b61115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906131f8565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166103e8600e548561118e9190613218565b61119891906132a1565b915091509250929050565b6111ab611c4b565b6001601160016101000a81548160ff021916908315150217905550565b6111d0611c4b565b600260095403611215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120c90612f0e565b60405180910390fd5b6002600981905550600061122761156c565b73ffffffffffffffffffffffffffffffffffffffff164760405161124a90613303565b60006040518083038185875af1925050503d8060008114611287576040519150601f19603f3d011682016040523d82523d6000602084013e61128c565b606091505b505090508061129a57600080fd5b506001600981905550565b6112c083838360405180602001604052806000815250611853565b505050565b601160019054906101000a900460ff1681565b601080546112e590612cea565b80601f016020809104026020016040519081016040528092919081815260200182805461131190612cea565b801561135e5780601f106113335761010080835404028352916020019161135e565b820191906000526020600020905b81548152906001019060200180831161134157829003601f168201915b505050505081565b600c5481565b601160009054906101000a900460ff1681565b600f805461138c90612cea565b80601f01602080910402602001604051908101604052809291908181526020018280546113b890612cea565b80156114055780601f106113da57610100808354040283529160200191611405565b820191906000526020600020905b8154815290600101906020018083116113e857829003601f168201915b505050505081565b600061141882611d5f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611486576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114df611c4b565b6114e96000611ef5565b565b60126020528060005260406000206000915054906101000a900460ff1681565b611513611c4b565b80600e8190555050565b611525611c4b565b80600f908161153491906130da565b5050565b611540611c4b565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546115a590612cea565b80601f01602080910402602001604051908101604052809291908181526020018280546115d190612cea565b801561161e5780601f106115f35761010080835404028352916020019161161e565b820191906000526020600020905b81548152906001019060200180831161160157829003601f168201915b5050505050905090565b611630611d28565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611694576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116a1611d28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661174e611d28565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117939190612622565b60405180910390a35050565b600a80546117ac90612cea565b80601f01602080910402602001604051908101604052809291908181526020018280546117d890612cea565b80156118255780601f106117fa57610100808354040283529160200191611825565b820191906000526020600020905b81548152906001019060200180831161180857829003601f168201915b505050505081565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61185e848484610de7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118c05761188984848484611fbb565b6118bf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6118ce611c4b565b80600c8190555050565b60606118e382611cc9565b611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990613364565b60405180910390fd5b60001515601160019054906101000a900460ff161515036119cf57600a805461194a90612cea565b80601f016020809104026020016040519081016040528092919081815260200182805461197690612cea565b80156119c35780601f10611998576101008083540402835291602001916119c3565b820191906000526020600020905b8154815290600101906020018083116119a657829003601f168201915b50505050509050611a2b565b60006119d961210b565b905060008151116119f95760405180602001604052806000815250611a27565b80611a038461219d565b6010604051602001611a1793929190613443565b6040516020818303038152906040525b9150505b919050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ad2611c4b565b600b5482611ade610dd0565b611ae89190612e22565b10611b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1f90612ea2565b60405180910390fd5b611b328183611d38565b5050565b611b3e611c4b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba4906134e6565b60405180910390fd5b611bb681611ef5565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c1457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c445750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b611c53611d30565b73ffffffffffffffffffffffffffffffffffffffff16611c7161156c565b73ffffffffffffffffffffffffffffffffffffffff1614611cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbe90613552565b60405180910390fd5b565b600081611cd4611d56565b11158015611ce3575060005482105b8015611d21575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b611d528282604051806020016040528060008152506122fd565b5050565b60006001905090565b60008082905080611d6e611d56565b11611df457600054811015611df35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611df1575b60008103611de7576004600083600190039350838152602001908152602001600020549050611dbd565b8092505050611e26565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611eb386868461239a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe1611d28565b8786866040518563ffffffff1660e01b815260040161200394939291906135c7565b6020604051808303816000875af192505050801561203f57506040513d601f19601f8201168201806040525081019061203c9190613628565b60015b6120b8573d806000811461206f576040519150601f19603f3d011682016040523d82523d6000602084013e612074565b606091505b5060008151036120b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f805461211a90612cea565b80601f016020809104026020016040519081016040528092919081815260200182805461214690612cea565b80156121935780601f1061216857610100808354040283529160200191612193565b820191906000526020600020905b81548152906001019060200180831161217657829003601f168201915b5050505050905090565b6060600082036121e4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122f8565b600082905060005b600082146122165780806121ff90613655565b915050600a8261220f91906132a1565b91506121ec565b60008167ffffffffffffffff81111561223257612231612851565b5b6040519080825280601f01601f1916602001820160405280156122645781602001600182028036833780820191505090505b5090505b600085146122f15760018261227d919061369d565b9150600a8561228c91906136d1565b60306122989190612e22565b60f81b8183815181106122ae576122ad613702565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ea91906132a1565b9450612268565b8093505050505b919050565b61230783836123a3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461239557600080549050600083820390505b6123476000868380600101945086611fbb565b61237d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061233457816000541461239257600080fd5b50505b505050565b60009392505050565b600080549050600082036123e3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123f06000848385611e96565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612467836124586000866000611e9c565b6124618561255e565b17611ec4565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461250857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506124cd565b5060008203612543576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506125596000848385611eef565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125b781612582565b81146125c257600080fd5b50565b6000813590506125d4816125ae565b92915050565b6000602082840312156125f0576125ef612578565b5b60006125fe848285016125c5565b91505092915050565b60008115159050919050565b61261c81612607565b82525050565b60006020820190506126376000830184612613565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126688261263d565b9050919050565b6126788161265d565b811461268357600080fd5b50565b6000813590506126958161266f565b92915050565b6000602082840312156126b1576126b0612578565b5b60006126bf84828501612686565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127025780820151818401526020810190506126e7565b60008484015250505050565b6000601f19601f8301169050919050565b600061272a826126c8565b61273481856126d3565b93506127448185602086016126e4565b61274d8161270e565b840191505092915050565b60006020820190508181036000830152612772818461271f565b905092915050565b6000819050919050565b61278d8161277a565b811461279857600080fd5b50565b6000813590506127aa81612784565b92915050565b6000602082840312156127c6576127c5612578565b5b60006127d48482850161279b565b91505092915050565b6127e68161265d565b82525050565b600060208201905061280160008301846127dd565b92915050565b6000806040838503121561281e5761281d612578565b5b600061282c85828601612686565b925050602061283d8582860161279b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128898261270e565b810181811067ffffffffffffffff821117156128a8576128a7612851565b5b80604052505050565b60006128bb61256e565b90506128c78282612880565b919050565b600067ffffffffffffffff8211156128e7576128e6612851565b5b6128f08261270e565b9050602081019050919050565b82818337600083830152505050565b600061291f61291a846128cc565b6128b1565b90508281526020810184848401111561293b5761293a61284c565b5b6129468482856128fd565b509392505050565b600082601f83011261296357612962612847565b5b813561297384826020860161290c565b91505092915050565b60006020828403121561299257612991612578565b5b600082013567ffffffffffffffff8111156129b0576129af61257d565b5b6129bc8482850161294e565b91505092915050565b6129ce8161277a565b82525050565b60006020820190506129e960008301846129c5565b92915050565b600080600060608486031215612a0857612a07612578565b5b6000612a1686828701612686565b9350506020612a2786828701612686565b9250506040612a388682870161279b565b9150509250925092565b60008060408385031215612a5957612a58612578565b5b6000612a678582860161279b565b9250506020612a788582860161279b565b9150509250929050565b6000604082019050612a9760008301856127dd565b612aa460208301846129c5565b9392505050565b612ab481612607565b8114612abf57600080fd5b50565b600081359050612ad181612aab565b92915050565b60008060408385031215612aee57612aed612578565b5b6000612afc85828601612686565b9250506020612b0d85828601612ac2565b9150509250929050565b600067ffffffffffffffff821115612b3257612b31612851565b5b612b3b8261270e565b9050602081019050919050565b6000612b5b612b5684612b17565b6128b1565b905082815260208101848484011115612b7757612b7661284c565b5b612b828482856128fd565b509392505050565b600082601f830112612b9f57612b9e612847565b5b8135612baf848260208601612b48565b91505092915050565b60008060008060808587031215612bd257612bd1612578565b5b6000612be087828801612686565b9450506020612bf187828801612686565b9350506040612c028782880161279b565b925050606085013567ffffffffffffffff811115612c2357612c2261257d565b5b612c2f87828801612b8a565b91505092959194509250565b60008060408385031215612c5257612c51612578565b5b6000612c6085828601612686565b9250506020612c7185828601612686565b9150509250929050565b60008060408385031215612c9257612c91612578565b5b6000612ca08582860161279b565b9250506020612cb185828601612686565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d0257607f821691505b602082108103612d1557612d14612cbb565b5b50919050565b7f5468652073616c65206973207061757365642100000000000000000000000000600082015250565b6000612d516013836126d3565b9150612d5c82612d1b565b602082019050919050565b60006020820190508181036000830152612d8081612d44565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b6000612dbd6018836126d3565b9150612dc882612d87565b602082019050919050565b60006020820190508181036000830152612dec81612db0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e2d8261277a565b9150612e388361277a565b9250828201905080821115612e5057612e4f612df3565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612e8c6009836126d3565b9150612e9782612e56565b602082019050919050565b60006020820190508181036000830152612ebb81612e7f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612ef8601f836126d3565b9150612f0382612ec2565b602082019050919050565b60006020820190508181036000830152612f2781612eeb565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612f907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f53565b612f9a8683612f53565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612fd7612fd2612fcd8461277a565b612fb2565b61277a565b9050919050565b6000819050919050565b612ff183612fbc565b613005612ffd82612fde565b848454612f60565b825550505050565b600090565b61301a61300d565b613025818484612fe8565b505050565b5b818110156130495761303e600082613012565b60018101905061302b565b5050565b601f82111561308e5761305f81612f2e565b61306884612f43565b81016020851015613077578190505b61308b61308385612f43565b83018261302a565b50505b505050565b600082821c905092915050565b60006130b160001984600802613093565b1980831691505092915050565b60006130ca83836130a0565b9150826002028217905092915050565b6130e3826126c8565b67ffffffffffffffff8111156130fc576130fb612851565b5b6131068254612cea565b61311182828561304d565b600060209050601f8311600181146131445760008415613132578287015190505b61313c85826130be565b8655506131a4565b601f19841661315286612f2e565b60005b8281101561317a57848901518255600182019150602085019450602081019050613155565b868310156131975784890151613193601f8916826130a0565b8355505b6001600288020188555050505b505050505050565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b60006131e26011836126d3565b91506131ed826131ac565b602082019050919050565b60006020820190508181036000830152613211816131d5565b9050919050565b60006132238261277a565b915061322e8361277a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561326757613266612df3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132ac8261277a565b91506132b78361277a565b9250826132c7576132c6613272565b5b828204905092915050565b600081905092915050565b50565b60006132ed6000836132d2565b91506132f8826132dd565b600082019050919050565b600061330e826132e0565b9150819050919050565b7f4e6f6e6578697374656e7420746f6b656e210000000000000000000000000000600082015250565b600061334e6012836126d3565b915061335982613318565b602082019050919050565b6000602082019050818103600083015261337d81613341565b9050919050565b600081905092915050565b600061339a826126c8565b6133a48185613384565b93506133b48185602086016126e4565b80840191505092915050565b600081546133cd81612cea565b6133d78186613384565b945060018216600081146133f257600181146134075761343a565b60ff198316865281151582028601935061343a565b61341085612f2e565b60005b8381101561343257815481890152600182019150602081019050613413565b838801955050505b50505092915050565b600061344f828661338f565b915061345b828561338f565b915061346782846133c0565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134d06026836126d3565b91506134db82613474565b604082019050919050565b600060208201905081810360008301526134ff816134c3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061353c6020836126d3565b915061354782613506565b602082019050919050565b6000602082019050818103600083015261356b8161352f565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061359982613572565b6135a3818561357d565b93506135b38185602086016126e4565b6135bc8161270e565b840191505092915050565b60006080820190506135dc60008301876127dd565b6135e960208301866127dd565b6135f660408301856129c5565b8181036060830152613608818461358e565b905095945050505050565b600081519050613622816125ae565b92915050565b60006020828403121561363e5761363d612578565b5b600061364c84828501613613565b91505092915050565b60006136608261277a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361369257613691612df3565b5b600182019050919050565b60006136a88261277a565b91506136b38361277a565b92508282039050818111156136cb576136ca612df3565b5b92915050565b60006136dc8261277a565b91506136e78361277a565b9250826136f7576136f6613272565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212201c1876d3501f2e8f14fbea48f36a454ac58637e3798ee0b582afa1d7b3f8d6bd64736f6c63430008100033

Deployed Bytecode Sourcemap

61560:3657:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64972:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64029:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30001:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36484:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35925:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62604:159;;;:::i;:::-;;63847:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25752:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40191:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61938:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64608:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;63955:68;;;;;;;;;;;;;:::i;:::-;;64421:150;;;;;;;;;;;;;:::i;:::-;;43104:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62109:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62041:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61823:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62079:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62008:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31394:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26936:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8032:103;;;;;;;;;;;;;:::i;:::-;;62142:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64149:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63741:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63574:63;;;;;;;;;;;;;:::i;:::-;;7384:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30177:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37042:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61694:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61859:74;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43887:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63643:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63098:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61788:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37507:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62769:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8290:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64972:242;65075:4;65127:26;65112:41;;;:11;:41;;;;:94;;;;65170:36;65194:11;65170:23;:36::i;:::-;65112:94;65092:114;;64972:242;;;:::o;64029:114::-;7270:13;:11;:13::i;:::-;64122:15:::1;64105:14;;:32;;;;;;;;;;;;;;;;;;64029:114:::0;:::o;30001:100::-;30055:13;30088:5;30081:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30001:100;:::o;36484:218::-;36560:7;36585:16;36593:7;36585;:16::i;:::-;36580:64;;36610:34;;;;;;;;;;;;;;36580:64;36664:15;:24;36680:7;36664:24;;;;;;;;;;;:30;;;;;;;;;;;;36657:37;;36484:218;;;:::o;35925:400::-;36006:13;36022:16;36030:7;36022;:16::i;:::-;36006:32;;36078:5;36055:28;;:19;:17;:19::i;:::-;:28;;;36051:175;;36103:44;36120:5;36127:19;:17;:19::i;:::-;36103:16;:44::i;:::-;36098:128;;36175:35;;;;;;;;;;;;;;36098:128;36051:175;36271:2;36238:15;:24;36254:7;36238:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36309:7;36305:2;36289:28;;36298:5;36289:28;;;;;;;;;;;;35995:330;35925:400;;:::o;62604:159::-;62369:6;;;;;;;;;;;62368:7;62360:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;62415:14;:28;62430:12;:10;:12::i;:::-;62415:28;;;;;;;;;;;;;;;;;;;;;;;;;62414:29;62406:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;62517:9;;62503:10;;62487:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:39;;62479:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;4309:1:::1;4907:7;;:19:::0;4899:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4309:1;5040:7;:18;;;;62707:4:::2;62676:14;:28;62691:12;:10;:12::i;:::-;62676:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;62720;62730:12;:10;:12::i;:::-;62744:10;;62720:9;:35::i;:::-;4265:1:::1;5219:7;:22;;;;62604:159::o:0;63847:100::-;7270:13;:11;:13::i;:::-;63931:10:::1;63919:9;:22;;;;;;:::i;:::-;;63847:100:::0;:::o;25752:323::-;25813:7;26041:15;:13;:15::i;:::-;26026:12;;26010:13;;:28;:46;26003:53;;25752:323;:::o;40191:2817::-;40325:27;40355;40374:7;40355:18;:27::i;:::-;40325:57;;40440:4;40399:45;;40415:19;40399:45;;;40395:86;;40453:28;;;;;;;;;;;;;;40395:86;40495:27;40524:23;40551:35;40578:7;40551:26;:35::i;:::-;40494:92;;;;40686:68;40711:15;40728:4;40734:19;:17;:19::i;:::-;40686:24;:68::i;:::-;40681:180;;40774:43;40791:4;40797:19;:17;:19::i;:::-;40774:16;:43::i;:::-;40769:92;;40826:35;;;;;;;;;;;;;;40769:92;40681:180;40892:1;40878:16;;:2;:16;;;40874:52;;40903:23;;;;;;;;;;;;;;40874:52;40939:43;40961:4;40967:2;40971:7;40980:1;40939:21;:43::i;:::-;41075:15;41072:160;;;41215:1;41194:19;41187:30;41072:160;41612:18;:24;41631:4;41612:24;;;;;;;;;;;;;;;;41610:26;;;;;;;;;;;;41681:18;:22;41700:2;41681:22;;;;;;;;;;;;;;;;41679:24;;;;;;;;;;;42003:146;42040:2;42089:45;42104:4;42110:2;42114:19;42089:14;:45::i;:::-;22151:8;42061:73;42003:18;:146::i;:::-;41974:17;:26;41992:7;41974:26;;;;;;;;;;;:175;;;;42320:1;22151:8;42269:19;:47;:52;42265:627;;42342:19;42374:1;42364:7;:11;42342:33;;42531:1;42497:17;:30;42515:11;42497:30;;;;;;;;;;;;:35;42493:384;;42635:13;;42620:11;:28;42616:242;;42815:19;42782:17;:30;42800:11;42782:30;;;;;;;;;;;:52;;;;42616:242;42493:384;42323:569;42265:627;42939:7;42935:2;42920:27;;42929:4;42920:27;;;;;;;;;;;;42958:42;42979:4;42985:2;42989:7;42998:1;42958:20;:42::i;:::-;40314:2694;;;40191:2817;;;:::o;61938:28::-;;;;:::o;64608:273::-;64706:16;64724:21;64771:16;64779:7;64771;:16::i;:::-;64763:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;64828:14;;;;;;;;;;;64868:4;64857:7;;64845:9;:19;;;;:::i;:::-;64844:28;;;;:::i;:::-;64820:53;;;;64608:273;;;;;:::o;63955:68::-;7270:13;:11;:13::i;:::-;64013:4:::1;64002:8;;:15;;;;;;;;;;;;;;;;;;63955:68::o:0;64421:150::-;7270:13;:11;:13::i;:::-;4309:1:::1;4907:7;;:19:::0;4899:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4309:1;5040:7;:18;;;;64479:7:::2;64500;:5;:7::i;:::-;64492:21;;64521;64492:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64478:69;;;64562:2;64554:11;;;::::0;::::2;;64471:100;4265:1:::1;5219:7;:22;;;;64421:150::o:0;43104:185::-;43242:39;43259:4;43265:2;43269:7;43242:39;;;;;;;;;;;;:16;:39::i;:::-;43104:185;;;:::o;62109:28::-;;;;;;;;;;;;;:::o;62041:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61823:29::-;;;;:::o;62079:25::-;;;;;;;;;;;;;:::o;62008:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31394:152::-;31466:7;31509:27;31528:7;31509:18;:27::i;:::-;31486:52;;31394:152;;;:::o;26936:233::-;27008:7;27049:1;27032:19;;:5;:19;;;27028:60;;27060:28;;;;;;;;;;;;;;27028:60;21095:13;27106:18;:25;27125:5;27106:25;;;;;;;;;;;;;;;;:55;27099:62;;26936:233;;;:::o;8032:103::-;7270:13;:11;:13::i;:::-;8097:30:::1;8124:1;8097:18;:30::i;:::-;8032:103::o:0;62142:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;64149:91::-;7270:13;:11;:13::i;:::-;64226:8:::1;64216:7;:18;;;;64149:91:::0;:::o;63741:100::-;7270:13;:11;:13::i;:::-;63825:10:::1;63813:9;:22;;;;;;:::i;:::-;;63741:100:::0;:::o;63574:63::-;7270:13;:11;:13::i;:::-;63625:6:::1;;;;;;;;;;;63624:7;63615:6;;:16;;;;;;;;;;;;;;;;;;63574:63::o:0;7384:87::-;7430:7;7457:6;;;;;;;;;;;7450:13;;7384:87;:::o;30177:104::-;30233:13;30266:7;30259:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30177:104;:::o;37042:308::-;37153:19;:17;:19::i;:::-;37141:31;;:8;:31;;;37137:61;;37181:17;;;;;;;;;;;;;;37137:61;37263:8;37211:18;:39;37230:19;:17;:19::i;:::-;37211:39;;;;;;;;;;;;;;;:49;37251:8;37211:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37323:8;37287:55;;37302:19;:17;:19::i;:::-;37287:55;;;37333:8;37287:55;;;;;;:::i;:::-;;;;;;;;37042:308;;:::o;61694:89::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;61859:74::-;;;;;;;;;;;;;:::o;43887:399::-;44054:31;44067:4;44073:2;44077:7;44054:12;:31::i;:::-;44118:1;44100:2;:14;;;:19;44096:183;;44139:56;44170:4;44176:2;44180:7;44189:5;44139:30;:56::i;:::-;44134:145;;44223:40;;;;;;;;;;;;;;44134:145;44096:183;43887:399;;;;:::o;63643:90::-;7270:13;:11;:13::i;:::-;63720:7:::1;63707:10;:20;;;;63643:90:::0;:::o;63098:414::-;63172:13;63202:17;63210:8;63202:7;:17::i;:::-;63194:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;63265:5;63253:17;;:8;;;;;;;;;;;:17;;;63249:64;;63288:17;63281:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63249:64;63321:28;63352:10;:8;:10::i;:::-;63321:41;;63407:1;63382:14;63376:28;:32;:130;;;;;;;;;;;;;;;;;63444:14;63460:19;:8;:17;:19::i;:::-;63481:9;63427:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63376:130;63369:137;;;63098:414;;;;:::o;61788:30::-;;;;:::o;37507:164::-;37604:4;37628:18;:25;37647:5;37628:25;;;;;;;;;;;;;;;:35;37654:8;37628:35;;;;;;;;;;;;;;;;;;;;;;;;;37621:42;;37507:164;;;;:::o;62769:183::-;7270:13;:11;:13::i;:::-;62887:9:::1;;62877:7;62861:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:35;62853:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;62917:29;62927:9;62938:7;62917:9;:29::i;:::-;62769:183:::0;;:::o;8290:201::-;7270:13;:11;:13::i;:::-;8399:1:::1;8379:22;;:8;:22;;::::0;8371:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8455:28;8474:8;8455:18;:28::i;:::-;8290:201:::0;:::o;29099:639::-;29184:4;29523:10;29508:25;;:11;:25;;;;:102;;;;29600:10;29585:25;;:11;:25;;;;29508:102;:179;;;;29677:10;29662:25;;:11;:25;;;;29508:179;29488:199;;29099:639;;;:::o;7549:132::-;7624:12;:10;:12::i;:::-;7613:23;;:7;:5;:7::i;:::-;:23;;;7605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7549:132::o;37929:282::-;37994:4;38050:7;38031:15;:13;:15::i;:::-;:26;;:66;;;;;38084:13;;38074:7;:23;38031:66;:153;;;;;38183:1;21871:8;38135:17;:26;38153:7;38135:26;;;;;;;;;;;;:44;:49;38031:153;38011:173;;37929:282;;;:::o;59695:105::-;59755:7;59782:10;59775:17;;59695:105;:::o;5935:98::-;5988:7;6015:10;6008:17;;5935:98;:::o;53527:112::-;53604:27;53614:2;53618:8;53604:27;;;;;;;;;;;;:9;:27::i;:::-;53527:112;;:::o;62993:99::-;63058:7;63083:1;63076:8;;62993:99;:::o;32549:1275::-;32616:7;32636:12;32651:7;32636:22;;32719:4;32700:15;:13;:15::i;:::-;:23;32696:1061;;32753:13;;32746:4;:20;32742:1015;;;32791:14;32808:17;:23;32826:4;32808:23;;;;;;;;;;;;32791:40;;32925:1;21871:8;32897:6;:24;:29;32893:845;;33562:113;33579:1;33569:6;:11;33562:113;;33622:17;:25;33640:6;;;;;;;33622:25;;;;;;;;;;;;33613:34;;33562:113;;;33708:6;33701:13;;;;;;32893:845;32768:989;32742:1015;32696:1061;33785:31;;;;;;;;;;;;;;32549:1275;;;;:::o;39092:479::-;39194:27;39223:23;39264:38;39305:15;:24;39321:7;39305:24;;;;;;;;;;;39264:65;;39476:18;39453:41;;39533:19;39527:26;39508:45;;39438:126;39092:479;;;:::o;38320:659::-;38469:11;38634:16;38627:5;38623:28;38614:37;;38794:16;38783:9;38779:32;38766:45;;38944:15;38933:9;38930:30;38922:5;38911:9;38908:20;38905:56;38895:66;;38320:659;;;;;:::o;44948:159::-;;;;;:::o;59004:311::-;59139:7;59159:16;22275:3;59185:19;:41;;59159:68;;22275:3;59253:31;59264:4;59270:2;59274:9;59253:10;:31::i;:::-;59245:40;;:62;;59238:69;;;59004:311;;;;;:::o;34372:450::-;34452:14;34620:16;34613:5;34609:28;34600:37;;34797:5;34783:11;34758:23;34754:41;34751:52;34744:5;34741:63;34731:73;;34372:450;;;;:::o;45772:158::-;;;;;:::o;8651:191::-;8725:16;8744:6;;;;;;;;;;;8725:25;;8770:8;8761:6;;:17;;;;;;;;;;;;;;;;;;8825:8;8794:40;;8815:8;8794:40;;;;;;;;;;;;8714:128;8651:191;:::o;46370:716::-;46533:4;46579:2;46554:45;;;46600:19;:17;:19::i;:::-;46621:4;46627:7;46636:5;46554:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46550:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46854:1;46837:6;:13;:18;46833:235;;46883:40;;;;;;;;;;;;;;46833:235;47026:6;47020:13;47011:6;47007:2;47003:15;46996:38;46550:529;46723:54;;;46713:64;;;:6;:64;;;;46706:71;;;46370:716;;;;;;:::o;64283:104::-;64343:13;64372:9;64365:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64283:104;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;52754:689::-;52885:19;52891:2;52895:8;52885:5;:19::i;:::-;52964:1;52946:2;:14;;;:19;52942:483;;52986:11;53000:13;;52986:27;;53032:13;53054:8;53048:3;:14;53032:30;;53081:233;53112:62;53151:1;53155:2;53159:7;;;;;;53168:5;53112:30;:62::i;:::-;53107:167;;53210:40;;;;;;;;;;;;;;53107:167;53309:3;53301:5;:11;53081:233;;53396:3;53379:13;;:20;53375:34;;53401:8;;;53375:34;52967:458;;52942:483;52754:689;;;:::o;58705:147::-;58842:6;58705:147;;;;;:::o;47548:2454::-;47621:20;47644:13;;47621:36;;47684:1;47672:8;:13;47668:44;;47694:18;;;;;;;;;;;;;;47668:44;47725:61;47755:1;47759:2;47763:12;47777:8;47725:21;:61::i;:::-;48269:1;21233:2;48239:1;:26;;48238:32;48226:8;:45;48200:18;:22;48219:2;48200:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;48548:139;48585:2;48639:33;48662:1;48666:2;48670:1;48639:14;:33::i;:::-;48606:30;48627:8;48606:20;:30::i;:::-;:66;48548:18;:139::i;:::-;48514:17;:31;48532:12;48514:31;;;;;;;;;;;:173;;;;48704:16;48735:11;48764:8;48749:12;:23;48735:37;;49019:16;49015:2;49011:25;48999:37;;49391:12;49351:8;49310:1;49248:25;49189:1;49128;49101:335;49516:1;49502:12;49498:20;49456:346;49557:3;49548:7;49545:16;49456:346;;49775:7;49765:8;49762:1;49735:25;49732:1;49729;49724:59;49610:1;49601:7;49597:15;49586:26;;49456:346;;;49460:77;49847:1;49835:8;:13;49831:45;;49857:19;;;;;;;;;;;;;;49831:45;49909:3;49893:13;:19;;;;47974:1950;;49934:60;49963:1;49967:2;49971:12;49985:8;49934:20;:60::i;:::-;47610:2392;47548:2454;;:::o;34924:324::-;34994:14;35227:1;35217:8;35214:15;35188:24;35184:46;35174:56;;34924: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:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:329::-;2084:6;2133:2;2121:9;2112:7;2108:23;2104:32;2101:119;;;2139:79;;:::i;:::-;2101:119;2259:1;2284:53;2329:7;2320:6;2309:9;2305:22;2284:53;:::i;:::-;2274:63;;2230:117;2025:329;;;;:::o;2360:99::-;2412:6;2446:5;2440:12;2430:22;;2360:99;;;:::o;2465:169::-;2549:11;2583:6;2578:3;2571:19;2623:4;2618:3;2614:14;2599:29;;2465:169;;;;:::o;2640:246::-;2721:1;2731:113;2745:6;2742:1;2739:13;2731:113;;;2830:1;2825:3;2821:11;2815:18;2811:1;2806:3;2802:11;2795:39;2767:2;2764:1;2760:10;2755:15;;2731:113;;;2878:1;2869:6;2864:3;2860:16;2853:27;2702:184;2640:246;;;:::o;2892:102::-;2933:6;2984:2;2980:7;2975:2;2968:5;2964:14;2960:28;2950:38;;2892:102;;;:::o;3000:377::-;3088:3;3116:39;3149:5;3116:39;:::i;:::-;3171:71;3235:6;3230:3;3171:71;:::i;:::-;3164:78;;3251:65;3309:6;3304:3;3297:4;3290:5;3286:16;3251:65;:::i;:::-;3341:29;3363:6;3341:29;:::i;:::-;3336:3;3332:39;3325:46;;3092:285;3000:377;;;;:::o;3383:313::-;3496:4;3534:2;3523:9;3519:18;3511:26;;3583:9;3577:4;3573:20;3569:1;3558:9;3554:17;3547:47;3611:78;3684:4;3675:6;3611:78;:::i;:::-;3603:86;;3383:313;;;;:::o;3702:77::-;3739:7;3768:5;3757:16;;3702:77;;;:::o;3785:122::-;3858:24;3876:5;3858:24;:::i;:::-;3851:5;3848:35;3838:63;;3897:1;3894;3887:12;3838:63;3785:122;:::o;3913:139::-;3959:5;3997:6;3984:20;3975:29;;4013:33;4040:5;4013:33;:::i;:::-;3913:139;;;;:::o;4058:329::-;4117:6;4166:2;4154:9;4145:7;4141:23;4137:32;4134:119;;;4172:79;;:::i;:::-;4134:119;4292:1;4317:53;4362:7;4353:6;4342:9;4338:22;4317:53;:::i;:::-;4307:63;;4263:117;4058:329;;;;:::o;4393:118::-;4480:24;4498:5;4480:24;:::i;:::-;4475:3;4468:37;4393:118;;:::o;4517:222::-;4610:4;4648:2;4637:9;4633:18;4625:26;;4661:71;4729:1;4718:9;4714:17;4705:6;4661:71;:::i;:::-;4517:222;;;;:::o;4745:474::-;4813:6;4821;4870:2;4858:9;4849:7;4845:23;4841:32;4838:119;;;4876:79;;:::i;:::-;4838:119;4996:1;5021:53;5066:7;5057:6;5046:9;5042:22;5021:53;:::i;:::-;5011:63;;4967:117;5123:2;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5094:118;4745:474;;;;;:::o;5225:117::-;5334:1;5331;5324:12;5348:117;5457:1;5454;5447:12;5471:180;5519:77;5516:1;5509:88;5616:4;5613:1;5606:15;5640:4;5637:1;5630:15;5657:281;5740:27;5762:4;5740:27;:::i;:::-;5732:6;5728:40;5870:6;5858:10;5855:22;5834:18;5822:10;5819:34;5816:62;5813:88;;;5881:18;;:::i;:::-;5813:88;5921:10;5917:2;5910:22;5700:238;5657:281;;:::o;5944:129::-;5978:6;6005:20;;:::i;:::-;5995:30;;6034:33;6062:4;6054:6;6034:33;:::i;:::-;5944:129;;;:::o;6079:308::-;6141:4;6231:18;6223:6;6220:30;6217:56;;;6253:18;;:::i;:::-;6217:56;6291:29;6313:6;6291:29;:::i;:::-;6283:37;;6375:4;6369;6365:15;6357:23;;6079:308;;;:::o;6393:146::-;6490:6;6485:3;6480;6467:30;6531:1;6522:6;6517:3;6513:16;6506:27;6393:146;;;:::o;6545:425::-;6623:5;6648:66;6664:49;6706:6;6664:49;:::i;:::-;6648:66;:::i;:::-;6639:75;;6737:6;6730:5;6723:21;6775:4;6768:5;6764:16;6813:3;6804:6;6799:3;6795:16;6792:25;6789:112;;;6820:79;;:::i;:::-;6789:112;6910:54;6957:6;6952:3;6947;6910:54;:::i;:::-;6629:341;6545:425;;;;;:::o;6990:340::-;7046:5;7095:3;7088:4;7080:6;7076:17;7072:27;7062:122;;7103:79;;:::i;:::-;7062:122;7220:6;7207:20;7245:79;7320:3;7312:6;7305:4;7297:6;7293:17;7245:79;:::i;:::-;7236:88;;7052:278;6990:340;;;;:::o;7336:509::-;7405:6;7454:2;7442:9;7433:7;7429:23;7425:32;7422:119;;;7460:79;;:::i;:::-;7422:119;7608:1;7597:9;7593:17;7580:31;7638:18;7630:6;7627:30;7624:117;;;7660:79;;:::i;:::-;7624:117;7765:63;7820:7;7811:6;7800:9;7796:22;7765:63;:::i;:::-;7755:73;;7551:287;7336:509;;;;:::o;7851:118::-;7938:24;7956:5;7938:24;:::i;:::-;7933:3;7926:37;7851:118;;:::o;7975:222::-;8068:4;8106:2;8095:9;8091:18;8083:26;;8119:71;8187:1;8176:9;8172:17;8163:6;8119:71;:::i;:::-;7975:222;;;;:::o;8203:619::-;8280:6;8288;8296;8345:2;8333:9;8324:7;8320:23;8316:32;8313:119;;;8351:79;;:::i;:::-;8313:119;8471:1;8496:53;8541:7;8532:6;8521:9;8517:22;8496:53;:::i;:::-;8486:63;;8442:117;8598:2;8624:53;8669:7;8660:6;8649:9;8645:22;8624:53;:::i;:::-;8614:63;;8569:118;8726:2;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8697:118;8203:619;;;;;:::o;8828:474::-;8896:6;8904;8953:2;8941:9;8932:7;8928:23;8924:32;8921:119;;;8959:79;;:::i;:::-;8921:119;9079:1;9104:53;9149:7;9140:6;9129:9;9125:22;9104:53;:::i;:::-;9094:63;;9050:117;9206:2;9232:53;9277:7;9268:6;9257:9;9253:22;9232:53;:::i;:::-;9222:63;;9177:118;8828:474;;;;;:::o;9308:332::-;9429:4;9467:2;9456:9;9452:18;9444:26;;9480:71;9548:1;9537:9;9533:17;9524:6;9480:71;:::i;:::-;9561:72;9629:2;9618:9;9614:18;9605:6;9561:72;:::i;:::-;9308:332;;;;;:::o;9646:116::-;9716:21;9731:5;9716:21;:::i;:::-;9709:5;9706:32;9696:60;;9752:1;9749;9742:12;9696:60;9646:116;:::o;9768:133::-;9811:5;9849:6;9836:20;9827:29;;9865:30;9889:5;9865:30;:::i;:::-;9768:133;;;;:::o;9907:468::-;9972:6;9980;10029:2;10017:9;10008:7;10004:23;10000:32;9997:119;;;10035:79;;:::i;:::-;9997:119;10155:1;10180:53;10225:7;10216:6;10205:9;10201:22;10180:53;:::i;:::-;10170:63;;10126:117;10282:2;10308:50;10350:7;10341:6;10330:9;10326:22;10308:50;:::i;:::-;10298:60;;10253:115;9907:468;;;;;:::o;10381:307::-;10442:4;10532:18;10524:6;10521:30;10518:56;;;10554:18;;:::i;:::-;10518:56;10592:29;10614:6;10592:29;:::i;:::-;10584:37;;10676:4;10670;10666:15;10658:23;;10381:307;;;:::o;10694:423::-;10771:5;10796:65;10812:48;10853:6;10812:48;:::i;:::-;10796:65;:::i;:::-;10787:74;;10884:6;10877:5;10870:21;10922:4;10915:5;10911:16;10960:3;10951:6;10946:3;10942:16;10939:25;10936:112;;;10967:79;;:::i;:::-;10936:112;11057:54;11104:6;11099:3;11094;11057:54;:::i;:::-;10777:340;10694:423;;;;;:::o;11136:338::-;11191:5;11240:3;11233:4;11225:6;11221:17;11217:27;11207:122;;11248:79;;:::i;:::-;11207:122;11365:6;11352:20;11390:78;11464:3;11456:6;11449:4;11441:6;11437:17;11390:78;:::i;:::-;11381:87;;11197:277;11136:338;;;;:::o;11480:943::-;11575:6;11583;11591;11599;11648:3;11636:9;11627:7;11623:23;11619:33;11616:120;;;11655:79;;:::i;:::-;11616:120;11775:1;11800:53;11845:7;11836:6;11825:9;11821:22;11800:53;:::i;:::-;11790:63;;11746:117;11902:2;11928:53;11973:7;11964:6;11953:9;11949:22;11928:53;:::i;:::-;11918:63;;11873:118;12030:2;12056:53;12101:7;12092:6;12081:9;12077:22;12056:53;:::i;:::-;12046:63;;12001:118;12186:2;12175:9;12171:18;12158:32;12217:18;12209:6;12206:30;12203:117;;;12239:79;;:::i;:::-;12203:117;12344:62;12398:7;12389:6;12378:9;12374:22;12344:62;:::i;:::-;12334:72;;12129:287;11480:943;;;;;;;:::o;12429:474::-;12497:6;12505;12554:2;12542:9;12533:7;12529:23;12525:32;12522:119;;;12560:79;;:::i;:::-;12522:119;12680:1;12705:53;12750:7;12741:6;12730:9;12726:22;12705:53;:::i;:::-;12695:63;;12651:117;12807:2;12833:53;12878:7;12869:6;12858:9;12854:22;12833:53;:::i;:::-;12823:63;;12778:118;12429:474;;;;;:::o;12909:::-;12977:6;12985;13034:2;13022:9;13013:7;13009:23;13005:32;13002:119;;;13040:79;;:::i;:::-;13002:119;13160:1;13185:53;13230:7;13221:6;13210:9;13206:22;13185:53;:::i;:::-;13175:63;;13131:117;13287:2;13313:53;13358:7;13349:6;13338:9;13334:22;13313:53;:::i;:::-;13303:63;;13258:118;12909:474;;;;;:::o;13389:180::-;13437:77;13434:1;13427:88;13534:4;13531:1;13524:15;13558:4;13555:1;13548:15;13575:320;13619:6;13656:1;13650:4;13646:12;13636:22;;13703:1;13697:4;13693:12;13724:18;13714:81;;13780:4;13772:6;13768:17;13758:27;;13714:81;13842:2;13834:6;13831:14;13811:18;13808:38;13805:84;;13861:18;;:::i;:::-;13805:84;13626:269;13575:320;;;:::o;13901:169::-;14041:21;14037:1;14029:6;14025:14;14018:45;13901:169;:::o;14076:366::-;14218:3;14239:67;14303:2;14298:3;14239:67;:::i;:::-;14232:74;;14315:93;14404:3;14315:93;:::i;:::-;14433:2;14428:3;14424:12;14417:19;;14076:366;;;:::o;14448:419::-;14614:4;14652:2;14641:9;14637:18;14629:26;;14701:9;14695:4;14691:20;14687:1;14676:9;14672:17;14665:47;14729:131;14855:4;14729:131;:::i;:::-;14721:139;;14448:419;;;:::o;14873:174::-;15013:26;15009:1;15001:6;14997:14;14990:50;14873:174;:::o;15053:366::-;15195:3;15216:67;15280:2;15275:3;15216:67;:::i;:::-;15209:74;;15292:93;15381:3;15292:93;:::i;:::-;15410:2;15405:3;15401:12;15394:19;;15053:366;;;:::o;15425:419::-;15591:4;15629:2;15618:9;15614:18;15606:26;;15678:9;15672:4;15668:20;15664:1;15653:9;15649:17;15642:47;15706:131;15832:4;15706:131;:::i;:::-;15698:139;;15425:419;;;:::o;15850:180::-;15898:77;15895:1;15888:88;15995:4;15992:1;15985:15;16019:4;16016:1;16009:15;16036:191;16076:3;16095:20;16113:1;16095:20;:::i;:::-;16090:25;;16129:20;16147:1;16129:20;:::i;:::-;16124:25;;16172:1;16169;16165:9;16158:16;;16193:3;16190:1;16187:10;16184:36;;;16200:18;;:::i;:::-;16184:36;16036:191;;;;:::o;16233:159::-;16373:11;16369:1;16361:6;16357:14;16350:35;16233:159;:::o;16398:365::-;16540:3;16561:66;16625:1;16620:3;16561:66;:::i;:::-;16554:73;;16636:93;16725:3;16636:93;:::i;:::-;16754:2;16749:3;16745:12;16738:19;;16398:365;;;:::o;16769:419::-;16935:4;16973:2;16962:9;16958:18;16950:26;;17022:9;17016:4;17012:20;17008:1;16997:9;16993:17;16986:47;17050:131;17176:4;17050:131;:::i;:::-;17042:139;;16769:419;;;:::o;17194:181::-;17334:33;17330:1;17322:6;17318:14;17311:57;17194:181;:::o;17381:366::-;17523:3;17544:67;17608:2;17603:3;17544:67;:::i;:::-;17537:74;;17620:93;17709:3;17620:93;:::i;:::-;17738:2;17733:3;17729:12;17722:19;;17381:366;;;:::o;17753:419::-;17919:4;17957:2;17946:9;17942:18;17934:26;;18006:9;18000:4;17996:20;17992:1;17981:9;17977:17;17970:47;18034:131;18160:4;18034:131;:::i;:::-;18026:139;;17753:419;;;:::o;18178:141::-;18227:4;18250:3;18242:11;;18273:3;18270:1;18263:14;18307:4;18304:1;18294:18;18286:26;;18178:141;;;:::o;18325:93::-;18362:6;18409:2;18404;18397:5;18393:14;18389:23;18379:33;;18325:93;;;:::o;18424:107::-;18468:8;18518:5;18512:4;18508:16;18487:37;;18424:107;;;;:::o;18537:393::-;18606:6;18656:1;18644:10;18640:18;18679:97;18709:66;18698:9;18679:97;:::i;:::-;18797:39;18827:8;18816:9;18797:39;:::i;:::-;18785:51;;18869:4;18865:9;18858:5;18854:21;18845:30;;18918:4;18908:8;18904:19;18897:5;18894:30;18884:40;;18613:317;;18537:393;;;;;:::o;18936:60::-;18964:3;18985:5;18978:12;;18936:60;;;:::o;19002:142::-;19052:9;19085:53;19103:34;19112:24;19130:5;19112:24;:::i;:::-;19103:34;:::i;:::-;19085:53;:::i;:::-;19072:66;;19002:142;;;:::o;19150:75::-;19193:3;19214:5;19207:12;;19150:75;;;:::o;19231:269::-;19341:39;19372:7;19341:39;:::i;:::-;19402:91;19451:41;19475:16;19451:41;:::i;:::-;19443:6;19436:4;19430:11;19402:91;:::i;:::-;19396:4;19389:105;19307:193;19231:269;;;:::o;19506:73::-;19551:3;19506:73;:::o;19585:189::-;19662:32;;:::i;:::-;19703:65;19761:6;19753;19747:4;19703:65;:::i;:::-;19638:136;19585:189;;:::o;19780:186::-;19840:120;19857:3;19850:5;19847:14;19840:120;;;19911:39;19948:1;19941:5;19911:39;:::i;:::-;19884:1;19877:5;19873:13;19864:22;;19840:120;;;19780:186;;:::o;19972:543::-;20073:2;20068:3;20065:11;20062:446;;;20107:38;20139:5;20107:38;:::i;:::-;20191:29;20209:10;20191:29;:::i;:::-;20181:8;20177:44;20374:2;20362:10;20359:18;20356:49;;;20395:8;20380:23;;20356:49;20418:80;20474:22;20492:3;20474:22;:::i;:::-;20464:8;20460:37;20447:11;20418:80;:::i;:::-;20077:431;;20062:446;19972:543;;;:::o;20521:117::-;20575:8;20625:5;20619:4;20615:16;20594:37;;20521:117;;;;:::o;20644:169::-;20688:6;20721:51;20769:1;20765:6;20757:5;20754:1;20750:13;20721:51;:::i;:::-;20717:56;20802:4;20796;20792:15;20782:25;;20695:118;20644:169;;;;:::o;20818:295::-;20894:4;21040:29;21065:3;21059:4;21040:29;:::i;:::-;21032:37;;21102:3;21099:1;21095:11;21089:4;21086:21;21078:29;;20818:295;;;;:::o;21118:1395::-;21235:37;21268:3;21235:37;:::i;:::-;21337:18;21329:6;21326:30;21323:56;;;21359:18;;:::i;:::-;21323:56;21403:38;21435:4;21429:11;21403:38;:::i;:::-;21488:67;21548:6;21540;21534:4;21488:67;:::i;:::-;21582:1;21606:4;21593:17;;21638:2;21630:6;21627:14;21655:1;21650:618;;;;22312:1;22329:6;22326:77;;;22378:9;22373:3;22369:19;22363:26;22354:35;;22326:77;22429:67;22489:6;22482:5;22429:67;:::i;:::-;22423:4;22416:81;22285:222;21620:887;;21650:618;21702:4;21698:9;21690:6;21686:22;21736:37;21768:4;21736:37;:::i;:::-;21795:1;21809:208;21823:7;21820:1;21817:14;21809:208;;;21902:9;21897:3;21893:19;21887:26;21879:6;21872:42;21953:1;21945:6;21941:14;21931:24;;22000:2;21989:9;21985:18;21972:31;;21846:4;21843:1;21839:12;21834:17;;21809:208;;;22045:6;22036:7;22033:19;22030:179;;;22103:9;22098:3;22094:19;22088:26;22146:48;22188:4;22180:6;22176:17;22165:9;22146:48;:::i;:::-;22138:6;22131:64;22053:156;22030:179;22255:1;22251;22243:6;22239:14;22235:22;22229:4;22222:36;21657:611;;;21620:887;;21210:1303;;;21118:1395;;:::o;22519:167::-;22659:19;22655:1;22647:6;22643:14;22636:43;22519:167;:::o;22692:366::-;22834:3;22855:67;22919:2;22914:3;22855:67;:::i;:::-;22848:74;;22931:93;23020:3;22931:93;:::i;:::-;23049:2;23044:3;23040:12;23033:19;;22692:366;;;:::o;23064:419::-;23230:4;23268:2;23257:9;23253:18;23245:26;;23317:9;23311:4;23307:20;23303:1;23292:9;23288:17;23281:47;23345:131;23471:4;23345:131;:::i;:::-;23337:139;;23064:419;;;:::o;23489:348::-;23529:7;23552:20;23570:1;23552:20;:::i;:::-;23547:25;;23586:20;23604:1;23586:20;:::i;:::-;23581:25;;23774:1;23706:66;23702:74;23699:1;23696:81;23691:1;23684:9;23677:17;23673:105;23670:131;;;23781:18;;:::i;:::-;23670:131;23829:1;23826;23822:9;23811:20;;23489:348;;;;:::o;23843:180::-;23891:77;23888:1;23881:88;23988:4;23985:1;23978:15;24012:4;24009:1;24002:15;24029:185;24069:1;24086:20;24104:1;24086:20;:::i;:::-;24081:25;;24120:20;24138:1;24120:20;:::i;:::-;24115:25;;24159:1;24149:35;;24164:18;;:::i;:::-;24149:35;24206:1;24203;24199:9;24194:14;;24029:185;;;;:::o;24220:147::-;24321:11;24358:3;24343:18;;24220:147;;;;:::o;24373:114::-;;:::o;24493:398::-;24652:3;24673:83;24754:1;24749:3;24673:83;:::i;:::-;24666:90;;24765:93;24854:3;24765:93;:::i;:::-;24883:1;24878:3;24874:11;24867:18;;24493:398;;;:::o;24897:379::-;25081:3;25103:147;25246:3;25103:147;:::i;:::-;25096:154;;25267:3;25260:10;;24897:379;;;:::o;25282:168::-;25422:20;25418:1;25410:6;25406:14;25399:44;25282:168;:::o;25456:366::-;25598:3;25619:67;25683:2;25678:3;25619:67;:::i;:::-;25612:74;;25695:93;25784:3;25695:93;:::i;:::-;25813:2;25808:3;25804:12;25797:19;;25456:366;;;:::o;25828:419::-;25994:4;26032:2;26021:9;26017:18;26009:26;;26081:9;26075:4;26071:20;26067:1;26056:9;26052:17;26045:47;26109:131;26235:4;26109:131;:::i;:::-;26101:139;;25828:419;;;:::o;26253:148::-;26355:11;26392:3;26377:18;;26253:148;;;;:::o;26407:390::-;26513:3;26541:39;26574:5;26541:39;:::i;:::-;26596:89;26678:6;26673:3;26596:89;:::i;:::-;26589:96;;26694:65;26752:6;26747:3;26740:4;26733:5;26729:16;26694:65;:::i;:::-;26784:6;26779:3;26775:16;26768:23;;26517:280;26407:390;;;;:::o;26827:874::-;26930:3;26967:5;26961:12;26996:36;27022:9;26996:36;:::i;:::-;27048:89;27130:6;27125:3;27048:89;:::i;:::-;27041:96;;27168:1;27157:9;27153:17;27184:1;27179:166;;;;27359:1;27354:341;;;;27146:549;;27179:166;27263:4;27259:9;27248;27244:25;27239:3;27232:38;27325:6;27318:14;27311:22;27303:6;27299:35;27294:3;27290:45;27283:52;;27179:166;;27354:341;27421:38;27453:5;27421:38;:::i;:::-;27481:1;27495:154;27509:6;27506:1;27503:13;27495:154;;;27583:7;27577:14;27573:1;27568:3;27564:11;27557:35;27633:1;27624:7;27620:15;27609:26;;27531:4;27528:1;27524:12;27519:17;;27495:154;;;27678:6;27673:3;27669:16;27662:23;;27361:334;;27146:549;;26934:767;;26827:874;;;;:::o;27707:589::-;27932:3;27954:95;28045:3;28036:6;27954:95;:::i;:::-;27947:102;;28066:95;28157:3;28148:6;28066:95;:::i;:::-;28059:102;;28178:92;28266:3;28257:6;28178:92;:::i;:::-;28171:99;;28287:3;28280:10;;27707:589;;;;;;:::o;28302:225::-;28442:34;28438:1;28430:6;28426:14;28419:58;28511:8;28506:2;28498:6;28494:15;28487:33;28302:225;:::o;28533:366::-;28675:3;28696:67;28760:2;28755:3;28696:67;:::i;:::-;28689:74;;28772:93;28861:3;28772:93;:::i;:::-;28890:2;28885:3;28881:12;28874:19;;28533:366;;;:::o;28905:419::-;29071:4;29109:2;29098:9;29094:18;29086:26;;29158:9;29152:4;29148:20;29144:1;29133:9;29129:17;29122:47;29186:131;29312:4;29186:131;:::i;:::-;29178:139;;28905:419;;;:::o;29330:182::-;29470:34;29466:1;29458:6;29454:14;29447:58;29330:182;:::o;29518:366::-;29660:3;29681:67;29745:2;29740:3;29681:67;:::i;:::-;29674:74;;29757:93;29846:3;29757:93;:::i;:::-;29875:2;29870:3;29866:12;29859:19;;29518:366;;;:::o;29890:419::-;30056:4;30094:2;30083:9;30079:18;30071:26;;30143:9;30137:4;30133:20;30129:1;30118:9;30114:17;30107:47;30171:131;30297:4;30171:131;:::i;:::-;30163:139;;29890:419;;;:::o;30315:98::-;30366:6;30400:5;30394:12;30384:22;;30315:98;;;:::o;30419:168::-;30502:11;30536:6;30531:3;30524:19;30576:4;30571:3;30567:14;30552:29;;30419:168;;;;:::o;30593:373::-;30679:3;30707:38;30739:5;30707:38;:::i;:::-;30761:70;30824:6;30819:3;30761:70;:::i;:::-;30754:77;;30840:65;30898:6;30893:3;30886:4;30879:5;30875:16;30840:65;:::i;:::-;30930:29;30952:6;30930:29;:::i;:::-;30925:3;30921:39;30914:46;;30683:283;30593:373;;;;:::o;30972:640::-;31167:4;31205:3;31194:9;31190:19;31182:27;;31219:71;31287:1;31276:9;31272:17;31263:6;31219:71;:::i;:::-;31300:72;31368:2;31357:9;31353:18;31344:6;31300:72;:::i;:::-;31382;31450:2;31439:9;31435:18;31426:6;31382:72;:::i;:::-;31501:9;31495:4;31491:20;31486:2;31475:9;31471:18;31464:48;31529:76;31600:4;31591:6;31529:76;:::i;:::-;31521:84;;30972:640;;;;;;;:::o;31618:141::-;31674:5;31705:6;31699:13;31690:22;;31721:32;31747:5;31721:32;:::i;:::-;31618:141;;;;:::o;31765:349::-;31834:6;31883:2;31871:9;31862:7;31858:23;31854:32;31851:119;;;31889:79;;:::i;:::-;31851:119;32009:1;32034:63;32089:7;32080:6;32069:9;32065:22;32034:63;:::i;:::-;32024:73;;31980:127;31765:349;;;;:::o;32120:233::-;32159:3;32182:24;32200:5;32182:24;:::i;:::-;32173:33;;32228:66;32221:5;32218:77;32215:103;;32298:18;;:::i;:::-;32215:103;32345:1;32338:5;32334:13;32327:20;;32120:233;;;:::o;32359:194::-;32399:4;32419:20;32437:1;32419:20;:::i;:::-;32414:25;;32453:20;32471:1;32453:20;:::i;:::-;32448:25;;32497:1;32494;32490:9;32482:17;;32521:1;32515:4;32512:11;32509:37;;;32526:18;;:::i;:::-;32509:37;32359:194;;;;:::o;32559:176::-;32591:1;32608:20;32626:1;32608:20;:::i;:::-;32603:25;;32642:20;32660:1;32642:20;:::i;:::-;32637:25;;32681:1;32671:35;;32686:18;;:::i;:::-;32671:35;32727:1;32724;32720:9;32715:14;;32559:176;;;;:::o;32741:180::-;32789:77;32786:1;32779:88;32886:4;32883:1;32876:15;32910:4;32907:1;32900:15

Swarm Source

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