ETH Price: $3,087.16 (+1.10%)
Gas: 2 Gwei

Token

Astro Boy Red Boots 3 - TCOM of ACG Worlds (AstroBoyRedBoots3)
 

Overview

Max Total Supply

1,187 AstroBoyRedBoots3

Holders

933

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 AstroBoyRedBoots3
0xac33efd073891d441e78560386381ec74546aa62
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:
AstroBoyRedBoots

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 5: AstroBoyBoots.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import './ERC721A.sol';
import './StartTokenIdHelper.sol';
import './MerkleProof.sol';


contract AstroBoyRedBoots is StartTokenIdHelper, ERC721A {

    struct Config {
        uint256 total;
        uint256 count;
        uint256 starttime;
        uint256 endtime;
        bytes32 root; 
        mapping(address => uint256) records;
    }

    mapping(uint256 => Config) public configs;

    uint256 public index;
    address public owner;
    string public uri;
    bool public paused;

    uint256 public maxSupply = 1187;

    modifier onlyOwner() {
        require(msg.sender == owner, "not owner");
        _;
    }
    

    constructor(string memory name, string memory symbol, string memory baseURI) StartTokenIdHelper(1) ERC721A(name, symbol) {
        owner = msg.sender;
        uri = baseURI;
    }


    function freeMint(bytes32[] memory proof, uint32 limit, uint256 quantity) external {
        
        require(totalSupply() + quantity <= maxSupply, "max supply exceeded");

        require(!paused, "paused");

        require(msg.sender.code.length == 0, "not allow");

        require(check(index, msg.sender, proof, limit), "not eligible for mint");

        require(block.timestamp >= configs[index].starttime, "not start"); 
        require(block.timestamp < configs[index].endtime, "is over"); 
        
        require(configs[index].count + quantity <= configs[index].total, "sold out");
        require(configs[index].records[msg.sender] + quantity <= limit, "exceed the limit");

        configs[index].count += quantity;
        configs[index].records[msg.sender] += quantity;


        _safeMint(msg.sender, quantity);
    }

    function safeMint(address to, uint256 quantity) external onlyOwner {

        require(totalSupply() + quantity <= maxSupply, "max supply exceeded");
        _safeMint(to, quantity);
    }


    function setConfig(uint256 idx, uint256 total, uint256 starttime, uint256 endtime, bytes32 root) external onlyOwner {

        Config storage config = configs[idx];
        config.total = total;
        config.starttime = starttime;
        config.endtime = endtime;
        config.root = root;

        index = idx;
    }


    function setIndex(uint256 idx) external onlyOwner {
        index = idx;
    }

    function pause() external onlyOwner {
        paused = true;
    }

    function unpause() external onlyOwner {
        paused = false;
    }

    function check(uint256 idx, address addr, bytes32[] memory proof, uint32 limit) public view returns (bool) {
        bytes32 leaf = keccak256(bytes.concat(keccak256(abi.encode(addr, limit))));
        return MerkleProof.verify(proof, configs[idx].root, leaf);
    }

    function queryRecords(uint256 idx, address addr) external view returns(uint256) {
        return configs[idx].records[addr];
    }

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

    function totalMinted() public view returns (uint256) {
        return _totalMinted();
    }

    function exists(uint256 tokenId) public view returns (bool) {
        return _exists(tokenId);
    }

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

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

}

File 2 of 5: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector);
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) _revert(URIQueryForNonexistentToken.selector);

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

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

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

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

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

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

    /**
     * @dev Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // Invariant:
                // There will always be an initialized ownership slot
                // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                // before an unintialized ownership slot
                // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                // Hence, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

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

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

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool result) {
        if (_startTokenId() <= tokenId) {
            if (tokenId < _currentIndex) {
                uint256 packed;
                while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId;
                result = packed & _BITMASK_BURNED == 0;
            }
        }
    }

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // Emit the `Transfer` event.
            log4(
                0, // Start of data (0, since no data).
                0, // End of data (0, since no data).
                _TRANSFER_EVENT_SIGNATURE, // Signature.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                _revert(TransferToNonERC721ReceiverImplementer.selector);
            }
    }

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            do {
                assembly {
                    // Emit the `Transfer` event.
                    log4(
                        0, // Start of data (0, since no data).
                        0, // End of data (0, since no data).
                        _TRANSFER_EVENT_SIGNATURE, // Signature.
                        0, // `address(0)`.
                        toMasked, // `to`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}

File 3 of 5: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 4 of 5: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 5 of 5: StartTokenIdHelper.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creators: Chiru Labs

pragma solidity ^0.8.4;

/**
 * This Helper is used to return a dynamic value in the overridden _startTokenId() function.
 * Extending this Helper before the ERC721A contract give us access to the herein set `startTokenId`
 * to be returned by the overridden `_startTokenId()` function of ERC721A in the ERC721AStartTokenId mocks.
 */
contract StartTokenIdHelper {
    // `bytes4(keccak256('startTokenId'))`.
    uint256 private constant _START_TOKEN_ID_STORAGE_SLOT = 0x28f75032;

    constructor(uint256 startTokenId_) {
        _initializeStartTokenId(startTokenId_);
    }

    function startTokenId() public view returns (uint256 result) {
        assembly {
            result := sload(_START_TOKEN_ID_STORAGE_SLOT)
        }
    }

    function _initializeStartTokenId(uint256 value) private {
        // We use assembly to directly set the `startTokenId` in storage so that
        // inheriting this class won't affect the layout of other storage slots.
        assembly {
            sstore(_START_TOKEN_ID_STORAGE_SLOT, value)
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"idx","type":"uint256"},{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint32","name":"limit","type":"uint32"}],"name":"check","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"configs","outputs":[{"internalType":"uint256","name":"total","type":"uint256"},{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"uint256","name":"starttime","type":"uint256"},{"internalType":"uint256","name":"endtime","type":"uint256"},{"internalType":"bytes32","name":"root","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint32","name":"limit","type":"uint32"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","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":"index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"idx","type":"uint256"},{"internalType":"address","name":"addr","type":"address"}],"name":"queryRecords","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"safeMint","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"idx","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"},{"internalType":"uint256","name":"starttime","type":"uint256"},{"internalType":"uint256","name":"endtime","type":"uint256"},{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"idx","type":"uint256"}],"name":"setIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTokenId","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"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":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526104a3600d553480156200001757600080fd5b50604051620039223803806200392283398181016040528101906200003d9190620002ac565b828260016200005281620000eb60201b60201c565b508160029081620000649190620005b0565b508060039081620000769190620005b0565b5062000087620000f560201b60201c565b600081905550505033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b9081620000e19190620005b0565b5050505062000697565b806328f750325550565b6000620001076200010c60201b60201c565b905090565b60006328f7503254905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620001828262000137565b810181811067ffffffffffffffff82111715620001a457620001a362000148565b5b80604052505050565b6000620001b962000119565b9050620001c7828262000177565b919050565b600067ffffffffffffffff821115620001ea57620001e962000148565b5b620001f58262000137565b9050602081019050919050565b60005b838110156200022257808201518184015260208101905062000205565b60008484015250505050565b6000620002456200023f84620001cc565b620001ad565b90508281526020810184848401111562000264576200026362000132565b5b6200027184828562000202565b509392505050565b600082601f8301126200029157620002906200012d565b5b8151620002a38482602086016200022e565b91505092915050565b600080600060608486031215620002c857620002c762000123565b5b600084015167ffffffffffffffff811115620002e957620002e862000128565b5b620002f78682870162000279565b935050602084015167ffffffffffffffff8111156200031b576200031a62000128565b5b620003298682870162000279565b925050604084015167ffffffffffffffff8111156200034d576200034c62000128565b5b6200035b8682870162000279565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003b857607f821691505b602082108103620003ce57620003cd62000370565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003f9565b620004448683620003f9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004916200048b62000485846200045c565b62000466565b6200045c565b9050919050565b6000819050919050565b620004ad8362000470565b620004c5620004bc8262000498565b84845462000406565b825550505050565b600090565b620004dc620004cd565b620004e9818484620004a2565b505050565b5b81811015620005115762000505600082620004d2565b600181019050620004ef565b5050565b601f82111562000560576200052a81620003d4565b6200053584620003e9565b8101602085101562000545578190505b6200055d6200055485620003e9565b830182620004ee565b50505b505050565b600082821c905092915050565b6000620005856000198460080262000565565b1980831691505092915050565b6000620005a0838362000572565b9150826002028217905092915050565b620005bb8262000365565b67ffffffffffffffff811115620005d757620005d662000148565b5b620005e382546200039f565b620005f082828562000515565b600060209050601f83116001811462000628576000841562000613578287015190505b6200061f858262000592565b8655506200068f565b601f1984166200063886620003d4565b60005b8281101562000662578489015182556001820191506020850194506020810190506200063b565b868310156200068257848901516200067e601f89168262000572565b8355505b6001600288020188555050505b505050505050565b61327b80620006a76000396000f3fe6080604052600436106101e25760003560e01c80638456cb5911610102578063a2309ff811610095578063dc33e68111610064578063dc33e681146106d3578063e6798baa14610710578063e985e9c51461073b578063eac989f814610778576101e2565b8063a2309ff814610624578063b88d4fde1461064f578063c87b56dd1461066b578063d5abeb01146106a8576101e2565b80639bfa8c7e116100d15780639bfa8c7e1461056c578063a098453214610595578063a1448194146105d2578063a22cb465146105fb576101e2565b80638456cb59146104c25780638c4582b0146104d95780638da5cb5b1461051657806395d89b4114610541576101e2565b80633f4ba83a1161017a5780635c975abb116101495780635c975abb146103f45780636352211e1461041f5780636bf0027b1461045c57806370a0823114610485576101e2565b80633f4ba83a1461035b57806340a5737f1461037257806342842e0e1461039b5780634f558e79146103b7576101e2565b8063095ea7b3116101b6578063095ea7b3146102cd57806318160ddd146102e957806323b872dd146103145780632986c0e514610330576101e2565b806298fa22146101e757806301ffc9a71461022857806306fdde0314610265578063081812fc14610290575b600080fd5b3480156101f357600080fd5b5061020e600480360381019061020991906122a6565b6107a3565b60405161021f9594939291906122fb565b60405180910390f35b34801561023457600080fd5b5061024f600480360381019061024a91906123a6565b6107d9565b60405161025c91906123ee565b60405180910390f35b34801561027157600080fd5b5061027a61086b565b6040516102879190612499565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906122a6565b6108fd565b6040516102c491906124fc565b60405180910390f35b6102e760048036038101906102e29190612543565b61095b565b005b3480156102f557600080fd5b506102fe61096b565b60405161030b9190612583565b60405180910390f35b61032e6004803603810190610329919061259e565b610982565b005b34801561033c57600080fd5b50610345610c43565b6040516103529190612583565b60405180910390f35b34801561036757600080fd5b50610370610c49565b005b34801561037e57600080fd5b50610399600480360381019061039491906122a6565b610cf6565b005b6103b560048036038101906103b0919061259e565b610d90565b005b3480156103c357600080fd5b506103de60048036038101906103d991906122a6565b610db0565b6040516103eb91906123ee565b60405180910390f35b34801561040057600080fd5b50610409610dc2565b60405161041691906123ee565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906122a6565b610dd5565b60405161045391906124fc565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e91906127a1565b610de7565b005b34801561049157600080fd5b506104ac60048036038101906104a79190612810565b6111bb565b6040516104b99190612583565b60405180910390f35b3480156104ce57600080fd5b506104d7611252565b005b3480156104e557600080fd5b5061050060048036038101906104fb919061283d565b6112ff565b60405161050d9190612583565b60405180910390f35b34801561052257600080fd5b5061052b61135d565b60405161053891906124fc565b60405180910390f35b34801561054d57600080fd5b50610556611383565b6040516105639190612499565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e919061287d565b611415565b005b3480156105a157600080fd5b506105bc60048036038101906105b791906128f8565b6114ef565b6040516105c991906123ee565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190612543565b61156f565b005b34801561060757600080fd5b50610622600480360381019061061d91906129a7565b611664565b005b34801561063057600080fd5b5061063961176f565b6040516106469190612583565b60405180910390f35b61066960048036038101906106649190612a9c565b61177e565b005b34801561067757600080fd5b50610692600480360381019061068d91906122a6565b6117d0565b60405161069f9190612499565b60405180910390f35b3480156106b457600080fd5b506106bd61184d565b6040516106ca9190612583565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190612810565b611853565b6040516107079190612583565b60405180910390f35b34801561071c57600080fd5b50610725611865565b6040516107329190612583565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190612b1f565b611872565b60405161076f91906123ee565b60405180910390f35b34801561078457600080fd5b5061078d611906565b60405161079a9190612499565b60405180910390f35b60086020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154905085565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108645750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461087a90612b8e565b80601f01602080910402602001604051908101604052809291908181526020018280546108a690612b8e565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b5050505050905090565b600061090882611994565b61091d5761091c63cf4700e460e01b611a0d565b5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61096782826001611a17565b5050565b6000610975611b46565b6001546000540303905090565b600061098d82611b55565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a0257610a0163a114810060e01b611a0d565b5b600080610a0e84611c41565b91509150610a248187610a1f611c68565b611c70565b610a4f57610a3986610a34611c68565b611872565b610a4e57610a4d6359c896be60e01b611a0d565b5b5b610a5c8686866001611cb4565b8015610a6757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b3585610b11888887611cba565b7c020000000000000000000000000000000000000000000000000000000017611ce2565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610bbb5760006001850190506000600460008381526020019081526020016000205403610bb9576000548114610bb8578360046000838152602001908152602001600020819055505b5b505b600073ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460008103610c2d57610c2c63ea553b3460e01b611a0d565b5b610c3a8787876001611d0d565b50505050505050565b60095481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090612c0b565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90612c0b565b60405180910390fd5b8060098190555050565b610dab8383836040518060200160405280600081525061177e565b505050565b6000610dbb82611994565b9050919050565b600c60009054906101000a900460ff1681565b6000610de082611b55565b9050919050565b600d5481610df361096b565b610dfd9190612c5a565b1115610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590612cda565b60405180910390fd5b600c60009054906101000a900460ff1615610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8590612d46565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff163b14610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90612db2565b60405180910390fd5b610ef66009543385856114ef565b610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90612e1e565b60405180910390fd5b60086000600954815260200190815260200160002060020154421015610f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8790612e8a565b60405180910390fd5b600860006009548152602001908152602001600020600301544210610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe190612ef6565b60405180910390fd5b6008600060095481526020019081526020016000206000015481600860006009548152602001908152602001600020600101546110279190612c5a565b1115611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90612f62565b60405180910390fd5b8163ffffffff168160086000600954815260200190815260200160002060050160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110d09190612c5a565b1115611111576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110890612fce565b60405180910390fd5b8060086000600954815260200190815260200160002060010160008282546111399190612c5a565b925050819055508060086000600954815260200190815260200160002060050160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111a59190612c5a565b925050819055506111b63382611d13565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120157611200638f4eb60460e01b611a0d565b5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990612c0b565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b60006008600084815260200190815260200160002060050160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606003805461139290612b8e565b80601f01602080910402602001604051908101604052809291908181526020018280546113be90612b8e565b801561140b5780601f106113e05761010080835404028352916020019161140b565b820191906000526020600020905b8154815290600101906020018083116113ee57829003601f168201915b5050505050905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149c90612c0b565b60405180910390fd5b600060086000878152602001908152602001600020905084816000018190555083816002018190555082816003018190555081816004018190555085600981905550505050505050565b6000808483604051602001611505929190612ffd565b6040516020818303038152906040528051906020012060405160200161152b9190613047565b60405160208183030381529060405280519060200120905061156484600860008981526020019081526020016000206004015483611d31565b915050949350505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690612c0b565b60405180910390fd5b600d548161160b61096b565b6116159190612c5a565b1115611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90612cda565b60405180910390fd5b6116608282611d13565b5050565b8060076000611671611c68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661171e611c68565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176391906123ee565b60405180910390a35050565b6000611779611d48565b905090565b611789848484610982565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117ca576117b484848484611d5b565b6117c9576117c863d1a57ed660e01b611a0d565b5b5b50505050565b60606117db82611994565b6117f0576117ef63a14c4b5060e01b611a0d565b5b60006117fa611e8a565b9050600081510361181a5760405180602001604052806000815250611845565b8061182484611f1c565b60405160200161183592919061309e565b6040516020818303038152906040525b915050919050565b600d5481565b600061185e82611f6c565b9050919050565b60006328f7503254905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461191390612b8e565b80601f016020809104026020016040519081016040528092919081815260200182805461193f90612b8e565b801561198c5780601f106119615761010080835404028352916020019161198c565b820191906000526020600020905b81548152906001019060200180831161196f57829003601f168201915b505050505081565b60008161199f611b46565b11611a0857600054821015611a075760005b60006004600085815260200190815260200160002054915081036119e057826119d9906130c2565b92506119b1565b60007c01000000000000000000000000000000000000000000000000000000008216149150505b5b919050565b8060005260046000fd5b6000611a2283610dd5565b9050818015611a6457508073ffffffffffffffffffffffffffffffffffffffff16611a4b611c68565b73ffffffffffffffffffffffffffffffffffffffff1614155b15611a9057611a7a81611a75611c68565b611872565b611a8f57611a8e63cfb3b94260e01b611a0d565b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b6000611b50611865565b905090565b600081611b60611b46565b11611c2b576004600083815260200190815260200160002054905060008103611c02576000548210611b9d57611b9c63df2d9b4260e01b611a0d565b5b5b60046000836001900393508381526020019081526020016000205490506000810315611bfd5760007c010000000000000000000000000000000000000000000000000000000082160315611c3c57611bfc63df2d9b4260e01b611a0d565b5b611b9e565b60007c010000000000000000000000000000000000000000000000000000000082160315611c3c575b611c3b63df2d9b4260e01b611a0d565b5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611cd1868684611fc3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611d2d828260405180602001604052806000815250611fcc565b5050565b600082611d3e8584612051565b1490509392505050565b6000611d52611b46565b60005403905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d81611c68565b8786866040518563ffffffff1660e01b8152600401611da39493929190613140565b6020604051808303816000875af1925050508015611ddf57506040513d601f19601f82011682018060405250810190611ddc91906131a1565b60015b611e37573d8060008114611e0f576040519150601f19603f3d011682016040523d82523d6000602084013e611e14565b606091505b506000815103611e2f57611e2e63d1a57ed660e01b611a0d565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611e9990612b8e565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec590612b8e565b8015611f125780601f10611ee757610100808354040283529160200191611f12565b820191906000526020600020905b815481529060010190602001808311611ef557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f5757600184039350600a81066030018453600a8104905080611f35575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b611fd683836120a7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461204c57600080549050600083820390505b6120166000868380600101945086611d5b565b61202b5761202a63d1a57ed660e01b611a0d565b5b81811061200357816000541461204957612048600060e01b611a0d565b5b50505b505050565b60008082905060005b845181101561209c576120878286838151811061207a576120796131ce565b5b602002602001015161220a565b91508080612094906131fd565b91505061205a565b508091505092915050565b600080549050600082036120c6576120c563b562e8dd60e01b611a0d565b5b6120d36000848385611cb4565b6120f3836120e46000866000611cba565b6120ed85612235565b17611ce2565b6004600083815260200190815260200160002081905550600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff16169050600081036121ab576121aa632e07630060e01b611a0d565b5b6000838301905060008390505b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48181600101915081036121b857816000819055505050506122056000848385611d0d565b505050565b60008183106122225761221d8284612245565b61222d565b61222c8383612245565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61228381612270565b811461228e57600080fd5b50565b6000813590506122a08161227a565b92915050565b6000602082840312156122bc576122bb612266565b5b60006122ca84828501612291565b91505092915050565b6122dc81612270565b82525050565b6000819050919050565b6122f5816122e2565b82525050565b600060a08201905061231060008301886122d3565b61231d60208301876122d3565b61232a60408301866122d3565b61233760608301856122d3565b61234460808301846122ec565b9695505050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123838161234e565b811461238e57600080fd5b50565b6000813590506123a08161237a565b92915050565b6000602082840312156123bc576123bb612266565b5b60006123ca84828501612391565b91505092915050565b60008115159050919050565b6123e8816123d3565b82525050565b600060208201905061240360008301846123df565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612443578082015181840152602081019050612428565b60008484015250505050565b6000601f19601f8301169050919050565b600061246b82612409565b6124758185612414565b9350612485818560208601612425565b61248e8161244f565b840191505092915050565b600060208201905081810360008301526124b38184612460565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124e6826124bb565b9050919050565b6124f6816124db565b82525050565b600060208201905061251160008301846124ed565b92915050565b612520816124db565b811461252b57600080fd5b50565b60008135905061253d81612517565b92915050565b6000806040838503121561255a57612559612266565b5b60006125688582860161252e565b925050602061257985828601612291565b9150509250929050565b600060208201905061259860008301846122d3565b92915050565b6000806000606084860312156125b7576125b6612266565b5b60006125c58682870161252e565b93505060206125d68682870161252e565b92505060406125e786828701612291565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61262e8261244f565b810181811067ffffffffffffffff8211171561264d5761264c6125f6565b5b80604052505050565b600061266061225c565b905061266c8282612625565b919050565b600067ffffffffffffffff82111561268c5761268b6125f6565b5b602082029050602081019050919050565b600080fd5b6126ab816122e2565b81146126b657600080fd5b50565b6000813590506126c8816126a2565b92915050565b60006126e16126dc84612671565b612656565b905080838252602082019050602084028301858111156127045761270361269d565b5b835b8181101561272d578061271988826126b9565b845260208401935050602081019050612706565b5050509392505050565b600082601f83011261274c5761274b6125f1565b5b813561275c8482602086016126ce565b91505092915050565b600063ffffffff82169050919050565b61277e81612765565b811461278957600080fd5b50565b60008135905061279b81612775565b92915050565b6000806000606084860312156127ba576127b9612266565b5b600084013567ffffffffffffffff8111156127d8576127d761226b565b5b6127e486828701612737565b93505060206127f58682870161278c565b925050604061280686828701612291565b9150509250925092565b60006020828403121561282657612825612266565b5b60006128348482850161252e565b91505092915050565b6000806040838503121561285457612853612266565b5b600061286285828601612291565b92505060206128738582860161252e565b9150509250929050565b600080600080600060a0868803121561289957612898612266565b5b60006128a788828901612291565b95505060206128b888828901612291565b94505060406128c988828901612291565b93505060606128da88828901612291565b92505060806128eb888289016126b9565b9150509295509295909350565b6000806000806080858703121561291257612911612266565b5b600061292087828801612291565b94505060206129318782880161252e565b935050604085013567ffffffffffffffff8111156129525761295161226b565b5b61295e87828801612737565b925050606061296f8782880161278c565b91505092959194509250565b612984816123d3565b811461298f57600080fd5b50565b6000813590506129a18161297b565b92915050565b600080604083850312156129be576129bd612266565b5b60006129cc8582860161252e565b92505060206129dd85828601612992565b9150509250929050565b600080fd5b600067ffffffffffffffff821115612a0757612a066125f6565b5b612a108261244f565b9050602081019050919050565b82818337600083830152505050565b6000612a3f612a3a846129ec565b612656565b905082815260208101848484011115612a5b57612a5a6129e7565b5b612a66848285612a1d565b509392505050565b600082601f830112612a8357612a826125f1565b5b8135612a93848260208601612a2c565b91505092915050565b60008060008060808587031215612ab657612ab5612266565b5b6000612ac48782880161252e565b9450506020612ad58782880161252e565b9350506040612ae687828801612291565b925050606085013567ffffffffffffffff811115612b0757612b0661226b565b5b612b1387828801612a6e565b91505092959194509250565b60008060408385031215612b3657612b35612266565b5b6000612b448582860161252e565b9250506020612b558582860161252e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ba657607f821691505b602082108103612bb957612bb8612b5f565b5b50919050565b7f6e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b6000612bf5600983612414565b9150612c0082612bbf565b602082019050919050565b60006020820190508181036000830152612c2481612be8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c6582612270565b9150612c7083612270565b9250828201905080821115612c8857612c87612c2b565b5b92915050565b7f6d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000612cc4601383612414565b9150612ccf82612c8e565b602082019050919050565b60006020820190508181036000830152612cf381612cb7565b9050919050565b7f7061757365640000000000000000000000000000000000000000000000000000600082015250565b6000612d30600683612414565b9150612d3b82612cfa565b602082019050919050565b60006020820190508181036000830152612d5f81612d23565b9050919050565b7f6e6f7420616c6c6f770000000000000000000000000000000000000000000000600082015250565b6000612d9c600983612414565b9150612da782612d66565b602082019050919050565b60006020820190508181036000830152612dcb81612d8f565b9050919050565b7f6e6f7420656c696769626c6520666f72206d696e740000000000000000000000600082015250565b6000612e08601583612414565b9150612e1382612dd2565b602082019050919050565b60006020820190508181036000830152612e3781612dfb565b9050919050565b7f6e6f742073746172740000000000000000000000000000000000000000000000600082015250565b6000612e74600983612414565b9150612e7f82612e3e565b602082019050919050565b60006020820190508181036000830152612ea381612e67565b9050919050565b7f6973206f76657200000000000000000000000000000000000000000000000000600082015250565b6000612ee0600783612414565b9150612eeb82612eaa565b602082019050919050565b60006020820190508181036000830152612f0f81612ed3565b9050919050565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612f4c600883612414565b9150612f5782612f16565b602082019050919050565b60006020820190508181036000830152612f7b81612f3f565b9050919050565b7f65786365656420746865206c696d697400000000000000000000000000000000600082015250565b6000612fb8601083612414565b9150612fc382612f82565b602082019050919050565b60006020820190508181036000830152612fe781612fab565b9050919050565b612ff781612765565b82525050565b600060408201905061301260008301856124ed565b61301f6020830184612fee565b9392505050565b6000819050919050565b61304161303c826122e2565b613026565b82525050565b60006130538284613030565b60208201915081905092915050565b600081905092915050565b600061307882612409565b6130828185613062565b9350613092818560208601612425565b80840191505092915050565b60006130aa828561306d565b91506130b6828461306d565b91508190509392505050565b60006130cd82612270565b9150600082036130e0576130df612c2b565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b6000613112826130eb565b61311c81856130f6565b935061312c818560208601612425565b6131358161244f565b840191505092915050565b600060808201905061315560008301876124ed565b61316260208301866124ed565b61316f60408301856122d3565b81810360608301526131818184613107565b905095945050505050565b60008151905061319b8161237a565b92915050565b6000602082840312156131b7576131b6612266565b5b60006131c58482850161318c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061320882612270565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361323a57613239612c2b565b5b60018201905091905056fea2646970667358221220d09f8e59ea68a79b0d73a93c8d046c865f2f558352c41e6932e37af499fa507a64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000002a417374726f20426f792052656420426f6f74732033202d2054434f4d206f662041434720576f726c6473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011417374726f426f79526564426f6f747333000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e68747470733a2f2f6163672d6e66742e73332e61702d6e6f727468656173742d312e616d617a6f6e6177732e636f6d2f617374726f626f792f6a736f6e2f0000

Deployed Bytecode

0x6080604052600436106101e25760003560e01c80638456cb5911610102578063a2309ff811610095578063dc33e68111610064578063dc33e681146106d3578063e6798baa14610710578063e985e9c51461073b578063eac989f814610778576101e2565b8063a2309ff814610624578063b88d4fde1461064f578063c87b56dd1461066b578063d5abeb01146106a8576101e2565b80639bfa8c7e116100d15780639bfa8c7e1461056c578063a098453214610595578063a1448194146105d2578063a22cb465146105fb576101e2565b80638456cb59146104c25780638c4582b0146104d95780638da5cb5b1461051657806395d89b4114610541576101e2565b80633f4ba83a1161017a5780635c975abb116101495780635c975abb146103f45780636352211e1461041f5780636bf0027b1461045c57806370a0823114610485576101e2565b80633f4ba83a1461035b57806340a5737f1461037257806342842e0e1461039b5780634f558e79146103b7576101e2565b8063095ea7b3116101b6578063095ea7b3146102cd57806318160ddd146102e957806323b872dd146103145780632986c0e514610330576101e2565b806298fa22146101e757806301ffc9a71461022857806306fdde0314610265578063081812fc14610290575b600080fd5b3480156101f357600080fd5b5061020e600480360381019061020991906122a6565b6107a3565b60405161021f9594939291906122fb565b60405180910390f35b34801561023457600080fd5b5061024f600480360381019061024a91906123a6565b6107d9565b60405161025c91906123ee565b60405180910390f35b34801561027157600080fd5b5061027a61086b565b6040516102879190612499565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906122a6565b6108fd565b6040516102c491906124fc565b60405180910390f35b6102e760048036038101906102e29190612543565b61095b565b005b3480156102f557600080fd5b506102fe61096b565b60405161030b9190612583565b60405180910390f35b61032e6004803603810190610329919061259e565b610982565b005b34801561033c57600080fd5b50610345610c43565b6040516103529190612583565b60405180910390f35b34801561036757600080fd5b50610370610c49565b005b34801561037e57600080fd5b50610399600480360381019061039491906122a6565b610cf6565b005b6103b560048036038101906103b0919061259e565b610d90565b005b3480156103c357600080fd5b506103de60048036038101906103d991906122a6565b610db0565b6040516103eb91906123ee565b60405180910390f35b34801561040057600080fd5b50610409610dc2565b60405161041691906123ee565b60405180910390f35b34801561042b57600080fd5b50610446600480360381019061044191906122a6565b610dd5565b60405161045391906124fc565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e91906127a1565b610de7565b005b34801561049157600080fd5b506104ac60048036038101906104a79190612810565b6111bb565b6040516104b99190612583565b60405180910390f35b3480156104ce57600080fd5b506104d7611252565b005b3480156104e557600080fd5b5061050060048036038101906104fb919061283d565b6112ff565b60405161050d9190612583565b60405180910390f35b34801561052257600080fd5b5061052b61135d565b60405161053891906124fc565b60405180910390f35b34801561054d57600080fd5b50610556611383565b6040516105639190612499565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e919061287d565b611415565b005b3480156105a157600080fd5b506105bc60048036038101906105b791906128f8565b6114ef565b6040516105c991906123ee565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190612543565b61156f565b005b34801561060757600080fd5b50610622600480360381019061061d91906129a7565b611664565b005b34801561063057600080fd5b5061063961176f565b6040516106469190612583565b60405180910390f35b61066960048036038101906106649190612a9c565b61177e565b005b34801561067757600080fd5b50610692600480360381019061068d91906122a6565b6117d0565b60405161069f9190612499565b60405180910390f35b3480156106b457600080fd5b506106bd61184d565b6040516106ca9190612583565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190612810565b611853565b6040516107079190612583565b60405180910390f35b34801561071c57600080fd5b50610725611865565b6040516107329190612583565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190612b1f565b611872565b60405161076f91906123ee565b60405180910390f35b34801561078457600080fd5b5061078d611906565b60405161079a9190612499565b60405180910390f35b60086020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154905085565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108645750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461087a90612b8e565b80601f01602080910402602001604051908101604052809291908181526020018280546108a690612b8e565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b5050505050905090565b600061090882611994565b61091d5761091c63cf4700e460e01b611a0d565b5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61096782826001611a17565b5050565b6000610975611b46565b6001546000540303905090565b600061098d82611b55565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a0257610a0163a114810060e01b611a0d565b5b600080610a0e84611c41565b91509150610a248187610a1f611c68565b611c70565b610a4f57610a3986610a34611c68565b611872565b610a4e57610a4d6359c896be60e01b611a0d565b5b5b610a5c8686866001611cb4565b8015610a6757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b3585610b11888887611cba565b7c020000000000000000000000000000000000000000000000000000000017611ce2565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610bbb5760006001850190506000600460008381526020019081526020016000205403610bb9576000548114610bb8578360046000838152602001908152602001600020819055505b5b505b600073ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460008103610c2d57610c2c63ea553b3460e01b611a0d565b5b610c3a8787876001611d0d565b50505050505050565b60095481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090612c0b565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90612c0b565b60405180910390fd5b8060098190555050565b610dab8383836040518060200160405280600081525061177e565b505050565b6000610dbb82611994565b9050919050565b600c60009054906101000a900460ff1681565b6000610de082611b55565b9050919050565b600d5481610df361096b565b610dfd9190612c5a565b1115610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590612cda565b60405180910390fd5b600c60009054906101000a900460ff1615610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8590612d46565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff163b14610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90612db2565b60405180910390fd5b610ef66009543385856114ef565b610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90612e1e565b60405180910390fd5b60086000600954815260200190815260200160002060020154421015610f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8790612e8a565b60405180910390fd5b600860006009548152602001908152602001600020600301544210610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe190612ef6565b60405180910390fd5b6008600060095481526020019081526020016000206000015481600860006009548152602001908152602001600020600101546110279190612c5a565b1115611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90612f62565b60405180910390fd5b8163ffffffff168160086000600954815260200190815260200160002060050160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110d09190612c5a565b1115611111576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110890612fce565b60405180910390fd5b8060086000600954815260200190815260200160002060010160008282546111399190612c5a565b925050819055508060086000600954815260200190815260200160002060050160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111a59190612c5a565b925050819055506111b63382611d13565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120157611200638f4eb60460e01b611a0d565b5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990612c0b565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b60006008600084815260200190815260200160002060050160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606003805461139290612b8e565b80601f01602080910402602001604051908101604052809291908181526020018280546113be90612b8e565b801561140b5780601f106113e05761010080835404028352916020019161140b565b820191906000526020600020905b8154815290600101906020018083116113ee57829003601f168201915b5050505050905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149c90612c0b565b60405180910390fd5b600060086000878152602001908152602001600020905084816000018190555083816002018190555082816003018190555081816004018190555085600981905550505050505050565b6000808483604051602001611505929190612ffd565b6040516020818303038152906040528051906020012060405160200161152b9190613047565b60405160208183030381529060405280519060200120905061156484600860008981526020019081526020016000206004015483611d31565b915050949350505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690612c0b565b60405180910390fd5b600d548161160b61096b565b6116159190612c5a565b1115611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d90612cda565b60405180910390fd5b6116608282611d13565b5050565b8060076000611671611c68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661171e611c68565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176391906123ee565b60405180910390a35050565b6000611779611d48565b905090565b611789848484610982565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117ca576117b484848484611d5b565b6117c9576117c863d1a57ed660e01b611a0d565b5b5b50505050565b60606117db82611994565b6117f0576117ef63a14c4b5060e01b611a0d565b5b60006117fa611e8a565b9050600081510361181a5760405180602001604052806000815250611845565b8061182484611f1c565b60405160200161183592919061309e565b6040516020818303038152906040525b915050919050565b600d5481565b600061185e82611f6c565b9050919050565b60006328f7503254905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b805461191390612b8e565b80601f016020809104026020016040519081016040528092919081815260200182805461193f90612b8e565b801561198c5780601f106119615761010080835404028352916020019161198c565b820191906000526020600020905b81548152906001019060200180831161196f57829003601f168201915b505050505081565b60008161199f611b46565b11611a0857600054821015611a075760005b60006004600085815260200190815260200160002054915081036119e057826119d9906130c2565b92506119b1565b60007c01000000000000000000000000000000000000000000000000000000008216149150505b5b919050565b8060005260046000fd5b6000611a2283610dd5565b9050818015611a6457508073ffffffffffffffffffffffffffffffffffffffff16611a4b611c68565b73ffffffffffffffffffffffffffffffffffffffff1614155b15611a9057611a7a81611a75611c68565b611872565b611a8f57611a8e63cfb3b94260e01b611a0d565b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b6000611b50611865565b905090565b600081611b60611b46565b11611c2b576004600083815260200190815260200160002054905060008103611c02576000548210611b9d57611b9c63df2d9b4260e01b611a0d565b5b5b60046000836001900393508381526020019081526020016000205490506000810315611bfd5760007c010000000000000000000000000000000000000000000000000000000082160315611c3c57611bfc63df2d9b4260e01b611a0d565b5b611b9e565b60007c010000000000000000000000000000000000000000000000000000000082160315611c3c575b611c3b63df2d9b4260e01b611a0d565b5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611cd1868684611fc3565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611d2d828260405180602001604052806000815250611fcc565b5050565b600082611d3e8584612051565b1490509392505050565b6000611d52611b46565b60005403905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d81611c68565b8786866040518563ffffffff1660e01b8152600401611da39493929190613140565b6020604051808303816000875af1925050508015611ddf57506040513d601f19601f82011682018060405250810190611ddc91906131a1565b60015b611e37573d8060008114611e0f576040519150601f19603f3d011682016040523d82523d6000602084013e611e14565b606091505b506000815103611e2f57611e2e63d1a57ed660e01b611a0d565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611e9990612b8e565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec590612b8e565b8015611f125780601f10611ee757610100808354040283529160200191611f12565b820191906000526020600020905b815481529060010190602001808311611ef557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f5757600184039350600a81066030018453600a8104905080611f35575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b611fd683836120a7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461204c57600080549050600083820390505b6120166000868380600101945086611d5b565b61202b5761202a63d1a57ed660e01b611a0d565b5b81811061200357816000541461204957612048600060e01b611a0d565b5b50505b505050565b60008082905060005b845181101561209c576120878286838151811061207a576120796131ce565b5b602002602001015161220a565b91508080612094906131fd565b91505061205a565b508091505092915050565b600080549050600082036120c6576120c563b562e8dd60e01b611a0d565b5b6120d36000848385611cb4565b6120f3836120e46000866000611cba565b6120ed85612235565b17611ce2565b6004600083815260200190815260200160002081905550600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff16169050600081036121ab576121aa632e07630060e01b611a0d565b5b6000838301905060008390505b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a48181600101915081036121b857816000819055505050506122056000848385611d0d565b505050565b60008183106122225761221d8284612245565b61222d565b61222c8383612245565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61228381612270565b811461228e57600080fd5b50565b6000813590506122a08161227a565b92915050565b6000602082840312156122bc576122bb612266565b5b60006122ca84828501612291565b91505092915050565b6122dc81612270565b82525050565b6000819050919050565b6122f5816122e2565b82525050565b600060a08201905061231060008301886122d3565b61231d60208301876122d3565b61232a60408301866122d3565b61233760608301856122d3565b61234460808301846122ec565b9695505050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123838161234e565b811461238e57600080fd5b50565b6000813590506123a08161237a565b92915050565b6000602082840312156123bc576123bb612266565b5b60006123ca84828501612391565b91505092915050565b60008115159050919050565b6123e8816123d3565b82525050565b600060208201905061240360008301846123df565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612443578082015181840152602081019050612428565b60008484015250505050565b6000601f19601f8301169050919050565b600061246b82612409565b6124758185612414565b9350612485818560208601612425565b61248e8161244f565b840191505092915050565b600060208201905081810360008301526124b38184612460565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124e6826124bb565b9050919050565b6124f6816124db565b82525050565b600060208201905061251160008301846124ed565b92915050565b612520816124db565b811461252b57600080fd5b50565b60008135905061253d81612517565b92915050565b6000806040838503121561255a57612559612266565b5b60006125688582860161252e565b925050602061257985828601612291565b9150509250929050565b600060208201905061259860008301846122d3565b92915050565b6000806000606084860312156125b7576125b6612266565b5b60006125c58682870161252e565b93505060206125d68682870161252e565b92505060406125e786828701612291565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61262e8261244f565b810181811067ffffffffffffffff8211171561264d5761264c6125f6565b5b80604052505050565b600061266061225c565b905061266c8282612625565b919050565b600067ffffffffffffffff82111561268c5761268b6125f6565b5b602082029050602081019050919050565b600080fd5b6126ab816122e2565b81146126b657600080fd5b50565b6000813590506126c8816126a2565b92915050565b60006126e16126dc84612671565b612656565b905080838252602082019050602084028301858111156127045761270361269d565b5b835b8181101561272d578061271988826126b9565b845260208401935050602081019050612706565b5050509392505050565b600082601f83011261274c5761274b6125f1565b5b813561275c8482602086016126ce565b91505092915050565b600063ffffffff82169050919050565b61277e81612765565b811461278957600080fd5b50565b60008135905061279b81612775565b92915050565b6000806000606084860312156127ba576127b9612266565b5b600084013567ffffffffffffffff8111156127d8576127d761226b565b5b6127e486828701612737565b93505060206127f58682870161278c565b925050604061280686828701612291565b9150509250925092565b60006020828403121561282657612825612266565b5b60006128348482850161252e565b91505092915050565b6000806040838503121561285457612853612266565b5b600061286285828601612291565b92505060206128738582860161252e565b9150509250929050565b600080600080600060a0868803121561289957612898612266565b5b60006128a788828901612291565b95505060206128b888828901612291565b94505060406128c988828901612291565b93505060606128da88828901612291565b92505060806128eb888289016126b9565b9150509295509295909350565b6000806000806080858703121561291257612911612266565b5b600061292087828801612291565b94505060206129318782880161252e565b935050604085013567ffffffffffffffff8111156129525761295161226b565b5b61295e87828801612737565b925050606061296f8782880161278c565b91505092959194509250565b612984816123d3565b811461298f57600080fd5b50565b6000813590506129a18161297b565b92915050565b600080604083850312156129be576129bd612266565b5b60006129cc8582860161252e565b92505060206129dd85828601612992565b9150509250929050565b600080fd5b600067ffffffffffffffff821115612a0757612a066125f6565b5b612a108261244f565b9050602081019050919050565b82818337600083830152505050565b6000612a3f612a3a846129ec565b612656565b905082815260208101848484011115612a5b57612a5a6129e7565b5b612a66848285612a1d565b509392505050565b600082601f830112612a8357612a826125f1565b5b8135612a93848260208601612a2c565b91505092915050565b60008060008060808587031215612ab657612ab5612266565b5b6000612ac48782880161252e565b9450506020612ad58782880161252e565b9350506040612ae687828801612291565b925050606085013567ffffffffffffffff811115612b0757612b0661226b565b5b612b1387828801612a6e565b91505092959194509250565b60008060408385031215612b3657612b35612266565b5b6000612b448582860161252e565b9250506020612b558582860161252e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ba657607f821691505b602082108103612bb957612bb8612b5f565b5b50919050565b7f6e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b6000612bf5600983612414565b9150612c0082612bbf565b602082019050919050565b60006020820190508181036000830152612c2481612be8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c6582612270565b9150612c7083612270565b9250828201905080821115612c8857612c87612c2b565b5b92915050565b7f6d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000612cc4601383612414565b9150612ccf82612c8e565b602082019050919050565b60006020820190508181036000830152612cf381612cb7565b9050919050565b7f7061757365640000000000000000000000000000000000000000000000000000600082015250565b6000612d30600683612414565b9150612d3b82612cfa565b602082019050919050565b60006020820190508181036000830152612d5f81612d23565b9050919050565b7f6e6f7420616c6c6f770000000000000000000000000000000000000000000000600082015250565b6000612d9c600983612414565b9150612da782612d66565b602082019050919050565b60006020820190508181036000830152612dcb81612d8f565b9050919050565b7f6e6f7420656c696769626c6520666f72206d696e740000000000000000000000600082015250565b6000612e08601583612414565b9150612e1382612dd2565b602082019050919050565b60006020820190508181036000830152612e3781612dfb565b9050919050565b7f6e6f742073746172740000000000000000000000000000000000000000000000600082015250565b6000612e74600983612414565b9150612e7f82612e3e565b602082019050919050565b60006020820190508181036000830152612ea381612e67565b9050919050565b7f6973206f76657200000000000000000000000000000000000000000000000000600082015250565b6000612ee0600783612414565b9150612eeb82612eaa565b602082019050919050565b60006020820190508181036000830152612f0f81612ed3565b9050919050565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612f4c600883612414565b9150612f5782612f16565b602082019050919050565b60006020820190508181036000830152612f7b81612f3f565b9050919050565b7f65786365656420746865206c696d697400000000000000000000000000000000600082015250565b6000612fb8601083612414565b9150612fc382612f82565b602082019050919050565b60006020820190508181036000830152612fe781612fab565b9050919050565b612ff781612765565b82525050565b600060408201905061301260008301856124ed565b61301f6020830184612fee565b9392505050565b6000819050919050565b61304161303c826122e2565b613026565b82525050565b60006130538284613030565b60208201915081905092915050565b600081905092915050565b600061307882612409565b6130828185613062565b9350613092818560208601612425565b80840191505092915050565b60006130aa828561306d565b91506130b6828461306d565b91508190509392505050565b60006130cd82612270565b9150600082036130e0576130df612c2b565b5b600182039050919050565b600081519050919050565b600082825260208201905092915050565b6000613112826130eb565b61311c81856130f6565b935061312c818560208601612425565b6131358161244f565b840191505092915050565b600060808201905061315560008301876124ed565b61316260208301866124ed565b61316f60408301856122d3565b81810360608301526131818184613107565b905095945050505050565b60008151905061319b8161237a565b92915050565b6000602082840312156131b7576131b6612266565b5b60006131c58482850161318c565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061320882612270565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361323a57613239612c2b565b5b60018201905091905056fea2646970667358221220d09f8e59ea68a79b0d73a93c8d046c865f2f558352c41e6932e37af499fa507a64736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000002a417374726f20426f792052656420426f6f74732033202d2054434f4d206f662041434720576f726c6473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011417374726f426f79526564426f6f747333000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e68747470733a2f2f6163672d6e66742e73332e61702d6e6f727468656173742d312e616d617a6f6e6177732e636f6d2f617374726f626f792f6a736f6e2f0000

-----Decoded View---------------
Arg [0] : name (string): Astro Boy Red Boots 3 - TCOM of ACG Worlds
Arg [1] : symbol (string): AstroBoyRedBoots3
Arg [2] : baseURI (string): https://acg-nft.s3.ap-northeast-1.amazonaws.com/astroboy/json/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [4] : 417374726f20426f792052656420426f6f74732033202d2054434f4d206f6620
Arg [5] : 41434720576f726c647300000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [7] : 417374726f426f79526564426f6f747333000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000003e
Arg [9] : 68747470733a2f2f6163672d6e66742e73332e61702d6e6f727468656173742d
Arg [10] : 312e616d617a6f6e6177732e636f6d2f617374726f626f792f6a736f6e2f0000


Deployed Bytecode Sourcemap

147:3274:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;404:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;9164:630:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10048:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16911:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16639:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20546:3447;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;452:20:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2398:69;;;;;;;;;;;;;:::i;:::-;;2242:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24084:187:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3092:100:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;527:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11409:150:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;877:836:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7045:239:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2326:66:0;;;;;;;;;;;;;:::i;:::-;;2744:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;478:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10217:102:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1913:322:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2473:265;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1719:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17461:231:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2995:91:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24852:405:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10420:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;552:31:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2880:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;667:155:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17842:162:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;504:17:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;404:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9164:630:1:-;9249:4;9582:10;9567:25;;:11;:25;;;;:101;;;;9658:10;9643:25;;:11;:25;;;;9567:101;:177;;;;9734:10;9719:25;;:11;:25;;;;9567:177;9548:196;;9164:630;;;:::o;10048:98::-;10102:13;10134:5;10127:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10048:98;:::o;16911:223::-;16987:7;17011:16;17019:7;17011;:16::i;:::-;17006:73;;17029:50;17037:41;;;17029:7;:50::i;:::-;17006:73;17097:15;:24;17113:7;17097:24;;;;;;;;;;;:30;;;;;;;;;;;;17090:37;;16911:223;;;:::o;16639:122::-;16727:27;16736:2;16740:7;16749:4;16727:8;:27::i;:::-;16639:122;;:::o;5894:317::-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;20546:3447::-;20683:27;20713;20732:7;20713:18;:27::i;:::-;20683:57;;2785:14;20881:4;20865:22;;:41;20842:66;;20964:4;20923:45;;20939:19;20923:45;;;20919:95;;20970:44;20978:35;;;20970:7;:44::i;:::-;20919:95;21026:27;21055:23;21082:35;21109:7;21082:26;:35::i;:::-;21025:92;;;;21214:68;21239:15;21256:4;21262:19;:17;:19::i;:::-;21214:24;:68::i;:::-;21209:188;;21301:43;21318:4;21324:19;:17;:19::i;:::-;21301:16;:43::i;:::-;21296:101;;21346:51;21354:42;;;21346:7;:51::i;:::-;21296:101;21209:188;21408:43;21430:4;21436:2;21440:7;21449:1;21408:21;:43::i;:::-;21540:15;21537:157;;;21678:1;21657:19;21650:30;21537:157;22066:18;:24;22085:4;22066:24;;;;;;;;;;;;;;;;22064:26;;;;;;;;;;;;22134:18;:22;22153:2;22134:22;;;;;;;;;;;;;;;;22132:24;;;;;;;;;;;22449:143;22485:2;22533:45;22548:4;22554:2;22558:19;22533:14;:45::i;:::-;2392:8;22505:73;22449:18;:143::i;:::-;22420:17;:26;22438:7;22420:26;;;;;;;;;;;:172;;;;22760:1;2392:8;22709:19;:47;:52;22705:617;;22781:19;22813:1;22803:7;:11;22781:33;;22968:1;22934:17;:30;22952:11;22934:30;;;;;;;;;;;;:35;22930:378;;23070:13;;23055:11;:28;23051:239;;23248:19;23215:17;:30;23233:11;23215:30;;;;;;;;;;;:52;;;;23051:239;22930:378;22763:559;22705:617;23431:16;2785:14;23466:2;23450:20;;:39;23431:58;;23821:7;23786:8;23753:4;23696:25;23642:1;23586;23564:292;23891:1;23879:8;:13;23875:58;;23894:39;23902:30;;;23894:7;:39::i;:::-;23875:58;23944:42;23965:4;23971:2;23975:7;23984:1;23944:20;:42::i;:::-;20673:3320;;;;20546:3447;;;:::o;452:20:0:-;;;;:::o;2398:69::-;643:5;;;;;;;;;;;629:19;;:10;:19;;;621:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2455:5:::1;2446:6;;:14;;;;;;;;;;;;;;;;;;2398:69::o:0;2242:78::-;643:5;;;;;;;;;;;629:19;;:10;:19;;;621:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2310:3:::1;2302:5;:11;;;;2242:78:::0;:::o;24084:187:1:-;24225:39;24242:4;24248:2;24252:7;24225:39;;;;;;;;;;;;:16;:39::i;:::-;24084:187;;;:::o;3092:100:0:-;3146:4;3169:16;3177:7;3169;:16::i;:::-;3162:23;;3092:100;;;:::o;527:18::-;;;;;;;;;;;;;:::o;11409:150:1:-;11481:7;11523:27;11542:7;11523:18;:27::i;:::-;11500:52;;11409:150;;;:::o;877:836:0:-;1015:9;;1003:8;987:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;979:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1068:6;;;;;;;;;;;1067:7;1059:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;1130:1;1104:10;:22;;;:27;1096:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;1164:38;1170:5;;1177:10;1189:5;1196;1164;:38::i;:::-;1156:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;1266:7;:14;1274:5;;1266:14;;;;;;;;;;;:24;;;1247:15;:43;;1239:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;1341:7;:14;1349:5;;1341:14;;;;;;;;;;;:22;;;1323:15;:40;1315:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;1438:7;:14;1446:5;;1438:14;;;;;;;;;;;:20;;;1426:8;1403:7;:14;1411:5;;1403:14;;;;;;;;;;;:20;;;:31;;;;:::i;:::-;:55;;1395:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1538:5;1489:54;;1526:8;1489:7;:14;1497:5;;1489:14;;;;;;;;;;;:22;;:34;1512:10;1489:34;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;:54;;1481:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;1599:8;1575:7;:14;1583:5;;1575:14;;;;;;;;;;;:20;;;:32;;;;;;;:::i;:::-;;;;;;;;1655:8;1617:7;:14;1625:5;;1617:14;;;;;;;;;;;:22;;:34;1640:10;1617:34;;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;1675:31;1685:10;1697:8;1675:9;:31::i;:::-;877:836;;;:::o;7045:239:1:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:69;;7161:44;7169:35;;;7161:7;:44::i;:::-;7136:69;1360:13;7222:18;:25;7241:5;7222:25;;;;;;;;;;;;;;;;:55;7215:62;;7045:239;;;:::o;2326:66:0:-;643:5;;;;;;;;;;;629:19;;:10;:19;;;621:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2381:4:::1;2372:6;;:13;;;;;;;;;;;;;;;;;;2326:66::o:0;2744:130::-;2815:7;2841;:12;2849:3;2841:12;;;;;;;;;;;:20;;:26;2862:4;2841:26;;;;;;;;;;;;;;;;2834:33;;2744:130;;;;:::o;478:20::-;;;;;;;;;;;;;:::o;10217:102:1:-;10273:13;10305:7;10298:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10217:102;:::o;1913:322:0:-;643:5;;;;;;;;;;;629:19;;:10;:19;;;621:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2040:21:::1;2064:7;:12;2072:3;2064:12;;;;;;;;;;;2040:36;;2101:5;2086:6;:12;;:20;;;;2135:9;2116:6;:16;;:28;;;;2171:7;2154:6;:14;;:24;;;;2202:4;2188:6;:11;;:18;;;;2225:3;2217:5;:11;;;;2029:206;1913:322:::0;;;;;:::o;2473:265::-;2574:4;2590:12;2649:4;2655:5;2638:23;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2628:34;;;;;;2615:48;;;;;;;;:::i;:::-;;;;;;;;;;;;;2605:59;;;;;;2590:74;;2681:50;2700:5;2707:7;:12;2715:3;2707:12;;;;;;;;;;;:17;;;2726:4;2681:18;:50::i;:::-;2674:57;;;2473:265;;;;;;:::o;1719:187::-;643:5;;;;;;;;;;;629:19;;:10;:19;;;621:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1833:9:::1;;1821:8;1805:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;1797:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1876:23;1886:2;1890:8;1876:9;:23::i;:::-;1719:187:::0;;:::o;17461:231:1:-;17607:8;17555:18;:39;17574:19;:17;:19::i;:::-;17555:39;;;;;;;;;;;;;;;:49;17595:8;17555:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17666:8;17630:55;;17645:19;:17;:19::i;:::-;17630:55;;;17676:8;17630:55;;;;;;:::i;:::-;;;;;;;;17461:231;;:::o;2995:91:0:-;3039:7;3065:14;:12;:14::i;:::-;3058:21;;2995:91;:::o;24852:405:1:-;25021:31;25034:4;25040:2;25044:7;25021:12;:31::i;:::-;25084:1;25066:2;:14;;;:19;25062:189;;25104:56;25135:4;25141:2;25145:7;25154:5;25104:30;:56::i;:::-;25099:152;;25180:56;25188:47;;;25180:7;:56::i;:::-;25099:152;25062:189;24852:405;;;;:::o;10420:322::-;10493:13;10523:16;10531:7;10523;:16::i;:::-;10518:68;;10541:45;10549:36;;;10541:7;:45::i;:::-;10518:68;10597:21;10621:10;:8;:10::i;:::-;10597:34;;10673:1;10654:7;10648:21;:26;:87;;;;;;;;;;;;;;;;;10701:7;10710:18;10720:7;10710:9;:18::i;:::-;10684:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10648:87;10641:94;;;10420:322;;;:::o;552:31:0:-;;;;:::o;2880:109::-;2937:7;2963:19;2977:4;2963:13;:19::i;:::-;2956:26;;2880:109;;;:::o;667:155:4:-;712:14;777:28;771:35;761:45;;667:155;:::o;17842:162:1:-;17939:4;17962:18;:25;17981:5;17962:25;;;;;;;;;;;;;;;:35;17988:8;17962:35;;;;;;;;;;;;;;;;;;;;;;;;;17955:42;;17842:162;;;;:::o;504:17:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18253:360:1:-;18318:11;18364:7;18345:15;:13;:15::i;:::-;:26;18341:266;;18401:13;;18391:7;:23;18387:210;;;18434:14;18466:60;18514:1;18483:17;:26;18501:7;18483:26;;;;;;;;;;;;18474:35;;;18473:42;18466:60;;18517:9;;;;:::i;:::-;;;18466:60;;;18581:1;2118:8;18553:6;:24;:29;18544:38;;18416:181;18387:210;18341:266;18253:360;;;:::o;43371:160::-;43470:13;43464:4;43457:27;43510:4;43504;43497:18;35019:460;35143:13;35159:16;35167:7;35159;:16::i;:::-;35143:32;;35190:13;:45;;;;;35230:5;35207:28;;:19;:17;:19::i;:::-;:28;;;;35190:45;35186:198;;;35254:44;35271:5;35278:19;:17;:19::i;:::-;35254:16;:44::i;:::-;35249:135;;35318:51;35326:42;;;35318:7;:51::i;:::-;35249:135;35186:198;35427:2;35394:15;:24;35410:7;35394:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35464:7;35460:2;35444:28;;35453:5;35444:28;;;;;;;;;;;;35133:346;35019:460;;;:::o;3306:112:0:-;3371:7;3397:14;:12;:14::i;:::-;3390:21;;3306:112;:::o;12850:1978:1:-;12917:14;12966:7;12947:15;:13;:15::i;:::-;:26;12943:1822;;12998:17;:26;13016:7;12998:26;;;;;;;;;;;;12989:35;;13132:1;13122:6;:11;13118:1270;;13168:13;;13157:7;:24;13153:77;;13183:47;13191:38;;;13183:7;:47::i;:::-;13153:77;13777:597;13853:17;:28;13871:9;;;;;;;13853:28;;;;;;;;;;;;13844:37;;13939:1;13929:6;:11;13925:25;13942:8;13925:25;14004:1;2118:8;13976:6;:24;:29;13972:48;14007:13;13972:48;14308:47;14316:38;;;14308:7;:47::i;:::-;13777:597;;;13118:1270;14738:1;2118:8;14710:6;:24;:29;14706:48;14741:13;14706:48;12943:1822;14774:47;14782:38;;;14774:7;:47::i;:::-;12850:1978;;;;:::o;19471:474::-;19570:27;19599:23;19638:38;19679:15;:24;19695:7;19679:24;;;;;;;;;;;19638:65;;19853:18;19830:41;;19909:19;19903:26;19884:45;;19816:123;19471:474;;;:::o;41401:103::-;41461:7;41487:10;41480:17;;41401:103;:::o;18717:646::-;18862:11;19024:16;19017:5;19013:28;19004:37;;19182:16;19171:9;19167:32;19154:45;;19330:15;19319:9;19316:30;19308:5;19297:9;19294:20;19291:56;19281:66;;18717:646;;;;;:::o;25901:154::-;;;;;:::o;40728:304::-;40859:7;40878:16;2513:3;40904:19;:41;;40878:68;;2513:3;40971:31;40982:4;40988:2;40992:9;40971:10;:31::i;:::-;40963:40;;:62;;40956:69;;;40728:304;;;;;:::o;15361:443::-;15441:14;15606:16;15599:5;15595:28;15586:37;;15781:5;15767:11;15742:23;15738:41;15735:52;15728:5;15725:63;15715:73;;15361:443;;;;:::o;26702:153::-;;;;;:::o;34129:110::-;34205:27;34215:2;34219:8;34205:27;;;;;;;;;;;;:9;:27::i;:::-;34129:110;;:::o;1156:154:3:-;1247:4;1299;1270:25;1283:5;1290:4;1270:12;:25::i;:::-;:33;1263:40;;1156:154;;;;;:::o;6304:290:1:-;6359:7;6562:15;:13;:15::i;:::-;6546:13;;:31;6539:38;;6304:290;:::o;27283:673::-;27441:4;27486:2;27461:45;;;27507:19;:17;:19::i;:::-;27528:4;27534:7;27543:5;27461:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;27457:493;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27756:1;27739:6;:13;:18;27735:113;;27777:56;27785:47;;;27777:7;:56::i;:::-;27735:113;27918:6;27912:13;27903:6;27899:2;27895:15;27888:38;27457:493;27627:54;;;27617:64;;;:6;:64;;;;27610:71;;;27283:673;;;;;;:::o;3198:102:0:-;3258:13;3290:3;3283:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3198:102;:::o;41601:1708:1:-;41666:17;42094:4;42087;42081:11;42077:22;42184:1;42178:4;42171:15;42257:4;42254:1;42250:12;42243:19;;42337:1;42332:3;42325:14;42438:3;42672:5;42654:419;42680:1;42654:419;;;42719:1;42714:3;42710:11;42703:18;;42887:2;42881:4;42877:13;42873:2;42869:22;42864:3;42856:36;42979:2;42973:4;42969:13;42961:21;;43044:4;42654:419;43034:25;42654:419;42658:21;43110:3;43105;43101:13;43223:4;43218:3;43214:14;43207:21;;43286:6;43281:3;43274:19;41704:1599;;;41601:1708;;;:::o;7361:176::-;7422:7;1360:13;1495:2;7449:18;:25;7468:5;7449:25;;;;;;;;;;;;;;;;:50;;7448:82;7441:89;;7361:176;;;:::o;40439:143::-;40572:6;40439:143;;;;;:::o;33362:688::-;33488:19;33494:2;33498:8;33488:5;:19::i;:::-;33564:1;33546:2;:14;;;:19;33542:492;;33585:11;33599:13;;33585:27;;33630:13;33652:8;33646:3;:14;33630:30;;33678:238;33708:62;33747:1;33751:2;33755:7;;;;;;33764:5;33708:30;:62::i;:::-;33703:174;;33798:56;33806:47;;;33798:7;:56::i;:::-;33703:174;33911:3;33903:5;:11;33678:238;;33996:3;33979:13;;:20;33975:44;;34001:18;34016:1;34009:9;;34001:7;:18::i;:::-;33975:44;33567:467;;33542:492;33362:688;;;:::o;1934:290:3:-;2017:7;2036:20;2059:4;2036:27;;2078:9;2073:116;2097:5;:12;2093:1;:16;2073:116;;;2145:33;2155:12;2169:5;2175:1;2169:8;;;;;;;;:::i;:::-;;;;;;;;2145:9;:33::i;:::-;2130:48;;2111:3;;;;;:::i;:::-;;;;2073:116;;;;2205:12;2198:19;;;1934:290;;;;:::o;28402:2251:1:-;28474:20;28497:13;;28474:36;;28536:1;28524:8;:13;28520:53;;28539:34;28547:25;;;28539:7;:34::i;:::-;28520:53;28584:61;28614:1;28618:2;28622:12;28636:8;28584:21;:61::i;:::-;29107:136;29143:2;29196:33;29219:1;29223:2;29227:1;29196:14;:33::i;:::-;29163:30;29184:8;29163:20;:30::i;:::-;:66;29107:18;:136::i;:::-;29073:17;:31;29091:12;29073:31;;;;;;;;;;;:170;;;;29523:1;1495:2;29493:1;:26;;29492:32;29480:8;:45;29454:18;:22;29473:2;29454:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;29633:16;2785:14;29668:2;29652:20;;:39;29633:58;;29722:1;29710:8;:13;29706:54;;29725:35;29733:26;;;29725:7;:35::i;:::-;29706:54;29775:11;29804:8;29789:12;:23;29775:37;;29826:15;29844:12;29826:30;;29871:662;30281:7;30238:8;30194:1;30129:25;30067:1;30003;29973:351;30528:3;30515:9;;;;;;:16;29871:662;;30563:3;30547:13;:19;;;;28828:1749;;;30586:60;30615:1;30619:2;30623:12;30637:8;30586:20;:60::i;:::-;28464:2189;28402:2251;;:::o;8975:147:3:-;9038:7;9068:1;9064;:5;:51;;9095:20;9110:1;9113;9095:14;:20::i;:::-;9064:51;;;9072:20;9087:1;9090;9072:14;:20::i;:::-;9064:51;9057:58;;8975:147;;;;:::o;15901:318:1:-;15971:14;16200:1;16190:8;16187:15;16161:24;16157:46;16147:56;;15901:318;;;:::o;9128:261:3:-;9196:13;9300:1;9294:4;9287:15;9328:1;9322:4;9315:15;9368:4;9362;9352:21;9343:30;;9128:261;;;;:::o;7:75:5:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:118::-;1112:24;1130:5;1112:24;:::i;:::-;1107:3;1100:37;1025:118;;:::o;1149:77::-;1186:7;1215:5;1204:16;;1149:77;;;:::o;1232:118::-;1319:24;1337:5;1319:24;:::i;:::-;1314:3;1307:37;1232:118;;:::o;1356:664::-;1561:4;1599:3;1588:9;1584:19;1576:27;;1613:71;1681:1;1670:9;1666:17;1657:6;1613:71;:::i;:::-;1694:72;1762:2;1751:9;1747:18;1738:6;1694:72;:::i;:::-;1776;1844:2;1833:9;1829:18;1820:6;1776:72;:::i;:::-;1858;1926:2;1915:9;1911:18;1902:6;1858:72;:::i;:::-;1940:73;2008:3;1997:9;1993:19;1984:6;1940:73;:::i;:::-;1356:664;;;;;;;;:::o;2026:149::-;2062:7;2102:66;2095:5;2091:78;2080:89;;2026:149;;;:::o;2181:120::-;2253:23;2270:5;2253:23;:::i;:::-;2246:5;2243:34;2233:62;;2291:1;2288;2281:12;2233:62;2181:120;:::o;2307:137::-;2352:5;2390:6;2377:20;2368:29;;2406:32;2432:5;2406:32;:::i;:::-;2307:137;;;;:::o;2450:327::-;2508:6;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:52;2752:7;2743:6;2732:9;2728:22;2708:52;:::i;:::-;2698:62;;2654:116;2450:327;;;;:::o;2783:90::-;2817:7;2860:5;2853:13;2846:21;2835:32;;2783:90;;;:::o;2879:109::-;2960:21;2975:5;2960:21;:::i;:::-;2955:3;2948:34;2879:109;;:::o;2994:210::-;3081:4;3119:2;3108:9;3104:18;3096:26;;3132:65;3194:1;3183:9;3179:17;3170:6;3132:65;:::i;:::-;2994:210;;;;:::o;3210:99::-;3262:6;3296:5;3290:12;3280:22;;3210:99;;;:::o;3315:169::-;3399:11;3433:6;3428:3;3421:19;3473:4;3468:3;3464:14;3449:29;;3315:169;;;;:::o;3490:246::-;3571:1;3581:113;3595:6;3592:1;3589:13;3581:113;;;3680:1;3675:3;3671:11;3665:18;3661:1;3656:3;3652:11;3645:39;3617:2;3614:1;3610:10;3605:15;;3581:113;;;3728:1;3719:6;3714:3;3710:16;3703:27;3552:184;3490:246;;;:::o;3742:102::-;3783:6;3834:2;3830:7;3825:2;3818:5;3814:14;3810:28;3800:38;;3742:102;;;:::o;3850:377::-;3938:3;3966:39;3999:5;3966:39;:::i;:::-;4021:71;4085:6;4080:3;4021:71;:::i;:::-;4014:78;;4101:65;4159:6;4154:3;4147:4;4140:5;4136:16;4101:65;:::i;:::-;4191:29;4213:6;4191:29;:::i;:::-;4186:3;4182:39;4175:46;;3942:285;3850:377;;;;:::o;4233:313::-;4346:4;4384:2;4373:9;4369:18;4361:26;;4433:9;4427:4;4423:20;4419:1;4408:9;4404:17;4397:47;4461:78;4534:4;4525:6;4461:78;:::i;:::-;4453:86;;4233:313;;;;:::o;4552:126::-;4589:7;4629:42;4622:5;4618:54;4607:65;;4552:126;;;:::o;4684:96::-;4721:7;4750:24;4768:5;4750:24;:::i;:::-;4739:35;;4684:96;;;:::o;4786:118::-;4873:24;4891:5;4873:24;:::i;:::-;4868:3;4861:37;4786:118;;:::o;4910:222::-;5003:4;5041:2;5030:9;5026:18;5018:26;;5054:71;5122:1;5111:9;5107:17;5098:6;5054:71;:::i;:::-;4910:222;;;;:::o;5138:122::-;5211:24;5229:5;5211:24;:::i;:::-;5204:5;5201:35;5191:63;;5250:1;5247;5240:12;5191:63;5138:122;:::o;5266:139::-;5312:5;5350:6;5337:20;5328:29;;5366:33;5393:5;5366:33;:::i;:::-;5266:139;;;;:::o;5411:474::-;5479:6;5487;5536:2;5524:9;5515:7;5511:23;5507:32;5504:119;;;5542:79;;:::i;:::-;5504:119;5662:1;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5633:117;5789:2;5815:53;5860:7;5851:6;5840:9;5836:22;5815:53;:::i;:::-;5805:63;;5760:118;5411:474;;;;;:::o;5891:222::-;5984:4;6022:2;6011:9;6007:18;5999:26;;6035:71;6103:1;6092:9;6088:17;6079:6;6035:71;:::i;:::-;5891:222;;;;:::o;6119:619::-;6196:6;6204;6212;6261:2;6249:9;6240:7;6236:23;6232:32;6229:119;;;6267:79;;:::i;:::-;6229:119;6387:1;6412:53;6457:7;6448:6;6437:9;6433:22;6412:53;:::i;:::-;6402:63;;6358:117;6514:2;6540:53;6585:7;6576:6;6565:9;6561:22;6540:53;:::i;:::-;6530:63;;6485:118;6642:2;6668:53;6713:7;6704:6;6693:9;6689:22;6668:53;:::i;:::-;6658:63;;6613:118;6119:619;;;;;:::o;6744:117::-;6853:1;6850;6843:12;6867:180;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:281;7136:27;7158:4;7136:27;:::i;:::-;7128:6;7124:40;7266:6;7254:10;7251:22;7230:18;7218:10;7215:34;7212:62;7209:88;;;7277:18;;:::i;:::-;7209:88;7317:10;7313:2;7306:22;7096:238;7053:281;;:::o;7340:129::-;7374:6;7401:20;;:::i;:::-;7391:30;;7430:33;7458:4;7450:6;7430:33;:::i;:::-;7340:129;;;:::o;7475:311::-;7552:4;7642:18;7634:6;7631:30;7628:56;;;7664:18;;:::i;:::-;7628:56;7714:4;7706:6;7702:17;7694:25;;7774:4;7768;7764:15;7756:23;;7475:311;;;:::o;7792:117::-;7901:1;7898;7891:12;7915:122;7988:24;8006:5;7988:24;:::i;:::-;7981:5;7978:35;7968:63;;8027:1;8024;8017:12;7968:63;7915:122;:::o;8043:139::-;8089:5;8127:6;8114:20;8105:29;;8143:33;8170:5;8143:33;:::i;:::-;8043:139;;;;:::o;8205:710::-;8301:5;8326:81;8342:64;8399:6;8342:64;:::i;:::-;8326:81;:::i;:::-;8317:90;;8427:5;8456:6;8449:5;8442:21;8490:4;8483:5;8479:16;8472:23;;8543:4;8535:6;8531:17;8523:6;8519:30;8572:3;8564:6;8561:15;8558:122;;;8591:79;;:::i;:::-;8558:122;8706:6;8689:220;8723:6;8718:3;8715:15;8689:220;;;8798:3;8827:37;8860:3;8848:10;8827:37;:::i;:::-;8822:3;8815:50;8894:4;8889:3;8885:14;8878:21;;8765:144;8749:4;8744:3;8740:14;8733:21;;8689:220;;;8693:21;8307:608;;8205:710;;;;;:::o;8938:370::-;9009:5;9058:3;9051:4;9043:6;9039:17;9035:27;9025:122;;9066:79;;:::i;:::-;9025:122;9183:6;9170:20;9208:94;9298:3;9290:6;9283:4;9275:6;9271:17;9208:94;:::i;:::-;9199:103;;9015:293;8938:370;;;;:::o;9314:93::-;9350:7;9390:10;9383:5;9379:22;9368:33;;9314:93;;;:::o;9413:120::-;9485:23;9502:5;9485:23;:::i;:::-;9478:5;9475:34;9465:62;;9523:1;9520;9513:12;9465:62;9413:120;:::o;9539:137::-;9584:5;9622:6;9609:20;9600:29;;9638:32;9664:5;9638:32;:::i;:::-;9539:137;;;;:::o;9682:827::-;9783:6;9791;9799;9848:2;9836:9;9827:7;9823:23;9819:32;9816:119;;;9854:79;;:::i;:::-;9816:119;10002:1;9991:9;9987:17;9974:31;10032:18;10024:6;10021:30;10018:117;;;10054:79;;:::i;:::-;10018:117;10159:78;10229:7;10220:6;10209:9;10205:22;10159:78;:::i;:::-;10149:88;;9945:302;10286:2;10312:52;10356:7;10347:6;10336:9;10332:22;10312:52;:::i;:::-;10302:62;;10257:117;10413:2;10439:53;10484:7;10475:6;10464:9;10460:22;10439:53;:::i;:::-;10429:63;;10384:118;9682:827;;;;;:::o;10515:329::-;10574:6;10623:2;10611:9;10602:7;10598:23;10594:32;10591:119;;;10629:79;;:::i;:::-;10591:119;10749:1;10774:53;10819:7;10810:6;10799:9;10795:22;10774:53;:::i;:::-;10764:63;;10720:117;10515:329;;;;:::o;10850:474::-;10918:6;10926;10975:2;10963:9;10954:7;10950:23;10946:32;10943:119;;;10981:79;;:::i;:::-;10943:119;11101:1;11126:53;11171:7;11162:6;11151:9;11147:22;11126:53;:::i;:::-;11116:63;;11072:117;11228:2;11254:53;11299:7;11290:6;11279:9;11275:22;11254:53;:::i;:::-;11244:63;;11199:118;10850:474;;;;;:::o;11330:911::-;11425:6;11433;11441;11449;11457;11506:3;11494:9;11485:7;11481:23;11477:33;11474:120;;;11513:79;;:::i;:::-;11474:120;11633:1;11658:53;11703:7;11694:6;11683:9;11679:22;11658:53;:::i;:::-;11648:63;;11604:117;11760:2;11786:53;11831:7;11822:6;11811:9;11807:22;11786:53;:::i;:::-;11776:63;;11731:118;11888:2;11914:53;11959:7;11950:6;11939:9;11935:22;11914:53;:::i;:::-;11904:63;;11859:118;12016:2;12042:53;12087:7;12078:6;12067:9;12063:22;12042:53;:::i;:::-;12032:63;;11987:118;12144:3;12171:53;12216:7;12207:6;12196:9;12192:22;12171:53;:::i;:::-;12161:63;;12115:119;11330:911;;;;;;;;:::o;12247:973::-;12357:6;12365;12373;12381;12430:3;12418:9;12409:7;12405:23;12401:33;12398:120;;;12437:79;;:::i;:::-;12398:120;12557:1;12582:53;12627:7;12618:6;12607:9;12603:22;12582:53;:::i;:::-;12572:63;;12528:117;12684:2;12710:53;12755:7;12746:6;12735:9;12731:22;12710:53;:::i;:::-;12700:63;;12655:118;12840:2;12829:9;12825:18;12812:32;12871:18;12863:6;12860:30;12857:117;;;12893:79;;:::i;:::-;12857:117;12998:78;13068:7;13059:6;13048:9;13044:22;12998:78;:::i;:::-;12988:88;;12783:303;13125:2;13151:52;13195:7;13186:6;13175:9;13171:22;13151:52;:::i;:::-;13141:62;;13096:117;12247:973;;;;;;;:::o;13226:116::-;13296:21;13311:5;13296:21;:::i;:::-;13289:5;13286:32;13276:60;;13332:1;13329;13322:12;13276:60;13226:116;:::o;13348:133::-;13391:5;13429:6;13416:20;13407:29;;13445:30;13469:5;13445:30;:::i;:::-;13348:133;;;;:::o;13487:468::-;13552:6;13560;13609:2;13597:9;13588:7;13584:23;13580:32;13577:119;;;13615:79;;:::i;:::-;13577:119;13735:1;13760:53;13805:7;13796:6;13785:9;13781:22;13760:53;:::i;:::-;13750:63;;13706:117;13862:2;13888:50;13930:7;13921:6;13910:9;13906:22;13888:50;:::i;:::-;13878:60;;13833:115;13487:468;;;;;:::o;13961:117::-;14070:1;14067;14060:12;14084:307;14145:4;14235:18;14227:6;14224:30;14221:56;;;14257:18;;:::i;:::-;14221:56;14295:29;14317:6;14295:29;:::i;:::-;14287:37;;14379:4;14373;14369:15;14361:23;;14084:307;;;:::o;14397:146::-;14494:6;14489:3;14484;14471:30;14535:1;14526:6;14521:3;14517:16;14510:27;14397:146;;;:::o;14549:423::-;14626:5;14651:65;14667:48;14708:6;14667:48;:::i;:::-;14651:65;:::i;:::-;14642:74;;14739:6;14732:5;14725:21;14777:4;14770:5;14766:16;14815:3;14806:6;14801:3;14797:16;14794:25;14791:112;;;14822:79;;:::i;:::-;14791:112;14912:54;14959:6;14954:3;14949;14912:54;:::i;:::-;14632:340;14549:423;;;;;:::o;14991:338::-;15046:5;15095:3;15088:4;15080:6;15076:17;15072:27;15062:122;;15103:79;;:::i;:::-;15062:122;15220:6;15207:20;15245:78;15319:3;15311:6;15304:4;15296:6;15292:17;15245:78;:::i;:::-;15236:87;;15052:277;14991:338;;;;:::o;15335:943::-;15430:6;15438;15446;15454;15503:3;15491:9;15482:7;15478:23;15474:33;15471:120;;;15510:79;;:::i;:::-;15471:120;15630:1;15655:53;15700:7;15691:6;15680:9;15676:22;15655:53;:::i;:::-;15645:63;;15601:117;15757:2;15783:53;15828:7;15819:6;15808:9;15804:22;15783:53;:::i;:::-;15773:63;;15728:118;15885:2;15911:53;15956:7;15947:6;15936:9;15932:22;15911:53;:::i;:::-;15901:63;;15856:118;16041:2;16030:9;16026:18;16013:32;16072:18;16064:6;16061:30;16058:117;;;16094:79;;:::i;:::-;16058:117;16199:62;16253:7;16244:6;16233:9;16229:22;16199:62;:::i;:::-;16189:72;;15984:287;15335:943;;;;;;;:::o;16284:474::-;16352:6;16360;16409:2;16397:9;16388:7;16384:23;16380:32;16377:119;;;16415:79;;:::i;:::-;16377:119;16535:1;16560:53;16605:7;16596:6;16585:9;16581:22;16560:53;:::i;:::-;16550:63;;16506:117;16662:2;16688:53;16733:7;16724:6;16713:9;16709:22;16688:53;:::i;:::-;16678:63;;16633:118;16284:474;;;;;:::o;16764:180::-;16812:77;16809:1;16802:88;16909:4;16906:1;16899:15;16933:4;16930:1;16923:15;16950:320;16994:6;17031:1;17025:4;17021:12;17011:22;;17078:1;17072:4;17068:12;17099:18;17089:81;;17155:4;17147:6;17143:17;17133:27;;17089:81;17217:2;17209:6;17206:14;17186:18;17183:38;17180:84;;17236:18;;:::i;:::-;17180:84;17001:269;16950:320;;;:::o;17276:159::-;17416:11;17412:1;17404:6;17400:14;17393:35;17276:159;:::o;17441:365::-;17583:3;17604:66;17668:1;17663:3;17604:66;:::i;:::-;17597:73;;17679:93;17768:3;17679:93;:::i;:::-;17797:2;17792:3;17788:12;17781:19;;17441:365;;;:::o;17812:419::-;17978:4;18016:2;18005:9;18001:18;17993:26;;18065:9;18059:4;18055:20;18051:1;18040:9;18036:17;18029:47;18093:131;18219:4;18093:131;:::i;:::-;18085:139;;17812:419;;;:::o;18237:180::-;18285:77;18282:1;18275:88;18382:4;18379:1;18372:15;18406:4;18403:1;18396:15;18423:191;18463:3;18482:20;18500:1;18482:20;:::i;:::-;18477:25;;18516:20;18534:1;18516:20;:::i;:::-;18511:25;;18559:1;18556;18552:9;18545:16;;18580:3;18577:1;18574:10;18571:36;;;18587:18;;:::i;:::-;18571:36;18423:191;;;;:::o;18620:169::-;18760:21;18756:1;18748:6;18744:14;18737:45;18620:169;:::o;18795:366::-;18937:3;18958:67;19022:2;19017:3;18958:67;:::i;:::-;18951:74;;19034:93;19123:3;19034:93;:::i;:::-;19152:2;19147:3;19143:12;19136:19;;18795:366;;;:::o;19167:419::-;19333:4;19371:2;19360:9;19356:18;19348:26;;19420:9;19414:4;19410:20;19406:1;19395:9;19391:17;19384:47;19448:131;19574:4;19448:131;:::i;:::-;19440:139;;19167:419;;;:::o;19592:156::-;19732:8;19728:1;19720:6;19716:14;19709:32;19592:156;:::o;19754:365::-;19896:3;19917:66;19981:1;19976:3;19917:66;:::i;:::-;19910:73;;19992:93;20081:3;19992:93;:::i;:::-;20110:2;20105:3;20101:12;20094:19;;19754:365;;;:::o;20125:419::-;20291:4;20329:2;20318:9;20314:18;20306:26;;20378:9;20372:4;20368:20;20364:1;20353:9;20349:17;20342:47;20406:131;20532:4;20406:131;:::i;:::-;20398:139;;20125:419;;;:::o;20550:159::-;20690:11;20686:1;20678:6;20674:14;20667:35;20550:159;:::o;20715:365::-;20857:3;20878:66;20942:1;20937:3;20878:66;:::i;:::-;20871:73;;20953:93;21042:3;20953:93;:::i;:::-;21071:2;21066:3;21062:12;21055:19;;20715:365;;;:::o;21086:419::-;21252:4;21290:2;21279:9;21275:18;21267:26;;21339:9;21333:4;21329:20;21325:1;21314:9;21310:17;21303:47;21367:131;21493:4;21367:131;:::i;:::-;21359:139;;21086:419;;;:::o;21511:171::-;21651:23;21647:1;21639:6;21635:14;21628:47;21511:171;:::o;21688:366::-;21830:3;21851:67;21915:2;21910:3;21851:67;:::i;:::-;21844:74;;21927:93;22016:3;21927:93;:::i;:::-;22045:2;22040:3;22036:12;22029:19;;21688:366;;;:::o;22060:419::-;22226:4;22264:2;22253:9;22249:18;22241:26;;22313:9;22307:4;22303:20;22299:1;22288:9;22284:17;22277:47;22341:131;22467:4;22341:131;:::i;:::-;22333:139;;22060:419;;;:::o;22485:159::-;22625:11;22621:1;22613:6;22609:14;22602:35;22485:159;:::o;22650:365::-;22792:3;22813:66;22877:1;22872:3;22813:66;:::i;:::-;22806:73;;22888:93;22977:3;22888:93;:::i;:::-;23006:2;23001:3;22997:12;22990:19;;22650:365;;;:::o;23021:419::-;23187:4;23225:2;23214:9;23210:18;23202:26;;23274:9;23268:4;23264:20;23260:1;23249:9;23245:17;23238:47;23302:131;23428:4;23302:131;:::i;:::-;23294:139;;23021:419;;;:::o;23446:157::-;23586:9;23582:1;23574:6;23570:14;23563:33;23446:157;:::o;23609:365::-;23751:3;23772:66;23836:1;23831:3;23772:66;:::i;:::-;23765:73;;23847:93;23936:3;23847:93;:::i;:::-;23965:2;23960:3;23956:12;23949:19;;23609:365;;;:::o;23980:419::-;24146:4;24184:2;24173:9;24169:18;24161:26;;24233:9;24227:4;24223:20;24219:1;24208:9;24204:17;24197:47;24261:131;24387:4;24261:131;:::i;:::-;24253:139;;23980:419;;;:::o;24405:158::-;24545:10;24541:1;24533:6;24529:14;24522:34;24405:158;:::o;24569:365::-;24711:3;24732:66;24796:1;24791:3;24732:66;:::i;:::-;24725:73;;24807:93;24896:3;24807:93;:::i;:::-;24925:2;24920:3;24916:12;24909:19;;24569:365;;;:::o;24940:419::-;25106:4;25144:2;25133:9;25129:18;25121:26;;25193:9;25187:4;25183:20;25179:1;25168:9;25164:17;25157:47;25221:131;25347:4;25221:131;:::i;:::-;25213:139;;24940:419;;;:::o;25365:166::-;25505:18;25501:1;25493:6;25489:14;25482:42;25365:166;:::o;25537:366::-;25679:3;25700:67;25764:2;25759:3;25700:67;:::i;:::-;25693:74;;25776:93;25865:3;25776:93;:::i;:::-;25894:2;25889:3;25885:12;25878:19;;25537:366;;;:::o;25909:419::-;26075:4;26113:2;26102:9;26098:18;26090:26;;26162:9;26156:4;26152:20;26148:1;26137:9;26133:17;26126:47;26190:131;26316:4;26190:131;:::i;:::-;26182:139;;25909:419;;;:::o;26334:115::-;26419:23;26436:5;26419:23;:::i;:::-;26414:3;26407:36;26334:115;;:::o;26455:328::-;26574:4;26612:2;26601:9;26597:18;26589:26;;26625:71;26693:1;26682:9;26678:17;26669:6;26625:71;:::i;:::-;26706:70;26772:2;26761:9;26757:18;26748:6;26706:70;:::i;:::-;26455:328;;;;;:::o;26789:79::-;26828:7;26857:5;26846:16;;26789:79;;;:::o;26874:157::-;26979:45;26999:24;27017:5;26999:24;:::i;:::-;26979:45;:::i;:::-;26974:3;26967:58;26874:157;;:::o;27037:256::-;27149:3;27164:75;27235:3;27226:6;27164:75;:::i;:::-;27264:2;27259:3;27255:12;27248:19;;27284:3;27277:10;;27037:256;;;;:::o;27299:148::-;27401:11;27438:3;27423:18;;27299:148;;;;:::o;27453:390::-;27559:3;27587:39;27620:5;27587:39;:::i;:::-;27642:89;27724:6;27719:3;27642:89;:::i;:::-;27635:96;;27740:65;27798:6;27793:3;27786:4;27779:5;27775:16;27740:65;:::i;:::-;27830:6;27825:3;27821:16;27814:23;;27563:280;27453:390;;;;:::o;27849:435::-;28029:3;28051:95;28142:3;28133:6;28051:95;:::i;:::-;28044:102;;28163:95;28254:3;28245:6;28163:95;:::i;:::-;28156:102;;28275:3;28268:10;;27849:435;;;;;:::o;28290:171::-;28329:3;28352:24;28370:5;28352:24;:::i;:::-;28343:33;;28398:4;28391:5;28388:15;28385:41;;28406:18;;:::i;:::-;28385:41;28453:1;28446:5;28442:13;28435:20;;28290:171;;;:::o;28467:98::-;28518:6;28552:5;28546:12;28536:22;;28467:98;;;:::o;28571:168::-;28654:11;28688:6;28683:3;28676:19;28728:4;28723:3;28719:14;28704:29;;28571:168;;;;:::o;28745:373::-;28831:3;28859:38;28891:5;28859:38;:::i;:::-;28913:70;28976:6;28971:3;28913:70;:::i;:::-;28906:77;;28992:65;29050:6;29045:3;29038:4;29031:5;29027:16;28992:65;:::i;:::-;29082:29;29104:6;29082:29;:::i;:::-;29077:3;29073:39;29066:46;;28835:283;28745:373;;;;:::o;29124:640::-;29319:4;29357:3;29346:9;29342:19;29334:27;;29371:71;29439:1;29428:9;29424:17;29415:6;29371:71;:::i;:::-;29452:72;29520:2;29509:9;29505:18;29496:6;29452:72;:::i;:::-;29534;29602:2;29591:9;29587:18;29578:6;29534:72;:::i;:::-;29653:9;29647:4;29643:20;29638:2;29627:9;29623:18;29616:48;29681:76;29752:4;29743:6;29681:76;:::i;:::-;29673:84;;29124:640;;;;;;;:::o;29770:141::-;29826:5;29857:6;29851:13;29842:22;;29873:32;29899:5;29873:32;:::i;:::-;29770:141;;;;:::o;29917:349::-;29986:6;30035:2;30023:9;30014:7;30010:23;30006:32;30003:119;;;30041:79;;:::i;:::-;30003:119;30161:1;30186:63;30241:7;30232:6;30221:9;30217:22;30186:63;:::i;:::-;30176:73;;30132:127;29917:349;;;;:::o;30272:180::-;30320:77;30317:1;30310:88;30417:4;30414:1;30407:15;30441:4;30438:1;30431:15;30458:233;30497:3;30520:24;30538:5;30520:24;:::i;:::-;30511:33;;30566:66;30559:5;30556:77;30553:103;;30636:18;;:::i;:::-;30553:103;30683:1;30676:5;30672:13;30665:20;;30458:233;;;:::o

Swarm Source

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