ETH Price: $3,264.15 (-4.29%)
Gas: 17 Gwei

Token

Destroyand (DESTROYAND)
 

Overview

Max Total Supply

5,000 DESTROYAND

Holders

1,399

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
*做人不缺爱做爱不缺人.eth
Balance
3 DESTROYAND
0x4a96B3C9997E06eD17CE4948586F87D7d14D8d7e
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:
Destroyand

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/Destroyand.sol


pragma solidity ^0.8.4;





contract Destroyand is Ownable, ERC721A, ReentrancyGuard {
    uint256 public immutable maxPerAddressDuringMint = 100;
    uint256 internal immutable collectionSize = 5000;
    string private _baseTokenURI;

    address internal constant TEAM_ADDRESS =
        0x3EbF63deC7Aa61abed7955d6fA256B810E35c172;

    struct SaleConfig {
        uint64 mintlistPrice;
        uint32 mintlistStartTime;
        uint32 publicSaleStartTime;
        uint64 publicPrice;
    }

    SaleConfig public saleConfig;

    mapping(address => uint256) public allowlist;

    constructor() ERC721A("Destroyand", "DESTROYAND") {
        _baseTokenURI = "https://ipfs.io/ipfs/bafybeigg7vu4tpihndyifebfmpftpptyvwtzog6j42kzv5tkzjsbedgfni/";
        saleConfig.mintlistPrice = 0.04 ether;
        saleConfig.mintlistStartTime = 1658890680;
        saleConfig.publicPrice = 0.08 ether;
        saleConfig.publicSaleStartTime = 1658977080;
    }

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

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

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

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function teamMint(address addr, uint256 quantity) external onlyOwner {
        require(
            totalSupply() + quantity <= collectionSize,
            "Already reach the mint maximumy"
        );
        _safeMint(addr, quantity);
    }

    function allowlistMint(uint256 quantity) external payable {
        SaleConfig memory config = saleConfig;
        uint256 mintlistPrice = uint256(config.mintlistPrice);
        uint256 mintlistStartTime = uint256(config.mintlistStartTime);
        uint256 publicSaleStartTime = uint256(config.publicSaleStartTime);
        require(
            isAllowlistSaleOn(mintlistPrice, mintlistStartTime),
            "allow sale has not begun yet"
        );

        require(isAllowlistSaleEnd(publicSaleStartTime),"allow sale has already been completed");

        require(allowlist[msg.sender] > 0, "not eligible for allowlist mint");
        require(totalSupply() + quantity <= collectionSize, "reached max supply");

        allowlist[msg.sender] = allowlist[msg.sender] - quantity;
        _safeMint(msg.sender, quantity);
        refundIfOver(mintlistPrice * quantity);
    }

    function seedAllowlist(
        address[] memory addresses,
        uint256[] memory numSlots
    ) external onlyOwner {
        require(
            addresses.length == numSlots.length,
            "addresses does not match numSlots length"
        );
        for (uint256 i = 0; i < addresses.length; i++) {
            allowlist[addresses[i]] = numSlots[i];
        }
    }

    function publicSaleMint(uint256 quantity) external payable {
        SaleConfig memory config = saleConfig;
        uint256 publicPrice = uint256(config.publicPrice);
        uint256 publicSaleStartTime = uint256(config.publicSaleStartTime);

        require(
            isPublicSaleOn(publicPrice, publicSaleStartTime),
            "public sale has not begun yet"
        );
        require(
            totalSupply() + quantity <= collectionSize,
            "reached max supply"
        );
        require(
            numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
            "can not mint this many"
        );
        _safeMint(msg.sender, quantity);
        refundIfOver(publicPrice * quantity);
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

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

    function setupPublicSaleInfo(
        uint64 publicPriceWei,
        uint32 publicSaleStartTime
    ) external onlyOwner {
        saleConfig.publicPrice = publicPriceWei;
        saleConfig.publicSaleStartTime = publicSaleStartTime;
    }

    function setupMintlistPrice(uint64 mintlistPrice, uint32 mintlistStartTime)
        external
        onlyOwner
    {
        saleConfig.mintlistPrice = mintlistPrice;
        saleConfig.mintlistStartTime = mintlistStartTime;
    }

    function isAllowlistSaleOn(uint256 mintlistPrice, uint256 mintlistStartTime)
        public
        view
        returns (bool)
    {
        return mintlistPrice != 0 && block.timestamp >= mintlistStartTime;
    }

    function isAllowlistSaleEnd(uint256 publicSaleStartTime)
        public
        view
        returns (bool)
    {
        return block.timestamp < publicSaleStartTime;
    }

    function isPublicSaleOn(uint256 publicPriceWei, uint256 publicSaleStartTime)
        public
        view
        returns (bool)
    {
        return publicPriceWei != 0 && block.timestamp >= publicSaleStartTime;
    }

    function withdrawBalance() external onlyOwner nonReentrant {
        (bool success, ) = payable(TEAM_ADDRESS).call{
            value: address(this).balance
        }("");
        require(success, "transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isAllowlistSaleEnd","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintlistPrice","type":"uint256"},{"internalType":"uint256","name":"mintlistStartTime","type":"uint256"}],"name":"isAllowlistSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicPriceWei","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint64","name":"mintlistPrice","type":"uint64"},{"internalType":"uint32","name":"mintlistStartTime","type":"uint32"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint64","name":"publicPrice","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"mintlistPrice","type":"uint64"},{"internalType":"uint32","name":"mintlistStartTime","type":"uint32"}],"name":"setupMintlistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"}],"name":"setupPublicSaleInfo","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":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052606460809081525061138860a0908152503480156200002257600080fd5b506040518060400160405280600a81526020017f44657374726f79616e64000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f44455354524f59414e4400000000000000000000000000000000000000000000815250620000af620000a3620001f060201b60201c565b620001f860201b60201c565b8160039080519060200190620000c7929190620002c5565b508060049080519060200190620000e0929190620002c5565b50620000f1620002bc60201b60201c565b60018190555050506001600981905550604051806080016040528060518152602001620041fd60519139600a908051906020019062000132929190620002c5565b50668e1bc9bf040000600b60000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506362e0a9b8600b60000160086101000a81548163ffffffff021916908363ffffffff16021790555067011c37937e080000600b60000160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506362e1fb38600b600001600c6101000a81548163ffffffff021916908363ffffffff160217905550620003da565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b828054620002d39062000375565b90600052602060002090601f016020900481019282620002f7576000855562000343565b82601f106200031257805160ff191683800117855562000343565b8280016001018555821562000343579182015b828111156200034257825182559160200191906001019062000325565b5b50905062000352919062000356565b5090565b5b808211156200037157600081600090555060010162000357565b5090565b600060028204905060018216806200038e57607f821691505b60208210811415620003a557620003a4620003ab565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a051613de86200041560003960008181611306015281816116e10152611a68015260008181610fb501526117560152613de86000f3fe6080604052600436106101e35760003560e01c80638da5cb5b11610102578063b3ab66b011610095578063dbcad76f11610064578063dbcad76f146106d5578063dc33e68114610712578063e985e9c51461074f578063f2fde38b1461078c576101e3565b8063b3ab66b014610637578063b88d4fde14610653578063c180526a1461067c578063c87b56dd14610698576101e3565b8063a7cd52cb116100d1578063a7cd52cb1461057f578063add5a4fa146105bc578063ade9b400146105e5578063b05863d51461060e576101e3565b80638da5cb5b146104d257806390aa0b0f146104fd57806395d89b411461052b578063a22cb46514610556576101e3565b806358180e341161017a5780636a7307eb116101495780636a7307eb1461041657806370a0823114610453578063715018a6146104905780638bc35c2f146104a7576101e3565b806358180e341461035c5780635ee5fdb6146103995780635fd8c710146103c25780636352211e146103d9576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e157806342842e0e1461030a57806355f804b314610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612f44565b6107b5565b60405161021c9190613410565b60405180910390f35b34801561023157600080fd5b5061023a610847565b604051610247919061342b565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612feb565b6108d9565b60405161028491906133a9565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612e8c565b610955565b005b3480156102c257600080fd5b506102cb610afc565b6040516102d891906135ed565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612d76565b610b13565b005b34801561031657600080fd5b50610331600480360381019061032c9190612d76565b610b23565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612f9e565b610b43565b005b34801561036857600080fd5b50610383600480360381019061037e9190613018565b610bd5565b6040516103909190613410565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190613058565b610bef565b005b3480156103ce57600080fd5b506103d7610cbf565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612feb565b610e54565b60405161040d91906133a9565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190612feb565b610e66565b60405161044a9190613410565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612d09565b610e72565b60405161048791906135ed565b60405180910390f35b34801561049c57600080fd5b506104a5610f2b565b005b3480156104b357600080fd5b506104bc610fb3565b6040516104c991906135ed565b60405180910390f35b3480156104de57600080fd5b506104e7610fd7565b6040516104f491906133a9565b60405180910390f35b34801561050957600080fd5b50610512611000565b6040516105229493929190613608565b60405180910390f35b34801561053757600080fd5b50610540611066565b60405161054d919061342b565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190612e4c565b6110f8565b005b34801561058b57600080fd5b506105a660048036038101906105a19190612d09565b611270565b6040516105b391906135ed565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190612e8c565b611288565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613058565b611387565b005b34801561061a57600080fd5b5061063560048036038101906106309190612ecc565b611457565b005b610651600480360381019061064c9190612feb565b6115b3565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612dc9565b6117ee565b005b61069660048036038101906106919190612feb565b611861565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190612feb565b611b8e565b6040516106cc919061342b565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190613018565b611c2d565b6040516107099190613410565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190612d09565b611c47565b60405161074691906135ed565b60405180910390f35b34801561075b57600080fd5b5061077660048036038101906107719190612d36565b611c59565b6040516107839190613410565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190612d09565b611ced565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108405750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461085690613907565b80601f016020809104026020016040519081016040528092919081815260200182805461088290613907565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e482611de5565b61091a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096082611e44565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e7611f12565b73ffffffffffffffffffffffffffffffffffffffff1614610a4a57610a1381610a0e611f12565b611c59565b610a49576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b06611f1a565b6002546001540303905090565b610b1e838383611f23565b505050565b610b3e838383604051806020016040528060008152506117ee565b505050565b610b4b6122cd565b73ffffffffffffffffffffffffffffffffffffffff16610b69610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb69061352d565b60405180910390fd5b8181600a9190610bd09291906129d1565b505050565b6000808314158015610be75750814210155b905092915050565b610bf76122cd565b73ffffffffffffffffffffffffffffffffffffffff16610c15610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c629061352d565b60405180910390fd5b81600b60000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600b60000160086101000a81548163ffffffff021916908363ffffffff1602179055505050565b610cc76122cd565b73ffffffffffffffffffffffffffffffffffffffff16610ce5610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d329061352d565b60405180910390fd5b60026009541415610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d78906135ad565b60405180910390fd5b60026009819055506000733ebf63dec7aa61abed7955d6fa256b810e35c17273ffffffffffffffffffffffffffffffffffffffff1647604051610dc390613394565b60006040518083038185875af1925050503d8060008114610e00576040519150601f19603f3d011682016040523d82523d6000602084013e610e05565b606091505b5050905080610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906134cd565b60405180910390fd5b506001600981905550565b6000610e5f82611e44565b9050919050565b60008142109050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eda576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f336122cd565b73ffffffffffffffffffffffffffffffffffffffff16610f51610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e9061352d565b60405180910390fd5b610fb160006122d5565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900463ffffffff169080600001600c9054906101000a900463ffffffff16908060000160109054906101000a900467ffffffffffffffff16905084565b60606004805461107590613907565b80601f01602080910402602001604051908101604052809291908181526020018280546110a190613907565b80156110ee5780601f106110c3576101008083540402835291602001916110ee565b820191906000526020600020905b8154815290600101906020018083116110d157829003601f168201915b5050505050905090565b611100611f12565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611165576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611172611f12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661121f611f12565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112649190613410565b60405180910390a35050565b600c6020528060005260406000206000915090505481565b6112906122cd565b73ffffffffffffffffffffffffffffffffffffffff166112ae610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb9061352d565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008161132e610afc565b6113389190613749565b1115611379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611370906134ad565b60405180910390fd5b6113838282612399565b5050565b61138f6122cd565b73ffffffffffffffffffffffffffffffffffffffff166113ad610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa9061352d565b60405180910390fd5b81600b60000160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600b600001600c6101000a81548163ffffffff021916908363ffffffff1602179055505050565b61145f6122cd565b73ffffffffffffffffffffffffffffffffffffffff1661147d610fd7565b73ffffffffffffffffffffffffffffffffffffffff16146114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca9061352d565b60405180910390fd5b8051825114611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e906135cd565b60405180910390fd5b60005b82518110156115ae5781818151811061153657611535613a11565b5b6020026020010151600c600085848151811061155557611554613a11565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806115a69061396a565b91505061151a565b505050565b6000600b6040518060800160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900463ffffffff1663ffffffff1663ffffffff16815260200160008201600c9054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090506000816060015167ffffffffffffffff1690506000826040015163ffffffff1690506116a08282611c2d565b6116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d69061354d565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000084611709610afc565b6117139190613749565b1115611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b906134ed565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008461177f33611c47565b6117899190613749565b11156117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c19061358d565b60405180910390fd5b6117d43385612399565b6117e884836117e3919061379f565b6123b7565b50505050565b6117f9848484611f23565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461185b5761182484848484612458565b61185a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600b6040518060800160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900463ffffffff1663ffffffff1663ffffffff16815260200160008201600c9054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090506000816000015167ffffffffffffffff1690506000826020015163ffffffff1690506000836040015163ffffffff16905061195d8383610bd5565b61199c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119939061348d565b60405180910390fd5b6119a581610e66565b6119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db9061344d565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d9061350d565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000085611a90610afc565b611a9a9190613749565b1115611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad2906134ed565b60405180910390fd5b84600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2691906137f9565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b733386612399565b611b878584611b82919061379f565b6123b7565b5050505050565b6060611b9982611de5565b611bcf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611bd96125b8565b9050600081511415611bfa5760405180602001604052806000815250611c25565b80611c048461264a565b604051602001611c15929190613370565b6040516020818303038152906040525b915050919050565b6000808314158015611c3f5750814210155b905092915050565b6000611c52826126a4565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cf56122cd565b73ffffffffffffffffffffffffffffffffffffffff16611d13610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d609061352d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd09061346d565b60405180910390fd5b611de2816122d5565b50565b600081611df0611f1a565b11158015611dff575060015482105b8015611e3d575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611e53611f1a565b11611edb57600154811015611eda5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ed8575b6000811415611ece576005600083600190039350838152602001908152602001600020549050611ea3565b8092505050611f0d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611f2e82611e44565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f95576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fb6611f12565b73ffffffffffffffffffffffffffffffffffffffff161480611fe55750611fe485611fdf611f12565b611c59565b5b8061202a5750611ff3611f12565b73ffffffffffffffffffffffffffffffffffffffff16612012846108d9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612063576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120ca576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120d785858560016126fb565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6121d486612701565b1717600560008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561225e57600060018401905060006005600083815260200190815260200160002054141561225c57600154811461225b578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122c6858585600161270b565b5050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123b3828260405180602001604052806000815250612711565b5050565b803410156123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f19061356d565b60405180910390fd5b80341115612455573373ffffffffffffffffffffffffffffffffffffffff166108fc823461242891906137f9565b9081150290604051600060405180830381858888f19350505050158015612453573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247e611f12565b8786866040518563ffffffff1660e01b81526004016124a094939291906133c4565b602060405180830381600087803b1580156124ba57600080fd5b505af19250505080156124eb57506040513d601f19601f820116820180604052508101906124e89190612f71565b60015b612565573d806000811461251b576040519150601f19603f3d011682016040523d82523d6000602084013e612520565b606091505b5060008151141561255d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546125c790613907565b80601f01602080910402602001604051908101604052809291908181526020018280546125f390613907565b80156126405780601f1061261557610100808354040283529160200191612640565b820191906000526020600020905b81548152906001019060200180831161262357829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561269057600183039250600a81066030018353600a81049050612670565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561277f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127ba576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c760008583866126fb565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161282c600185146129c7565b901b60a042901b61283c86612701565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612940575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128f06000878480600101955087612458565b612926576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061288157826001541461293b57600080fd5b6129ab565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612941575b8160018190555050506129c1600085838661270b565b50505050565b6000819050919050565b8280546129dd90613907565b90600052602060002090601f0160209004810192826129ff5760008555612a46565b82601f10612a1857803560ff1916838001178555612a46565b82800160010185558215612a46579182015b82811115612a45578235825591602001919060010190612a2a565b5b509050612a539190612a57565b5090565b5b80821115612a70576000816000905550600101612a58565b5090565b6000612a87612a8284613672565b61364d565b90508083825260208201905082856020860282011115612aaa57612aa9613a79565b5b60005b85811015612ada5781612ac08882612b96565b845260208401935060208301925050600181019050612aad565b5050509392505050565b6000612af7612af28461369e565b61364d565b90508083825260208201905082856020860282011115612b1a57612b19613a79565b5b60005b85811015612b4a5781612b308882612cca565b845260208401935060208301925050600181019050612b1d565b5050509392505050565b6000612b67612b62846136ca565b61364d565b905082815260208101848484011115612b8357612b82613a7e565b5b612b8e8482856138c5565b509392505050565b600081359050612ba581613d28565b92915050565b600082601f830112612bc057612bbf613a74565b5b8135612bd0848260208601612a74565b91505092915050565b600082601f830112612bee57612bed613a74565b5b8135612bfe848260208601612ae4565b91505092915050565b600081359050612c1681613d3f565b92915050565b600081359050612c2b81613d56565b92915050565b600081519050612c4081613d56565b92915050565b600082601f830112612c5b57612c5a613a74565b5b8135612c6b848260208601612b54565b91505092915050565b60008083601f840112612c8a57612c89613a74565b5b8235905067ffffffffffffffff811115612ca757612ca6613a6f565b5b602083019150836001820283011115612cc357612cc2613a79565b5b9250929050565b600081359050612cd981613d6d565b92915050565b600081359050612cee81613d84565b92915050565b600081359050612d0381613d9b565b92915050565b600060208284031215612d1f57612d1e613a88565b5b6000612d2d84828501612b96565b91505092915050565b60008060408385031215612d4d57612d4c613a88565b5b6000612d5b85828601612b96565b9250506020612d6c85828601612b96565b9150509250929050565b600080600060608486031215612d8f57612d8e613a88565b5b6000612d9d86828701612b96565b9350506020612dae86828701612b96565b9250506040612dbf86828701612cca565b9150509250925092565b60008060008060808587031215612de357612de2613a88565b5b6000612df187828801612b96565b9450506020612e0287828801612b96565b9350506040612e1387828801612cca565b925050606085013567ffffffffffffffff811115612e3457612e33613a83565b5b612e4087828801612c46565b91505092959194509250565b60008060408385031215612e6357612e62613a88565b5b6000612e7185828601612b96565b9250506020612e8285828601612c07565b9150509250929050565b60008060408385031215612ea357612ea2613a88565b5b6000612eb185828601612b96565b9250506020612ec285828601612cca565b9150509250929050565b60008060408385031215612ee357612ee2613a88565b5b600083013567ffffffffffffffff811115612f0157612f00613a83565b5b612f0d85828601612bab565b925050602083013567ffffffffffffffff811115612f2e57612f2d613a83565b5b612f3a85828601612bd9565b9150509250929050565b600060208284031215612f5a57612f59613a88565b5b6000612f6884828501612c1c565b91505092915050565b600060208284031215612f8757612f86613a88565b5b6000612f9584828501612c31565b91505092915050565b60008060208385031215612fb557612fb4613a88565b5b600083013567ffffffffffffffff811115612fd357612fd2613a83565b5b612fdf85828601612c74565b92509250509250929050565b60006020828403121561300157613000613a88565b5b600061300f84828501612cca565b91505092915050565b6000806040838503121561302f5761302e613a88565b5b600061303d85828601612cca565b925050602061304e85828601612cca565b9150509250929050565b6000806040838503121561306f5761306e613a88565b5b600061307d85828601612cf4565b925050602061308e85828601612cdf565b9150509250929050565b6130a18161382d565b82525050565b6130b08161383f565b82525050565b60006130c1826136fb565b6130cb8185613711565b93506130db8185602086016138d4565b6130e481613a8d565b840191505092915050565b60006130fa82613706565b613104818561372d565b93506131148185602086016138d4565b61311d81613a8d565b840191505092915050565b600061313382613706565b61313d818561373e565b935061314d8185602086016138d4565b80840191505092915050565b600061316660258361372d565b915061317182613a9e565b604082019050919050565b600061318960268361372d565b915061319482613aed565b604082019050919050565b60006131ac601c8361372d565b91506131b782613b3c565b602082019050919050565b60006131cf601f8361372d565b91506131da82613b65565b602082019050919050565b60006131f260108361372d565b91506131fd82613b8e565b602082019050919050565b600061321560128361372d565b915061322082613bb7565b602082019050919050565b6000613238601f8361372d565b915061324382613be0565b602082019050919050565b600061325b60208361372d565b915061326682613c09565b602082019050919050565b600061327e601d8361372d565b915061328982613c32565b602082019050919050565b60006132a1600083613722565b91506132ac82613c5b565b600082019050919050565b60006132c460168361372d565b91506132cf82613c5e565b602082019050919050565b60006132e760168361372d565b91506132f282613c87565b602082019050919050565b600061330a601f8361372d565b915061331582613cb0565b602082019050919050565b600061332d60288361372d565b915061333882613cd9565b604082019050919050565b61334c81613897565b82525050565b61335b816138a1565b82525050565b61336a816138b1565b82525050565b600061337c8285613128565b91506133888284613128565b91508190509392505050565b600061339f82613294565b9150819050919050565b60006020820190506133be6000830184613098565b92915050565b60006080820190506133d96000830187613098565b6133e66020830186613098565b6133f36040830185613343565b818103606083015261340581846130b6565b905095945050505050565b600060208201905061342560008301846130a7565b92915050565b6000602082019050818103600083015261344581846130ef565b905092915050565b6000602082019050818103600083015261346681613159565b9050919050565b600060208201905081810360008301526134868161317c565b9050919050565b600060208201905081810360008301526134a68161319f565b9050919050565b600060208201905081810360008301526134c6816131c2565b9050919050565b600060208201905081810360008301526134e6816131e5565b9050919050565b6000602082019050818103600083015261350681613208565b9050919050565b600060208201905081810360008301526135268161322b565b9050919050565b600060208201905081810360008301526135468161324e565b9050919050565b6000602082019050818103600083015261356681613271565b9050919050565b60006020820190508181036000830152613586816132b7565b9050919050565b600060208201905081810360008301526135a6816132da565b9050919050565b600060208201905081810360008301526135c6816132fd565b9050919050565b600060208201905081810360008301526135e681613320565b9050919050565b60006020820190506136026000830184613343565b92915050565b600060808201905061361d6000830187613361565b61362a6020830186613352565b6136376040830185613352565b6136446060830184613361565b95945050505050565b6000613657613668565b90506136638282613939565b919050565b6000604051905090565b600067ffffffffffffffff82111561368d5761368c613a40565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156136b9576136b8613a40565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156136e5576136e4613a40565b5b6136ee82613a8d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061375482613897565b915061375f83613897565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613794576137936139b3565b5b828201905092915050565b60006137aa82613897565b91506137b583613897565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137ee576137ed6139b3565b5b828202905092915050565b600061380482613897565b915061380f83613897565b925082821015613822576138216139b3565b5b828203905092915050565b600061383882613877565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156138f25780820151818401526020810190506138d7565b83811115613901576000848401525b50505050565b6000600282049050600182168061391f57607f821691505b60208210811415613933576139326139e2565b5b50919050565b61394282613a8d565b810181811067ffffffffffffffff8211171561396157613960613a40565b5b80604052505050565b600061397582613897565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139a8576139a76139b3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f616c6c6f772073616c652068617320616c7265616479206265656e20636f6d7060008201527f6c65746564000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f616c6c6f772073616c6520686173206e6f7420626567756e2079657400000000600082015250565b7f416c726561647920726561636820746865206d696e74206d6178696d756d7900600082015250565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e7400600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b50565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b613d318161382d565b8114613d3c57600080fd5b50565b613d488161383f565b8114613d5357600080fd5b50565b613d5f8161384b565b8114613d6a57600080fd5b50565b613d7681613897565b8114613d8157600080fd5b50565b613d8d816138a1565b8114613d9857600080fd5b50565b613da4816138b1565b8114613daf57600080fd5b5056fea264697066735822122010aadb50ee4bf34f5c2c331312f222c7f2c9c0c998859fa56fdbbde20d26d9f864736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f62616679626569676737767534747069686e647969666562666d706674707074797677747a6f67366a34326b7a7635746b7a6a7362656467666e692f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638da5cb5b11610102578063b3ab66b011610095578063dbcad76f11610064578063dbcad76f146106d5578063dc33e68114610712578063e985e9c51461074f578063f2fde38b1461078c576101e3565b8063b3ab66b014610637578063b88d4fde14610653578063c180526a1461067c578063c87b56dd14610698576101e3565b8063a7cd52cb116100d1578063a7cd52cb1461057f578063add5a4fa146105bc578063ade9b400146105e5578063b05863d51461060e576101e3565b80638da5cb5b146104d257806390aa0b0f146104fd57806395d89b411461052b578063a22cb46514610556576101e3565b806358180e341161017a5780636a7307eb116101495780636a7307eb1461041657806370a0823114610453578063715018a6146104905780638bc35c2f146104a7576101e3565b806358180e341461035c5780635ee5fdb6146103995780635fd8c710146103c25780636352211e146103d9576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e157806342842e0e1461030a57806355f804b314610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612f44565b6107b5565b60405161021c9190613410565b60405180910390f35b34801561023157600080fd5b5061023a610847565b604051610247919061342b565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612feb565b6108d9565b60405161028491906133a9565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612e8c565b610955565b005b3480156102c257600080fd5b506102cb610afc565b6040516102d891906135ed565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612d76565b610b13565b005b34801561031657600080fd5b50610331600480360381019061032c9190612d76565b610b23565b005b34801561033f57600080fd5b5061035a60048036038101906103559190612f9e565b610b43565b005b34801561036857600080fd5b50610383600480360381019061037e9190613018565b610bd5565b6040516103909190613410565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190613058565b610bef565b005b3480156103ce57600080fd5b506103d7610cbf565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612feb565b610e54565b60405161040d91906133a9565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190612feb565b610e66565b60405161044a9190613410565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612d09565b610e72565b60405161048791906135ed565b60405180910390f35b34801561049c57600080fd5b506104a5610f2b565b005b3480156104b357600080fd5b506104bc610fb3565b6040516104c991906135ed565b60405180910390f35b3480156104de57600080fd5b506104e7610fd7565b6040516104f491906133a9565b60405180910390f35b34801561050957600080fd5b50610512611000565b6040516105229493929190613608565b60405180910390f35b34801561053757600080fd5b50610540611066565b60405161054d919061342b565b60405180910390f35b34801561056257600080fd5b5061057d60048036038101906105789190612e4c565b6110f8565b005b34801561058b57600080fd5b506105a660048036038101906105a19190612d09565b611270565b6040516105b391906135ed565b60405180910390f35b3480156105c857600080fd5b506105e360048036038101906105de9190612e8c565b611288565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613058565b611387565b005b34801561061a57600080fd5b5061063560048036038101906106309190612ecc565b611457565b005b610651600480360381019061064c9190612feb565b6115b3565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612dc9565b6117ee565b005b61069660048036038101906106919190612feb565b611861565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190612feb565b611b8e565b6040516106cc919061342b565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190613018565b611c2d565b6040516107099190613410565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190612d09565b611c47565b60405161074691906135ed565b60405180910390f35b34801561075b57600080fd5b5061077660048036038101906107719190612d36565b611c59565b6040516107839190613410565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190612d09565b611ced565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108405750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461085690613907565b80601f016020809104026020016040519081016040528092919081815260200182805461088290613907565b80156108cf5780601f106108a4576101008083540402835291602001916108cf565b820191906000526020600020905b8154815290600101906020018083116108b257829003601f168201915b5050505050905090565b60006108e482611de5565b61091a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096082611e44565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e7611f12565b73ffffffffffffffffffffffffffffffffffffffff1614610a4a57610a1381610a0e611f12565b611c59565b610a49576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b06611f1a565b6002546001540303905090565b610b1e838383611f23565b505050565b610b3e838383604051806020016040528060008152506117ee565b505050565b610b4b6122cd565b73ffffffffffffffffffffffffffffffffffffffff16610b69610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb69061352d565b60405180910390fd5b8181600a9190610bd09291906129d1565b505050565b6000808314158015610be75750814210155b905092915050565b610bf76122cd565b73ffffffffffffffffffffffffffffffffffffffff16610c15610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c629061352d565b60405180910390fd5b81600b60000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600b60000160086101000a81548163ffffffff021916908363ffffffff1602179055505050565b610cc76122cd565b73ffffffffffffffffffffffffffffffffffffffff16610ce5610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d329061352d565b60405180910390fd5b60026009541415610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d78906135ad565b60405180910390fd5b60026009819055506000733ebf63dec7aa61abed7955d6fa256b810e35c17273ffffffffffffffffffffffffffffffffffffffff1647604051610dc390613394565b60006040518083038185875af1925050503d8060008114610e00576040519150601f19603f3d011682016040523d82523d6000602084013e610e05565b606091505b5050905080610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906134cd565b60405180910390fd5b506001600981905550565b6000610e5f82611e44565b9050919050565b60008142109050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eda576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f336122cd565b73ffffffffffffffffffffffffffffffffffffffff16610f51610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e9061352d565b60405180910390fd5b610fb160006122d5565b565b7f000000000000000000000000000000000000000000000000000000000000006481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900463ffffffff169080600001600c9054906101000a900463ffffffff16908060000160109054906101000a900467ffffffffffffffff16905084565b60606004805461107590613907565b80601f01602080910402602001604051908101604052809291908181526020018280546110a190613907565b80156110ee5780601f106110c3576101008083540402835291602001916110ee565b820191906000526020600020905b8154815290600101906020018083116110d157829003601f168201915b5050505050905090565b611100611f12565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611165576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611172611f12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661121f611f12565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112649190613410565b60405180910390a35050565b600c6020528060005260406000206000915090505481565b6112906122cd565b73ffffffffffffffffffffffffffffffffffffffff166112ae610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb9061352d565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000013888161132e610afc565b6113389190613749565b1115611379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611370906134ad565b60405180910390fd5b6113838282612399565b5050565b61138f6122cd565b73ffffffffffffffffffffffffffffffffffffffff166113ad610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa9061352d565b60405180910390fd5b81600b60000160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600b600001600c6101000a81548163ffffffff021916908363ffffffff1602179055505050565b61145f6122cd565b73ffffffffffffffffffffffffffffffffffffffff1661147d610fd7565b73ffffffffffffffffffffffffffffffffffffffff16146114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca9061352d565b60405180910390fd5b8051825114611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e906135cd565b60405180910390fd5b60005b82518110156115ae5781818151811061153657611535613a11565b5b6020026020010151600c600085848151811061155557611554613a11565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806115a69061396a565b91505061151a565b505050565b6000600b6040518060800160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900463ffffffff1663ffffffff1663ffffffff16815260200160008201600c9054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090506000816060015167ffffffffffffffff1690506000826040015163ffffffff1690506116a08282611c2d565b6116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d69061354d565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000138884611709610afc565b6117139190613749565b1115611754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174b906134ed565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000648461177f33611c47565b6117899190613749565b11156117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c19061358d565b60405180910390fd5b6117d43385612399565b6117e884836117e3919061379f565b6123b7565b50505050565b6117f9848484611f23565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461185b5761182484848484612458565b61185a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000600b6040518060800160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900463ffffffff1663ffffffff1663ffffffff16815260200160008201600c9054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090506000816000015167ffffffffffffffff1690506000826020015163ffffffff1690506000836040015163ffffffff16905061195d8383610bd5565b61199c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119939061348d565b60405180910390fd5b6119a581610e66565b6119e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119db9061344d565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d9061350d565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000138885611a90610afc565b611a9a9190613749565b1115611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad2906134ed565b60405180910390fd5b84600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b2691906137f9565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b733386612399565b611b878584611b82919061379f565b6123b7565b5050505050565b6060611b9982611de5565b611bcf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611bd96125b8565b9050600081511415611bfa5760405180602001604052806000815250611c25565b80611c048461264a565b604051602001611c15929190613370565b6040516020818303038152906040525b915050919050565b6000808314158015611c3f5750814210155b905092915050565b6000611c52826126a4565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cf56122cd565b73ffffffffffffffffffffffffffffffffffffffff16611d13610fd7565b73ffffffffffffffffffffffffffffffffffffffff1614611d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d609061352d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd09061346d565b60405180910390fd5b611de2816122d5565b50565b600081611df0611f1a565b11158015611dff575060015482105b8015611e3d575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611e53611f1a565b11611edb57600154811015611eda5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ed8575b6000811415611ece576005600083600190039350838152602001908152602001600020549050611ea3565b8092505050611f0d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611f2e82611e44565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611f95576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fb6611f12565b73ffffffffffffffffffffffffffffffffffffffff161480611fe55750611fe485611fdf611f12565b611c59565b5b8061202a5750611ff3611f12565b73ffffffffffffffffffffffffffffffffffffffff16612012846108d9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612063576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120ca576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120d785858560016126fb565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6121d486612701565b1717600560008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561225e57600060018401905060006005600083815260200190815260200160002054141561225c57600154811461225b578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122c6858585600161270b565b5050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123b3828260405180602001604052806000815250612711565b5050565b803410156123fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f19061356d565b60405180910390fd5b80341115612455573373ffffffffffffffffffffffffffffffffffffffff166108fc823461242891906137f9565b9081150290604051600060405180830381858888f19350505050158015612453573d6000803e3d6000fd5b505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247e611f12565b8786866040518563ffffffff1660e01b81526004016124a094939291906133c4565b602060405180830381600087803b1580156124ba57600080fd5b505af19250505080156124eb57506040513d601f19601f820116820180604052508101906124e89190612f71565b60015b612565573d806000811461251b576040519150601f19603f3d011682016040523d82523d6000602084013e612520565b606091505b5060008151141561255d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546125c790613907565b80601f01602080910402602001604051908101604052809291908181526020018280546125f390613907565b80156126405780601f1061261557610100808354040283529160200191612640565b820191906000526020600020905b81548152906001019060200180831161262357829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561269057600183039250600a81066030018353600a81049050612670565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561277f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156127ba576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127c760008583866126fb565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161282c600185146129c7565b901b60a042901b61283c86612701565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612940575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128f06000878480600101955087612458565b612926576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061288157826001541461293b57600080fd5b6129ab565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612941575b8160018190555050506129c1600085838661270b565b50505050565b6000819050919050565b8280546129dd90613907565b90600052602060002090601f0160209004810192826129ff5760008555612a46565b82601f10612a1857803560ff1916838001178555612a46565b82800160010185558215612a46579182015b82811115612a45578235825591602001919060010190612a2a565b5b509050612a539190612a57565b5090565b5b80821115612a70576000816000905550600101612a58565b5090565b6000612a87612a8284613672565b61364d565b90508083825260208201905082856020860282011115612aaa57612aa9613a79565b5b60005b85811015612ada5781612ac08882612b96565b845260208401935060208301925050600181019050612aad565b5050509392505050565b6000612af7612af28461369e565b61364d565b90508083825260208201905082856020860282011115612b1a57612b19613a79565b5b60005b85811015612b4a5781612b308882612cca565b845260208401935060208301925050600181019050612b1d565b5050509392505050565b6000612b67612b62846136ca565b61364d565b905082815260208101848484011115612b8357612b82613a7e565b5b612b8e8482856138c5565b509392505050565b600081359050612ba581613d28565b92915050565b600082601f830112612bc057612bbf613a74565b5b8135612bd0848260208601612a74565b91505092915050565b600082601f830112612bee57612bed613a74565b5b8135612bfe848260208601612ae4565b91505092915050565b600081359050612c1681613d3f565b92915050565b600081359050612c2b81613d56565b92915050565b600081519050612c4081613d56565b92915050565b600082601f830112612c5b57612c5a613a74565b5b8135612c6b848260208601612b54565b91505092915050565b60008083601f840112612c8a57612c89613a74565b5b8235905067ffffffffffffffff811115612ca757612ca6613a6f565b5b602083019150836001820283011115612cc357612cc2613a79565b5b9250929050565b600081359050612cd981613d6d565b92915050565b600081359050612cee81613d84565b92915050565b600081359050612d0381613d9b565b92915050565b600060208284031215612d1f57612d1e613a88565b5b6000612d2d84828501612b96565b91505092915050565b60008060408385031215612d4d57612d4c613a88565b5b6000612d5b85828601612b96565b9250506020612d6c85828601612b96565b9150509250929050565b600080600060608486031215612d8f57612d8e613a88565b5b6000612d9d86828701612b96565b9350506020612dae86828701612b96565b9250506040612dbf86828701612cca565b9150509250925092565b60008060008060808587031215612de357612de2613a88565b5b6000612df187828801612b96565b9450506020612e0287828801612b96565b9350506040612e1387828801612cca565b925050606085013567ffffffffffffffff811115612e3457612e33613a83565b5b612e4087828801612c46565b91505092959194509250565b60008060408385031215612e6357612e62613a88565b5b6000612e7185828601612b96565b9250506020612e8285828601612c07565b9150509250929050565b60008060408385031215612ea357612ea2613a88565b5b6000612eb185828601612b96565b9250506020612ec285828601612cca565b9150509250929050565b60008060408385031215612ee357612ee2613a88565b5b600083013567ffffffffffffffff811115612f0157612f00613a83565b5b612f0d85828601612bab565b925050602083013567ffffffffffffffff811115612f2e57612f2d613a83565b5b612f3a85828601612bd9565b9150509250929050565b600060208284031215612f5a57612f59613a88565b5b6000612f6884828501612c1c565b91505092915050565b600060208284031215612f8757612f86613a88565b5b6000612f9584828501612c31565b91505092915050565b60008060208385031215612fb557612fb4613a88565b5b600083013567ffffffffffffffff811115612fd357612fd2613a83565b5b612fdf85828601612c74565b92509250509250929050565b60006020828403121561300157613000613a88565b5b600061300f84828501612cca565b91505092915050565b6000806040838503121561302f5761302e613a88565b5b600061303d85828601612cca565b925050602061304e85828601612cca565b9150509250929050565b6000806040838503121561306f5761306e613a88565b5b600061307d85828601612cf4565b925050602061308e85828601612cdf565b9150509250929050565b6130a18161382d565b82525050565b6130b08161383f565b82525050565b60006130c1826136fb565b6130cb8185613711565b93506130db8185602086016138d4565b6130e481613a8d565b840191505092915050565b60006130fa82613706565b613104818561372d565b93506131148185602086016138d4565b61311d81613a8d565b840191505092915050565b600061313382613706565b61313d818561373e565b935061314d8185602086016138d4565b80840191505092915050565b600061316660258361372d565b915061317182613a9e565b604082019050919050565b600061318960268361372d565b915061319482613aed565b604082019050919050565b60006131ac601c8361372d565b91506131b782613b3c565b602082019050919050565b60006131cf601f8361372d565b91506131da82613b65565b602082019050919050565b60006131f260108361372d565b91506131fd82613b8e565b602082019050919050565b600061321560128361372d565b915061322082613bb7565b602082019050919050565b6000613238601f8361372d565b915061324382613be0565b602082019050919050565b600061325b60208361372d565b915061326682613c09565b602082019050919050565b600061327e601d8361372d565b915061328982613c32565b602082019050919050565b60006132a1600083613722565b91506132ac82613c5b565b600082019050919050565b60006132c460168361372d565b91506132cf82613c5e565b602082019050919050565b60006132e760168361372d565b91506132f282613c87565b602082019050919050565b600061330a601f8361372d565b915061331582613cb0565b602082019050919050565b600061332d60288361372d565b915061333882613cd9565b604082019050919050565b61334c81613897565b82525050565b61335b816138a1565b82525050565b61336a816138b1565b82525050565b600061337c8285613128565b91506133888284613128565b91508190509392505050565b600061339f82613294565b9150819050919050565b60006020820190506133be6000830184613098565b92915050565b60006080820190506133d96000830187613098565b6133e66020830186613098565b6133f36040830185613343565b818103606083015261340581846130b6565b905095945050505050565b600060208201905061342560008301846130a7565b92915050565b6000602082019050818103600083015261344581846130ef565b905092915050565b6000602082019050818103600083015261346681613159565b9050919050565b600060208201905081810360008301526134868161317c565b9050919050565b600060208201905081810360008301526134a68161319f565b9050919050565b600060208201905081810360008301526134c6816131c2565b9050919050565b600060208201905081810360008301526134e6816131e5565b9050919050565b6000602082019050818103600083015261350681613208565b9050919050565b600060208201905081810360008301526135268161322b565b9050919050565b600060208201905081810360008301526135468161324e565b9050919050565b6000602082019050818103600083015261356681613271565b9050919050565b60006020820190508181036000830152613586816132b7565b9050919050565b600060208201905081810360008301526135a6816132da565b9050919050565b600060208201905081810360008301526135c6816132fd565b9050919050565b600060208201905081810360008301526135e681613320565b9050919050565b60006020820190506136026000830184613343565b92915050565b600060808201905061361d6000830187613361565b61362a6020830186613352565b6136376040830185613352565b6136446060830184613361565b95945050505050565b6000613657613668565b90506136638282613939565b919050565b6000604051905090565b600067ffffffffffffffff82111561368d5761368c613a40565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156136b9576136b8613a40565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156136e5576136e4613a40565b5b6136ee82613a8d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061375482613897565b915061375f83613897565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613794576137936139b3565b5b828201905092915050565b60006137aa82613897565b91506137b583613897565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137ee576137ed6139b3565b5b828202905092915050565b600061380482613897565b915061380f83613897565b925082821015613822576138216139b3565b5b828203905092915050565b600061383882613877565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156138f25780820151818401526020810190506138d7565b83811115613901576000848401525b50505050565b6000600282049050600182168061391f57607f821691505b60208210811415613933576139326139e2565b5b50919050565b61394282613a8d565b810181811067ffffffffffffffff8211171561396157613960613a40565b5b80604052505050565b600061397582613897565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139a8576139a76139b3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f616c6c6f772073616c652068617320616c7265616479206265656e20636f6d7060008201527f6c65746564000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f616c6c6f772073616c6520686173206e6f7420626567756e2079657400000000600082015250565b7f416c726561647920726561636820746865206d696e74206d6178696d756d7900600082015250565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e7400600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b50565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b613d318161382d565b8114613d3c57600080fd5b50565b613d488161383f565b8114613d5357600080fd5b50565b613d5f8161384b565b8114613d6a57600080fd5b50565b613d7681613897565b8114613d8157600080fd5b50565b613d8d816138a1565b8114613d9857600080fd5b50565b613da4816138b1565b8114613daf57600080fd5b5056fea264697066735822122010aadb50ee4bf34f5c2c331312f222c7f2c9c0c998859fa56fdbbde20d26d9f864736f6c63430008070033

Deployed Bytecode Sourcemap

46727:5456:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15197:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20210:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22278:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21738:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14251:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23164:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23405:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47908:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51306:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51062:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51952:228;;;;;;;;;;;;;:::i;:::-;;19999:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51534:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15876:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45836:103;;;;;;;;;;;;;:::i;:::-;;46791:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45185:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47211:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;20379:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22554:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47248:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48151:247;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50809:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49307:387;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49702:746;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23661:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48406:893;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20554:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51721:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50688:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22933:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46094:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15197:615;15282:4;15597:10;15582:25;;:11;:25;;;;:102;;;;15674:10;15659:25;;:11;:25;;;;15582:102;:179;;;;15751:10;15736:25;;:11;:25;;;;15582:179;15562:199;;15197:615;;;:::o;20210:100::-;20264:13;20297:5;20290:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20210:100;:::o;22278:204::-;22346:7;22371:16;22379:7;22371;:16::i;:::-;22366:64;;22396:34;;;;;;;;;;;;;;22366:64;22450:15;:24;22466:7;22450:24;;;;;;;;;;;;;;;;;;;;;22443:31;;22278:204;;;:::o;21738:474::-;21811:13;21843:27;21862:7;21843:18;:27::i;:::-;21811:61;;21893:5;21887:11;;:2;:11;;;21883:48;;;21907:24;;;;;;;;;;;;;;21883:48;21971:5;21948:28;;:19;:17;:19::i;:::-;:28;;;21944:175;;21996:44;22013:5;22020:19;:17;:19::i;:::-;21996:16;:44::i;:::-;21991:128;;22068:35;;;;;;;;;;;;;;21991:128;21944:175;22158:2;22131:15;:24;22147:7;22131:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22196:7;22192:2;22176:28;;22185:5;22176:28;;;;;;;;;;;;21800:412;21738:474;;:::o;14251:315::-;14304:7;14532:15;:13;:15::i;:::-;14517:12;;14501:13;;:28;:46;14494:53;;14251:315;:::o;23164:170::-;23298:28;23308:4;23314:2;23318:7;23298:9;:28::i;:::-;23164:170;;;:::o;23405:185::-;23543:39;23560:4;23566:2;23570:7;23543:39;;;;;;;;;;;;:16;:39::i;:::-;23405:185;;;:::o;47908:106::-;45416:12;:10;:12::i;:::-;45405:23;;:7;:5;:7::i;:::-;:23;;;45397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47999:7:::1;;47983:13;:23;;;;;;;:::i;:::-;;47908:106:::0;;:::o;51306:220::-;51431:4;51477:1;51460:13;:18;;:58;;;;;51501:17;51482:15;:36;;51460:58;51453:65;;51306:220;;;;:::o;51062:236::-;45416:12;:10;:12::i;:::-;45405:23;;:7;:5;:7::i;:::-;:23;;;45397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51218:13:::1;51191:10;:24;;;:40;;;;;;;;;;;;;;;;;;51273:17;51242:10;:28;;;:48;;;;;;;;;;;;;;;;;;51062:236:::0;;:::o;51952:228::-;45416:12;:10;:12::i;:::-;45405:23;;:7;:5;:7::i;:::-;:23;;;45397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42283:1:::1;42881:7;;:19;;42873:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42283:1;43014:7;:18;;;;52023:12:::2;46994:42;52041:26;;52089:21;52041:84;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52022:103;;;52144:7;52136:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;52011:169;42239:1:::1;43193:7;:22;;;;51952:228::o:0;19999:144::-;20063:7;20106:27;20125:7;20106:18;:27::i;:::-;20083:52;;19999:144;;;:::o;51534:179::-;51639:4;51686:19;51668:15;:37;51661:44;;51534:179;;;:::o;15876:224::-;15940:7;15981:1;15964:19;;:5;:19;;;15960:60;;;15992:28;;;;;;;;;;;;;;15960:60;11215:13;16038:18;:25;16057:5;16038:25;;;;;;;;;;;;;;;;:54;16031:61;;15876:224;;;:::o;45836:103::-;45416:12;:10;:12::i;:::-;45405:23;;:7;:5;:7::i;:::-;:23;;;45397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45901:30:::1;45928:1;45901:18;:30::i;:::-;45836:103::o:0;46791:54::-;;;:::o;45185:87::-;45231:7;45258:6;;;;;;;;;;;45251:13;;45185:87;:::o;47211:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20379:104::-;20435:13;20468:7;20461:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20379:104;:::o;22554:308::-;22665:19;:17;:19::i;:::-;22653:31;;:8;:31;;;22649:61;;;22693:17;;;;;;;;;;;;;;22649:61;22775:8;22723:18;:39;22742:19;:17;:19::i;:::-;22723:39;;;;;;;;;;;;;;;:49;22763:8;22723:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;22835:8;22799:55;;22814:19;:17;:19::i;:::-;22799:55;;;22845:8;22799:55;;;;;;:::i;:::-;;;;;;;;22554:308;;:::o;47248:44::-;;;;;;;;;;;;;;;;;:::o;48151:247::-;45416:12;:10;:12::i;:::-;45405:23;;:7;:5;:7::i;:::-;:23;;;45397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48281:14:::1;48269:8;48253:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;48231:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;48365:25;48375:4;48381:8;48365:9;:25::i;:::-;48151:247:::0;;:::o;50809:245::-;45416:12;:10;:12::i;:::-;45405:23;;:7;:5;:7::i;:::-;:23;;;45397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50969:14:::1;50944:10;:22;;;:39;;;;;;;;;;;;;;;;;;51027:19;50994:10;:30;;;:52;;;;;;;;;;;;;;;;;;50809:245:::0;;:::o;49307:387::-;45416:12;:10;:12::i;:::-;45405:23;;:7;:5;:7::i;:::-;:23;;;45397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49482:8:::1;:15;49462:9;:16;:35;49440:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;49581:9;49576:111;49600:9;:16;49596:1;:20;49576:111;;;49664:8;49673:1;49664:11;;;;;;;;:::i;:::-;;;;;;;;49638:9;:23;49648:9;49658:1;49648:12;;;;;;;;:::i;:::-;;;;;;;;49638:23;;;;;;;;;;;;;;;:37;;;;49618:3;;;;;:::i;:::-;;;;49576:111;;;;49307:387:::0;;:::o;49702:746::-;49772:24;49799:10;49772:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49820:19;49850:6;:18;;;49842:27;;49820:49;;49880:27;49918:6;:26;;;49910:35;;49880:65;;49980:48;49995:11;50008:19;49980:14;:48::i;:::-;49958:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50146:14;50134:8;50118:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;50096:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;50278:23;50266:8;50239:24;50252:10;50239:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;50217:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;50362:31;50372:10;50384:8;50362:9;:31::i;:::-;50404:36;50431:8;50417:11;:22;;;;:::i;:::-;50404:12;:36::i;:::-;49761:687;;;49702:746;:::o;23661:396::-;23828:28;23838:4;23844:2;23848:7;23828:9;:28::i;:::-;23889:1;23871:2;:14;;;:19;23867:183;;23910:56;23941:4;23947:2;23951:7;23960:5;23910:30;:56::i;:::-;23905:145;;23994:40;;;;;;;;;;;;;;23905:145;23867:183;23661:396;;;;:::o;48406:893::-;48475:24;48502:10;48475:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48523:21;48555:6;:20;;;48547:29;;48523:53;;48587:25;48623:6;:24;;;48615:33;;48587:61;;48659:27;48697:6;:26;;;48689:35;;48659:65;;48757:51;48775:13;48790:17;48757;:51::i;:::-;48735:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;48885:39;48904:19;48885:18;:39::i;:::-;48877:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;49010:1;48986:9;:21;48996:10;48986:21;;;;;;;;;;;;;;;;:25;48978:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49094:14;49082:8;49066:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;49058:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49192:8;49168:9;:21;49178:10;49168:21;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;49144:9;:21;49154:10;49144:21;;;;;;;;;;;;;;;:56;;;;49211:31;49221:10;49233:8;49211:9;:31::i;:::-;49253:38;49282:8;49266:13;:24;;;;:::i;:::-;49253:12;:38::i;:::-;48464:835;;;;48406:893;:::o;20554:318::-;20627:13;20658:16;20666:7;20658;:16::i;:::-;20653:59;;20683:29;;;;;;;;;;;;;;20653:59;20725:21;20749:10;:8;:10::i;:::-;20725:34;;20802:1;20783:7;20777:21;:26;;:87;;;;;;;;;;;;;;;;;20830:7;20839:18;20849:7;20839:9;:18::i;:::-;20813:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20777:87;20770:94;;;20554:318;;;:::o;51721:223::-;51846:4;51893:1;51875:14;:19;;:61;;;;;51917:19;51898:15;:38;;51875:61;51868:68;;51721:223;;;;:::o;50688:113::-;50746:7;50773:20;50787:5;50773:13;:20::i;:::-;50766:27;;50688:113;;;:::o;22933:164::-;23030:4;23054:18;:25;23073:5;23054:25;;;;;;;;;;;;;;;:35;23080:8;23054:35;;;;;;;;;;;;;;;;;;;;;;;;;23047:42;;22933:164;;;;:::o;46094:201::-;45416:12;:10;:12::i;:::-;45405:23;;:7;:5;:7::i;:::-;:23;;;45397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46203:1:::1;46183:22;;:8;:22;;;;46175:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46259:28;46278:8;46259:18;:28::i;:::-;46094:201:::0;:::o;24312:273::-;24369:4;24425:7;24406:15;:13;:15::i;:::-;:26;;:66;;;;;24459:13;;24449:7;:23;24406:66;:152;;;;;24557:1;11985:8;24510:17;:26;24528:7;24510:26;;;;;;;;;;;;:43;:48;24406:152;24386:172;;24312:273;;;:::o;17514:1129::-;17581:7;17601:12;17616:7;17601:22;;17684:4;17665:15;:13;:15::i;:::-;:23;17661:915;;17718:13;;17711:4;:20;17707:869;;;17756:14;17773:17;:23;17791:4;17773:23;;;;;;;;;;;;17756:40;;17889:1;11985:8;17862:6;:23;:28;17858:699;;;18381:113;18398:1;18388:6;:11;18381:113;;;18441:17;:25;18459:6;;;;;;;18441:25;;;;;;;;;;;;18432:34;;18381:113;;;18527:6;18520:13;;;;;;17858:699;17733:843;17707:869;17661:915;18604:31;;;;;;;;;;;;;;17514:1129;;;;:::o;38294:105::-;38354:7;38381:10;38374:17;;38294:105;:::o;47799:101::-;47864:7;47891:1;47884:8;;47799:101;:::o;29551:2515::-;29666:27;29696;29715:7;29696:18;:27::i;:::-;29666:57;;29781:4;29740:45;;29756:19;29740:45;;;29736:86;;29794:28;;;;;;;;;;;;;;29736:86;29835:22;29884:4;29861:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;29905:43;29922:4;29928:19;:17;:19::i;:::-;29905:16;:43::i;:::-;29861:87;:147;;;;29989:19;:17;:19::i;:::-;29965:43;;:20;29977:7;29965:11;:20::i;:::-;:43;;;29861:147;29835:174;;30027:17;30022:66;;30053:35;;;;;;;;;;;;;;30022:66;30117:1;30103:16;;:2;:16;;;30099:52;;;30128:23;;;;;;;;;;;;;;30099:52;30164:43;30186:4;30192:2;30196:7;30205:1;30164:21;:43::i;:::-;30280:15;:24;30296:7;30280:24;;;;;;;;;;;;30273:31;;;;;;;;;;;30672:18;:24;30691:4;30672:24;;;;;;;;;;;;;;;;30670:26;;;;;;;;;;;;30741:18;:22;30760:2;30741:22;;;;;;;;;;;;;;;;30739:24;;;;;;;;;;;12267:8;11869:3;31122:15;:41;;31080:21;31098:2;31080:17;:21::i;:::-;:84;:128;31034:17;:26;31052:7;31034:26;;;;;;;;;;;:174;;;;31378:1;12267:8;31328:19;:46;:51;31324:626;;;31400:19;31432:1;31422:7;:11;31400:33;;31589:1;31555:17;:30;31573:11;31555:30;;;;;;;;;;;;:35;31551:384;;;31693:13;;31678:11;:28;31674:242;;31873:19;31840:17;:30;31858:11;31840:30;;;;;;;;;;;:52;;;;31674:242;31551:384;31381:569;31324:626;31997:7;31993:2;31978:27;;31987:4;31978:27;;;;;;;;;;;;32016:42;32037:4;32043:2;32047:7;32056:1;32016:20;:42::i;:::-;29655:2411;;29551:2515;;;:::o;43909:98::-;43962:7;43989:10;43982:17;;43909:98;:::o;46455:191::-;46529:16;46548:6;;;;;;;;;;;46529:25;;46574:8;46565:6;;:17;;;;;;;;;;;;;;;;;;46629:8;46598:40;;46619:8;46598:40;;;;;;;;;;;;46518:128;46455:191;:::o;24669:104::-;24738:27;24748:2;24752:8;24738:27;;;;;;;;;;;;:9;:27::i;:::-;24669:104;;:::o;50456:224::-;50533:5;50520:9;:18;;50512:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;50592:5;50580:9;:17;50576:97;;;50622:10;50614:28;;:47;50655:5;50643:9;:17;;;;:::i;:::-;50614:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50576:97;50456:224;:::o;35763:716::-;35926:4;35972:2;35947:45;;;35993:19;:17;:19::i;:::-;36014:4;36020:7;36029:5;35947:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35943:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36247:1;36230:6;:13;:18;36226:235;;;36276:40;;;;;;;;;;;;;;36226:235;36419:6;36413:13;36404:6;36400:2;36396:15;36389:38;35943:529;36116:54;;;36106:64;;;:6;:64;;;;36099:71;;;35763:716;;;;;;:::o;47677:114::-;47737:13;47770;47763:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47677:114;:::o;38505:1959::-;38562:17;38983:3;38976:4;38970:11;38966:21;38959:28;;39074:3;39068:4;39061:17;39180:3;39637:5;39767:1;39762:3;39758:11;39751:18;;39904:2;39898:4;39894:13;39890:2;39886:22;39881:3;39873:36;39945:2;39939:4;39935:13;39927:21;;39528:682;39964:4;39528:682;;;40139:1;40134:3;40130:11;40123:18;;40190:2;40184:4;40180:13;40176:2;40172:22;40167:3;40159:36;40060:2;40054:4;40050:13;40042:21;;39528:682;;;39532:431;40261:3;40256;40252:13;40376:2;40371:3;40367:12;40360:19;;40439:6;40434:3;40427:19;38601:1856;;38505:1959;;;:::o;16182:176::-;16243:7;11215:13;11352:2;16271:18;:25;16290:5;16271:25;;;;;;;;;;;;;;;;:49;;16270:80;16263:87;;16182:176;;;:::o;37127:159::-;;;;;:::o;21299:148::-;21363:14;21424:5;21414:15;;21299:148;;;:::o;37945:158::-;;;;;:::o;25146:2236::-;25269:20;25292:13;;25269:36;;25334:1;25320:16;;:2;:16;;;25316:48;;;25345:19;;;;;;;;;;;;;;25316:48;25391:1;25379:8;:13;25375:44;;;25401:18;;;;;;;;;;;;;;25375:44;25432:61;25462:1;25466:2;25470:12;25484:8;25432:21;:61::i;:::-;26036:1;11352:2;26007:1;:25;;26006:31;25994:8;:44;25968:18;:22;25987:2;25968:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;12132:3;26437:29;26464:1;26452:8;:13;26437:14;:29::i;:::-;:56;;11869:3;26374:15;:41;;26332:21;26350:2;26332:17;:21::i;:::-;:84;:162;26281:17;:31;26299:12;26281:31;;;;;;;;;;;:213;;;;26511:20;26534:12;26511:35;;26561:11;26590:8;26575:12;:23;26561:37;;26637:1;26619:2;:14;;;:19;26615:635;;26659:313;26715:12;26711:2;26690:38;;26707:1;26690:38;;;;;;;;;;;;26756:69;26795:1;26799:2;26803:14;;;;;;26819:5;26756:30;:69::i;:::-;26751:174;;26861:40;;;;;;;;;;;;;;26751:174;26967:3;26952:12;:18;26659:313;;27053:12;27036:13;;:29;27032:43;;27067:8;;;27032:43;26615:635;;;27116:119;27172:14;;;;;;27168:2;27147:40;;27164:1;27147:40;;;;;;;;;;;;27230:3;27215:12;:18;27116:119;;26615:635;27280:12;27264:13;:28;;;;25745:1559;;27314:60;27343:1;27347:2;27351:12;27365:8;27314:20;:60::i;:::-;25258:2124;25146:2236;;;:::o;21534:142::-;21592:14;21653:5;21643:15;;21534:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:139::-;1959:5;1997:6;1984:20;1975:29;;2013:33;2040:5;2013:33;:::i;:::-;1913:139;;;;:::o;2075:370::-;2146:5;2195:3;2188:4;2180:6;2176:17;2172:27;2162:122;;2203:79;;:::i;:::-;2162:122;2320:6;2307:20;2345:94;2435:3;2427:6;2420:4;2412:6;2408:17;2345:94;:::i;:::-;2336:103;;2152:293;2075:370;;;;:::o;2468:::-;2539:5;2588:3;2581:4;2573:6;2569:17;2565:27;2555:122;;2596:79;;:::i;:::-;2555:122;2713:6;2700:20;2738:94;2828:3;2820:6;2813:4;2805:6;2801:17;2738:94;:::i;:::-;2729:103;;2545:293;2468:370;;;;:::o;2844:133::-;2887:5;2925:6;2912:20;2903:29;;2941:30;2965:5;2941:30;:::i;:::-;2844:133;;;;:::o;2983:137::-;3028:5;3066:6;3053:20;3044:29;;3082:32;3108:5;3082:32;:::i;:::-;2983:137;;;;:::o;3126:141::-;3182:5;3213:6;3207:13;3198:22;;3229:32;3255:5;3229:32;:::i;:::-;3126:141;;;;:::o;3286:338::-;3341:5;3390:3;3383:4;3375:6;3371:17;3367:27;3357:122;;3398:79;;:::i;:::-;3357:122;3515:6;3502:20;3540:78;3614:3;3606:6;3599:4;3591:6;3587:17;3540:78;:::i;:::-;3531:87;;3347:277;3286:338;;;;:::o;3644:553::-;3702:8;3712:6;3762:3;3755:4;3747:6;3743:17;3739:27;3729:122;;3770:79;;:::i;:::-;3729:122;3883:6;3870:20;3860:30;;3913:18;3905:6;3902:30;3899:117;;;3935:79;;:::i;:::-;3899:117;4049:4;4041:6;4037:17;4025:29;;4103:3;4095:4;4087:6;4083:17;4073:8;4069:32;4066:41;4063:128;;;4110:79;;:::i;:::-;4063:128;3644:553;;;;;:::o;4203:139::-;4249:5;4287:6;4274:20;4265:29;;4303:33;4330:5;4303:33;:::i;:::-;4203:139;;;;:::o;4348:137::-;4393:5;4431:6;4418:20;4409:29;;4447:32;4473:5;4447:32;:::i;:::-;4348:137;;;;:::o;4491:::-;4536:5;4574:6;4561:20;4552:29;;4590:32;4616:5;4590:32;:::i;:::-;4491:137;;;;:::o;4634:329::-;4693:6;4742:2;4730:9;4721:7;4717:23;4713:32;4710:119;;;4748:79;;:::i;:::-;4710:119;4868:1;4893:53;4938:7;4929:6;4918:9;4914:22;4893:53;:::i;:::-;4883:63;;4839:117;4634:329;;;;:::o;4969:474::-;5037:6;5045;5094:2;5082:9;5073:7;5069:23;5065:32;5062:119;;;5100:79;;:::i;:::-;5062:119;5220:1;5245:53;5290:7;5281:6;5270:9;5266:22;5245:53;:::i;:::-;5235:63;;5191:117;5347:2;5373:53;5418:7;5409:6;5398:9;5394:22;5373:53;:::i;:::-;5363:63;;5318:118;4969:474;;;;;:::o;5449:619::-;5526:6;5534;5542;5591:2;5579:9;5570:7;5566:23;5562:32;5559:119;;;5597:79;;:::i;:::-;5559:119;5717:1;5742:53;5787:7;5778:6;5767:9;5763:22;5742:53;:::i;:::-;5732:63;;5688:117;5844:2;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5815:118;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;5449:619;;;;;:::o;6074:943::-;6169:6;6177;6185;6193;6242:3;6230:9;6221:7;6217:23;6213:33;6210:120;;;6249:79;;:::i;:::-;6210:120;6369:1;6394:53;6439:7;6430:6;6419:9;6415:22;6394:53;:::i;:::-;6384:63;;6340:117;6496:2;6522:53;6567:7;6558:6;6547:9;6543:22;6522:53;:::i;:::-;6512:63;;6467:118;6624:2;6650:53;6695:7;6686:6;6675:9;6671:22;6650:53;:::i;:::-;6640:63;;6595:118;6780:2;6769:9;6765:18;6752:32;6811:18;6803:6;6800:30;6797:117;;;6833:79;;:::i;:::-;6797:117;6938:62;6992:7;6983:6;6972:9;6968:22;6938:62;:::i;:::-;6928:72;;6723:287;6074:943;;;;;;;:::o;7023:468::-;7088:6;7096;7145:2;7133:9;7124:7;7120:23;7116:32;7113:119;;;7151:79;;:::i;:::-;7113:119;7271:1;7296:53;7341:7;7332:6;7321:9;7317:22;7296:53;:::i;:::-;7286:63;;7242:117;7398:2;7424:50;7466:7;7457:6;7446:9;7442:22;7424:50;:::i;:::-;7414:60;;7369:115;7023:468;;;;;:::o;7497:474::-;7565:6;7573;7622:2;7610:9;7601:7;7597:23;7593:32;7590:119;;;7628:79;;:::i;:::-;7590:119;7748:1;7773:53;7818:7;7809:6;7798:9;7794:22;7773:53;:::i;:::-;7763:63;;7719:117;7875:2;7901:53;7946:7;7937:6;7926:9;7922:22;7901:53;:::i;:::-;7891:63;;7846:118;7497:474;;;;;:::o;7977:894::-;8095:6;8103;8152:2;8140:9;8131:7;8127:23;8123:32;8120:119;;;8158:79;;:::i;:::-;8120:119;8306:1;8295:9;8291:17;8278:31;8336:18;8328:6;8325:30;8322:117;;;8358:79;;:::i;:::-;8322:117;8463:78;8533:7;8524:6;8513:9;8509:22;8463:78;:::i;:::-;8453:88;;8249:302;8618:2;8607:9;8603:18;8590:32;8649:18;8641:6;8638:30;8635:117;;;8671:79;;:::i;:::-;8635:117;8776:78;8846:7;8837:6;8826:9;8822:22;8776:78;:::i;:::-;8766:88;;8561:303;7977:894;;;;;:::o;8877:327::-;8935:6;8984:2;8972:9;8963:7;8959:23;8955:32;8952:119;;;8990:79;;:::i;:::-;8952:119;9110:1;9135:52;9179:7;9170:6;9159:9;9155:22;9135:52;:::i;:::-;9125:62;;9081:116;8877:327;;;;:::o;9210:349::-;9279:6;9328:2;9316:9;9307:7;9303:23;9299:32;9296:119;;;9334:79;;:::i;:::-;9296:119;9454:1;9479:63;9534:7;9525:6;9514:9;9510:22;9479:63;:::i;:::-;9469:73;;9425:127;9210:349;;;;:::o;9565:529::-;9636:6;9644;9693:2;9681:9;9672:7;9668:23;9664:32;9661:119;;;9699:79;;:::i;:::-;9661:119;9847:1;9836:9;9832:17;9819:31;9877:18;9869:6;9866:30;9863:117;;;9899:79;;:::i;:::-;9863:117;10012:65;10069:7;10060:6;10049:9;10045:22;10012:65;:::i;:::-;9994:83;;;;9790:297;9565:529;;;;;:::o;10100:329::-;10159:6;10208:2;10196:9;10187:7;10183:23;10179:32;10176:119;;;10214:79;;:::i;:::-;10176:119;10334:1;10359:53;10404:7;10395:6;10384:9;10380:22;10359:53;:::i;:::-;10349:63;;10305:117;10100:329;;;;:::o;10435:474::-;10503:6;10511;10560:2;10548:9;10539:7;10535:23;10531:32;10528:119;;;10566:79;;:::i;:::-;10528:119;10686:1;10711:53;10756:7;10747:6;10736:9;10732:22;10711:53;:::i;:::-;10701:63;;10657:117;10813:2;10839:53;10884:7;10875:6;10864:9;10860:22;10839:53;:::i;:::-;10829:63;;10784:118;10435:474;;;;;:::o;10915:470::-;10981:6;10989;11038:2;11026:9;11017:7;11013:23;11009:32;11006:119;;;11044:79;;:::i;:::-;11006:119;11164:1;11189:52;11233:7;11224:6;11213:9;11209:22;11189:52;:::i;:::-;11179:62;;11135:116;11290:2;11316:52;11360:7;11351:6;11340:9;11336:22;11316:52;:::i;:::-;11306:62;;11261:117;10915:470;;;;;:::o;11391:118::-;11478:24;11496:5;11478:24;:::i;:::-;11473:3;11466:37;11391:118;;:::o;11515:109::-;11596:21;11611:5;11596:21;:::i;:::-;11591:3;11584:34;11515:109;;:::o;11630:360::-;11716:3;11744:38;11776:5;11744:38;:::i;:::-;11798:70;11861:6;11856:3;11798:70;:::i;:::-;11791:77;;11877:52;11922:6;11917:3;11910:4;11903:5;11899:16;11877:52;:::i;:::-;11954:29;11976:6;11954:29;:::i;:::-;11949:3;11945:39;11938:46;;11720:270;11630:360;;;;:::o;11996:364::-;12084:3;12112:39;12145:5;12112:39;:::i;:::-;12167:71;12231:6;12226:3;12167:71;:::i;:::-;12160:78;;12247:52;12292:6;12287:3;12280:4;12273:5;12269:16;12247:52;:::i;:::-;12324:29;12346:6;12324:29;:::i;:::-;12319:3;12315:39;12308:46;;12088:272;11996:364;;;;:::o;12366:377::-;12472:3;12500:39;12533:5;12500:39;:::i;:::-;12555:89;12637:6;12632:3;12555:89;:::i;:::-;12548:96;;12653:52;12698:6;12693:3;12686:4;12679:5;12675:16;12653:52;:::i;:::-;12730:6;12725:3;12721:16;12714:23;;12476:267;12366:377;;;;:::o;12749:366::-;12891:3;12912:67;12976:2;12971:3;12912:67;:::i;:::-;12905:74;;12988:93;13077:3;12988:93;:::i;:::-;13106:2;13101:3;13097:12;13090:19;;12749:366;;;:::o;13121:::-;13263:3;13284:67;13348:2;13343:3;13284:67;:::i;:::-;13277:74;;13360:93;13449:3;13360:93;:::i;:::-;13478:2;13473:3;13469:12;13462:19;;13121:366;;;:::o;13493:::-;13635:3;13656:67;13720:2;13715:3;13656:67;:::i;:::-;13649:74;;13732:93;13821:3;13732:93;:::i;:::-;13850:2;13845:3;13841:12;13834:19;;13493:366;;;:::o;13865:::-;14007:3;14028:67;14092:2;14087:3;14028:67;:::i;:::-;14021:74;;14104:93;14193:3;14104:93;:::i;:::-;14222:2;14217:3;14213:12;14206:19;;13865:366;;;:::o;14237:::-;14379:3;14400:67;14464:2;14459:3;14400:67;:::i;:::-;14393:74;;14476:93;14565:3;14476:93;:::i;:::-;14594:2;14589:3;14585:12;14578:19;;14237:366;;;:::o;14609:::-;14751:3;14772:67;14836:2;14831:3;14772:67;:::i;:::-;14765:74;;14848:93;14937:3;14848:93;:::i;:::-;14966:2;14961:3;14957:12;14950:19;;14609:366;;;:::o;14981:::-;15123:3;15144:67;15208:2;15203:3;15144:67;:::i;:::-;15137:74;;15220:93;15309:3;15220:93;:::i;:::-;15338:2;15333:3;15329:12;15322:19;;14981:366;;;:::o;15353:::-;15495:3;15516:67;15580:2;15575:3;15516:67;:::i;:::-;15509:74;;15592:93;15681:3;15592:93;:::i;:::-;15710:2;15705:3;15701:12;15694:19;;15353:366;;;:::o;15725:::-;15867:3;15888:67;15952:2;15947:3;15888:67;:::i;:::-;15881:74;;15964:93;16053:3;15964:93;:::i;:::-;16082:2;16077:3;16073:12;16066:19;;15725:366;;;:::o;16097:398::-;16256:3;16277:83;16358:1;16353:3;16277:83;:::i;:::-;16270:90;;16369:93;16458:3;16369:93;:::i;:::-;16487:1;16482:3;16478:11;16471:18;;16097:398;;;:::o;16501:366::-;16643:3;16664:67;16728:2;16723:3;16664:67;:::i;:::-;16657:74;;16740:93;16829:3;16740:93;:::i;:::-;16858:2;16853:3;16849:12;16842:19;;16501:366;;;:::o;16873:::-;17015:3;17036:67;17100:2;17095:3;17036:67;:::i;:::-;17029:74;;17112:93;17201:3;17112:93;:::i;:::-;17230:2;17225:3;17221:12;17214:19;;16873:366;;;:::o;17245:::-;17387:3;17408:67;17472:2;17467:3;17408:67;:::i;:::-;17401:74;;17484:93;17573:3;17484:93;:::i;:::-;17602:2;17597:3;17593:12;17586:19;;17245:366;;;:::o;17617:::-;17759:3;17780:67;17844:2;17839:3;17780:67;:::i;:::-;17773:74;;17856:93;17945:3;17856:93;:::i;:::-;17974:2;17969:3;17965:12;17958:19;;17617:366;;;:::o;17989:118::-;18076:24;18094:5;18076:24;:::i;:::-;18071:3;18064:37;17989:118;;:::o;18113:115::-;18198:23;18215:5;18198:23;:::i;:::-;18193:3;18186:36;18113:115;;:::o;18234:::-;18319:23;18336:5;18319:23;:::i;:::-;18314:3;18307:36;18234:115;;:::o;18355:435::-;18535:3;18557:95;18648:3;18639:6;18557:95;:::i;:::-;18550:102;;18669:95;18760:3;18751:6;18669:95;:::i;:::-;18662:102;;18781:3;18774:10;;18355:435;;;;;:::o;18796:379::-;18980:3;19002:147;19145:3;19002:147;:::i;:::-;18995:154;;19166:3;19159:10;;18796:379;;;:::o;19181:222::-;19274:4;19312:2;19301:9;19297:18;19289:26;;19325:71;19393:1;19382:9;19378:17;19369:6;19325:71;:::i;:::-;19181:222;;;;:::o;19409:640::-;19604:4;19642:3;19631:9;19627:19;19619:27;;19656:71;19724:1;19713:9;19709:17;19700:6;19656:71;:::i;:::-;19737:72;19805:2;19794:9;19790:18;19781:6;19737:72;:::i;:::-;19819;19887:2;19876:9;19872:18;19863:6;19819:72;:::i;:::-;19938:9;19932:4;19928:20;19923:2;19912:9;19908:18;19901:48;19966:76;20037:4;20028:6;19966:76;:::i;:::-;19958:84;;19409:640;;;;;;;:::o;20055:210::-;20142:4;20180:2;20169:9;20165:18;20157:26;;20193:65;20255:1;20244:9;20240:17;20231:6;20193:65;:::i;:::-;20055:210;;;;:::o;20271:313::-;20384:4;20422:2;20411:9;20407:18;20399:26;;20471:9;20465:4;20461:20;20457:1;20446:9;20442:17;20435:47;20499:78;20572:4;20563:6;20499:78;:::i;:::-;20491:86;;20271:313;;;;:::o;20590:419::-;20756:4;20794:2;20783:9;20779:18;20771:26;;20843:9;20837:4;20833:20;20829:1;20818:9;20814:17;20807:47;20871:131;20997:4;20871:131;:::i;:::-;20863:139;;20590:419;;;:::o;21015:::-;21181:4;21219:2;21208:9;21204:18;21196:26;;21268:9;21262:4;21258:20;21254:1;21243:9;21239:17;21232:47;21296:131;21422:4;21296:131;:::i;:::-;21288:139;;21015:419;;;:::o;21440:::-;21606:4;21644:2;21633:9;21629:18;21621:26;;21693:9;21687:4;21683:20;21679:1;21668:9;21664:17;21657:47;21721:131;21847:4;21721:131;:::i;:::-;21713:139;;21440:419;;;:::o;21865:::-;22031:4;22069:2;22058:9;22054:18;22046:26;;22118:9;22112:4;22108:20;22104:1;22093:9;22089:17;22082:47;22146:131;22272:4;22146:131;:::i;:::-;22138:139;;21865:419;;;:::o;22290:::-;22456:4;22494:2;22483:9;22479:18;22471:26;;22543:9;22537:4;22533:20;22529:1;22518:9;22514:17;22507:47;22571:131;22697:4;22571:131;:::i;:::-;22563:139;;22290:419;;;:::o;22715:::-;22881:4;22919:2;22908:9;22904:18;22896:26;;22968:9;22962:4;22958:20;22954:1;22943:9;22939:17;22932:47;22996:131;23122:4;22996:131;:::i;:::-;22988:139;;22715:419;;;:::o;23140:::-;23306:4;23344:2;23333:9;23329:18;23321:26;;23393:9;23387:4;23383:20;23379:1;23368:9;23364:17;23357:47;23421:131;23547:4;23421:131;:::i;:::-;23413:139;;23140:419;;;:::o;23565:::-;23731:4;23769:2;23758:9;23754:18;23746:26;;23818:9;23812:4;23808:20;23804:1;23793:9;23789:17;23782:47;23846:131;23972:4;23846:131;:::i;:::-;23838:139;;23565:419;;;:::o;23990:::-;24156:4;24194:2;24183:9;24179:18;24171:26;;24243:9;24237:4;24233:20;24229:1;24218:9;24214:17;24207:47;24271:131;24397:4;24271:131;:::i;:::-;24263:139;;23990:419;;;:::o;24415:::-;24581:4;24619:2;24608:9;24604:18;24596:26;;24668:9;24662:4;24658:20;24654:1;24643:9;24639:17;24632:47;24696:131;24822:4;24696:131;:::i;:::-;24688:139;;24415:419;;;:::o;24840:::-;25006:4;25044:2;25033:9;25029:18;25021:26;;25093:9;25087:4;25083:20;25079:1;25068:9;25064:17;25057:47;25121:131;25247:4;25121:131;:::i;:::-;25113:139;;24840:419;;;:::o;25265:::-;25431:4;25469:2;25458:9;25454:18;25446:26;;25518:9;25512:4;25508:20;25504:1;25493:9;25489:17;25482:47;25546:131;25672:4;25546:131;:::i;:::-;25538:139;;25265:419;;;:::o;25690:::-;25856:4;25894:2;25883:9;25879:18;25871:26;;25943:9;25937:4;25933:20;25929:1;25918:9;25914:17;25907:47;25971:131;26097:4;25971:131;:::i;:::-;25963:139;;25690:419;;;:::o;26115:222::-;26208:4;26246:2;26235:9;26231:18;26223:26;;26259:71;26327:1;26316:9;26312:17;26303:6;26259:71;:::i;:::-;26115:222;;;;:::o;26343:537::-;26512:4;26550:3;26539:9;26535:19;26527:27;;26564:69;26630:1;26619:9;26615:17;26606:6;26564:69;:::i;:::-;26643:70;26709:2;26698:9;26694:18;26685:6;26643:70;:::i;:::-;26723;26789:2;26778:9;26774:18;26765:6;26723:70;:::i;:::-;26803;26869:2;26858:9;26854:18;26845:6;26803:70;:::i;:::-;26343:537;;;;;;;:::o;26886:129::-;26920:6;26947:20;;:::i;:::-;26937:30;;26976:33;27004:4;26996:6;26976:33;:::i;:::-;26886:129;;;:::o;27021:75::-;27054:6;27087:2;27081:9;27071:19;;27021:75;:::o;27102:311::-;27179:4;27269:18;27261:6;27258:30;27255:56;;;27291:18;;:::i;:::-;27255:56;27341:4;27333:6;27329:17;27321:25;;27401:4;27395;27391:15;27383:23;;27102:311;;;:::o;27419:::-;27496:4;27586:18;27578:6;27575:30;27572:56;;;27608:18;;:::i;:::-;27572:56;27658:4;27650:6;27646:17;27638:25;;27718:4;27712;27708:15;27700:23;;27419:311;;;:::o;27736:307::-;27797:4;27887:18;27879:6;27876:30;27873:56;;;27909:18;;:::i;:::-;27873:56;27947:29;27969:6;27947:29;:::i;:::-;27939:37;;28031:4;28025;28021:15;28013:23;;27736:307;;;:::o;28049:98::-;28100:6;28134:5;28128:12;28118:22;;28049:98;;;:::o;28153:99::-;28205:6;28239:5;28233:12;28223:22;;28153:99;;;:::o;28258:168::-;28341:11;28375:6;28370:3;28363:19;28415:4;28410:3;28406:14;28391:29;;28258:168;;;;:::o;28432:147::-;28533:11;28570:3;28555:18;;28432:147;;;;:::o;28585:169::-;28669:11;28703:6;28698:3;28691:19;28743:4;28738:3;28734:14;28719:29;;28585:169;;;;:::o;28760:148::-;28862:11;28899:3;28884:18;;28760:148;;;;:::o;28914:305::-;28954:3;28973:20;28991:1;28973:20;:::i;:::-;28968:25;;29007:20;29025:1;29007:20;:::i;:::-;29002:25;;29161:1;29093:66;29089:74;29086:1;29083:81;29080:107;;;29167:18;;:::i;:::-;29080:107;29211:1;29208;29204:9;29197:16;;28914:305;;;;:::o;29225:348::-;29265:7;29288:20;29306:1;29288:20;:::i;:::-;29283:25;;29322:20;29340:1;29322:20;:::i;:::-;29317:25;;29510:1;29442:66;29438:74;29435:1;29432:81;29427:1;29420:9;29413:17;29409:105;29406:131;;;29517:18;;:::i;:::-;29406:131;29565:1;29562;29558:9;29547:20;;29225:348;;;;:::o;29579:191::-;29619:4;29639:20;29657:1;29639:20;:::i;:::-;29634:25;;29673:20;29691:1;29673:20;:::i;:::-;29668:25;;29712:1;29709;29706:8;29703:34;;;29717:18;;:::i;:::-;29703:34;29762:1;29759;29755:9;29747:17;;29579:191;;;;:::o;29776:96::-;29813:7;29842:24;29860:5;29842:24;:::i;:::-;29831:35;;29776:96;;;:::o;29878:90::-;29912:7;29955:5;29948:13;29941:21;29930:32;;29878:90;;;:::o;29974:149::-;30010:7;30050:66;30043:5;30039:78;30028:89;;29974:149;;;:::o;30129:126::-;30166:7;30206:42;30199:5;30195:54;30184:65;;30129:126;;;:::o;30261:77::-;30298:7;30327:5;30316:16;;30261:77;;;:::o;30344:93::-;30380:7;30420:10;30413:5;30409:22;30398:33;;30344:93;;;:::o;30443:101::-;30479:7;30519:18;30512:5;30508:30;30497:41;;30443:101;;;:::o;30550:154::-;30634:6;30629:3;30624;30611:30;30696:1;30687:6;30682:3;30678:16;30671:27;30550:154;;;:::o;30710:307::-;30778:1;30788:113;30802:6;30799:1;30796:13;30788:113;;;30887:1;30882:3;30878:11;30872:18;30868:1;30863:3;30859:11;30852:39;30824:2;30821:1;30817:10;30812:15;;30788:113;;;30919:6;30916:1;30913:13;30910:101;;;30999:1;30990:6;30985:3;30981:16;30974:27;30910:101;30759:258;30710:307;;;:::o;31023:320::-;31067:6;31104:1;31098:4;31094:12;31084:22;;31151:1;31145:4;31141:12;31172:18;31162:81;;31228:4;31220:6;31216:17;31206:27;;31162:81;31290:2;31282:6;31279:14;31259:18;31256:38;31253:84;;;31309:18;;:::i;:::-;31253:84;31074:269;31023:320;;;:::o;31349:281::-;31432:27;31454:4;31432:27;:::i;:::-;31424:6;31420:40;31562:6;31550:10;31547:22;31526:18;31514:10;31511:34;31508:62;31505:88;;;31573:18;;:::i;:::-;31505:88;31613:10;31609:2;31602:22;31392:238;31349:281;;:::o;31636:233::-;31675:3;31698:24;31716:5;31698:24;:::i;:::-;31689:33;;31744:66;31737:5;31734:77;31731:103;;;31814:18;;:::i;:::-;31731:103;31861:1;31854:5;31850:13;31843:20;;31636:233;;;:::o;31875:180::-;31923:77;31920:1;31913:88;32020:4;32017:1;32010:15;32044:4;32041:1;32034:15;32061:180;32109:77;32106:1;32099:88;32206:4;32203:1;32196:15;32230:4;32227:1;32220:15;32247:180;32295:77;32292:1;32285:88;32392:4;32389:1;32382:15;32416:4;32413:1;32406:15;32433:180;32481:77;32478:1;32471:88;32578:4;32575:1;32568:15;32602:4;32599:1;32592:15;32619:117;32728:1;32725;32718:12;32742:117;32851:1;32848;32841:12;32865:117;32974:1;32971;32964:12;32988:117;33097:1;33094;33087:12;33111:117;33220:1;33217;33210:12;33234:117;33343:1;33340;33333:12;33357:102;33398:6;33449:2;33445:7;33440:2;33433:5;33429:14;33425:28;33415:38;;33357:102;;;:::o;33465:224::-;33605:34;33601:1;33593:6;33589:14;33582:58;33674:7;33669:2;33661:6;33657:15;33650:32;33465:224;:::o;33695:225::-;33835:34;33831:1;33823:6;33819:14;33812:58;33904:8;33899:2;33891:6;33887:15;33880:33;33695:225;:::o;33926:178::-;34066:30;34062:1;34054:6;34050:14;34043:54;33926:178;:::o;34110:181::-;34250:33;34246:1;34238:6;34234:14;34227:57;34110:181;:::o;34297:166::-;34437:18;34433:1;34425:6;34421:14;34414:42;34297:166;:::o;34469:168::-;34609:20;34605:1;34597:6;34593:14;34586:44;34469:168;:::o;34643:181::-;34783:33;34779:1;34771:6;34767:14;34760:57;34643:181;:::o;34830:182::-;34970:34;34966:1;34958:6;34954:14;34947:58;34830:182;:::o;35018:179::-;35158:31;35154:1;35146:6;35142:14;35135:55;35018:179;:::o;35203:114::-;;:::o;35323:172::-;35463:24;35459:1;35451:6;35447:14;35440:48;35323:172;:::o;35501:::-;35641:24;35637:1;35629:6;35625:14;35618:48;35501:172;:::o;35679:181::-;35819:33;35815:1;35807:6;35803:14;35796:57;35679:181;:::o;35866:227::-;36006:34;36002:1;35994:6;35990:14;35983:58;36075:10;36070:2;36062:6;36058:15;36051:35;35866:227;:::o;36099:122::-;36172:24;36190:5;36172:24;:::i;:::-;36165:5;36162:35;36152:63;;36211:1;36208;36201:12;36152:63;36099:122;:::o;36227:116::-;36297:21;36312:5;36297:21;:::i;:::-;36290:5;36287:32;36277:60;;36333:1;36330;36323:12;36277:60;36227:116;:::o;36349:120::-;36421:23;36438:5;36421:23;:::i;:::-;36414:5;36411:34;36401:62;;36459:1;36456;36449:12;36401:62;36349:120;:::o;36475:122::-;36548:24;36566:5;36548:24;:::i;:::-;36541:5;36538:35;36528:63;;36587:1;36584;36577:12;36528:63;36475:122;:::o;36603:120::-;36675:23;36692:5;36675:23;:::i;:::-;36668:5;36665:34;36655:62;;36713:1;36710;36703:12;36655:62;36603:120;:::o;36729:::-;36801:23;36818:5;36801:23;:::i;:::-;36794:5;36791:34;36781:62;;36839:1;36836;36829:12;36781:62;36729:120;:::o

Swarm Source

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