ETH Price: $3,106.44 (+0.27%)
Gas: 4 Gwei

Token

BaoBaoNFT S1 (BBNS1)
 

Overview

Max Total Supply

2,930 BBNS1

Holders

1,224

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
14 BBNS1
0xaf03aaf662b1e0c07e90894453b3d24a34393ee8
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:
BaoBaoNFTS1

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 5: baobaonfts1.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.10 <0.9.0;

import './ERC721A.sol';
import './Ownable.sol';


    // its free Mint  and ERC721A contract (low GAS Fee)
    // 2929 Supply and Max 2 NFT per wallet & per tx
    // REVEAL: After Sold Out 


contract BaoBaoNFTS1 is ERC721A, Ownable {

    string _baseTokenURI;
    mapping(address => uint256) _minted;
    uint public maxSupply = 3000;
    uint public constant RESERVED = 70;
    uint public RESERVED_Minted = 0;
    uint public maxPerTx = 2;
    uint public maxPerWallet = 2;
    bool public isSaleActive = false;

    constructor() ERC721A("BaoBaoNFT S1", "BBNS1") {
    }

    function mint(uint256 quantity) public {
        require(isSaleActive, "Sale is not open");
        require(totalSupply() + quantity <= maxSupply - RESERVED, "All BaoBaoNFT S1 minted");
        require(quantity <= maxPerTx, "Cant mint more than 2 BaoBaoNFT S1 in one tx");
        require(quantity > 0, "Must mint at least one BaoBaoNFT S1");
        require(_minted[msg.sender] < maxPerWallet, "Cant mint more than 2 BaoBaoNFT S1 per wallet");
        _minted[msg.sender] += quantity;
        _mint(msg.sender, quantity);
    }

    function mintReserved(address toaddress, uint256 quantity) external onlyOwner 
    {
        require(RESERVED_Minted + quantity <= RESERVED, "Cant mint more than RESERVED");
        RESERVED_Minted = RESERVED_Minted + quantity;
        _mint(toaddress, quantity);
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setIsSaleActive(bool _isSaleActive) external onlyOwner{
      isSaleActive = _isSaleActive;
    }
	
	function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    } 
}

File 2 of 5: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 5: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// 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 {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].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 virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 5: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_Minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toaddress","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isSaleActive","type":"bool"}],"name":"setIsSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610bb8600b556000600c556002600d556002600e556000600f60006101000a81548160ff0219169083151502179055503480156200004157600080fd5b506040518060400160405280600c81526020017f42616f42616f4e465420533100000000000000000000000000000000000000008152506040518060400160405280600581526020017f42424e53310000000000000000000000000000000000000000000000000000008152508160029081620000bf919062000461565b508060039081620000d1919062000461565b50620000e26200011060201b60201c565b60008190555050506200010a620000fe6200011960201b60201c565b6200012160201b60201c565b62000548565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200026957607f821691505b6020821081036200027f576200027e62000221565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002e97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002aa565b620002f58683620002aa565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003426200033c62000336846200030d565b62000317565b6200030d565b9050919050565b6000819050919050565b6200035e8362000321565b620003766200036d8262000349565b848454620002b7565b825550505050565b600090565b6200038d6200037e565b6200039a81848462000353565b505050565b5b81811015620003c257620003b660008262000383565b600181019050620003a0565b5050565b601f8211156200041157620003db8162000285565b620003e6846200029a565b81016020851015620003f6578190505b6200040e62000405856200029a565b8301826200039f565b50505b505050565b600082821c905092915050565b6000620004366000198460080262000416565b1980831691505092915050565b600062000451838362000423565b9150826002028217905092915050565b6200046c82620001e7565b67ffffffffffffffff811115620004885762000487620001f2565b5b62000494825462000250565b620004a1828285620003c6565b600060209050601f831160018114620004d95760008415620004c4578287015190505b620004d0858262000443565b86555062000540565b601f198416620004e98662000285565b60005b828110156200051357848901518255600182019150602085019450602081019050620004ec565b868310156200053357848901516200052f601f89168262000423565b8355505b6001600288020188555050505b505050505050565b612b4d80620005586000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063b88d4fde11610097578063d5abeb0111610071578063d5abeb01146104b9578063e985e9c5146104d7578063f2fde38b14610507578063f968adbe14610523576101c4565b8063b88d4fde14610451578063c87b56dd1461046d578063d2d65ff51461049d576101c4565b806395d89b41116100d357806395d89b41146103dd578063a0712d68146103fb578063a22cb46514610417578063aa592f2514610433576101c4565b8063715018a6146103995780637de55fe1146103a35780638da5cb5b146103bf576101c4565b80633ccfd60b1161016657806355f804b31161014057806355f804b3146102ff578063564566a81461031b5780636352211e1461033957806370a0823114610369576101c4565b80633ccfd60b146102bb57806342842e0e146102c5578063453c2310146102e1576101c4565b8063081812fc116101a2578063081812fc14610235578063095ea7b31461026557806318160ddd1461028157806323b872dd1461029f576101c4565b806301ffc9a7146101c9578063046d24cd146101f957806306fdde0314610217575b600080fd5b6101e360048036038101906101de9190611bd7565b610541565b6040516101f09190611c1f565b60405180910390f35b6102016105d3565b60405161020e9190611c53565b60405180910390f35b61021f6105d9565b60405161022c9190611d07565b60405180910390f35b61024f600480360381019061024a9190611d55565b61066b565b60405161025c9190611dc3565b60405180910390f35b61027f600480360381019061027a9190611e0a565b6106ea565b005b61028961082e565b6040516102969190611c53565b60405180910390f35b6102b960048036038101906102b49190611e4a565b610845565b005b6102c3610b67565b005b6102df60048036038101906102da9190611e4a565b610bbe565b005b6102e9610bde565b6040516102f69190611c53565b60405180910390f35b61031960048036038101906103149190611fd2565b610be4565b005b610323610bff565b6040516103309190611c1f565b60405180910390f35b610353600480360381019061034e9190611d55565b610c12565b6040516103609190611dc3565b60405180910390f35b610383600480360381019061037e919061201b565b610c24565b6040516103909190611c53565b60405180910390f35b6103a1610cdc565b005b6103bd60048036038101906103b89190611e0a565b610cf0565b005b6103c7610d6b565b6040516103d49190611dc3565b60405180910390f35b6103e5610d95565b6040516103f29190611d07565b60405180910390f35b61041560048036038101906104109190611d55565b610e27565b005b610431600480360381019061042c9190612074565b611047565b005b61043b6111be565b6040516104489190611c53565b60405180910390f35b61046b60048036038101906104669190612155565b6111c3565b005b61048760048036038101906104829190611d55565b611236565b6040516104949190611d07565b60405180910390f35b6104b760048036038101906104b291906121d8565b6112d4565b005b6104c16112f9565b6040516104ce9190611c53565b60405180910390f35b6104f160048036038101906104ec9190612205565b6112ff565b6040516104fe9190611c1f565b60405180910390f35b610521600480360381019061051c919061201b565b611393565b005b61052b611416565b6040516105389190611c53565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105cc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546105e890612274565b80601f016020809104026020016040519081016040528092919081815260200182805461061490612274565b80156106615780601f1061063657610100808354040283529160200191610661565b820191906000526020600020905b81548152906001019060200180831161064457829003601f168201915b5050505050905090565b60006106768261141c565b6106ac576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106f582610c12565b90508073ffffffffffffffffffffffffffffffffffffffff1661071661147b565b73ffffffffffffffffffffffffffffffffffffffff1614610779576107428161073d61147b565b6112ff565b610778576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610838611483565b6001546000540303905090565b60006108508261148c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108b7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108c384611558565b915091506108d981876108d461147b565b61157f565b610925576108ee866108e961147b565b6112ff565b610924576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361098b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61099886868660016115c3565b80156109a357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a7185610a4d8888876115c9565b7c0200000000000000000000000000000000000000000000000000000000176115f1565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610af75760006001850190506000600460008381526020019081526020016000205403610af5576000548114610af4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b5f868686600161161c565b505050505050565b610b6f611622565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bba573d6000803e3d6000fd5b5050565b610bd9838383604051806020016040528060008152506111c3565b505050565b600e5481565b610bec611622565b8060099081610bfb9190612451565b5050565b600f60009054906101000a900460ff1681565b6000610c1d8261148c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c8b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ce4611622565b610cee60006116a0565b565b610cf8611622565b604681600c54610d089190612552565b1115610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d40906125f4565b60405180910390fd5b80600c54610d579190612552565b600c81905550610d678282611766565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610da490612274565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd090612274565b8015610e1d5780601f10610df257610100808354040283529160200191610e1d565b820191906000526020600020905b815481529060010190602001808311610e0057829003601f168201915b5050505050905090565b600f60009054906101000a900460ff16610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90612660565b60405180910390fd5b6046600b54610e859190612680565b81610e8e61082e565b610e989190612552565b1115610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090612700565b60405180910390fd5b600d54811115610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1590612792565b60405180910390fd5b60008111610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890612824565b60405180910390fd5b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb906128b6565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110339190612552565b925050819055506110443382611766565b50565b61104f61147b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110c061147b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661116d61147b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111b29190611c1f565b60405180910390a35050565b604681565b6111ce848484610845565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611230576111f984848484611921565b61122f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112418261141c565b611277576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611281611a71565b905060008151036112a157604051806020016040528060008152506112cc565b806112ab84611b03565b6040516020016112bc929190612912565b6040516020818303038152906040525b915050919050565b6112dc611622565b80600f60006101000a81548160ff02191690831515021790555050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61139b611622565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361140a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611401906129a8565b60405180910390fd5b611413816116a0565b50565b600d5481565b600081611427611483565b11158015611436575060005482105b8015611474575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061149b611483565b11611521576000548110156115205760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361151e575b600081036115145760046000836001900393508381526020019081526020016000205490506114ea565b8092505050611553565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86115e0868684611b4a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61162a611b53565b73ffffffffffffffffffffffffffffffffffffffff16611648610d6b565b73ffffffffffffffffffffffffffffffffffffffff161461169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590612a14565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082036117a6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117b360008483856115c3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061182a8361181b60008660006115c9565b61182485611b5b565b176115f1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146118cb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611890565b5060008203611906576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061191c600084838561161c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261194761147b565b8786866040518563ffffffff1660e01b81526004016119699493929190612a89565b6020604051808303816000875af19250505080156119a557506040513d601f19601f820116820180604052508101906119a29190612aea565b60015b611a1e573d80600081146119d5576040519150601f19603f3d011682016040523d82523d6000602084013e6119da565b606091505b506000815103611a16576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611a8090612274565b80601f0160208091040260200160405190810160405280929190818152602001828054611aac90612274565b8015611af95780601f10611ace57610100808354040283529160200191611af9565b820191906000526020600020905b815481529060010190602001808311611adc57829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611b3657600183039250600a81066030018353600a8104905080611b14575b508181036020830392508083525050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611bb481611b7f565b8114611bbf57600080fd5b50565b600081359050611bd181611bab565b92915050565b600060208284031215611bed57611bec611b75565b5b6000611bfb84828501611bc2565b91505092915050565b60008115159050919050565b611c1981611c04565b82525050565b6000602082019050611c346000830184611c10565b92915050565b6000819050919050565b611c4d81611c3a565b82525050565b6000602082019050611c686000830184611c44565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ca8578082015181840152602081019050611c8d565b83811115611cb7576000848401525b50505050565b6000601f19601f8301169050919050565b6000611cd982611c6e565b611ce38185611c79565b9350611cf3818560208601611c8a565b611cfc81611cbd565b840191505092915050565b60006020820190508181036000830152611d218184611cce565b905092915050565b611d3281611c3a565b8114611d3d57600080fd5b50565b600081359050611d4f81611d29565b92915050565b600060208284031215611d6b57611d6a611b75565b5b6000611d7984828501611d40565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611dad82611d82565b9050919050565b611dbd81611da2565b82525050565b6000602082019050611dd86000830184611db4565b92915050565b611de781611da2565b8114611df257600080fd5b50565b600081359050611e0481611dde565b92915050565b60008060408385031215611e2157611e20611b75565b5b6000611e2f85828601611df5565b9250506020611e4085828601611d40565b9150509250929050565b600080600060608486031215611e6357611e62611b75565b5b6000611e7186828701611df5565b9350506020611e8286828701611df5565b9250506040611e9386828701611d40565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611edf82611cbd565b810181811067ffffffffffffffff82111715611efe57611efd611ea7565b5b80604052505050565b6000611f11611b6b565b9050611f1d8282611ed6565b919050565b600067ffffffffffffffff821115611f3d57611f3c611ea7565b5b611f4682611cbd565b9050602081019050919050565b82818337600083830152505050565b6000611f75611f7084611f22565b611f07565b905082815260208101848484011115611f9157611f90611ea2565b5b611f9c848285611f53565b509392505050565b600082601f830112611fb957611fb8611e9d565b5b8135611fc9848260208601611f62565b91505092915050565b600060208284031215611fe857611fe7611b75565b5b600082013567ffffffffffffffff81111561200657612005611b7a565b5b61201284828501611fa4565b91505092915050565b60006020828403121561203157612030611b75565b5b600061203f84828501611df5565b91505092915050565b61205181611c04565b811461205c57600080fd5b50565b60008135905061206e81612048565b92915050565b6000806040838503121561208b5761208a611b75565b5b600061209985828601611df5565b92505060206120aa8582860161205f565b9150509250929050565b600067ffffffffffffffff8211156120cf576120ce611ea7565b5b6120d882611cbd565b9050602081019050919050565b60006120f86120f3846120b4565b611f07565b90508281526020810184848401111561211457612113611ea2565b5b61211f848285611f53565b509392505050565b600082601f83011261213c5761213b611e9d565b5b813561214c8482602086016120e5565b91505092915050565b6000806000806080858703121561216f5761216e611b75565b5b600061217d87828801611df5565b945050602061218e87828801611df5565b935050604061219f87828801611d40565b925050606085013567ffffffffffffffff8111156121c0576121bf611b7a565b5b6121cc87828801612127565b91505092959194509250565b6000602082840312156121ee576121ed611b75565b5b60006121fc8482850161205f565b91505092915050565b6000806040838503121561221c5761221b611b75565b5b600061222a85828601611df5565b925050602061223b85828601611df5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061228c57607f821691505b60208210810361229f5761229e612245565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026123077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826122ca565b61231186836122ca565b95508019841693508086168417925050509392505050565b6000819050919050565b600061234e61234961234484611c3a565b612329565b611c3a565b9050919050565b6000819050919050565b61236883612333565b61237c61237482612355565b8484546122d7565b825550505050565b600090565b612391612384565b61239c81848461235f565b505050565b5b818110156123c0576123b5600082612389565b6001810190506123a2565b5050565b601f821115612405576123d6816122a5565b6123df846122ba565b810160208510156123ee578190505b6124026123fa856122ba565b8301826123a1565b50505b505050565b600082821c905092915050565b60006124286000198460080261240a565b1980831691505092915050565b60006124418383612417565b9150826002028217905092915050565b61245a82611c6e565b67ffffffffffffffff81111561247357612472611ea7565b5b61247d8254612274565b6124888282856123c4565b600060209050601f8311600181146124bb57600084156124a9578287015190505b6124b38582612435565b86555061251b565b601f1984166124c9866122a5565b60005b828110156124f1578489015182556001820191506020850194506020810190506124cc565b8683101561250e578489015161250a601f891682612417565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061255d82611c3a565b915061256883611c3a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561259d5761259c612523565b5b828201905092915050565b7f43616e74206d696e74206d6f7265207468616e20524553455256454400000000600082015250565b60006125de601c83611c79565b91506125e9826125a8565b602082019050919050565b6000602082019050818103600083015261260d816125d1565b9050919050565b7f53616c65206973206e6f74206f70656e00000000000000000000000000000000600082015250565b600061264a601083611c79565b915061265582612614565b602082019050919050565b600060208201905081810360008301526126798161263d565b9050919050565b600061268b82611c3a565b915061269683611c3a565b9250828210156126a9576126a8612523565b5b828203905092915050565b7f416c6c2042616f42616f4e4654205331206d696e746564000000000000000000600082015250565b60006126ea601783611c79565b91506126f5826126b4565b602082019050919050565b60006020820190508181036000830152612719816126dd565b9050919050565b7f43616e74206d696e74206d6f7265207468616e20322042616f42616f4e46542060008201527f533120696e206f6e652074780000000000000000000000000000000000000000602082015250565b600061277c602c83611c79565b915061278782612720565b604082019050919050565b600060208201905081810360008301526127ab8161276f565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e652042616f42616f4e465460008201527f2053310000000000000000000000000000000000000000000000000000000000602082015250565b600061280e602383611c79565b9150612819826127b2565b604082019050919050565b6000602082019050818103600083015261283d81612801565b9050919050565b7f43616e74206d696e74206d6f7265207468616e20322042616f42616f4e46542060008201527f5331207065722077616c6c657400000000000000000000000000000000000000602082015250565b60006128a0602d83611c79565b91506128ab82612844565b604082019050919050565b600060208201905081810360008301526128cf81612893565b9050919050565b600081905092915050565b60006128ec82611c6e565b6128f681856128d6565b9350612906818560208601611c8a565b80840191505092915050565b600061291e82856128e1565b915061292a82846128e1565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612992602683611c79565b915061299d82612936565b604082019050919050565b600060208201905081810360008301526129c181612985565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129fe602083611c79565b9150612a09826129c8565b602082019050919050565b60006020820190508181036000830152612a2d816129f1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612a5b82612a34565b612a658185612a3f565b9350612a75818560208601611c8a565b612a7e81611cbd565b840191505092915050565b6000608082019050612a9e6000830187611db4565b612aab6020830186611db4565b612ab86040830185611c44565b8181036060830152612aca8184612a50565b905095945050505050565b600081519050612ae481611bab565b92915050565b600060208284031215612b0057612aff611b75565b5b6000612b0e84828501612ad5565b9150509291505056fea2646970667358221220676c92b09f63f319b5ef76f627fa38d4b187ea207ccd5a7e38b4cad609962f4564736f6c634300080f0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063b88d4fde11610097578063d5abeb0111610071578063d5abeb01146104b9578063e985e9c5146104d7578063f2fde38b14610507578063f968adbe14610523576101c4565b8063b88d4fde14610451578063c87b56dd1461046d578063d2d65ff51461049d576101c4565b806395d89b41116100d357806395d89b41146103dd578063a0712d68146103fb578063a22cb46514610417578063aa592f2514610433576101c4565b8063715018a6146103995780637de55fe1146103a35780638da5cb5b146103bf576101c4565b80633ccfd60b1161016657806355f804b31161014057806355f804b3146102ff578063564566a81461031b5780636352211e1461033957806370a0823114610369576101c4565b80633ccfd60b146102bb57806342842e0e146102c5578063453c2310146102e1576101c4565b8063081812fc116101a2578063081812fc14610235578063095ea7b31461026557806318160ddd1461028157806323b872dd1461029f576101c4565b806301ffc9a7146101c9578063046d24cd146101f957806306fdde0314610217575b600080fd5b6101e360048036038101906101de9190611bd7565b610541565b6040516101f09190611c1f565b60405180910390f35b6102016105d3565b60405161020e9190611c53565b60405180910390f35b61021f6105d9565b60405161022c9190611d07565b60405180910390f35b61024f600480360381019061024a9190611d55565b61066b565b60405161025c9190611dc3565b60405180910390f35b61027f600480360381019061027a9190611e0a565b6106ea565b005b61028961082e565b6040516102969190611c53565b60405180910390f35b6102b960048036038101906102b49190611e4a565b610845565b005b6102c3610b67565b005b6102df60048036038101906102da9190611e4a565b610bbe565b005b6102e9610bde565b6040516102f69190611c53565b60405180910390f35b61031960048036038101906103149190611fd2565b610be4565b005b610323610bff565b6040516103309190611c1f565b60405180910390f35b610353600480360381019061034e9190611d55565b610c12565b6040516103609190611dc3565b60405180910390f35b610383600480360381019061037e919061201b565b610c24565b6040516103909190611c53565b60405180910390f35b6103a1610cdc565b005b6103bd60048036038101906103b89190611e0a565b610cf0565b005b6103c7610d6b565b6040516103d49190611dc3565b60405180910390f35b6103e5610d95565b6040516103f29190611d07565b60405180910390f35b61041560048036038101906104109190611d55565b610e27565b005b610431600480360381019061042c9190612074565b611047565b005b61043b6111be565b6040516104489190611c53565b60405180910390f35b61046b60048036038101906104669190612155565b6111c3565b005b61048760048036038101906104829190611d55565b611236565b6040516104949190611d07565b60405180910390f35b6104b760048036038101906104b291906121d8565b6112d4565b005b6104c16112f9565b6040516104ce9190611c53565b60405180910390f35b6104f160048036038101906104ec9190612205565b6112ff565b6040516104fe9190611c1f565b60405180910390f35b610521600480360381019061051c919061201b565b611393565b005b61052b611416565b6040516105389190611c53565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061059c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105cc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546105e890612274565b80601f016020809104026020016040519081016040528092919081815260200182805461061490612274565b80156106615780601f1061063657610100808354040283529160200191610661565b820191906000526020600020905b81548152906001019060200180831161064457829003601f168201915b5050505050905090565b60006106768261141c565b6106ac576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106f582610c12565b90508073ffffffffffffffffffffffffffffffffffffffff1661071661147b565b73ffffffffffffffffffffffffffffffffffffffff1614610779576107428161073d61147b565b6112ff565b610778576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610838611483565b6001546000540303905090565b60006108508261148c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108b7576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806108c384611558565b915091506108d981876108d461147b565b61157f565b610925576108ee866108e961147b565b6112ff565b610924576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361098b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61099886868660016115c3565b80156109a357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610a7185610a4d8888876115c9565b7c0200000000000000000000000000000000000000000000000000000000176115f1565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610af75760006001850190506000600460008381526020019081526020016000205403610af5576000548114610af4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610b5f868686600161161c565b505050505050565b610b6f611622565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610bba573d6000803e3d6000fd5b5050565b610bd9838383604051806020016040528060008152506111c3565b505050565b600e5481565b610bec611622565b8060099081610bfb9190612451565b5050565b600f60009054906101000a900460ff1681565b6000610c1d8261148c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c8b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ce4611622565b610cee60006116a0565b565b610cf8611622565b604681600c54610d089190612552565b1115610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d40906125f4565b60405180910390fd5b80600c54610d579190612552565b600c81905550610d678282611766565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610da490612274565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd090612274565b8015610e1d5780601f10610df257610100808354040283529160200191610e1d565b820191906000526020600020905b815481529060010190602001808311610e0057829003601f168201915b5050505050905090565b600f60009054906101000a900460ff16610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90612660565b60405180910390fd5b6046600b54610e859190612680565b81610e8e61082e565b610e989190612552565b1115610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090612700565b60405180910390fd5b600d54811115610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1590612792565b60405180910390fd5b60008111610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890612824565b60405180910390fd5b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb906128b6565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110339190612552565b925050819055506110443382611766565b50565b61104f61147b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b3576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110c061147b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661116d61147b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111b29190611c1f565b60405180910390a35050565b604681565b6111ce848484610845565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611230576111f984848484611921565b61122f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112418261141c565b611277576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611281611a71565b905060008151036112a157604051806020016040528060008152506112cc565b806112ab84611b03565b6040516020016112bc929190612912565b6040516020818303038152906040525b915050919050565b6112dc611622565b80600f60006101000a81548160ff02191690831515021790555050565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61139b611622565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361140a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611401906129a8565b60405180910390fd5b611413816116a0565b50565b600d5481565b600081611427611483565b11158015611436575060005482105b8015611474575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061149b611483565b11611521576000548110156115205760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361151e575b600081036115145760046000836001900393508381526020019081526020016000205490506114ea565b8092505050611553565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86115e0868684611b4a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61162a611b53565b73ffffffffffffffffffffffffffffffffffffffff16611648610d6b565b73ffffffffffffffffffffffffffffffffffffffff161461169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590612a14565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082036117a6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117b360008483856115c3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061182a8361181b60008660006115c9565b61182485611b5b565b176115f1565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146118cb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611890565b5060008203611906576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061191c600084838561161c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261194761147b565b8786866040518563ffffffff1660e01b81526004016119699493929190612a89565b6020604051808303816000875af19250505080156119a557506040513d601f19601f820116820180604052508101906119a29190612aea565b60015b611a1e573d80600081146119d5576040519150601f19603f3d011682016040523d82523d6000602084013e6119da565b606091505b506000815103611a16576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611a8090612274565b80601f0160208091040260200160405190810160405280929190818152602001828054611aac90612274565b8015611af95780601f10611ace57610100808354040283529160200191611af9565b820191906000526020600020905b815481529060010190602001808311611adc57829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611b3657600183039250600a81066030018353600a8104905080611b14575b508181036020830392508083525050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611bb481611b7f565b8114611bbf57600080fd5b50565b600081359050611bd181611bab565b92915050565b600060208284031215611bed57611bec611b75565b5b6000611bfb84828501611bc2565b91505092915050565b60008115159050919050565b611c1981611c04565b82525050565b6000602082019050611c346000830184611c10565b92915050565b6000819050919050565b611c4d81611c3a565b82525050565b6000602082019050611c686000830184611c44565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ca8578082015181840152602081019050611c8d565b83811115611cb7576000848401525b50505050565b6000601f19601f8301169050919050565b6000611cd982611c6e565b611ce38185611c79565b9350611cf3818560208601611c8a565b611cfc81611cbd565b840191505092915050565b60006020820190508181036000830152611d218184611cce565b905092915050565b611d3281611c3a565b8114611d3d57600080fd5b50565b600081359050611d4f81611d29565b92915050565b600060208284031215611d6b57611d6a611b75565b5b6000611d7984828501611d40565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611dad82611d82565b9050919050565b611dbd81611da2565b82525050565b6000602082019050611dd86000830184611db4565b92915050565b611de781611da2565b8114611df257600080fd5b50565b600081359050611e0481611dde565b92915050565b60008060408385031215611e2157611e20611b75565b5b6000611e2f85828601611df5565b9250506020611e4085828601611d40565b9150509250929050565b600080600060608486031215611e6357611e62611b75565b5b6000611e7186828701611df5565b9350506020611e8286828701611df5565b9250506040611e9386828701611d40565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611edf82611cbd565b810181811067ffffffffffffffff82111715611efe57611efd611ea7565b5b80604052505050565b6000611f11611b6b565b9050611f1d8282611ed6565b919050565b600067ffffffffffffffff821115611f3d57611f3c611ea7565b5b611f4682611cbd565b9050602081019050919050565b82818337600083830152505050565b6000611f75611f7084611f22565b611f07565b905082815260208101848484011115611f9157611f90611ea2565b5b611f9c848285611f53565b509392505050565b600082601f830112611fb957611fb8611e9d565b5b8135611fc9848260208601611f62565b91505092915050565b600060208284031215611fe857611fe7611b75565b5b600082013567ffffffffffffffff81111561200657612005611b7a565b5b61201284828501611fa4565b91505092915050565b60006020828403121561203157612030611b75565b5b600061203f84828501611df5565b91505092915050565b61205181611c04565b811461205c57600080fd5b50565b60008135905061206e81612048565b92915050565b6000806040838503121561208b5761208a611b75565b5b600061209985828601611df5565b92505060206120aa8582860161205f565b9150509250929050565b600067ffffffffffffffff8211156120cf576120ce611ea7565b5b6120d882611cbd565b9050602081019050919050565b60006120f86120f3846120b4565b611f07565b90508281526020810184848401111561211457612113611ea2565b5b61211f848285611f53565b509392505050565b600082601f83011261213c5761213b611e9d565b5b813561214c8482602086016120e5565b91505092915050565b6000806000806080858703121561216f5761216e611b75565b5b600061217d87828801611df5565b945050602061218e87828801611df5565b935050604061219f87828801611d40565b925050606085013567ffffffffffffffff8111156121c0576121bf611b7a565b5b6121cc87828801612127565b91505092959194509250565b6000602082840312156121ee576121ed611b75565b5b60006121fc8482850161205f565b91505092915050565b6000806040838503121561221c5761221b611b75565b5b600061222a85828601611df5565b925050602061223b85828601611df5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061228c57607f821691505b60208210810361229f5761229e612245565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026123077fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826122ca565b61231186836122ca565b95508019841693508086168417925050509392505050565b6000819050919050565b600061234e61234961234484611c3a565b612329565b611c3a565b9050919050565b6000819050919050565b61236883612333565b61237c61237482612355565b8484546122d7565b825550505050565b600090565b612391612384565b61239c81848461235f565b505050565b5b818110156123c0576123b5600082612389565b6001810190506123a2565b5050565b601f821115612405576123d6816122a5565b6123df846122ba565b810160208510156123ee578190505b6124026123fa856122ba565b8301826123a1565b50505b505050565b600082821c905092915050565b60006124286000198460080261240a565b1980831691505092915050565b60006124418383612417565b9150826002028217905092915050565b61245a82611c6e565b67ffffffffffffffff81111561247357612472611ea7565b5b61247d8254612274565b6124888282856123c4565b600060209050601f8311600181146124bb57600084156124a9578287015190505b6124b38582612435565b86555061251b565b601f1984166124c9866122a5565b60005b828110156124f1578489015182556001820191506020850194506020810190506124cc565b8683101561250e578489015161250a601f891682612417565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061255d82611c3a565b915061256883611c3a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561259d5761259c612523565b5b828201905092915050565b7f43616e74206d696e74206d6f7265207468616e20524553455256454400000000600082015250565b60006125de601c83611c79565b91506125e9826125a8565b602082019050919050565b6000602082019050818103600083015261260d816125d1565b9050919050565b7f53616c65206973206e6f74206f70656e00000000000000000000000000000000600082015250565b600061264a601083611c79565b915061265582612614565b602082019050919050565b600060208201905081810360008301526126798161263d565b9050919050565b600061268b82611c3a565b915061269683611c3a565b9250828210156126a9576126a8612523565b5b828203905092915050565b7f416c6c2042616f42616f4e4654205331206d696e746564000000000000000000600082015250565b60006126ea601783611c79565b91506126f5826126b4565b602082019050919050565b60006020820190508181036000830152612719816126dd565b9050919050565b7f43616e74206d696e74206d6f7265207468616e20322042616f42616f4e46542060008201527f533120696e206f6e652074780000000000000000000000000000000000000000602082015250565b600061277c602c83611c79565b915061278782612720565b604082019050919050565b600060208201905081810360008301526127ab8161276f565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e652042616f42616f4e465460008201527f2053310000000000000000000000000000000000000000000000000000000000602082015250565b600061280e602383611c79565b9150612819826127b2565b604082019050919050565b6000602082019050818103600083015261283d81612801565b9050919050565b7f43616e74206d696e74206d6f7265207468616e20322042616f42616f4e46542060008201527f5331207065722077616c6c657400000000000000000000000000000000000000602082015250565b60006128a0602d83611c79565b91506128ab82612844565b604082019050919050565b600060208201905081810360008301526128cf81612893565b9050919050565b600081905092915050565b60006128ec82611c6e565b6128f681856128d6565b9350612906818560208601611c8a565b80840191505092915050565b600061291e82856128e1565b915061292a82846128e1565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612992602683611c79565b915061299d82612936565b604082019050919050565b600060208201905081810360008301526129c181612985565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129fe602083611c79565b9150612a09826129c8565b602082019050919050565b60006020820190508181036000830152612a2d816129f1565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612a5b82612a34565b612a658185612a3f565b9350612a75818560208601611c8a565b612a7e81611cbd565b840191505092915050565b6000608082019050612a9e6000830187611db4565b612aab6020830186611db4565b612ab86040830185611c44565b8181036060830152612aca8184612a50565b905095945050505050565b600081519050612ae481611bab565b92915050565b600060208284031215612b0057612aff611b75565b5b6000612b0e84828501612ad5565b9150509291505056fea2646970667358221220676c92b09f63f319b5ef76f627fa38d4b187ea207ccd5a7e38b4cad609962f4564736f6c634300080f0033

Deployed Bytecode Sourcemap

271:1719:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9367:639:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;466:31:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10269:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16752:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16193:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6020:323;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20465:2817;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1846:140:4;;;:::i;:::-;;23378:185:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;535:28:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1622:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;570:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11662:152:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7204:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1884:103:3;;;:::i;:::-;;1218:274:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1236:87:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10445:104:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;674:536:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17310:308:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;425:34:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24161:399:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10655:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1732:108:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;390:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17775:164:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2142:201:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;504:24:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9367:639:1;9452:4;9791:10;9776:25;;:11;:25;;;;:102;;;;9868:10;9853:25;;:11;:25;;;;9776:102;:179;;;;9945:10;9930:25;;:11;:25;;;;9776:179;9756:199;;9367:639;;;:::o;466:31:4:-;;;;:::o;10269:100:1:-;10323:13;10356:5;10349:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10269:100;:::o;16752:218::-;16828:7;16853:16;16861:7;16853;:16::i;:::-;16848:64;;16878:34;;;;;;;;;;;;;;16848:64;16932:15;:24;16948:7;16932:24;;;;;;;;;;;:30;;;;;;;;;;;;16925:37;;16752:218;;;:::o;16193:400::-;16274:13;16290:16;16298:7;16290;:16::i;:::-;16274:32;;16346:5;16323:28;;:19;:17;:19::i;:::-;:28;;;16319:175;;16371:44;16388:5;16395:19;:17;:19::i;:::-;16371:16;:44::i;:::-;16366:128;;16443:35;;;;;;;;;;;;;;16366:128;16319:175;16539:2;16506:15;:24;16522:7;16506:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16577:7;16573:2;16557:28;;16566:5;16557:28;;;;;;;;;;;;16263:330;16193:400;;:::o;6020:323::-;6081:7;6309:15;:13;:15::i;:::-;6294:12;;6278:13;;:28;:46;6271:53;;6020:323;:::o;20465:2817::-;20599:27;20629;20648:7;20629:18;:27::i;:::-;20599:57;;20714:4;20673:45;;20689:19;20673:45;;;20669:86;;20727:28;;;;;;;;;;;;;;20669:86;20769:27;20798:23;20825:35;20852:7;20825:26;:35::i;:::-;20768:92;;;;20960:68;20985:15;21002:4;21008:19;:17;:19::i;:::-;20960:24;:68::i;:::-;20955:180;;21048:43;21065:4;21071:19;:17;:19::i;:::-;21048:16;:43::i;:::-;21043:92;;21100:35;;;;;;;;;;;;;;21043:92;20955:180;21166:1;21152:16;;:2;:16;;;21148:52;;21177:23;;;;;;;;;;;;;;21148:52;21213:43;21235:4;21241:2;21245:7;21254:1;21213:21;:43::i;:::-;21349:15;21346:160;;;21489:1;21468:19;21461:30;21346:160;21886:18;:24;21905:4;21886:24;;;;;;;;;;;;;;;;21884:26;;;;;;;;;;;;21955:18;:22;21974:2;21955:22;;;;;;;;;;;;;;;;21953:24;;;;;;;;;;;22277:146;22314:2;22363:45;22378:4;22384:2;22388:19;22363:14;:45::i;:::-;2419:8;22335:73;22277:18;:146::i;:::-;22248:17;:26;22266:7;22248:26;;;;;;;;;;;:175;;;;22594:1;2419:8;22543:19;:47;:52;22539:627;;22616:19;22648:1;22638:7;:11;22616:33;;22805:1;22771:17;:30;22789:11;22771:30;;;;;;;;;;;;:35;22767:384;;22909:13;;22894:11;:28;22890:242;;23089:19;23056:17;:30;23074:11;23056:30;;;;;;;;;;;:52;;;;22890:242;22767:384;22597:569;22539:627;23213:7;23209:2;23194:27;;23203:4;23194:27;;;;;;;;;;;;23232:42;23253:4;23259:2;23263:7;23272:1;23232:20;:42::i;:::-;20588:2694;;;20465:2817;;;:::o;1846:140:4:-;1122:13:3;:11;:13::i;:::-;1894:12:4::1;1909:21;1894:36;;1949:10;1941:28;;:37;1970:7;1941:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1883:103;1846:140::o:0;23378:185:1:-;23516:39;23533:4;23539:2;23543:7;23516:39;;;;;;;;;;;;:16;:39::i;:::-;23378:185;;;:::o;535:28:4:-;;;;:::o;1622:102::-;1122:13:3;:11;:13::i;:::-;1709:7:4::1;1693:13;:23;;;;;;:::i;:::-;;1622:102:::0;:::o;570:32::-;;;;;;;;;;;;;:::o;11662:152:1:-;11734:7;11777:27;11796:7;11777:18;:27::i;:::-;11754:52;;11662:152;;;:::o;7204:233::-;7276:7;7317:1;7300:19;;:5;:19;;;7296:60;;7328:28;;;;;;;;;;;;;;7296:60;1363:13;7374:18;:25;7393:5;7374:25;;;;;;;;;;;;;;;;:55;7367:62;;7204:233;;;:::o;1884:103:3:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;1218:274:4:-;1122:13:3;:11;:13::i;:::-;457:2:4::1;1339:8;1321:15;;:26;;;;:::i;:::-;:38;;1313:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;1439:8;1421:15;;:26;;;;:::i;:::-;1403:15;:44;;;;1458:26;1464:9;1475:8;1458:5;:26::i;:::-;1218:274:::0;;:::o;1236:87:3:-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;10445:104:1:-;10501:13;10534:7;10527:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10445:104;:::o;674:536:4:-;732:12;;;;;;;;;;;724:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;457:2;812:9;;:20;;;;:::i;:::-;800:8;784:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:48;;776:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;891:8;;879;:20;;871:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;978:1;967:8;:12;959:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;1060:12;;1038:7;:19;1046:10;1038:19;;;;;;;;;;;;;;;;:34;1030:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;1156:8;1133:7;:19;1141:10;1133:19;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;1175:27;1181:10;1193:8;1175:5;:27::i;:::-;674:536;:::o;17310:308:1:-;17421:19;:17;:19::i;:::-;17409:31;;:8;:31;;;17405:61;;17449:17;;;;;;;;;;;;;;17405:61;17531:8;17479:18;:39;17498:19;:17;:19::i;:::-;17479:39;;;;;;;;;;;;;;;:49;17519:8;17479:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17591:8;17555:55;;17570:19;:17;:19::i;:::-;17555:55;;;17601:8;17555:55;;;;;;:::i;:::-;;;;;;;;17310:308;;:::o;425:34:4:-;457:2;425:34;:::o;24161:399:1:-;24328:31;24341:4;24347:2;24351:7;24328:12;:31::i;:::-;24392:1;24374:2;:14;;;:19;24370:183;;24413:56;24444:4;24450:2;24454:7;24463:5;24413:30;:56::i;:::-;24408:145;;24497:40;;;;;;;;;;;;;;24408:145;24370:183;24161:399;;;;:::o;10655:318::-;10728:13;10759:16;10767:7;10759;:16::i;:::-;10754:59;;10784:29;;;;;;;;;;;;;;10754:59;10826:21;10850:10;:8;:10::i;:::-;10826:34;;10903:1;10884:7;10878:21;:26;:87;;;;;;;;;;;;;;;;;10931:7;10940:18;10950:7;10940:9;:18::i;:::-;10914:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10878:87;10871:94;;;10655:318;;;:::o;1732:108:4:-;1122:13:3;:11;:13::i;:::-;1819::4::1;1804:12;;:28;;;;;;;;;;;;;;;;;;1732:108:::0;:::o;390:28::-;;;;:::o;17775:164:1:-;17872:4;17896:18;:25;17915:5;17896:25;;;;;;;;;;;;;;;:35;17922:8;17896:35;;;;;;;;;;;;;;;;;;;;;;;;;17889:42;;17775:164;;;;:::o;2142:201:3:-;1122:13;:11;:13::i;:::-;2251:1:::1;2231:22;;:8;:22;;::::0;2223:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:28;2326:8;2307:18;:28::i;:::-;2142:201:::0;:::o;504:24:4:-;;;;:::o;18197:282:1:-;18262:4;18318:7;18299:15;:13;:15::i;:::-;:26;;:66;;;;;18352:13;;18342:7;:23;18299:66;:153;;;;;18451:1;2139:8;18403:17;:26;18421:7;18403:26;;;;;;;;;;;;:44;:49;18299:153;18279:173;;18197:282;;;:::o;39969:105::-;40029:7;40056:10;40049:17;;39969:105;:::o;5536:92::-;5592:7;5619:1;5612:8;;5536:92;:::o;12817:1275::-;12884:7;12904:12;12919:7;12904:22;;12987:4;12968:15;:13;:15::i;:::-;:23;12964:1061;;13021:13;;13014:4;:20;13010:1015;;;13059:14;13076:17;:23;13094:4;13076:23;;;;;;;;;;;;13059:40;;13193:1;2139:8;13165:6;:24;:29;13161:845;;13830:113;13847:1;13837:6;:11;13830:113;;13890:17;:25;13908:6;;;;;;;13890:25;;;;;;;;;;;;13881:34;;13830:113;;;13976:6;13969:13;;;;;;13161:845;13036:989;13010:1015;12964:1061;14053:31;;;;;;;;;;;;;;12817:1275;;;;:::o;19360:485::-;19462:27;19491:23;19532:38;19573:15;:24;19589:7;19573:24;;;;;;;;;;;19532:65;;19750:18;19727:41;;19807:19;19801:26;19782:45;;19712:126;19360:485;;;:::o;18588:659::-;18737:11;18902:16;18895:5;18891:28;18882:37;;19062:16;19051:9;19047:32;19034:45;;19212:15;19201:9;19198:30;19190:5;19179:9;19176:20;19173:56;19163:66;;18588:659;;;;;:::o;25222:159::-;;;;;:::o;39278:311::-;39413:7;39433:16;2543:3;39459:19;:41;;39433:68;;2543:3;39527:31;39538:4;39544:2;39548:9;39527:10;:31::i;:::-;39519:40;;:62;;39512:69;;;39278:311;;;;;:::o;14640:450::-;14720:14;14888:16;14881:5;14877:28;14868:37;;15065:5;15051:11;15026:23;15022:41;15019:52;15012:5;15009:63;14999:73;;14640:450;;;;:::o;26046:158::-;;;;;:::o;1401:132:3:-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1401:132::o;2503:191::-;2577:16;2596:6;;;;;;;;;;;2577:25;;2622:8;2613:6;;:17;;;;;;;;;;;;;;;;;;2677:8;2646:40;;2667:8;2646:40;;;;;;;;;;;;2566:128;2503:191;:::o;27822:2454:1:-;27895:20;27918:13;;27895:36;;27958:1;27946:8;:13;27942:44;;27968:18;;;;;;;;;;;;;;27942:44;27999:61;28029:1;28033:2;28037:12;28051:8;27999:21;:61::i;:::-;28543:1;1501:2;28513:1;:26;;28512:32;28500:8;:45;28474:18;:22;28493:2;28474:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28822:139;28859:2;28913:33;28936:1;28940:2;28944:1;28913:14;:33::i;:::-;28880:30;28901:8;28880:20;:30::i;:::-;:66;28822:18;:139::i;:::-;28788:17;:31;28806:12;28788:31;;;;;;;;;;;:173;;;;28978:16;29009:11;29038:8;29023:12;:23;29009:37;;29293:16;29289:2;29285:25;29273:37;;29665:12;29625:8;29584:1;29522:25;29463:1;29402;29375:335;29790:1;29776:12;29772:20;29730:346;29831:3;29822:7;29819:16;29730:346;;30049:7;30039:8;30036:1;30009:25;30006:1;30003;29998:59;29884:1;29875:7;29871:15;29860:26;;29730:346;;;29734:77;30121:1;30109:8;:13;30105:45;;30131:19;;;;;;;;;;;;;;30105:45;30183:3;30167:13;:19;;;;28248:1950;;30208:60;30237:1;30241:2;30245:12;30259:8;30208:20;:60::i;:::-;27884:2392;27822:2454;;:::o;26644:716::-;26807:4;26853:2;26828:45;;;26874:19;:17;:19::i;:::-;26895:4;26901:7;26910:5;26828:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26824:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27128:1;27111:6;:13;:18;27107:235;;27157:40;;;;;;;;;;;;;;27107:235;27300:6;27294:13;27285:6;27281:2;27277:15;27270:38;26824:529;26997:54;;;26987:64;;;:6;:64;;;;26980:71;;;26644:716;;;;;;:::o;1500:114:4:-;1560:13;1593;1586:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1500:114;:::o;40176:1581:1:-;40241:17;40666:4;40659;40653:11;40649:22;40642:29;;40758:3;40752:4;40745:17;40864:3;41103:5;41085:428;41111:1;41085:428;;;41151:1;41146:3;41142:11;41135:18;;41322:2;41316:4;41312:13;41308:2;41304:22;41299:3;41291:36;41416:2;41410:4;41406:13;41398:21;;41483:4;41085:428;41473:25;41085:428;41089:21;41552:3;41547;41543:13;41667:4;41662:3;41658:14;41651:21;;41732:6;41727:3;41720:19;40280:1470;;40176:1581;;;:::o;38979:147::-;39116:6;38979:147;;;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;15192:324:1:-;15262:14;15495:1;15485:8;15482:15;15456:24;15452:46;15442:56;;15192:324;;;:::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:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:323::-;11697:6;11746:2;11734:9;11725:7;11721:23;11717:32;11714:119;;;11752:79;;:::i;:::-;11714:119;11872:1;11897:50;11939:7;11930:6;11919:9;11915:22;11897:50;:::i;:::-;11887:60;;11843:114;11641:323;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:141::-;13011:4;13034:3;13026:11;;13057:3;13054:1;13047:14;13091:4;13088:1;13078:18;13070:26;;12962:141;;;:::o;13109:93::-;13146:6;13193:2;13188;13181:5;13177:14;13173:23;13163:33;;13109:93;;;:::o;13208:107::-;13252:8;13302:5;13296:4;13292:16;13271:37;;13208:107;;;;:::o;13321:393::-;13390:6;13440:1;13428:10;13424:18;13463:97;13493:66;13482:9;13463:97;:::i;:::-;13581:39;13611:8;13600:9;13581:39;:::i;:::-;13569:51;;13653:4;13649:9;13642:5;13638:21;13629:30;;13702:4;13692:8;13688:19;13681:5;13678:30;13668:40;;13397:317;;13321:393;;;;;:::o;13720:60::-;13748:3;13769:5;13762:12;;13720:60;;;:::o;13786:142::-;13836:9;13869:53;13887:34;13896:24;13914:5;13896:24;:::i;:::-;13887:34;:::i;:::-;13869:53;:::i;:::-;13856:66;;13786:142;;;:::o;13934:75::-;13977:3;13998:5;13991:12;;13934:75;;;:::o;14015:269::-;14125:39;14156:7;14125:39;:::i;:::-;14186:91;14235:41;14259:16;14235:41;:::i;:::-;14227:6;14220:4;14214:11;14186:91;:::i;:::-;14180:4;14173:105;14091:193;14015:269;;;:::o;14290:73::-;14335:3;14290:73;:::o;14369:189::-;14446:32;;:::i;:::-;14487:65;14545:6;14537;14531:4;14487:65;:::i;:::-;14422:136;14369:189;;:::o;14564:186::-;14624:120;14641:3;14634:5;14631:14;14624:120;;;14695:39;14732:1;14725:5;14695:39;:::i;:::-;14668:1;14661:5;14657:13;14648:22;;14624:120;;;14564:186;;:::o;14756:543::-;14857:2;14852:3;14849:11;14846:446;;;14891:38;14923:5;14891:38;:::i;:::-;14975:29;14993:10;14975:29;:::i;:::-;14965:8;14961:44;15158:2;15146:10;15143:18;15140:49;;;15179:8;15164:23;;15140:49;15202:80;15258:22;15276:3;15258:22;:::i;:::-;15248:8;15244:37;15231:11;15202:80;:::i;:::-;14861:431;;14846:446;14756:543;;;:::o;15305:117::-;15359:8;15409:5;15403:4;15399:16;15378:37;;15305:117;;;;:::o;15428:169::-;15472:6;15505:51;15553:1;15549:6;15541:5;15538:1;15534:13;15505:51;:::i;:::-;15501:56;15586:4;15580;15576:15;15566:25;;15479:118;15428:169;;;;:::o;15602:295::-;15678:4;15824:29;15849:3;15843:4;15824:29;:::i;:::-;15816:37;;15886:3;15883:1;15879:11;15873:4;15870:21;15862:29;;15602:295;;;;:::o;15902:1395::-;16019:37;16052:3;16019:37;:::i;:::-;16121:18;16113:6;16110:30;16107:56;;;16143:18;;:::i;:::-;16107:56;16187:38;16219:4;16213:11;16187:38;:::i;:::-;16272:67;16332:6;16324;16318:4;16272:67;:::i;:::-;16366:1;16390:4;16377:17;;16422:2;16414:6;16411:14;16439:1;16434:618;;;;17096:1;17113:6;17110:77;;;17162:9;17157:3;17153:19;17147:26;17138:35;;17110:77;17213:67;17273:6;17266:5;17213:67;:::i;:::-;17207:4;17200:81;17069:222;16404:887;;16434:618;16486:4;16482:9;16474:6;16470:22;16520:37;16552:4;16520:37;:::i;:::-;16579:1;16593:208;16607:7;16604:1;16601:14;16593:208;;;16686:9;16681:3;16677:19;16671:26;16663:6;16656:42;16737:1;16729:6;16725:14;16715:24;;16784:2;16773:9;16769:18;16756:31;;16630:4;16627:1;16623:12;16618:17;;16593:208;;;16829:6;16820:7;16817:19;16814:179;;;16887:9;16882:3;16878:19;16872:26;16930:48;16972:4;16964:6;16960:17;16949:9;16930:48;:::i;:::-;16922:6;16915:64;16837:156;16814:179;17039:1;17035;17027:6;17023:14;17019:22;17013:4;17006:36;16441:611;;;16404:887;;15994:1303;;;15902:1395;;:::o;17303:180::-;17351:77;17348:1;17341:88;17448:4;17445:1;17438:15;17472:4;17469:1;17462:15;17489:305;17529:3;17548:20;17566:1;17548:20;:::i;:::-;17543:25;;17582:20;17600:1;17582:20;:::i;:::-;17577:25;;17736:1;17668:66;17664:74;17661:1;17658:81;17655:107;;;17742:18;;:::i;:::-;17655:107;17786:1;17783;17779:9;17772:16;;17489:305;;;;:::o;17800:178::-;17940:30;17936:1;17928:6;17924:14;17917:54;17800:178;:::o;17984:366::-;18126:3;18147:67;18211:2;18206:3;18147:67;:::i;:::-;18140:74;;18223:93;18312:3;18223:93;:::i;:::-;18341:2;18336:3;18332:12;18325:19;;17984:366;;;:::o;18356:419::-;18522:4;18560:2;18549:9;18545:18;18537:26;;18609:9;18603:4;18599:20;18595:1;18584:9;18580:17;18573:47;18637:131;18763:4;18637:131;:::i;:::-;18629:139;;18356:419;;;:::o;18781:166::-;18921:18;18917:1;18909:6;18905:14;18898:42;18781:166;:::o;18953:366::-;19095:3;19116:67;19180:2;19175:3;19116:67;:::i;:::-;19109:74;;19192:93;19281:3;19192:93;:::i;:::-;19310:2;19305:3;19301:12;19294:19;;18953:366;;;:::o;19325:419::-;19491:4;19529:2;19518:9;19514:18;19506:26;;19578:9;19572:4;19568:20;19564:1;19553:9;19549:17;19542:47;19606:131;19732:4;19606:131;:::i;:::-;19598:139;;19325:419;;;:::o;19750:191::-;19790:4;19810:20;19828:1;19810:20;:::i;:::-;19805:25;;19844:20;19862:1;19844:20;:::i;:::-;19839:25;;19883:1;19880;19877:8;19874:34;;;19888:18;;:::i;:::-;19874:34;19933:1;19930;19926:9;19918:17;;19750:191;;;;:::o;19947:173::-;20087:25;20083:1;20075:6;20071:14;20064:49;19947:173;:::o;20126:366::-;20268:3;20289:67;20353:2;20348:3;20289:67;:::i;:::-;20282:74;;20365:93;20454:3;20365:93;:::i;:::-;20483:2;20478:3;20474:12;20467:19;;20126:366;;;:::o;20498:419::-;20664:4;20702:2;20691:9;20687:18;20679:26;;20751:9;20745:4;20741:20;20737:1;20726:9;20722:17;20715:47;20779:131;20905:4;20779:131;:::i;:::-;20771:139;;20498:419;;;:::o;20923:231::-;21063:34;21059:1;21051:6;21047:14;21040:58;21132:14;21127:2;21119:6;21115:15;21108:39;20923:231;:::o;21160:366::-;21302:3;21323:67;21387:2;21382:3;21323:67;:::i;:::-;21316:74;;21399:93;21488:3;21399:93;:::i;:::-;21517:2;21512:3;21508:12;21501:19;;21160:366;;;:::o;21532:419::-;21698:4;21736:2;21725:9;21721:18;21713:26;;21785:9;21779:4;21775:20;21771:1;21760:9;21756:17;21749:47;21813:131;21939:4;21813:131;:::i;:::-;21805:139;;21532:419;;;:::o;21957:222::-;22097:34;22093:1;22085:6;22081:14;22074:58;22166:5;22161:2;22153:6;22149:15;22142:30;21957:222;:::o;22185:366::-;22327:3;22348:67;22412:2;22407:3;22348:67;:::i;:::-;22341:74;;22424:93;22513:3;22424:93;:::i;:::-;22542:2;22537:3;22533:12;22526:19;;22185:366;;;:::o;22557:419::-;22723:4;22761:2;22750:9;22746:18;22738:26;;22810:9;22804:4;22800:20;22796:1;22785:9;22781:17;22774:47;22838:131;22964:4;22838:131;:::i;:::-;22830:139;;22557:419;;;:::o;22982:232::-;23122:34;23118:1;23110:6;23106:14;23099:58;23191:15;23186:2;23178:6;23174:15;23167:40;22982:232;:::o;23220:366::-;23362:3;23383:67;23447:2;23442:3;23383:67;:::i;:::-;23376:74;;23459:93;23548:3;23459:93;:::i;:::-;23577:2;23572:3;23568:12;23561:19;;23220:366;;;:::o;23592:419::-;23758:4;23796:2;23785:9;23781:18;23773:26;;23845:9;23839:4;23835:20;23831:1;23820:9;23816:17;23809:47;23873:131;23999:4;23873:131;:::i;:::-;23865:139;;23592:419;;;:::o;24017:148::-;24119:11;24156:3;24141:18;;24017:148;;;;:::o;24171:377::-;24277:3;24305:39;24338:5;24305:39;:::i;:::-;24360:89;24442:6;24437:3;24360:89;:::i;:::-;24353:96;;24458:52;24503:6;24498:3;24491:4;24484:5;24480:16;24458:52;:::i;:::-;24535:6;24530:3;24526:16;24519:23;;24281:267;24171:377;;;;:::o;24554:435::-;24734:3;24756:95;24847:3;24838:6;24756:95;:::i;:::-;24749:102;;24868:95;24959:3;24950:6;24868:95;:::i;:::-;24861:102;;24980:3;24973:10;;24554:435;;;;;:::o;24995:225::-;25135:34;25131:1;25123:6;25119:14;25112:58;25204:8;25199:2;25191:6;25187:15;25180:33;24995:225;:::o;25226:366::-;25368:3;25389:67;25453:2;25448:3;25389:67;:::i;:::-;25382:74;;25465:93;25554:3;25465:93;:::i;:::-;25583:2;25578:3;25574:12;25567:19;;25226:366;;;:::o;25598:419::-;25764:4;25802:2;25791:9;25787:18;25779:26;;25851:9;25845:4;25841:20;25837:1;25826:9;25822:17;25815:47;25879:131;26005:4;25879:131;:::i;:::-;25871:139;;25598:419;;;:::o;26023:182::-;26163:34;26159:1;26151:6;26147:14;26140:58;26023:182;:::o;26211:366::-;26353:3;26374:67;26438:2;26433:3;26374:67;:::i;:::-;26367:74;;26450:93;26539:3;26450:93;:::i;:::-;26568:2;26563:3;26559:12;26552:19;;26211:366;;;:::o;26583:419::-;26749:4;26787:2;26776:9;26772:18;26764:26;;26836:9;26830:4;26826:20;26822:1;26811:9;26807:17;26800:47;26864:131;26990:4;26864:131;:::i;:::-;26856:139;;26583:419;;;:::o;27008:98::-;27059:6;27093:5;27087:12;27077:22;;27008:98;;;:::o;27112:168::-;27195:11;27229:6;27224:3;27217:19;27269:4;27264:3;27260:14;27245:29;;27112:168;;;;:::o;27286:360::-;27372:3;27400:38;27432:5;27400:38;:::i;:::-;27454:70;27517:6;27512:3;27454:70;:::i;:::-;27447:77;;27533:52;27578:6;27573:3;27566:4;27559:5;27555:16;27533:52;:::i;:::-;27610:29;27632:6;27610:29;:::i;:::-;27605:3;27601:39;27594:46;;27376:270;27286:360;;;;:::o;27652:640::-;27847:4;27885:3;27874:9;27870:19;27862:27;;27899:71;27967:1;27956:9;27952:17;27943:6;27899:71;:::i;:::-;27980:72;28048:2;28037:9;28033:18;28024:6;27980:72;:::i;:::-;28062;28130:2;28119:9;28115:18;28106:6;28062:72;:::i;:::-;28181:9;28175:4;28171:20;28166:2;28155:9;28151:18;28144:48;28209:76;28280:4;28271:6;28209:76;:::i;:::-;28201:84;;27652:640;;;;;;;:::o;28298:141::-;28354:5;28385:6;28379:13;28370:22;;28401:32;28427:5;28401:32;:::i;:::-;28298:141;;;;:::o;28445:349::-;28514:6;28563:2;28551:9;28542:7;28538:23;28534:32;28531:119;;;28569:79;;:::i;:::-;28531:119;28689:1;28714:63;28769:7;28760:6;28749:9;28745:22;28714:63;:::i;:::-;28704:73;;28660:127;28445:349;;;;:::o

Swarm Source

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