ETH Price: $3,408.34 (-1.81%)
Gas: 18 Gwei

Token

UnderTheWickedMoon (UNDERTHEWICKEDMOON)
 

Overview

Max Total Supply

1,324 UNDERTHEWICKEDMOON

Holders

452

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
memoblastingman.eth
Balance
2 UNDERTHEWICKEDMOON
0x32130a7128E5E59430b26CFF4dE82EBB45B43852
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:
UnderTheWickedMoon

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-06-12
*/

// SPDX-License-Identifier: MIT
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/[email protected]


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



/**
 * @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/utils/[email protected]


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



/**
 * @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/[email protected]


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



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


abstract contract TWC {
    function ownerOf(uint256 tokenId) public view virtual returns (address);
}

abstract contract TWS {
    function ownerOf(uint256 tokenId) public view virtual returns (address);
}


contract UnderTheWickedMoon is ERC721A("UnderTheWickedMoon", "UNDERTHEWICKEDMOON"), Ownable {

    TWC private twc = TWC(0x85f740958906b317de6ed79663012859067E745B);
    TWS private tws = TWS(0x45d8f7Db9b437efbc74BA6a945A81AaF62dcedA7);

    mapping (uint => bool) public craniumsRedeemed;
    mapping (uint => bool) public stallionsRedeemed;

    bool public isActive = true;

    string public baseURL;

    function devMint() external onlyOwner {
        _safeMint(owner(), 2);
    }

    function flipActive() public onlyOwner {
        isActive = !isActive;
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURL = uri;
    }

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

    function checkTokens(uint256 craniumID, uint256 stallionID) external view returns (bool craniumClaimed, bool stallionClaimed) {
      return (craniumsRedeemed[craniumID], stallionsRedeemed[stallionID]);
    }

    function claim(uint256 craniumTokenId, uint256 stallionTokenId) public {
        require(isActive, "contract should be active");

        address craniumOwner = twc.ownerOf(craniumTokenId);
        address stallionOwner = tws.ownerOf(stallionTokenId);

        require(craniumOwner == msg.sender && stallionOwner == msg.sender, "Must hold Cranium & Stallion in wallet");
        require(!craniumsRedeemed[craniumTokenId] && !stallionsRedeemed[stallionTokenId], "Must provide unredeemed tokenIds");
   
        craniumsRedeemed[craniumTokenId] = true;
        stallionsRedeemed[stallionTokenId] = true;
        _safeMint(msg.sender, 2);
    }
}

Contract Security Audit

Contract ABI

[{"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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"craniumID","type":"uint256"},{"internalType":"uint256","name":"stallionID","type":"uint256"}],"name":"checkTokens","outputs":[{"internalType":"bool","name":"craniumClaimed","type":"bool"},{"internalType":"bool","name":"stallionClaimed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"craniumTokenId","type":"uint256"},{"internalType":"uint256","name":"stallionTokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"craniumsRedeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stallionsRedeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040527385f740958906b317de6ed79663012859067e745b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507345d8f7db9b437efbc74ba6a945a81aaf62dceda7600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600d60006101000a81548160ff021916908315150217905550348015620000d657600080fd5b506040518060400160405280601281526020017f556e6465725468655769636b65644d6f6f6e00000000000000000000000000008152506040518060400160405280601281526020017f554e4445525448455749434b45444d4f4f4e000000000000000000000000000081525081600290805190602001906200015b92919062000286565b5080600390805190602001906200017492919062000286565b5062000185620001b360201b60201c565b6000819055505050620001ad620001a1620001b860201b60201c565b620001c060201b60201c565b6200039b565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002949062000336565b90600052602060002090601f016020900481019282620002b8576000855562000304565b82601f10620002d357805160ff191683800117855562000304565b8280016001018555821562000304579182015b8281111562000303578251825591602001919060010190620002e6565b5b50905062000313919062000317565b5090565b5b808211156200033257600081600090555060010162000318565b5090565b600060028204905060018216806200034f57607f821691505b602082108114156200036657620003656200036c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612c1c80620003ab6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd14610449578063e985e9c514610479578063f2fde38b146104a9578063f775630b146104c55761018e565b8063a22cb465146103f5578063b88d4fde14610411578063c34902631461042d5761018e565b80636352211e1461034557806370a0823114610375578063715018a6146103a55780637c69e207146103af5780638da5cb5b146103b957806395d89b41146103d75761018e565b806322f3e2d41161014b57806340c84b0e1161012557806340c84b0e146102e557806342842e0e1461030357806352d939e31461031f57806355f804b3146103295761018e565b806322f3e2d41461027b57806323b872dd146102995780632cf645ea146102b55761018e565b806301ffc9a71461019357806306fdde03146101c3578063081812fc146101e1578063095ea7b3146102115780630bf2e8111461022d57806318160ddd1461025d575b600080fd5b6101ad60048036038101906101a891906123d0565b6104f6565b6040516101ba91906126ea565b60405180910390f35b6101cb610588565b6040516101d8919061272e565b60405180910390f35b6101fb60048036038101906101f69190612473565b61061a565b6040516102089190612683565b60405180910390f35b61022b60048036038101906102269190612390565b610696565b005b61024760048036038101906102429190612473565b61083d565b60405161025491906126ea565b60405180910390f35b61026561085d565b60405161027291906127f0565b60405180910390f35b610283610874565b60405161029091906126ea565b60405180910390f35b6102b360048036038101906102ae919061227a565b610887565b005b6102cf60048036038101906102ca9190612473565b610897565b6040516102dc91906126ea565b60405180910390f35b6102ed6108b7565b6040516102fa919061272e565b60405180910390f35b61031d6004803603810190610318919061227a565b610945565b005b610327610965565b005b610343600480360381019061033e919061242a565b610a0d565b005b61035f600480360381019061035a9190612473565b610aa3565b60405161036c9190612683565b60405180910390f35b61038f600480360381019061038a91906121e0565b610ab5565b60405161039c91906127f0565b60405180910390f35b6103ad610b6e565b005b6103b7610bf6565b005b6103c1610c86565b6040516103ce9190612683565b60405180910390f35b6103df610cb0565b6040516103ec919061272e565b60405180910390f35b61040f600480360381019061040a9190612350565b610d42565b005b61042b600480360381019061042691906122cd565b610eba565b005b610447600480360381019061044291906124a0565b610f2d565b005b610463600480360381019061045e9190612473565b611273565b604051610470919061272e565b60405180910390f35b610493600480360381019061048e919061223a565b611312565b6040516104a091906126ea565b60405180910390f35b6104c360048036038101906104be91906121e0565b6113a6565b005b6104df60048036038101906104da91906124a0565b61149e565b6040516104ed929190612705565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105815750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105979061298b565b80601f01602080910402602001604051908101604052809291908181526020018280546105c39061298b565b80156106105780601f106105e557610100808354040283529160200191610610565b820191906000526020600020905b8154815290600101906020018083116105f357829003601f168201915b5050505050905090565b6000610625826114ee565b61065b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a18261154d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610709576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072861161b565b73ffffffffffffffffffffffffffffffffffffffff161461078b576107548161074f61161b565b611312565b61078a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000610867611623565b6001546000540303905090565b600d60009054906101000a900460ff1681565b610892838383611628565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b600e80546108c49061298b565b80601f01602080910402602001604051908101604052809291908181526020018280546108f09061298b565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b505050505081565b61096083838360405180602001604052806000815250610eba565b505050565b61096d6119d2565b73ffffffffffffffffffffffffffffffffffffffff1661098b610c86565b73ffffffffffffffffffffffffffffffffffffffff16146109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d8906127d0565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610a156119d2565b73ffffffffffffffffffffffffffffffffffffffff16610a33610c86565b73ffffffffffffffffffffffffffffffffffffffff1614610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a80906127d0565b60405180910390fd5b80600e9080519060200190610a9f929190611fdf565b5050565b6000610aae8261154d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b766119d2565b73ffffffffffffffffffffffffffffffffffffffff16610b94610c86565b73ffffffffffffffffffffffffffffffffffffffff1614610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be1906127d0565b60405180910390fd5b610bf460006119da565b565b610bfe6119d2565b73ffffffffffffffffffffffffffffffffffffffff16610c1c610c86565b73ffffffffffffffffffffffffffffffffffffffff1614610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c69906127d0565b60405180910390fd5b610c84610c7d610c86565b6002611aa0565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cbf9061298b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ceb9061298b565b8015610d385780601f10610d0d57610100808354040283529160200191610d38565b820191906000526020600020905b815481529060010190602001808311610d1b57829003601f168201915b5050505050905090565b610d4a61161b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610daf576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610dbc61161b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e6961161b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610eae91906126ea565b60405180910390a35050565b610ec5848484611628565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610f2757610ef084848484611abe565b610f26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d60009054906101000a900460ff16610f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7390612750565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610fd991906127f0565b60206040518083038186803b158015610ff157600080fd5b505afa158015611005573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611029919061220d565b90506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b815260040161108891906127f0565b60206040518083038186803b1580156110a057600080fd5b505afa1580156110b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110d8919061220d565b90503373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801561114057503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b61117f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117690612770565b60405180910390fd5b600b600085815260200190815260200160002060009054906101000a900460ff161580156111cb5750600c600084815260200190815260200160002060009054906101000a900460ff16155b61120a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611201906127b0565b60405180910390fd5b6001600b600086815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c600085815260200190815260200160002060006101000a81548160ff02191690831515021790555061126d336002611aa0565b50505050565b606061127e826114ee565b6112b4576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112be611c1e565b90506000815114156112df576040518060200160405280600081525061130a565b806112e984611cb0565b6040516020016112fa92919061265f565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113ae6119d2565b73ffffffffffffffffffffffffffffffffffffffff166113cc610c86565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611419906127d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148990612790565b60405180910390fd5b61149b816119da565b50565b600080600b600085815260200190815260200160002060009054906101000a900460ff16600c600085815260200190815260200160002060009054906101000a900460ff16915091509250929050565b6000816114f9611623565b11158015611508575060005482105b8015611546575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061155c611623565b116115e4576000548110156115e35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156115e1575b60008114156115d75760046000836001900393508381526020019081526020016000205490506115ac565b8092505050611616565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006116338261154d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461169a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166116bb61161b565b73ffffffffffffffffffffffffffffffffffffffff1614806116ea57506116e9856116e461161b565b611312565b5b8061172f57506116f861161b565b73ffffffffffffffffffffffffffffffffffffffff166117178461061a565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611768576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117cf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117dc8585856001611d0a565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6118d986611d10565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611963576000600184019050600060046000838152602001908152602001600020541415611961576000548114611960578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119cb8585856001611d1a565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611aba828260405180602001604052806000815250611d20565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ae461161b565b8786866040518563ffffffff1660e01b8152600401611b06949392919061269e565b602060405180830381600087803b158015611b2057600080fd5b505af1925050508015611b5157506040513d601f19601f82011682018060405250810190611b4e91906123fd565b60015b611bcb573d8060008114611b81576040519150601f19603f3d011682016040523d82523d6000602084013e611b86565b606091505b50600081511415611bc3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611c2d9061298b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c599061298b565b8015611ca65780601f10611c7b57610100808354040283529160200191611ca6565b820191906000526020600020905b815481529060010190602001808311611c8957829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611cf657600183039250600a81066030018353600a81049050611cd6565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d8d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611dc8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd56000858386611d0a565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611e3a60018514611fd5565b901b60a042901b611e4a86611d10565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611f4e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611efe6000878480600101955087611abe565b611f34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611e8f578260005414611f4957600080fd5b611fb9565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f4f575b816000819055505050611fcf6000858386611d1a565b50505050565b6000819050919050565b828054611feb9061298b565b90600052602060002090601f01602090048101928261200d5760008555612054565b82601f1061202657805160ff1916838001178555612054565b82800160010185558215612054579182015b82811115612053578251825591602001919060010190612038565b5b5090506120619190612065565b5090565b5b8082111561207e576000816000905550600101612066565b5090565b600061209561209084612830565b61280b565b9050828152602081018484840111156120b1576120b0612a51565b5b6120bc848285612949565b509392505050565b60006120d76120d284612861565b61280b565b9050828152602081018484840111156120f3576120f2612a51565b5b6120fe848285612949565b509392505050565b60008135905061211581612b8a565b92915050565b60008151905061212a81612b8a565b92915050565b60008135905061213f81612ba1565b92915050565b60008135905061215481612bb8565b92915050565b60008151905061216981612bb8565b92915050565b600082601f83011261218457612183612a4c565b5b8135612194848260208601612082565b91505092915050565b600082601f8301126121b2576121b1612a4c565b5b81356121c28482602086016120c4565b91505092915050565b6000813590506121da81612bcf565b92915050565b6000602082840312156121f6576121f5612a5b565b5b600061220484828501612106565b91505092915050565b60006020828403121561222357612222612a5b565b5b60006122318482850161211b565b91505092915050565b6000806040838503121561225157612250612a5b565b5b600061225f85828601612106565b925050602061227085828601612106565b9150509250929050565b60008060006060848603121561229357612292612a5b565b5b60006122a186828701612106565b93505060206122b286828701612106565b92505060406122c3868287016121cb565b9150509250925092565b600080600080608085870312156122e7576122e6612a5b565b5b60006122f587828801612106565b945050602061230687828801612106565b9350506040612317878288016121cb565b925050606085013567ffffffffffffffff81111561233857612337612a56565b5b6123448782880161216f565b91505092959194509250565b6000806040838503121561236757612366612a5b565b5b600061237585828601612106565b925050602061238685828601612130565b9150509250929050565b600080604083850312156123a7576123a6612a5b565b5b60006123b585828601612106565b92505060206123c6858286016121cb565b9150509250929050565b6000602082840312156123e6576123e5612a5b565b5b60006123f484828501612145565b91505092915050565b60006020828403121561241357612412612a5b565b5b60006124218482850161215a565b91505092915050565b6000602082840312156124405761243f612a5b565b5b600082013567ffffffffffffffff81111561245e5761245d612a56565b5b61246a8482850161219d565b91505092915050565b60006020828403121561248957612488612a5b565b5b6000612497848285016121cb565b91505092915050565b600080604083850312156124b7576124b6612a5b565b5b60006124c5858286016121cb565b92505060206124d6858286016121cb565b9150509250929050565b6124e9816128d5565b82525050565b6124f8816128e7565b82525050565b600061250982612892565b61251381856128a8565b9350612523818560208601612958565b61252c81612a60565b840191505092915050565b60006125428261289d565b61254c81856128b9565b935061255c818560208601612958565b61256581612a60565b840191505092915050565b600061257b8261289d565b61258581856128ca565b9350612595818560208601612958565b80840191505092915050565b60006125ae6019836128b9565b91506125b982612a71565b602082019050919050565b60006125d16026836128b9565b91506125dc82612a9a565b604082019050919050565b60006125f46026836128b9565b91506125ff82612ae9565b604082019050919050565b60006126176020836128b9565b915061262282612b38565b602082019050919050565b600061263a6020836128b9565b915061264582612b61565b602082019050919050565b6126598161293f565b82525050565b600061266b8285612570565b91506126778284612570565b91508190509392505050565b600060208201905061269860008301846124e0565b92915050565b60006080820190506126b360008301876124e0565b6126c060208301866124e0565b6126cd6040830185612650565b81810360608301526126df81846124fe565b905095945050505050565b60006020820190506126ff60008301846124ef565b92915050565b600060408201905061271a60008301856124ef565b61272760208301846124ef565b9392505050565b600060208201905081810360008301526127488184612537565b905092915050565b60006020820190508181036000830152612769816125a1565b9050919050565b60006020820190508181036000830152612789816125c4565b9050919050565b600060208201905081810360008301526127a9816125e7565b9050919050565b600060208201905081810360008301526127c98161260a565b9050919050565b600060208201905081810360008301526127e98161262d565b9050919050565b60006020820190506128056000830184612650565b92915050565b6000612815612826565b905061282182826129bd565b919050565b6000604051905090565b600067ffffffffffffffff82111561284b5761284a612a1d565b5b61285482612a60565b9050602081019050919050565b600067ffffffffffffffff82111561287c5761287b612a1d565b5b61288582612a60565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006128e08261291f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561297657808201518184015260208101905061295b565b83811115612985576000848401525b50505050565b600060028204905060018216806129a357607f821691505b602082108114156129b7576129b66129ee565b5b50919050565b6129c682612a60565b810181811067ffffffffffffffff821117156129e5576129e4612a1d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f636f6e74726163742073686f756c642062652061637469766500000000000000600082015250565b7f4d75737420686f6c64204372616e69756d2026205374616c6c696f6e20696e2060008201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d7573742070726f7669646520756e72656465656d656420746f6b656e496473600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612b93816128d5565b8114612b9e57600080fd5b50565b612baa816128e7565b8114612bb557600080fd5b50565b612bc1816128f3565b8114612bcc57600080fd5b50565b612bd88161293f565b8114612be357600080fd5b5056fea2646970667358221220e174659587199ffeccca240b333fd10d24d88c4242ab30112a0e1189804bb74a64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063a22cb46511610097578063c87b56dd11610071578063c87b56dd14610449578063e985e9c514610479578063f2fde38b146104a9578063f775630b146104c55761018e565b8063a22cb465146103f5578063b88d4fde14610411578063c34902631461042d5761018e565b80636352211e1461034557806370a0823114610375578063715018a6146103a55780637c69e207146103af5780638da5cb5b146103b957806395d89b41146103d75761018e565b806322f3e2d41161014b57806340c84b0e1161012557806340c84b0e146102e557806342842e0e1461030357806352d939e31461031f57806355f804b3146103295761018e565b806322f3e2d41461027b57806323b872dd146102995780632cf645ea146102b55761018e565b806301ffc9a71461019357806306fdde03146101c3578063081812fc146101e1578063095ea7b3146102115780630bf2e8111461022d57806318160ddd1461025d575b600080fd5b6101ad60048036038101906101a891906123d0565b6104f6565b6040516101ba91906126ea565b60405180910390f35b6101cb610588565b6040516101d8919061272e565b60405180910390f35b6101fb60048036038101906101f69190612473565b61061a565b6040516102089190612683565b60405180910390f35b61022b60048036038101906102269190612390565b610696565b005b61024760048036038101906102429190612473565b61083d565b60405161025491906126ea565b60405180910390f35b61026561085d565b60405161027291906127f0565b60405180910390f35b610283610874565b60405161029091906126ea565b60405180910390f35b6102b360048036038101906102ae919061227a565b610887565b005b6102cf60048036038101906102ca9190612473565b610897565b6040516102dc91906126ea565b60405180910390f35b6102ed6108b7565b6040516102fa919061272e565b60405180910390f35b61031d6004803603810190610318919061227a565b610945565b005b610327610965565b005b610343600480360381019061033e919061242a565b610a0d565b005b61035f600480360381019061035a9190612473565b610aa3565b60405161036c9190612683565b60405180910390f35b61038f600480360381019061038a91906121e0565b610ab5565b60405161039c91906127f0565b60405180910390f35b6103ad610b6e565b005b6103b7610bf6565b005b6103c1610c86565b6040516103ce9190612683565b60405180910390f35b6103df610cb0565b6040516103ec919061272e565b60405180910390f35b61040f600480360381019061040a9190612350565b610d42565b005b61042b600480360381019061042691906122cd565b610eba565b005b610447600480360381019061044291906124a0565b610f2d565b005b610463600480360381019061045e9190612473565b611273565b604051610470919061272e565b60405180910390f35b610493600480360381019061048e919061223a565b611312565b6040516104a091906126ea565b60405180910390f35b6104c360048036038101906104be91906121e0565b6113a6565b005b6104df60048036038101906104da91906124a0565b61149e565b6040516104ed929190612705565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105815750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546105979061298b565b80601f01602080910402602001604051908101604052809291908181526020018280546105c39061298b565b80156106105780601f106105e557610100808354040283529160200191610610565b820191906000526020600020905b8154815290600101906020018083116105f357829003601f168201915b5050505050905090565b6000610625826114ee565b61065b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a18261154d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610709576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072861161b565b73ffffffffffffffffffffffffffffffffffffffff161461078b576107548161074f61161b565b611312565b61078a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000610867611623565b6001546000540303905090565b600d60009054906101000a900460ff1681565b610892838383611628565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b600e80546108c49061298b565b80601f01602080910402602001604051908101604052809291908181526020018280546108f09061298b565b801561093d5780601f106109125761010080835404028352916020019161093d565b820191906000526020600020905b81548152906001019060200180831161092057829003601f168201915b505050505081565b61096083838360405180602001604052806000815250610eba565b505050565b61096d6119d2565b73ffffffffffffffffffffffffffffffffffffffff1661098b610c86565b73ffffffffffffffffffffffffffffffffffffffff16146109e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d8906127d0565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610a156119d2565b73ffffffffffffffffffffffffffffffffffffffff16610a33610c86565b73ffffffffffffffffffffffffffffffffffffffff1614610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a80906127d0565b60405180910390fd5b80600e9080519060200190610a9f929190611fdf565b5050565b6000610aae8261154d565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b766119d2565b73ffffffffffffffffffffffffffffffffffffffff16610b94610c86565b73ffffffffffffffffffffffffffffffffffffffff1614610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be1906127d0565b60405180910390fd5b610bf460006119da565b565b610bfe6119d2565b73ffffffffffffffffffffffffffffffffffffffff16610c1c610c86565b73ffffffffffffffffffffffffffffffffffffffff1614610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c69906127d0565b60405180910390fd5b610c84610c7d610c86565b6002611aa0565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610cbf9061298b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ceb9061298b565b8015610d385780601f10610d0d57610100808354040283529160200191610d38565b820191906000526020600020905b815481529060010190602001808311610d1b57829003601f168201915b5050505050905090565b610d4a61161b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610daf576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610dbc61161b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e6961161b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610eae91906126ea565b60405180910390a35050565b610ec5848484611628565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610f2757610ef084848484611abe565b610f26576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d60009054906101000a900460ff16610f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7390612750565b60405180910390fd5b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610fd991906127f0565b60206040518083038186803b158015610ff157600080fd5b505afa158015611005573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611029919061220d565b90506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b815260040161108891906127f0565b60206040518083038186803b1580156110a057600080fd5b505afa1580156110b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110d8919061220d565b90503373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801561114057503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b61117f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117690612770565b60405180910390fd5b600b600085815260200190815260200160002060009054906101000a900460ff161580156111cb5750600c600084815260200190815260200160002060009054906101000a900460ff16155b61120a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611201906127b0565b60405180910390fd5b6001600b600086815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c600085815260200190815260200160002060006101000a81548160ff02191690831515021790555061126d336002611aa0565b50505050565b606061127e826114ee565b6112b4576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112be611c1e565b90506000815114156112df576040518060200160405280600081525061130a565b806112e984611cb0565b6040516020016112fa92919061265f565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113ae6119d2565b73ffffffffffffffffffffffffffffffffffffffff166113cc610c86565b73ffffffffffffffffffffffffffffffffffffffff1614611422576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611419906127d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148990612790565b60405180910390fd5b61149b816119da565b50565b600080600b600085815260200190815260200160002060009054906101000a900460ff16600c600085815260200190815260200160002060009054906101000a900460ff16915091509250929050565b6000816114f9611623565b11158015611508575060005482105b8015611546575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061155c611623565b116115e4576000548110156115e35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156115e1575b60008114156115d75760046000836001900393508381526020019081526020016000205490506115ac565b8092505050611616565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006116338261154d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461169a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166116bb61161b565b73ffffffffffffffffffffffffffffffffffffffff1614806116ea57506116e9856116e461161b565b611312565b5b8061172f57506116f861161b565b73ffffffffffffffffffffffffffffffffffffffff166117178461061a565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611768576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117cf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117dc8585856001611d0a565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6118d986611d10565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611963576000600184019050600060046000838152602001908152602001600020541415611961576000548114611960578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119cb8585856001611d1a565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611aba828260405180602001604052806000815250611d20565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ae461161b565b8786866040518563ffffffff1660e01b8152600401611b06949392919061269e565b602060405180830381600087803b158015611b2057600080fd5b505af1925050508015611b5157506040513d601f19601f82011682018060405250810190611b4e91906123fd565b60015b611bcb573d8060008114611b81576040519150601f19603f3d011682016040523d82523d6000602084013e611b86565b606091505b50600081511415611bc3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611c2d9061298b565b80601f0160208091040260200160405190810160405280929190818152602001828054611c599061298b565b8015611ca65780601f10611c7b57610100808354040283529160200191611ca6565b820191906000526020600020905b815481529060010190602001808311611c8957829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611cf657600183039250600a81066030018353600a81049050611cd6565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d8d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611dc8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd56000858386611d0a565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611e3a60018514611fd5565b901b60a042901b611e4a86611d10565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611f4e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611efe6000878480600101955087611abe565b611f34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611e8f578260005414611f4957600080fd5b611fb9565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f4f575b816000819055505050611fcf6000858386611d1a565b50505050565b6000819050919050565b828054611feb9061298b565b90600052602060002090601f01602090048101928261200d5760008555612054565b82601f1061202657805160ff1916838001178555612054565b82800160010185558215612054579182015b82811115612053578251825591602001919060010190612038565b5b5090506120619190612065565b5090565b5b8082111561207e576000816000905550600101612066565b5090565b600061209561209084612830565b61280b565b9050828152602081018484840111156120b1576120b0612a51565b5b6120bc848285612949565b509392505050565b60006120d76120d284612861565b61280b565b9050828152602081018484840111156120f3576120f2612a51565b5b6120fe848285612949565b509392505050565b60008135905061211581612b8a565b92915050565b60008151905061212a81612b8a565b92915050565b60008135905061213f81612ba1565b92915050565b60008135905061215481612bb8565b92915050565b60008151905061216981612bb8565b92915050565b600082601f83011261218457612183612a4c565b5b8135612194848260208601612082565b91505092915050565b600082601f8301126121b2576121b1612a4c565b5b81356121c28482602086016120c4565b91505092915050565b6000813590506121da81612bcf565b92915050565b6000602082840312156121f6576121f5612a5b565b5b600061220484828501612106565b91505092915050565b60006020828403121561222357612222612a5b565b5b60006122318482850161211b565b91505092915050565b6000806040838503121561225157612250612a5b565b5b600061225f85828601612106565b925050602061227085828601612106565b9150509250929050565b60008060006060848603121561229357612292612a5b565b5b60006122a186828701612106565b93505060206122b286828701612106565b92505060406122c3868287016121cb565b9150509250925092565b600080600080608085870312156122e7576122e6612a5b565b5b60006122f587828801612106565b945050602061230687828801612106565b9350506040612317878288016121cb565b925050606085013567ffffffffffffffff81111561233857612337612a56565b5b6123448782880161216f565b91505092959194509250565b6000806040838503121561236757612366612a5b565b5b600061237585828601612106565b925050602061238685828601612130565b9150509250929050565b600080604083850312156123a7576123a6612a5b565b5b60006123b585828601612106565b92505060206123c6858286016121cb565b9150509250929050565b6000602082840312156123e6576123e5612a5b565b5b60006123f484828501612145565b91505092915050565b60006020828403121561241357612412612a5b565b5b60006124218482850161215a565b91505092915050565b6000602082840312156124405761243f612a5b565b5b600082013567ffffffffffffffff81111561245e5761245d612a56565b5b61246a8482850161219d565b91505092915050565b60006020828403121561248957612488612a5b565b5b6000612497848285016121cb565b91505092915050565b600080604083850312156124b7576124b6612a5b565b5b60006124c5858286016121cb565b92505060206124d6858286016121cb565b9150509250929050565b6124e9816128d5565b82525050565b6124f8816128e7565b82525050565b600061250982612892565b61251381856128a8565b9350612523818560208601612958565b61252c81612a60565b840191505092915050565b60006125428261289d565b61254c81856128b9565b935061255c818560208601612958565b61256581612a60565b840191505092915050565b600061257b8261289d565b61258581856128ca565b9350612595818560208601612958565b80840191505092915050565b60006125ae6019836128b9565b91506125b982612a71565b602082019050919050565b60006125d16026836128b9565b91506125dc82612a9a565b604082019050919050565b60006125f46026836128b9565b91506125ff82612ae9565b604082019050919050565b60006126176020836128b9565b915061262282612b38565b602082019050919050565b600061263a6020836128b9565b915061264582612b61565b602082019050919050565b6126598161293f565b82525050565b600061266b8285612570565b91506126778284612570565b91508190509392505050565b600060208201905061269860008301846124e0565b92915050565b60006080820190506126b360008301876124e0565b6126c060208301866124e0565b6126cd6040830185612650565b81810360608301526126df81846124fe565b905095945050505050565b60006020820190506126ff60008301846124ef565b92915050565b600060408201905061271a60008301856124ef565b61272760208301846124ef565b9392505050565b600060208201905081810360008301526127488184612537565b905092915050565b60006020820190508181036000830152612769816125a1565b9050919050565b60006020820190508181036000830152612789816125c4565b9050919050565b600060208201905081810360008301526127a9816125e7565b9050919050565b600060208201905081810360008301526127c98161260a565b9050919050565b600060208201905081810360008301526127e98161262d565b9050919050565b60006020820190506128056000830184612650565b92915050565b6000612815612826565b905061282182826129bd565b919050565b6000604051905090565b600067ffffffffffffffff82111561284b5761284a612a1d565b5b61285482612a60565b9050602081019050919050565b600067ffffffffffffffff82111561287c5761287b612a1d565b5b61288582612a60565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006128e08261291f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561297657808201518184015260208101905061295b565b83811115612985576000848401525b50505050565b600060028204905060018216806129a357607f821691505b602082108114156129b7576129b66129ee565b5b50919050565b6129c682612a60565b810181811067ffffffffffffffff821117156129e5576129e4612a1d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f636f6e74726163742073686f756c642062652061637469766500000000000000600082015250565b7f4d75737420686f6c64204372616e69756d2026205374616c6c696f6e20696e2060008201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d7573742070726f7669646520756e72656465656d656420746f6b656e496473600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612b93816128d5565b8114612b9e57600080fd5b50565b612baa816128e7565b8114612bb557600080fd5b50565b612bc1816128f3565b8114612bcc57600080fd5b50565b612bd88161293f565b8114612be357600080fd5b5056fea2646970667358221220e174659587199ffeccca240b333fd10d24d88c4242ab30112a0e1189804bb74a64736f6c63430008070033

Deployed Bytecode Sourcemap

41865:1672:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12986:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17999:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20067:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19527:474;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42112:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12040:315;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42221:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20953:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42165:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42257:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21194:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42373:78;;;:::i;:::-;;42459:88;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17788:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13665:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40828:103;;;:::i;:::-;;42287:78;;;:::i;:::-;;40177:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18168:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20343:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21450:396;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42881:653;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18343:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20722:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41086:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42663:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;12986:615;13071:4;13386:10;13371:25;;:11;:25;;;;:102;;;;13463:10;13448:25;;:11;:25;;;;13371:102;:179;;;;13540:10;13525:25;;:11;:25;;;;13371:179;13351:199;;12986:615;;;:::o;17999:100::-;18053:13;18086:5;18079:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17999:100;:::o;20067:204::-;20135:7;20160:16;20168:7;20160;:16::i;:::-;20155:64;;20185:34;;;;;;;;;;;;;;20155:64;20239:15;:24;20255:7;20239:24;;;;;;;;;;;;;;;;;;;;;20232:31;;20067:204;;;:::o;19527:474::-;19600:13;19632:27;19651:7;19632:18;:27::i;:::-;19600:61;;19682:5;19676:11;;:2;:11;;;19672:48;;;19696:24;;;;;;;;;;;;;;19672:48;19760:5;19737:28;;:19;:17;:19::i;:::-;:28;;;19733:175;;19785:44;19802:5;19809:19;:17;:19::i;:::-;19785:16;:44::i;:::-;19780:128;;19857:35;;;;;;;;;;;;;;19780:128;19733:175;19947:2;19920:15;:24;19936:7;19920:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19985:7;19981:2;19965:28;;19974:5;19965:28;;;;;;;;;;;;19589:412;19527:474;;:::o;42112:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;12040:315::-;12093:7;12321:15;:13;:15::i;:::-;12306:12;;12290:13;;:28;:46;12283:53;;12040:315;:::o;42221:27::-;;;;;;;;;;;;;:::o;20953:170::-;21087:28;21097:4;21103:2;21107:7;21087:9;:28::i;:::-;20953:170;;;:::o;42165:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;42257:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21194:185::-;21332:39;21349:4;21355:2;21359:7;21332:39;;;;;;;;;;;;:16;:39::i;:::-;21194:185;;;:::o;42373:78::-;40408:12;:10;:12::i;:::-;40397:23;;:7;:5;:7::i;:::-;:23;;;40389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42435:8:::1;;;;;;;;;;;42434:9;42423:8;;:20;;;;;;;;;;;;;;;;;;42373:78::o:0;42459:88::-;40408:12;:10;:12::i;:::-;40397:23;;:7;:5;:7::i;:::-;:23;;;40389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42536:3:::1;42526:7;:13;;;;;;;;;;;;:::i;:::-;;42459:88:::0;:::o;17788:144::-;17852:7;17895:27;17914:7;17895:18;:27::i;:::-;17872:52;;17788:144;;;:::o;13665:224::-;13729:7;13770:1;13753:19;;:5;:19;;;13749:60;;;13781:28;;;;;;;;;;;;;;13749:60;9007:13;13827:18;:25;13846:5;13827:25;;;;;;;;;;;;;;;;:54;13820:61;;13665:224;;;:::o;40828:103::-;40408:12;:10;:12::i;:::-;40397:23;;:7;:5;:7::i;:::-;:23;;;40389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40893:30:::1;40920:1;40893:18;:30::i;:::-;40828:103::o:0;42287:78::-;40408:12;:10;:12::i;:::-;40397:23;;:7;:5;:7::i;:::-;:23;;;40389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42336:21:::1;42346:7;:5;:7::i;:::-;42355:1;42336:9;:21::i;:::-;42287:78::o:0;40177:87::-;40223:7;40250:6;;;;;;;;;;;40243:13;;40177:87;:::o;18168:104::-;18224:13;18257:7;18250:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18168:104;:::o;20343:308::-;20454:19;:17;:19::i;:::-;20442:31;;:8;:31;;;20438:61;;;20482:17;;;;;;;;;;;;;;20438:61;20564:8;20512:18;:39;20531:19;:17;:19::i;:::-;20512:39;;;;;;;;;;;;;;;:49;20552:8;20512:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20624:8;20588:55;;20603:19;:17;:19::i;:::-;20588:55;;;20634:8;20588:55;;;;;;:::i;:::-;;;;;;;;20343:308;;:::o;21450:396::-;21617:28;21627:4;21633:2;21637:7;21617:9;:28::i;:::-;21678:1;21660:2;:14;;;:19;21656:183;;21699:56;21730:4;21736:2;21740:7;21749:5;21699:30;:56::i;:::-;21694:145;;21783:40;;;;;;;;;;;;;;21694:145;21656:183;21450:396;;;;:::o;42881:653::-;42971:8;;;;;;;;;;;42963:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;43022:20;43045:3;;;;;;;;;;;:11;;;43057:14;43045:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43022:50;;43083:21;43107:3;;;;;;;;;;;:11;;;43119:15;43107:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43083:52;;43172:10;43156:26;;:12;:26;;;:57;;;;;43203:10;43186:27;;:13;:27;;;43156:57;43148:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;43276:16;:32;43293:14;43276:32;;;;;;;;;;;;;;;;;;;;;43275:33;:72;;;;;43313:17;:34;43331:15;43313:34;;;;;;;;;;;;;;;;;;;;;43312:35;43275:72;43267:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;43435:4;43400:16;:32;43417:14;43400:32;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;43487:4;43450:17;:34;43468:15;43450:34;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;43502:24;43512:10;43524:1;43502:9;:24::i;:::-;42952:582;;42881:653;;:::o;18343:318::-;18416:13;18447:16;18455:7;18447;:16::i;:::-;18442:59;;18472:29;;;;;;;;;;;;;;18442:59;18514:21;18538:10;:8;:10::i;:::-;18514:34;;18591:1;18572:7;18566:21;:26;;:87;;;;;;;;;;;;;;;;;18619:7;18628:18;18638:7;18628:9;:18::i;:::-;18602:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18566:87;18559:94;;;18343:318;;;:::o;20722:164::-;20819:4;20843:18;:25;20862:5;20843:25;;;;;;;;;;;;;;;:35;20869:8;20843:35;;;;;;;;;;;;;;;;;;;;;;;;;20836:42;;20722:164;;;;:::o;41086:201::-;40408:12;:10;:12::i;:::-;40397:23;;:7;:5;:7::i;:::-;:23;;;40389:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41195:1:::1;41175:22;;:8;:22;;;;41167:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41251:28;41270:8;41251:18;:28::i;:::-;41086:201:::0;:::o;42663:210::-;42746:19;42767:20;42806:16;:27;42823:9;42806:27;;;;;;;;;;;;;;;;;;;;;42835:17;:29;42853:10;42835:29;;;;;;;;;;;;;;;;;;;;;42798:67;;;;42663:210;;;;;:::o;22101:273::-;22158:4;22214:7;22195:15;:13;:15::i;:::-;:26;;:66;;;;;22248:13;;22238:7;:23;22195:66;:152;;;;;22346:1;9777:8;22299:17;:26;22317:7;22299:26;;;;;;;;;;;;:43;:48;22195:152;22175:172;;22101:273;;;:::o;15303:1129::-;15370:7;15390:12;15405:7;15390:22;;15473:4;15454:15;:13;:15::i;:::-;:23;15450:915;;15507:13;;15500:4;:20;15496:869;;;15545:14;15562:17;:23;15580:4;15562:23;;;;;;;;;;;;15545:40;;15678:1;9777:8;15651:6;:23;:28;15647:699;;;16170:113;16187:1;16177:6;:11;16170:113;;;16230:17;:25;16248:6;;;;;;;16230:25;;;;;;;;;;;;16221:34;;16170:113;;;16316:6;16309:13;;;;;;15647:699;15522:843;15496:869;15450:915;16393:31;;;;;;;;;;;;;;15303:1129;;;;:::o;36082:105::-;36142:7;36169:10;36162:17;;36082:105;:::o;11564:92::-;11620:7;11564:92;:::o;27340:2515::-;27455:27;27485;27504:7;27485:18;:27::i;:::-;27455:57;;27570:4;27529:45;;27545:19;27529:45;;;27525:86;;27583:28;;;;;;;;;;;;;;27525:86;27624:22;27673:4;27650:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27694:43;27711:4;27717:19;:17;:19::i;:::-;27694:16;:43::i;:::-;27650:87;:147;;;;27778:19;:17;:19::i;:::-;27754:43;;:20;27766:7;27754:11;:20::i;:::-;:43;;;27650:147;27624:174;;27816:17;27811:66;;27842:35;;;;;;;;;;;;;;27811:66;27906:1;27892:16;;:2;:16;;;27888:52;;;27917:23;;;;;;;;;;;;;;27888:52;27953:43;27975:4;27981:2;27985:7;27994:1;27953:21;:43::i;:::-;28069:15;:24;28085:7;28069:24;;;;;;;;;;;;28062:31;;;;;;;;;;;28461:18;:24;28480:4;28461:24;;;;;;;;;;;;;;;;28459:26;;;;;;;;;;;;28530:18;:22;28549:2;28530:22;;;;;;;;;;;;;;;;28528:24;;;;;;;;;;;10058:8;9661:3;28911:15;:41;;28869:21;28887:2;28869:17;:21::i;:::-;:84;:128;28823:17;:26;28841:7;28823:26;;;;;;;;;;;:174;;;;29167:1;10058:8;29117:19;:46;:51;29113:626;;;29189:19;29221:1;29211:7;:11;29189:33;;29378:1;29344:17;:30;29362:11;29344:30;;;;;;;;;;;;:35;29340:384;;;29482:13;;29467:11;:28;29463:242;;29662:19;29629:17;:30;29647:11;29629:30;;;;;;;;;;;:52;;;;29463:242;29340:384;29170:569;29113:626;29786:7;29782:2;29767:27;;29776:4;29767:27;;;;;;;;;;;;29805:42;29826:4;29832:2;29836:7;29845:1;29805:20;:42::i;:::-;27444:2411;;27340:2515;;;:::o;38918:98::-;38971:7;38998:10;38991:17;;38918:98;:::o;41447:191::-;41521:16;41540:6;;;;;;;;;;;41521:25;;41566:8;41557:6;;:17;;;;;;;;;;;;;;;;;;41621:8;41590:40;;41611:8;41590:40;;;;;;;;;;;;41510:128;41447:191;:::o;22458:104::-;22527:27;22537:2;22541:8;22527:27;;;;;;;;;;;;:9;:27::i;:::-;22458:104;;:::o;33551:716::-;33714:4;33760:2;33735:45;;;33781:19;:17;:19::i;:::-;33802:4;33808:7;33817:5;33735:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33731:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34035:1;34018:6;:13;:18;34014:235;;;34064:40;;;;;;;;;;;;;;34014:235;34207:6;34201:13;34192:6;34188:2;34184:15;34177:38;33731:529;33904:54;;;33894:64;;;:6;:64;;;;33887:71;;;33551:716;;;;;;:::o;42555:100::-;42607:13;42640:7;42633:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42555:100;:::o;36293:1954::-;36350:17;36769:3;36762:4;36756:11;36752:21;36745:28;;36860:3;36854:4;36847:17;36966:3;37422:5;37552:1;37547:3;37543:11;37536:18;;37689:2;37683:4;37679:13;37675:2;37671:22;37666:3;37658:36;37730:2;37724:4;37720:13;37712:21;;37314:680;37749:4;37314:680;;;37923:1;37918:3;37914:11;37907:18;;37974:2;37968:4;37964:13;37960:2;37956:22;37951:3;37943:36;37844:2;37838:4;37834:13;37826:21;;37314:680;;;37318:430;38044:3;38039;38035:13;38159:2;38154:3;38150:12;38143:19;;38222:6;38217:3;38210:19;36389:1851;;36293:1954;;;:::o;34915:159::-;;;;;:::o;19088:148::-;19152:14;19213:5;19203:15;;19088:148;;;:::o;35733:158::-;;;;;:::o;22935:2236::-;23058:20;23081:13;;23058:36;;23123:1;23109:16;;:2;:16;;;23105:48;;;23134:19;;;;;;;;;;;;;;23105:48;23180:1;23168:8;:13;23164:44;;;23190:18;;;;;;;;;;;;;;23164:44;23221:61;23251:1;23255:2;23259:12;23273:8;23221:21;:61::i;:::-;23825:1;9144:2;23796:1;:25;;23795:31;23783:8;:44;23757:18;:22;23776:2;23757:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;9923:3;24226:29;24253:1;24241:8;:13;24226:14;:29::i;:::-;:56;;9661:3;24163:15;:41;;24121:21;24139:2;24121:17;:21::i;:::-;:84;:162;24070:17;:31;24088:12;24070:31;;;;;;;;;;;:213;;;;24300:20;24323:12;24300:35;;24350:11;24379:8;24364:12;:23;24350:37;;24426:1;24408:2;:14;;;:19;24404:635;;24448:313;24504:12;24500:2;24479:38;;24496:1;24479:38;;;;;;;;;;;;24545:69;24584:1;24588:2;24592:14;;;;;;24608:5;24545:30;:69::i;:::-;24540:174;;24650:40;;;;;;;;;;;;;;24540:174;24756:3;24741:12;:18;24448:313;;24842:12;24825:13;;:29;24821:43;;24856:8;;;24821:43;24404:635;;;24905:119;24961:14;;;;;;24957:2;24936:40;;24953:1;24936:40;;;;;;;;;;;;25019:3;25004:12;:18;24905:119;;24404:635;25069:12;25053:13;:28;;;;23534:1559;;25103:60;25132:1;25136:2;25140:12;25154:8;25103:20;:60::i;:::-;23047:2124;22935:2236;;;:::o;19323:142::-;19381:14;19442:5;19432:15;;19323:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:143::-;1043:5;1074:6;1068:13;1059:22;;1090:33;1117:5;1090:33;:::i;:::-;986:143;;;;:::o;1135:133::-;1178:5;1216:6;1203:20;1194:29;;1232:30;1256:5;1232:30;:::i;:::-;1135:133;;;;:::o;1274:137::-;1319:5;1357:6;1344:20;1335:29;;1373:32;1399:5;1373:32;:::i;:::-;1274:137;;;;:::o;1417:141::-;1473:5;1504:6;1498:13;1489:22;;1520:32;1546:5;1520:32;:::i;:::-;1417:141;;;;:::o;1577:338::-;1632:5;1681:3;1674:4;1666:6;1662:17;1658:27;1648:122;;1689:79;;:::i;:::-;1648:122;1806:6;1793:20;1831:78;1905:3;1897:6;1890:4;1882:6;1878:17;1831:78;:::i;:::-;1822:87;;1638:277;1577:338;;;;:::o;1935:340::-;1991:5;2040:3;2033:4;2025:6;2021:17;2017:27;2007:122;;2048:79;;:::i;:::-;2007:122;2165:6;2152:20;2190:79;2265:3;2257:6;2250:4;2242:6;2238:17;2190:79;:::i;:::-;2181:88;;1997:278;1935:340;;;;:::o;2281:139::-;2327:5;2365:6;2352:20;2343:29;;2381:33;2408:5;2381:33;:::i;:::-;2281:139;;;;:::o;2426:329::-;2485:6;2534:2;2522:9;2513:7;2509:23;2505:32;2502:119;;;2540:79;;:::i;:::-;2502:119;2660:1;2685:53;2730:7;2721:6;2710:9;2706:22;2685:53;:::i;:::-;2675:63;;2631:117;2426:329;;;;:::o;2761:351::-;2831:6;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:64;3087:7;3078:6;3067:9;3063:22;3031:64;:::i;:::-;3021:74;;2977:128;2761:351;;;;:::o;3118:474::-;3186:6;3194;3243:2;3231:9;3222:7;3218:23;3214:32;3211:119;;;3249:79;;:::i;:::-;3211:119;3369:1;3394:53;3439:7;3430:6;3419:9;3415:22;3394:53;:::i;:::-;3384:63;;3340:117;3496:2;3522:53;3567:7;3558:6;3547:9;3543:22;3522:53;:::i;:::-;3512:63;;3467:118;3118:474;;;;;:::o;3598:619::-;3675:6;3683;3691;3740:2;3728:9;3719:7;3715:23;3711:32;3708:119;;;3746:79;;:::i;:::-;3708:119;3866:1;3891:53;3936:7;3927:6;3916:9;3912:22;3891:53;:::i;:::-;3881:63;;3837:117;3993:2;4019:53;4064:7;4055:6;4044:9;4040:22;4019:53;:::i;:::-;4009:63;;3964:118;4121:2;4147:53;4192:7;4183:6;4172:9;4168:22;4147:53;:::i;:::-;4137:63;;4092:118;3598:619;;;;;:::o;4223:943::-;4318:6;4326;4334;4342;4391:3;4379:9;4370:7;4366:23;4362:33;4359:120;;;4398:79;;:::i;:::-;4359:120;4518:1;4543:53;4588:7;4579:6;4568:9;4564:22;4543:53;:::i;:::-;4533:63;;4489:117;4645:2;4671:53;4716:7;4707:6;4696:9;4692:22;4671:53;:::i;:::-;4661:63;;4616:118;4773:2;4799:53;4844:7;4835:6;4824:9;4820:22;4799:53;:::i;:::-;4789:63;;4744:118;4929:2;4918:9;4914:18;4901:32;4960:18;4952:6;4949:30;4946:117;;;4982:79;;:::i;:::-;4946:117;5087:62;5141:7;5132:6;5121:9;5117:22;5087:62;:::i;:::-;5077:72;;4872:287;4223:943;;;;;;;:::o;5172:468::-;5237:6;5245;5294:2;5282:9;5273:7;5269:23;5265:32;5262:119;;;5300:79;;:::i;:::-;5262:119;5420:1;5445:53;5490:7;5481:6;5470:9;5466:22;5445:53;:::i;:::-;5435:63;;5391:117;5547:2;5573:50;5615:7;5606:6;5595:9;5591:22;5573:50;:::i;:::-;5563:60;;5518:115;5172:468;;;;;:::o;5646:474::-;5714:6;5722;5771:2;5759:9;5750:7;5746:23;5742:32;5739:119;;;5777:79;;:::i;:::-;5739:119;5897:1;5922:53;5967:7;5958:6;5947:9;5943:22;5922:53;:::i;:::-;5912:63;;5868:117;6024:2;6050:53;6095:7;6086:6;6075:9;6071:22;6050:53;:::i;:::-;6040:63;;5995:118;5646:474;;;;;:::o;6126:327::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:52;6428:7;6419:6;6408:9;6404:22;6384:52;:::i;:::-;6374:62;;6330:116;6126:327;;;;:::o;6459:349::-;6528:6;6577:2;6565:9;6556:7;6552:23;6548:32;6545:119;;;6583:79;;:::i;:::-;6545:119;6703:1;6728:63;6783:7;6774:6;6763:9;6759:22;6728:63;:::i;:::-;6718:73;;6674:127;6459:349;;;;:::o;6814:509::-;6883:6;6932:2;6920:9;6911:7;6907:23;6903:32;6900:119;;;6938:79;;:::i;:::-;6900:119;7086:1;7075:9;7071:17;7058:31;7116:18;7108:6;7105:30;7102:117;;;7138:79;;:::i;:::-;7102:117;7243:63;7298:7;7289:6;7278:9;7274:22;7243:63;:::i;:::-;7233:73;;7029:287;6814:509;;;;:::o;7329:329::-;7388:6;7437:2;7425:9;7416:7;7412:23;7408:32;7405:119;;;7443:79;;:::i;:::-;7405:119;7563:1;7588:53;7633:7;7624:6;7613:9;7609:22;7588:53;:::i;:::-;7578:63;;7534:117;7329:329;;;;:::o;7664:474::-;7732:6;7740;7789:2;7777:9;7768:7;7764:23;7760:32;7757:119;;;7795:79;;:::i;:::-;7757:119;7915:1;7940:53;7985:7;7976:6;7965:9;7961:22;7940:53;:::i;:::-;7930:63;;7886:117;8042:2;8068:53;8113:7;8104:6;8093:9;8089:22;8068:53;:::i;:::-;8058:63;;8013:118;7664:474;;;;;:::o;8144:118::-;8231:24;8249:5;8231:24;:::i;:::-;8226:3;8219:37;8144:118;;:::o;8268:109::-;8349:21;8364:5;8349:21;:::i;:::-;8344:3;8337:34;8268:109;;:::o;8383:360::-;8469:3;8497:38;8529:5;8497:38;:::i;:::-;8551:70;8614:6;8609:3;8551:70;:::i;:::-;8544:77;;8630:52;8675:6;8670:3;8663:4;8656:5;8652:16;8630:52;:::i;:::-;8707:29;8729:6;8707:29;:::i;:::-;8702:3;8698:39;8691:46;;8473:270;8383:360;;;;:::o;8749:364::-;8837:3;8865:39;8898:5;8865:39;:::i;:::-;8920:71;8984:6;8979:3;8920:71;:::i;:::-;8913:78;;9000:52;9045:6;9040:3;9033:4;9026:5;9022:16;9000:52;:::i;:::-;9077:29;9099:6;9077:29;:::i;:::-;9072:3;9068:39;9061:46;;8841:272;8749:364;;;;:::o;9119:377::-;9225:3;9253:39;9286:5;9253:39;:::i;:::-;9308:89;9390:6;9385:3;9308:89;:::i;:::-;9301:96;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:6;9478:3;9474:16;9467:23;;9229:267;9119:377;;;;:::o;9502:366::-;9644:3;9665:67;9729:2;9724:3;9665:67;:::i;:::-;9658:74;;9741:93;9830:3;9741:93;:::i;:::-;9859:2;9854:3;9850:12;9843:19;;9502:366;;;:::o;9874:::-;10016:3;10037:67;10101:2;10096:3;10037:67;:::i;:::-;10030:74;;10113:93;10202:3;10113:93;:::i;:::-;10231:2;10226:3;10222:12;10215:19;;9874:366;;;:::o;10246:::-;10388:3;10409:67;10473:2;10468:3;10409:67;:::i;:::-;10402:74;;10485:93;10574:3;10485:93;:::i;:::-;10603:2;10598:3;10594:12;10587:19;;10246:366;;;:::o;10618:::-;10760:3;10781:67;10845:2;10840:3;10781:67;:::i;:::-;10774:74;;10857:93;10946:3;10857:93;:::i;:::-;10975:2;10970:3;10966:12;10959:19;;10618:366;;;:::o;10990:::-;11132:3;11153:67;11217:2;11212:3;11153:67;:::i;:::-;11146:74;;11229:93;11318:3;11229:93;:::i;:::-;11347:2;11342:3;11338:12;11331:19;;10990:366;;;:::o;11362:118::-;11449:24;11467:5;11449:24;:::i;:::-;11444:3;11437:37;11362:118;;:::o;11486:435::-;11666:3;11688:95;11779:3;11770:6;11688:95;:::i;:::-;11681:102;;11800:95;11891:3;11882:6;11800:95;:::i;:::-;11793:102;;11912:3;11905:10;;11486:435;;;;;:::o;11927:222::-;12020:4;12058:2;12047:9;12043:18;12035:26;;12071:71;12139:1;12128:9;12124:17;12115:6;12071:71;:::i;:::-;11927:222;;;;:::o;12155:640::-;12350:4;12388:3;12377:9;12373:19;12365:27;;12402:71;12470:1;12459:9;12455:17;12446:6;12402:71;:::i;:::-;12483:72;12551:2;12540:9;12536:18;12527:6;12483:72;:::i;:::-;12565;12633:2;12622:9;12618:18;12609:6;12565:72;:::i;:::-;12684:9;12678:4;12674:20;12669:2;12658:9;12654:18;12647:48;12712:76;12783:4;12774:6;12712:76;:::i;:::-;12704:84;;12155:640;;;;;;;:::o;12801:210::-;12888:4;12926:2;12915:9;12911:18;12903:26;;12939:65;13001:1;12990:9;12986:17;12977:6;12939:65;:::i;:::-;12801:210;;;;:::o;13017:308::-;13126:4;13164:2;13153:9;13149:18;13141:26;;13177:65;13239:1;13228:9;13224:17;13215:6;13177:65;:::i;:::-;13252:66;13314:2;13303:9;13299:18;13290:6;13252:66;:::i;:::-;13017:308;;;;;:::o;13331:313::-;13444:4;13482:2;13471:9;13467:18;13459:26;;13531:9;13525:4;13521:20;13517:1;13506:9;13502:17;13495:47;13559:78;13632:4;13623:6;13559:78;:::i;:::-;13551:86;;13331:313;;;;:::o;13650:419::-;13816:4;13854:2;13843:9;13839:18;13831:26;;13903:9;13897:4;13893:20;13889:1;13878:9;13874:17;13867:47;13931:131;14057:4;13931:131;:::i;:::-;13923:139;;13650:419;;;:::o;14075:::-;14241:4;14279:2;14268:9;14264:18;14256:26;;14328:9;14322:4;14318:20;14314:1;14303:9;14299:17;14292:47;14356:131;14482:4;14356:131;:::i;:::-;14348:139;;14075:419;;;:::o;14500:::-;14666:4;14704:2;14693:9;14689:18;14681:26;;14753:9;14747:4;14743:20;14739:1;14728:9;14724:17;14717:47;14781:131;14907:4;14781:131;:::i;:::-;14773:139;;14500:419;;;:::o;14925:::-;15091:4;15129:2;15118:9;15114:18;15106:26;;15178:9;15172:4;15168:20;15164:1;15153:9;15149:17;15142:47;15206:131;15332:4;15206:131;:::i;:::-;15198:139;;14925:419;;;:::o;15350:::-;15516:4;15554:2;15543:9;15539:18;15531:26;;15603:9;15597:4;15593:20;15589:1;15578:9;15574:17;15567:47;15631:131;15757:4;15631:131;:::i;:::-;15623:139;;15350:419;;;:::o;15775:222::-;15868:4;15906:2;15895:9;15891:18;15883:26;;15919:71;15987:1;15976:9;15972:17;15963:6;15919:71;:::i;:::-;15775:222;;;;:::o;16003:129::-;16037:6;16064:20;;:::i;:::-;16054:30;;16093:33;16121:4;16113:6;16093:33;:::i;:::-;16003:129;;;:::o;16138:75::-;16171:6;16204:2;16198:9;16188:19;;16138:75;:::o;16219:307::-;16280:4;16370:18;16362:6;16359:30;16356:56;;;16392:18;;:::i;:::-;16356:56;16430:29;16452:6;16430:29;:::i;:::-;16422:37;;16514:4;16508;16504:15;16496:23;;16219:307;;;:::o;16532:308::-;16594:4;16684:18;16676:6;16673:30;16670:56;;;16706:18;;:::i;:::-;16670:56;16744:29;16766:6;16744:29;:::i;:::-;16736:37;;16828:4;16822;16818:15;16810:23;;16532:308;;;:::o;16846:98::-;16897:6;16931:5;16925:12;16915:22;;16846:98;;;:::o;16950:99::-;17002:6;17036:5;17030:12;17020:22;;16950:99;;;:::o;17055:168::-;17138:11;17172:6;17167:3;17160:19;17212:4;17207:3;17203:14;17188:29;;17055:168;;;;:::o;17229:169::-;17313:11;17347:6;17342:3;17335:19;17387:4;17382:3;17378:14;17363:29;;17229:169;;;;:::o;17404:148::-;17506:11;17543:3;17528:18;;17404:148;;;;:::o;17558:96::-;17595:7;17624:24;17642:5;17624:24;:::i;:::-;17613:35;;17558:96;;;:::o;17660:90::-;17694:7;17737:5;17730:13;17723:21;17712:32;;17660:90;;;:::o;17756:149::-;17792:7;17832:66;17825:5;17821:78;17810:89;;17756:149;;;:::o;17911:126::-;17948:7;17988:42;17981:5;17977:54;17966:65;;17911:126;;;:::o;18043:77::-;18080:7;18109:5;18098:16;;18043:77;;;:::o;18126:154::-;18210:6;18205:3;18200;18187:30;18272:1;18263:6;18258:3;18254:16;18247:27;18126:154;;;:::o;18286:307::-;18354:1;18364:113;18378:6;18375:1;18372:13;18364:113;;;18463:1;18458:3;18454:11;18448:18;18444:1;18439:3;18435:11;18428:39;18400:2;18397:1;18393:10;18388:15;;18364:113;;;18495:6;18492:1;18489:13;18486:101;;;18575:1;18566:6;18561:3;18557:16;18550:27;18486:101;18335:258;18286:307;;;:::o;18599:320::-;18643:6;18680:1;18674:4;18670:12;18660:22;;18727:1;18721:4;18717:12;18748:18;18738:81;;18804:4;18796:6;18792:17;18782:27;;18738:81;18866:2;18858:6;18855:14;18835:18;18832:38;18829:84;;;18885:18;;:::i;:::-;18829:84;18650:269;18599:320;;;:::o;18925:281::-;19008:27;19030:4;19008:27;:::i;:::-;19000:6;18996:40;19138:6;19126:10;19123:22;19102:18;19090:10;19087:34;19084:62;19081:88;;;19149:18;;:::i;:::-;19081:88;19189:10;19185:2;19178:22;18968:238;18925:281;;:::o;19212:180::-;19260:77;19257:1;19250:88;19357:4;19354:1;19347:15;19381:4;19378:1;19371:15;19398:180;19446:77;19443:1;19436:88;19543:4;19540:1;19533:15;19567:4;19564:1;19557:15;19584:117;19693:1;19690;19683:12;19707:117;19816:1;19813;19806:12;19830:117;19939:1;19936;19929:12;19953:117;20062:1;20059;20052:12;20076:102;20117:6;20168:2;20164:7;20159:2;20152:5;20148:14;20144:28;20134:38;;20076:102;;;:::o;20184:175::-;20324:27;20320:1;20312:6;20308:14;20301:51;20184:175;:::o;20365:225::-;20505:34;20501:1;20493:6;20489:14;20482:58;20574:8;20569:2;20561:6;20557:15;20550:33;20365:225;:::o;20596:::-;20736:34;20732:1;20724:6;20720:14;20713:58;20805:8;20800:2;20792:6;20788:15;20781:33;20596:225;:::o;20827:182::-;20967:34;20963:1;20955:6;20951:14;20944:58;20827:182;:::o;21015:::-;21155:34;21151:1;21143:6;21139:14;21132:58;21015:182;:::o;21203:122::-;21276:24;21294:5;21276:24;:::i;:::-;21269:5;21266:35;21256:63;;21315:1;21312;21305:12;21256:63;21203:122;:::o;21331:116::-;21401:21;21416:5;21401:21;:::i;:::-;21394:5;21391:32;21381:60;;21437:1;21434;21427:12;21381:60;21331:116;:::o;21453:120::-;21525:23;21542:5;21525:23;:::i;:::-;21518:5;21515:34;21505:62;;21563:1;21560;21553:12;21505:62;21453:120;:::o;21579:122::-;21652:24;21670:5;21652:24;:::i;:::-;21645:5;21642:35;21632:63;;21691:1;21688;21681:12;21632:63;21579:122;:::o

Swarm Source

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