ETH Price: $2,362.34 (+0.41%)

Token

Pop Fighter (PF)
 

Overview

Max Total Supply

5,021 PF

Holders

433

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 PF
0x161181B1905845D5F6e1C610B1403abD0E7c4d37
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:
PopFighter

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 7 : Popfighter.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract PopFighter is ERC721A, Ownable, ReentrancyGuard  {

    /**
     * @notice Increment number of Mvp mint token mints redeemed by caller
     * @dev We cast the _numToIncrement argument into uint16, which will not be an issue as
     * mint quantity should never be greater than 2^16 - 1.
     * @dev Number of redemptions are stored in ERC721A auxillary storage, which can help
     */
    function incrementRedemptionsMvp(address to, uint256 _numToIncrement) private {
        (uint16 mvpMintRedemptions, uint16 ogMintRedemptions, uint16 allowListMintRedemptions, uint16 publicMintRedemptions) = unpackMintRedemptions(_getAux(to));
        mvpMintRedemptions += uint16(_numToIncrement);
        _setAux(to, packMintRedemptions(mvpMintRedemptions, ogMintRedemptions, allowListMintRedemptions, publicMintRedemptions));
    }

    /**
     * @notice Increment number of OG mint token mints redeemed by caller
     * @dev We cast the _numToIncrement argument into uint16, which will not be an issue as
     * mint quantity should never be greater than 2^16 - 1.
     * @dev Number of redemptions are stored in ERC721A auxillary storage, which can help
     */
    function incrementRedemptionsOG(address to, uint256 _numToIncrement) private {
        (uint16 MvpMintRedemptions, uint16 ogMintRedemptions, uint16 allowListMintRedemptions, uint16 publicMintRedemptions) = unpackMintRedemptions(_getAux(to));
        ogMintRedemptions += uint16(_numToIncrement);
        _setAux(to, packMintRedemptions(MvpMintRedemptions, ogMintRedemptions, allowListMintRedemptions, publicMintRedemptions));
    }

    /**
     * @notice Increment number of allow list mint token mints redeemed by caller
     * @dev We cast the _numToIncrement argument into uint16, which will not be an issue as
     * mint quantity should never be greater than 2^16 - 1.
     * @dev Number of redemptions are stored in ERC721A auxillary storage, which can help
     */
    function incrementRedemptionsAllowList(address to, uint256 _numToIncrement) private {
        (uint16 MvpMintRedemptions, uint16 ogMintRedemptions, uint16 allowListMintRedemptions, uint16 publicMintRedemptions) = unpackMintRedemptions(_getAux(to));
        allowListMintRedemptions += uint16(_numToIncrement);
        _setAux(to, packMintRedemptions(MvpMintRedemptions, ogMintRedemptions, allowListMintRedemptions, publicMintRedemptions));
    }

    /**
     * @notice Increment number of public sale mints redeemed by caller
     * @dev We cast the _numToIncrement argument into uint16, which will not be an issue as
     * mint quantity should never be greater than 2^16 - 1.
     * @dev Number of redemptions are stored in ERC721A auxillary storage, which can help
     */
    function incrementRedemptionsPublic(address to, uint256 _numToIncrement) private {
        (uint16 MvpMintRedemptions, uint16 ogMintRedemptions, uint16 allowListMintRedemptions, uint16 publicMintRedemptions) = unpackMintRedemptions(_getAux(to));
        publicMintRedemptions += uint16(_numToIncrement);
        _setAux(to, packMintRedemptions(MvpMintRedemptions, ogMintRedemptions, allowListMintRedemptions, publicMintRedemptions));
    }

    /**
     * @notice Unpack and get number of Mvp mints redeemed by caller
     * @return number of Mvp redemptions used
     * @dev Number of redemptions are stored in ERC721A auxillary storage, which can help
     */
    function getRedemptionsMvp(address from) public view returns (uint256) {
        (uint16 mvpMintRedemptions, , , ) = unpackMintRedemptions(_getAux(from));
        return mvpMintRedemptions;
    }

    /**
     * @notice Unpack and get number of og mints redeemed by caller
     * @return number of public redemptions used
     * @dev Number of redemptions are stored in ERC721A auxillary storage, which can help
     */
    function getRedemptionsOG(address from) public view returns (uint256) {
        (, uint16 ogMintRedemptions, , ) = unpackMintRedemptions(_getAux(from));
        return ogMintRedemptions;
    }

    /**
     * @notice Unpack and get number of allow list mints redeemed by caller
     * @return number of allow list redemptions used
     * @dev Number of redemptions are stored in ERC721A auxillary storage, which can help
     */
    function getRedemptionsAllowList(address from) public view returns (uint256) {
        (, , uint16 allowListMintRedemptions, ) = unpackMintRedemptions(_getAux(from));
        return allowListMintRedemptions;
    }

    /**
     * @notice Unpack and get number of public mints redeemed by caller
     * @return number of public redemptions used
     * @dev Number of redemptions are stored in ERC721A auxillary storage, which can help
     */
    function getRedemptionsPublic(address from) public view returns (uint256) {
        (, , , uint16 publicMintRedemptions) = unpackMintRedemptions(_getAux(from));
        return publicMintRedemptions;
    }

    /**
     * @notice Pack four uint16s into a single uint64 value
     * @return Packed value
     * @dev Performs shift and bit operations to pack four uint16s into a single uint64
     */
    function packMintRedemptions(uint16 _mvpMintRedemptions, uint16 _ogMintRedemptions, uint16 _allowListMintRedemptions, uint16 _publicMintRedemptions) private pure returns (uint64) {
        return (uint64(_mvpMintRedemptions) << 48) | (uint64(_ogMintRedemptions) << 32) | (uint64(_allowListMintRedemptions) << 16) | uint64(_publicMintRedemptions);
    }

    /**
     * @notice Unpack a single uint64 value into four uint16s
     * @return mvpMintRedemptions ogMintRedemptions allowListMintRedemptions publicMintRedemptions Unpacked values
     * @dev Performs shift and bit operations to unpack a single uint64 into four uint16s
     */
    function unpackMintRedemptions(uint64 _mintRedemptionPack) private pure returns (uint16 mvpMintRedemptions, uint16 ogMintRedemptions, uint16 allowListMintRedemptions, uint16 publicMintRedemptions) {
        mvpMintRedemptions = uint16(_mintRedemptionPack >> 48 & 0x000000000000ffff);
        ogMintRedemptions = uint16(_mintRedemptionPack >> 32 & 0x000000000000ffff);
        allowListMintRedemptions = uint16(_mintRedemptionPack >> 16 & 0x000000000000ffff);
        publicMintRedemptions = uint16(_mintRedemptionPack & 0x000000000000ffff);
    }

    enum MintPhase {
        NOT_START,
        MVP_FREE_MINT,
        OG_AL_MINT,
        PUBLIC_SALE
    }

    MintPhase public currentMintPhase = MintPhase.NOT_START;

    function setMintPhase(MintPhase _mintPhase) external onlyOwner {
        currentMintPhase = _mintPhase;
    }

    modifier inMintPhase(MintPhase requireMintPhase) {
        require(requireMintPhase == currentMintPhase, "Not in correct mint phase.");
        _;
    }

    string public baseURI;

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

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

    uint256 collectionSize = 5500;

    uint256 public alMintPrice = 0.016 ether;

    uint256 public publicSalePrice = 0.02 ether;

    constructor() ERC721A("Pop Fighter", "PF") {}

    /**
     * MVP Mint Module
     */

    bytes32 private mvpMintRoot;

    uint256 public mvpMintStock = 800;

    function setMvpMintRoot(bytes32 _root) external onlyOwner {
        mvpMintRoot = _root;
    }

    function isMvp(address from, bytes32[] calldata proof) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(from));
        return MerkleProof.verify(proof, mvpMintRoot, leaf);
    }

    function mvpFreeMint(bytes32[] calldata proof) external inMintPhase(MintPhase.MVP_FREE_MINT) {
        require(isMvp(msg.sender, proof), "Invalid merkle proof.");
        require(getRedemptionsMvp(msg.sender) == 0, "Minted.");
        require(mvpMintStock >= 1, "Exceed mvp mint supply.");
        _safeMint(msg.sender, 1);
        unchecked {
            mvpMintStock--;
        }
        incrementRedemptionsMvp(msg.sender, 1);
    }

    /**
     * OG Mint Module
     */

    uint256 public ogALStock = 2300;

    bytes32 private ogMintRoot;

    function setOGMintRoot(bytes32 _root) external onlyOwner {
        ogMintRoot = _root;
    }

    function isOG(address from, bytes32[] calldata proof) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(from));
        return MerkleProof.verify(proof, ogMintRoot, leaf);
    }

    function ogMvpMint(uint256 amount, bytes32[] calldata proof) public payable inMintPhase(MintPhase.OG_AL_MINT) {
        require(isOG(msg.sender, proof) || isMvp(msg.sender, proof), "Invalid merkle proof.");
        require(getRedemptionsOG(msg.sender) + amount <= 2, "Exceed num per address.");
        require(msg.value == alMintPrice * amount, "Value not valid.");
        require(ogALStock >= amount, "Exceed max supply.");
        _safeMint(msg.sender, amount);
        unchecked{
            ogALStock -= amount;
        }
        incrementRedemptionsOG(msg.sender, amount);
    }

    /**
     * Allow List Mint Module
     */

    bytes32 private allowListMintRoot;

    function setALMintRoot(bytes32 _root) external onlyOwner {
        allowListMintRoot = _root;
    }

    function isInAllowList(address from, bytes32[] calldata proof) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(from));
        return MerkleProof.verify(proof, allowListMintRoot, leaf);
    }

    function allowListMint(bytes32[] calldata proof) public payable inMintPhase(MintPhase.OG_AL_MINT) {
        require(isInAllowList(msg.sender, proof), "Invalid merkle proof.");
        require(getRedemptionsAllowList(msg.sender) == 0, "Minted.");
        require(msg.value == alMintPrice, "Value not valid.");
        require(ogALStock >= 1, "Exceed max supply.");
        _safeMint(msg.sender, 1);
        unchecked{
            ogALStock -= 1;
        }
        incrementRedemptionsAllowList(msg.sender, 1);
    }

    /**
     * Public Sale Mint Module
     */

    function publicSaleMint(uint256 amount) public payable inMintPhase(MintPhase.PUBLIC_SALE) {
        require(getRedemptionsPublic(msg.sender) + amount <= 2, "Exceed num per address.");
        require(msg.value == publicSalePrice * amount, "Value not valid.");
        require(totalSupply() + amount <= collectionSize, "Exceed total supply.");
        _safeMint(msg.sender, amount);
        incrementRedemptionsPublic(msg.sender, amount);
    }

    /**
     * Utils Module
     */
    function airdrop(address[] calldata toList, uint256[] calldata quantities) external onlyOwner {
        for (uint256 i = 0; i < toList.length; i++) {
            require(totalSupply() + quantities[i] <= collectionSize, "Exceed max supply.");
            _safeMint(toList[i], quantities[i]);
        }
    }

    function withdraw() external onlyOwner {
        address shareHolder1 = 0x03510854B98E8a55a3f7Dc691547AcCF983A7df8;
        address shareHolder2 = 0x694C8Af4Dd3aDE21645F39857CE66A6c65857694;
        if (address(this).balance < 30 ether) {
            (bool success, ) = shareHolder1.call{value: address(this).balance}("");
            require(success, "transfer failed");
        } else {
            (bool success, ) = shareHolder2.call{value: 30 ether}("");
            require(success, "transfer failed");
            (success, ) = shareHolder2.call{value: address(this).balance * 3 / 10}("");
            require(success, "transfer failed");
            (success, ) = shareHolder1.call{value: address(this).balance}("");
            require(success, "transfer failed");
        }
    }
}

File 2 of 7 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.0
// 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 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 7 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../utils/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);
    }
}

File 6 of 7 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.0
// 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 7 of 7 : 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"toList","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"alMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentMintPhase","outputs":[{"internalType":"enum PopFighter.MintPhase","name":"","type":"uint8"}],"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":"from","type":"address"}],"name":"getRedemptionsAllowList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"getRedemptionsMvp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"getRedemptionsOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"getRedemptionsPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isInAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isMvp","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isOG","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mvpFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mvpMintStock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogALStock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"ogMvpMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bytes32","name":"_root","type":"bytes32"}],"name":"setALMintRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum PopFighter.MintPhase","name":"_mintPhase","type":"uint8"}],"name":"setMintPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMvpMintRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setOGMintRoot","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"}]

60806040526000600a60006101000a81548160ff021916908360038111156200002d576200002c62000305565b5b021790555061157c600c556638d7ea4c680000600d5566470de4df820000600e556103206010556108fc6011553480156200006757600080fd5b506040518060400160405280600b81526020017f506f7020466967687465720000000000000000000000000000000000000000008152506040518060400160405280600281526020017f50460000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ec9291906200021f565b508060039080519060200190620001059291906200021f565b50620001166200014c60201b60201c565b60008190555050506200013e620001326200015160201b60201c565b6200015960201b60201c565b600160098190555062000363565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022d90620002cf565b90600052602060002090601f0160209004810192826200025157600085556200029d565b82601f106200026c57805160ff19168380011785556200029d565b828001600101855582156200029d579182015b828111156200029c5782518255916020019190600101906200027f565b5b509050620002ac9190620002b0565b5090565b5b80821115620002cb576000816000905550600101620002b1565b5090565b60006002820490506001821680620002e857607f821691505b60208210811415620002ff57620002fe62000334565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61433280620003736000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063b265dbf4116100b6578063cb5ee5c11161007a578063cb5ee5c114610884578063d30518e2146108c1578063d6c0b559146108dd578063e985e9c51461091a578063f05b5f4414610957578063f2fde38b1461098057610246565b8063b265dbf414610788578063b3ab66b0146107c5578063b88d4fde146107e1578063c5d98bb31461080a578063c87b56dd1461084757610246565b806395d89b41116100fd57806395d89b41146106a15780639970ff15146106cc5780639b6860c814610709578063a22cb46514610734578063a9960d291461075d57610246565b806370a08231146105ce578063715018a61461060b5780637b677933146106225780638da5cb5b1461064b578063910ec6651461067657610246565b80633ccfd60b116101c75780635cfe6b841161018b5780635cfe6b84146104e45780636352211e14610500578063672434821461053d5780636b5e530f146105665780636c0360eb146105a357610246565b80633ccfd60b1461042757806342842e0e1461043e578063449d0f101461046757806348dec5931461049257806355f804b3146104bb57610246565b8063110e69471161020e578063110e694714610344578063139fbd701461036d57806318160ddd146103aa57806323b872dd146103d557806331c07bbf146103fe57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780630dd250e114610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d919061351a565b6109a9565b60405161027f91906139d0565b60405180910390f35b34801561029457600080fd5b5061029d610a3b565b6040516102aa9190613a06565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906135ee565b610acd565b6040516102e79190613969565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906133df565b610b4c565b005b34801561032557600080fd5b5061032e610c90565b60405161033b91906139eb565b60405180910390f35b34801561035057600080fd5b5061036b600480360381019061036691906134ed565b610ca3565b005b34801561037957600080fd5b50610394600480360381019061038f91906131fc565b610cb5565b6040516103a19190613b88565b60405180910390f35b3480156103b657600080fd5b506103bf610cdb565b6040516103cc9190613b88565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190613269565b610cf2565b005b34801561040a57600080fd5b5061042560048036038101906104209190613574565b611017565b005b34801561043357600080fd5b5061043c61104c565b005b34801561044a57600080fd5b5061046560048036038101906104609190613269565b611374565b005b34801561047357600080fd5b5061047c611394565b6040516104899190613b88565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b491906134ed565b61139a565b005b3480156104c757600080fd5b506104e260048036038101906104dd91906135a1565b6113ac565b005b6104fe60048036038101906104f991906134a0565b6113ca565b005b34801561050c57600080fd5b50610527600480360381019061052291906135ee565b61158c565b6040516105349190613969565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f919061341f565b61159e565b005b34801561057257600080fd5b5061058d600480360381019061058891906131fc565b611688565b60405161059a9190613b88565b60405180910390f35b3480156105af57600080fd5b506105b86116ae565b6040516105c59190613a06565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f091906131fc565b61173c565b6040516106029190613b88565b60405180910390f35b34801561061757600080fd5b506106206117f5565b005b34801561062e57600080fd5b50610649600480360381019061064491906134ed565b611809565b005b34801561065757600080fd5b5061066061181b565b60405161066d9190613969565b60405180910390f35b34801561068257600080fd5b5061068b611845565b6040516106989190613b88565b60405180910390f35b3480156106ad57600080fd5b506106b661184b565b6040516106c39190613a06565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee919061333f565b6118dd565b60405161070091906139d0565b60405180910390f35b34801561071557600080fd5b5061071e611961565b60405161072b9190613b88565b60405180910390f35b34801561074057600080fd5b5061075b6004803603810190610756919061339f565b611967565b005b34801561076957600080fd5b50610772611adf565b60405161077f9190613b88565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa919061333f565b611ae5565b6040516107bc91906139d0565b60405180910390f35b6107df60048036038101906107da91906135ee565b611b69565b005b3480156107ed57600080fd5b50610808600480360381019061080391906132bc565b611cf5565b005b34801561081657600080fd5b50610831600480360381019061082c919061333f565b611d68565b60405161083e91906139d0565b60405180910390f35b34801561085357600080fd5b5061086e600480360381019061086991906135ee565b611dec565b60405161087b9190613a06565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a691906131fc565b611e8b565b6040516108b89190613b88565b60405180910390f35b6108db60048036038101906108d6919061361b565b611eb1565b005b3480156108e957600080fd5b5061090460048036038101906108ff91906131fc565b612099565b6040516109119190613b88565b60405180910390f35b34801561092657600080fd5b50610941600480360381019061093c9190613229565b6120bf565b60405161094e91906139d0565b60405180910390f35b34801561096357600080fd5b5061097e600480360381019061097991906134a0565b612153565b005b34801561098c57600080fd5b506109a760048036038101906109a291906131fc565b6122d3565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a345750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a4a90613e53565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7690613e53565b8015610ac35780601f10610a9857610100808354040283529160200191610ac3565b820191906000526020600020905b815481529060010190602001808311610aa657829003601f168201915b5050505050905090565b6000610ad882612357565b610b0e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b578261158c565b90508073ffffffffffffffffffffffffffffffffffffffff16610b786123b6565b73ffffffffffffffffffffffffffffffffffffffff1614610bdb57610ba481610b9f6123b6565b6120bf565b610bda576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a60009054906101000a900460ff1681565b610cab6123be565b80600f8190555050565b600080610cc9610cc48461243c565b612489565b93505050508061ffff16915050919050565b6000610ce56124dc565b6001546000540303905090565b6000610cfd826124e1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d64576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d70846125af565b91509150610d868187610d816123b6565b6125d6565b610dd257610d9b86610d966123b6565b6120bf565b610dd1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e39576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e46868686600161261a565b8015610e5157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f1f85610efb888887612620565b7c020000000000000000000000000000000000000000000000000000000017612648565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fa7576000600185019050600060046000838152602001908152602001600020541415610fa5576000548114610fa4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461100f8686866001612673565b505050505050565b61101f6123be565b80600a60006101000a81548160ff0219169083600381111561104457611043613f81565b5b021790555050565b6110546123be565b60007303510854b98e8a55a3f7dc691547accf983a7df89050600073694c8af4dd3ade21645f39857ce66a6c6585769490506801a055690d9db800004710156111495760008273ffffffffffffffffffffffffffffffffffffffff16476040516110bd90613954565b60006040518083038185875af1925050503d80600081146110fa576040519150601f19603f3d011682016040523d82523d6000602084013e6110ff565b606091505b5050905080611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90613b48565b60405180910390fd5b50611370565b60008173ffffffffffffffffffffffffffffffffffffffff166801a055690d9db8000060405161117890613954565b60006040518083038185875af1925050503d80600081146111b5576040519150601f19603f3d011682016040523d82523d6000602084013e6111ba565b606091505b50509050806111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590613b48565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff16600a6003476112249190613d06565b61122e9190613cd5565b60405161123a90613954565b60006040518083038185875af1925050503d8060008114611277576040519150601f19603f3d011682016040523d82523d6000602084013e61127c565b606091505b505080915050806112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990613b48565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16476040516112e690613954565b60006040518083038185875af1925050503d8060008114611323576040519150601f19603f3d011682016040523d82523d6000602084013e611328565b606091505b5050809150508061136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136590613b48565b60405180910390fd5b505b5050565b61138f83838360405180602001604052806000815250611cf5565b505050565b600d5481565b6113a26123be565b8060128190555050565b6113b46123be565b8181600b91906113c5929190612efe565b505050565b6002600a60009054906101000a900460ff1660038111156113ee576113ed613f81565b5b81600381111561140157611400613f81565b5b14611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890613a88565b60405180910390fd5b61144c338484611d68565b61148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290613b68565b60405180910390fd5b600061149633611e8b565b146114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd90613a48565b60405180910390fd5b600d54341461151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190613b28565b60405180910390fd5b60016011541015611560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155790613ac8565b60405180910390fd5b61156b336001612679565b6001601160008282540392505081905550611587336001612697565b505050565b6000611597826124e1565b9050919050565b6115a66123be565b60005b8484905081101561168157600c548383838181106115ca576115c9613fdf565b5b905060200201356115d9610cdb565b6115e39190613c7f565b1115611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90613ac8565b60405180910390fd5b61166e85858381811061163a57611639613fdf565b5b905060200201602081019061164f91906131fc565b84848481811061166257611661613fdf565b5b90506020020135612679565b808061167990613eb6565b9150506115a9565b5050505050565b60008061169c6116978461243c565b612489565b50505090508061ffff16915050919050565b600b80546116bb90613e53565b80601f01602080910402602001604051908101604052809291908181526020018280546116e790613e53565b80156117345780601f1061170957610100808354040283529160200191611734565b820191906000526020600020905b81548152906001019060200180831161171757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6117fd6123be565b61180760006126e1565b565b6118116123be565b8060138190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b60606003805461185a90613e53565b80601f016020809104026020016040519081016040528092919081815260200182805461188690613e53565b80156118d35780601f106118a8576101008083540402835291602001916118d3565b820191906000526020600020905b8154815290600101906020018083116118b657829003601f168201915b5050505050905090565b600080846040516020016118f19190613915565b604051602081830303815290604052805190602001209050611957848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601254836127a7565b9150509392505050565b600e5481565b61196f6123b6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119e16123b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a8e6123b6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad391906139d0565b60405180910390a35050565b60105481565b60008084604051602001611af99190613915565b604051602081830303815290604052805190602001209050611b5f848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f54836127a7565b9150509392505050565b6003600a60009054906101000a900460ff166003811115611b8d57611b8c613f81565b5b816003811115611ba057611b9f613f81565b5b14611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd790613a88565b60405180910390fd5b600282611bec33610cb5565b611bf69190613c7f565b1115611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e90613b08565b60405180910390fd5b81600e54611c459190613d06565b3414611c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7d90613b28565b60405180910390fd5b600c5482611c92610cdb565b611c9c9190613c7f565b1115611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490613aa8565b60405180910390fd5b611ce73383612679565b611cf133836127be565b5050565b611d00848484610cf2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6257611d2b84848484612808565b611d61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60008084604051602001611d7c9190613915565b604051602081830303815290604052805190602001209050611de2848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601354836127a7565b9150509392505050565b6060611df782612357565b611e2d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e37612968565b9050600081511415611e585760405180602001604052806000815250611e83565b80611e62846129fa565b604051602001611e73929190613930565b6040516020818303038152906040525b915050919050565b600080611e9f611e9a8461243c565b612489565b50925050508061ffff16915050919050565b6002600a60009054906101000a900460ff166003811115611ed557611ed4613f81565b5b816003811115611ee857611ee7613f81565b5b14611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90613a88565b60405180910390fd5b611f333384846118dd565b80611f455750611f44338484611ae5565b5b611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b90613b68565b60405180910390fd5b600284611f9033612099565b611f9a9190613c7f565b1115611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290613b08565b60405180910390fd5b83600d54611fe99190613d06565b341461202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202190613b28565b60405180910390fd5b83601154101561206f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206690613ac8565b60405180910390fd5b6120793385612679565b836011600082825403925050819055506120933385612a54565b50505050565b6000806120ad6120a88461243c565b612489565b50509150508061ffff16915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6001600a60009054906101000a900460ff16600381111561217757612176613f81565b5b81600381111561218a57612189613f81565b5b146121ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c190613a88565b60405180910390fd5b6121d5338484611ae5565b612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90613b68565b60405180910390fd5b600061221f33611688565b1461225f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225690613a48565b60405180910390fd5b600160105410156122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90613a68565b60405180910390fd5b6122b0336001612679565b601060008154809291906001900391905055506122ce336001612a9e565b505050565b6122db6123be565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561234b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234290613a28565b60405180910390fd5b612354816126e1565b50565b6000816123626124dc565b11158015612371575060005482105b80156123af575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6123c6612ae8565b73ffffffffffffffffffffffffffffffffffffffff166123e461181b565b73ffffffffffffffffffffffffffffffffffffffff161461243a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243190613ae8565b60405180910390fd5b565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b60008060008061ffff60308667ffffffffffffffff16901c16935061ffff60208667ffffffffffffffff16901c16925061ffff60108667ffffffffffffffff16901c16915061ffff851690509193509193565b600090565b600080829050806124f06124dc565b11612578576000548110156125775760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612575575b600081141561256b576004600083600190039350838152602001908152602001600020549050612540565b80925050506125aa565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612637868684612af0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612693828260405180602001604052806000815250612af9565b5050565b6000806000806126ae6126a98761243c565b612489565b935093509350935084826126c29190613c47565b91506126d9866126d486868686612b96565b612be3565b505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826127b48584612c99565b1490509392505050565b6000806000806127d56127d08761243c565b612489565b935093509350935084816127e99190613c47565b9050612800866127fb86868686612b96565b612be3565b505050505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261282e6123b6565b8786866040518563ffffffff1660e01b81526004016128509493929190613984565b602060405180830381600087803b15801561286a57600080fd5b505af192505050801561289b57506040513d601f19601f820116820180604052508101906128989190613547565b60015b612915573d80600081146128cb576040519150601f19603f3d011682016040523d82523d6000602084013e6128d0565b606091505b5060008151141561290d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461297790613e53565b80601f01602080910402602001604051908101604052809291908181526020018280546129a390613e53565b80156129f05780601f106129c5576101008083540402835291602001916129f0565b820191906000526020600020905b8154815290600101906020018083116129d357829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612a4057600183039250600a81066030018353600a81049050612a20565b508181036020830392508083525050919050565b600080600080612a6b612a668761243c565b612489565b93509350935093508483612a7f9190613c47565b9250612a9686612a9186868686612b96565b612be3565b505050505050565b600080600080612ab5612ab08761243c565b612489565b93509350935093508484612ac99190613c47565b9350612ae086612adb86868686612b96565b612be3565b505050505050565b600033905090565b60009392505050565b612b038383612cef565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b9157600080549050600083820390505b612b436000868380600101945086612808565b612b79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b30578160005414612b8e57600080fd5b50505b505050565b60008161ffff1660108461ffff1667ffffffffffffffff16901b60208661ffff1667ffffffffffffffff16901b60308861ffff1667ffffffffffffffff16901b1717179050949350505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60008082905060005b8451811015612ce457612ccf82868381518110612cc257612cc1613fdf565b5b6020026020010151612eac565b91508080612cdc90613eb6565b915050612ca2565b508091505092915050565b6000805490506000821415612d30576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d3d600084838561261a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612db483612da56000866000612620565b612dae85612ed7565b17612648565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612e5557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612e1a565b506000821415612e91576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612ea76000848385612673565b505050565b6000818310612ec457612ebf8284612ee7565b612ecf565b612ece8383612ee7565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612f0a90613e53565b90600052602060002090601f016020900481019282612f2c5760008555612f73565b82601f10612f4557803560ff1916838001178555612f73565b82800160010185558215612f73579182015b82811115612f72578235825591602001919060010190612f57565b5b509050612f809190612f84565b5090565b5b80821115612f9d576000816000905550600101612f85565b5090565b6000612fb4612faf84613bc8565b613ba3565b905082815260208101848484011115612fd057612fcf61404c565b5b612fdb848285613e11565b509392505050565b600081359050612ff281614279565b92915050565b60008083601f84011261300e5761300d614042565b5b8235905067ffffffffffffffff81111561302b5761302a61403d565b5b60208301915083602082028301111561304757613046614047565b5b9250929050565b60008083601f84011261306457613063614042565b5b8235905067ffffffffffffffff8111156130815761308061403d565b5b60208301915083602082028301111561309d5761309c614047565b5b9250929050565b60008083601f8401126130ba576130b9614042565b5b8235905067ffffffffffffffff8111156130d7576130d661403d565b5b6020830191508360208202830111156130f3576130f2614047565b5b9250929050565b60008135905061310981614290565b92915050565b60008135905061311e816142a7565b92915050565b600081359050613133816142be565b92915050565b600081519050613148816142be565b92915050565b600082601f83011261316357613162614042565b5b8135613173848260208601612fa1565b91505092915050565b60008135905061318b816142d5565b92915050565b60008083601f8401126131a7576131a6614042565b5b8235905067ffffffffffffffff8111156131c4576131c361403d565b5b6020830191508360018202830111156131e0576131df614047565b5b9250929050565b6000813590506131f6816142e5565b92915050565b60006020828403121561321257613211614056565b5b600061322084828501612fe3565b91505092915050565b600080604083850312156132405761323f614056565b5b600061324e85828601612fe3565b925050602061325f85828601612fe3565b9150509250929050565b60008060006060848603121561328257613281614056565b5b600061329086828701612fe3565b93505060206132a186828701612fe3565b92505060406132b2868287016131e7565b9150509250925092565b600080600080608085870312156132d6576132d5614056565b5b60006132e487828801612fe3565b94505060206132f587828801612fe3565b9350506040613306878288016131e7565b925050606085013567ffffffffffffffff81111561332757613326614051565b5b6133338782880161314e565b91505092959194509250565b60008060006040848603121561335857613357614056565b5b600061336686828701612fe3565b935050602084013567ffffffffffffffff81111561338757613386614051565b5b6133938682870161304e565b92509250509250925092565b600080604083850312156133b6576133b5614056565b5b60006133c485828601612fe3565b92505060206133d5858286016130fa565b9150509250929050565b600080604083850312156133f6576133f5614056565b5b600061340485828601612fe3565b9250506020613415858286016131e7565b9150509250929050565b6000806000806040858703121561343957613438614056565b5b600085013567ffffffffffffffff81111561345757613456614051565b5b61346387828801612ff8565b9450945050602085013567ffffffffffffffff81111561348657613485614051565b5b613492878288016130a4565b925092505092959194509250565b600080602083850312156134b7576134b6614056565b5b600083013567ffffffffffffffff8111156134d5576134d4614051565b5b6134e18582860161304e565b92509250509250929050565b60006020828403121561350357613502614056565b5b60006135118482850161310f565b91505092915050565b6000602082840312156135305761352f614056565b5b600061353e84828501613124565b91505092915050565b60006020828403121561355d5761355c614056565b5b600061356b84828501613139565b91505092915050565b60006020828403121561358a57613589614056565b5b60006135988482850161317c565b91505092915050565b600080602083850312156135b8576135b7614056565b5b600083013567ffffffffffffffff8111156135d6576135d5614051565b5b6135e285828601613191565b92509250509250929050565b60006020828403121561360457613603614056565b5b6000613612848285016131e7565b91505092915050565b60008060006040848603121561363457613633614056565b5b6000613642868287016131e7565b935050602084013567ffffffffffffffff81111561366357613662614051565b5b61366f8682870161304e565b92509250509250925092565b61368481613d60565b82525050565b61369b61369682613d60565b613eff565b82525050565b6136aa81613d72565b82525050565b60006136bb82613bf9565b6136c58185613c0f565b93506136d5818560208601613e20565b6136de8161405b565b840191505092915050565b6136f281613dff565b82525050565b600061370382613c04565b61370d8185613c2b565b935061371d818560208601613e20565b6137268161405b565b840191505092915050565b600061373c82613c04565b6137468185613c3c565b9350613756818560208601613e20565b80840191505092915050565b600061376f602683613c2b565b915061377a82614079565b604082019050919050565b6000613792600783613c2b565b915061379d826140c8565b602082019050919050565b60006137b5601783613c2b565b91506137c0826140f1565b602082019050919050565b60006137d8601a83613c2b565b91506137e38261411a565b602082019050919050565b60006137fb601483613c2b565b915061380682614143565b602082019050919050565b600061381e601283613c2b565b91506138298261416c565b602082019050919050565b6000613841602083613c2b565b915061384c82614195565b602082019050919050565b6000613864601783613c2b565b915061386f826141be565b602082019050919050565b6000613887601083613c2b565b9150613892826141e7565b602082019050919050565b60006138aa600083613c20565b91506138b582614210565b600082019050919050565b60006138cd600f83613c2b565b91506138d882614213565b602082019050919050565b60006138f0601583613c2b565b91506138fb8261423c565b602082019050919050565b61390f81613df5565b82525050565b6000613921828461368a565b60148201915081905092915050565b600061393c8285613731565b91506139488284613731565b91508190509392505050565b600061395f8261389d565b9150819050919050565b600060208201905061397e600083018461367b565b92915050565b6000608082019050613999600083018761367b565b6139a6602083018661367b565b6139b36040830185613906565b81810360608301526139c581846136b0565b905095945050505050565b60006020820190506139e560008301846136a1565b92915050565b6000602082019050613a0060008301846136e9565b92915050565b60006020820190508181036000830152613a2081846136f8565b905092915050565b60006020820190508181036000830152613a4181613762565b9050919050565b60006020820190508181036000830152613a6181613785565b9050919050565b60006020820190508181036000830152613a81816137a8565b9050919050565b60006020820190508181036000830152613aa1816137cb565b9050919050565b60006020820190508181036000830152613ac1816137ee565b9050919050565b60006020820190508181036000830152613ae181613811565b9050919050565b60006020820190508181036000830152613b0181613834565b9050919050565b60006020820190508181036000830152613b2181613857565b9050919050565b60006020820190508181036000830152613b418161387a565b9050919050565b60006020820190508181036000830152613b61816138c0565b9050919050565b60006020820190508181036000830152613b81816138e3565b9050919050565b6000602082019050613b9d6000830184613906565b92915050565b6000613bad613bbe565b9050613bb98282613e85565b919050565b6000604051905090565b600067ffffffffffffffff821115613be357613be261400e565b5b613bec8261405b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c5282613dc7565b9150613c5d83613dc7565b92508261ffff03821115613c7457613c73613f23565b5b828201905092915050565b6000613c8a82613df5565b9150613c9583613df5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cca57613cc9613f23565b5b828201905092915050565b6000613ce082613df5565b9150613ceb83613df5565b925082613cfb57613cfa613f52565b5b828204905092915050565b6000613d1182613df5565b9150613d1c83613df5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d5557613d54613f23565b5b828202905092915050565b6000613d6b82613dd5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613dc282614265565b919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613e0a82613db4565b9050919050565b82818337600083830152505050565b60005b83811015613e3e578082015181840152602081019050613e23565b83811115613e4d576000848401525b50505050565b60006002820490506001821680613e6b57607f821691505b60208210811415613e7f57613e7e613fb0565b5b50919050565b613e8e8261405b565b810181811067ffffffffffffffff82111715613ead57613eac61400e565b5b80604052505050565b6000613ec182613df5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ef457613ef3613f23565b5b600182019050919050565b6000613f0a82613f11565b9050919050565b6000613f1c8261406c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7465642e00000000000000000000000000000000000000000000000000600082015250565b7f457863656564206d7670206d696e7420737570706c792e000000000000000000600082015250565b7f4e6f7420696e20636f7272656374206d696e742070686173652e000000000000600082015250565b7f45786365656420746f74616c20737570706c792e000000000000000000000000600082015250565b7f457863656564206d617820737570706c792e0000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f457863656564206e756d2070657220616464726573732e000000000000000000600082015250565b7f56616c7565206e6f742076616c69642e00000000000000000000000000000000600082015250565b50565b7f7472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f496e76616c6964206d65726b6c652070726f6f662e0000000000000000000000600082015250565b6004811061427657614275613f81565b5b50565b61428281613d60565b811461428d57600080fd5b50565b61429981613d72565b81146142a457600080fd5b50565b6142b081613d7e565b81146142bb57600080fd5b50565b6142c781613d88565b81146142d257600080fd5b50565b600481106142e257600080fd5b50565b6142ee81613df5565b81146142f957600080fd5b5056fea264697066735822122046564f2ae9704ea7e4f031668868fa9f60387902e2d6142e101a8ab1ef9b483264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063b265dbf4116100b6578063cb5ee5c11161007a578063cb5ee5c114610884578063d30518e2146108c1578063d6c0b559146108dd578063e985e9c51461091a578063f05b5f4414610957578063f2fde38b1461098057610246565b8063b265dbf414610788578063b3ab66b0146107c5578063b88d4fde146107e1578063c5d98bb31461080a578063c87b56dd1461084757610246565b806395d89b41116100fd57806395d89b41146106a15780639970ff15146106cc5780639b6860c814610709578063a22cb46514610734578063a9960d291461075d57610246565b806370a08231146105ce578063715018a61461060b5780637b677933146106225780638da5cb5b1461064b578063910ec6651461067657610246565b80633ccfd60b116101c75780635cfe6b841161018b5780635cfe6b84146104e45780636352211e14610500578063672434821461053d5780636b5e530f146105665780636c0360eb146105a357610246565b80633ccfd60b1461042757806342842e0e1461043e578063449d0f101461046757806348dec5931461049257806355f804b3146104bb57610246565b8063110e69471161020e578063110e694714610344578063139fbd701461036d57806318160ddd146103aa57806323b872dd146103d557806331c07bbf146103fe57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780630dd250e114610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d919061351a565b6109a9565b60405161027f91906139d0565b60405180910390f35b34801561029457600080fd5b5061029d610a3b565b6040516102aa9190613a06565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906135ee565b610acd565b6040516102e79190613969565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906133df565b610b4c565b005b34801561032557600080fd5b5061032e610c90565b60405161033b91906139eb565b60405180910390f35b34801561035057600080fd5b5061036b600480360381019061036691906134ed565b610ca3565b005b34801561037957600080fd5b50610394600480360381019061038f91906131fc565b610cb5565b6040516103a19190613b88565b60405180910390f35b3480156103b657600080fd5b506103bf610cdb565b6040516103cc9190613b88565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f79190613269565b610cf2565b005b34801561040a57600080fd5b5061042560048036038101906104209190613574565b611017565b005b34801561043357600080fd5b5061043c61104c565b005b34801561044a57600080fd5b5061046560048036038101906104609190613269565b611374565b005b34801561047357600080fd5b5061047c611394565b6040516104899190613b88565b60405180910390f35b34801561049e57600080fd5b506104b960048036038101906104b491906134ed565b61139a565b005b3480156104c757600080fd5b506104e260048036038101906104dd91906135a1565b6113ac565b005b6104fe60048036038101906104f991906134a0565b6113ca565b005b34801561050c57600080fd5b50610527600480360381019061052291906135ee565b61158c565b6040516105349190613969565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f919061341f565b61159e565b005b34801561057257600080fd5b5061058d600480360381019061058891906131fc565b611688565b60405161059a9190613b88565b60405180910390f35b3480156105af57600080fd5b506105b86116ae565b6040516105c59190613a06565b60405180910390f35b3480156105da57600080fd5b506105f560048036038101906105f091906131fc565b61173c565b6040516106029190613b88565b60405180910390f35b34801561061757600080fd5b506106206117f5565b005b34801561062e57600080fd5b50610649600480360381019061064491906134ed565b611809565b005b34801561065757600080fd5b5061066061181b565b60405161066d9190613969565b60405180910390f35b34801561068257600080fd5b5061068b611845565b6040516106989190613b88565b60405180910390f35b3480156106ad57600080fd5b506106b661184b565b6040516106c39190613a06565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee919061333f565b6118dd565b60405161070091906139d0565b60405180910390f35b34801561071557600080fd5b5061071e611961565b60405161072b9190613b88565b60405180910390f35b34801561074057600080fd5b5061075b6004803603810190610756919061339f565b611967565b005b34801561076957600080fd5b50610772611adf565b60405161077f9190613b88565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa919061333f565b611ae5565b6040516107bc91906139d0565b60405180910390f35b6107df60048036038101906107da91906135ee565b611b69565b005b3480156107ed57600080fd5b50610808600480360381019061080391906132bc565b611cf5565b005b34801561081657600080fd5b50610831600480360381019061082c919061333f565b611d68565b60405161083e91906139d0565b60405180910390f35b34801561085357600080fd5b5061086e600480360381019061086991906135ee565b611dec565b60405161087b9190613a06565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a691906131fc565b611e8b565b6040516108b89190613b88565b60405180910390f35b6108db60048036038101906108d6919061361b565b611eb1565b005b3480156108e957600080fd5b5061090460048036038101906108ff91906131fc565b612099565b6040516109119190613b88565b60405180910390f35b34801561092657600080fd5b50610941600480360381019061093c9190613229565b6120bf565b60405161094e91906139d0565b60405180910390f35b34801561096357600080fd5b5061097e600480360381019061097991906134a0565b612153565b005b34801561098c57600080fd5b506109a760048036038101906109a291906131fc565b6122d3565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a345750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a4a90613e53565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7690613e53565b8015610ac35780601f10610a9857610100808354040283529160200191610ac3565b820191906000526020600020905b815481529060010190602001808311610aa657829003601f168201915b5050505050905090565b6000610ad882612357565b610b0e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b578261158c565b90508073ffffffffffffffffffffffffffffffffffffffff16610b786123b6565b73ffffffffffffffffffffffffffffffffffffffff1614610bdb57610ba481610b9f6123b6565b6120bf565b610bda576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a60009054906101000a900460ff1681565b610cab6123be565b80600f8190555050565b600080610cc9610cc48461243c565b612489565b93505050508061ffff16915050919050565b6000610ce56124dc565b6001546000540303905090565b6000610cfd826124e1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d64576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d70846125af565b91509150610d868187610d816123b6565b6125d6565b610dd257610d9b86610d966123b6565b6120bf565b610dd1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e39576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e46868686600161261a565b8015610e5157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f1f85610efb888887612620565b7c020000000000000000000000000000000000000000000000000000000017612648565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fa7576000600185019050600060046000838152602001908152602001600020541415610fa5576000548114610fa4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461100f8686866001612673565b505050505050565b61101f6123be565b80600a60006101000a81548160ff0219169083600381111561104457611043613f81565b5b021790555050565b6110546123be565b60007303510854b98e8a55a3f7dc691547accf983a7df89050600073694c8af4dd3ade21645f39857ce66a6c6585769490506801a055690d9db800004710156111495760008273ffffffffffffffffffffffffffffffffffffffff16476040516110bd90613954565b60006040518083038185875af1925050503d80600081146110fa576040519150601f19603f3d011682016040523d82523d6000602084013e6110ff565b606091505b5050905080611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90613b48565b60405180910390fd5b50611370565b60008173ffffffffffffffffffffffffffffffffffffffff166801a055690d9db8000060405161117890613954565b60006040518083038185875af1925050503d80600081146111b5576040519150601f19603f3d011682016040523d82523d6000602084013e6111ba565b606091505b50509050806111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590613b48565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff16600a6003476112249190613d06565b61122e9190613cd5565b60405161123a90613954565b60006040518083038185875af1925050503d8060008114611277576040519150601f19603f3d011682016040523d82523d6000602084013e61127c565b606091505b505080915050806112c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b990613b48565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16476040516112e690613954565b60006040518083038185875af1925050503d8060008114611323576040519150601f19603f3d011682016040523d82523d6000602084013e611328565b606091505b5050809150508061136e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136590613b48565b60405180910390fd5b505b5050565b61138f83838360405180602001604052806000815250611cf5565b505050565b600d5481565b6113a26123be565b8060128190555050565b6113b46123be565b8181600b91906113c5929190612efe565b505050565b6002600a60009054906101000a900460ff1660038111156113ee576113ed613f81565b5b81600381111561140157611400613f81565b5b14611441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143890613a88565b60405180910390fd5b61144c338484611d68565b61148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290613b68565b60405180910390fd5b600061149633611e8b565b146114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd90613a48565b60405180910390fd5b600d54341461151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190613b28565b60405180910390fd5b60016011541015611560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155790613ac8565b60405180910390fd5b61156b336001612679565b6001601160008282540392505081905550611587336001612697565b505050565b6000611597826124e1565b9050919050565b6115a66123be565b60005b8484905081101561168157600c548383838181106115ca576115c9613fdf565b5b905060200201356115d9610cdb565b6115e39190613c7f565b1115611624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161b90613ac8565b60405180910390fd5b61166e85858381811061163a57611639613fdf565b5b905060200201602081019061164f91906131fc565b84848481811061166257611661613fdf565b5b90506020020135612679565b808061167990613eb6565b9150506115a9565b5050505050565b60008061169c6116978461243c565b612489565b50505090508061ffff16915050919050565b600b80546116bb90613e53565b80601f01602080910402602001604051908101604052809291908181526020018280546116e790613e53565b80156117345780601f1061170957610100808354040283529160200191611734565b820191906000526020600020905b81548152906001019060200180831161171757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6117fd6123be565b61180760006126e1565b565b6118116123be565b8060138190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b60606003805461185a90613e53565b80601f016020809104026020016040519081016040528092919081815260200182805461188690613e53565b80156118d35780601f106118a8576101008083540402835291602001916118d3565b820191906000526020600020905b8154815290600101906020018083116118b657829003601f168201915b5050505050905090565b600080846040516020016118f19190613915565b604051602081830303815290604052805190602001209050611957848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601254836127a7565b9150509392505050565b600e5481565b61196f6123b6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119e16123b6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a8e6123b6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ad391906139d0565b60405180910390a35050565b60105481565b60008084604051602001611af99190613915565b604051602081830303815290604052805190602001209050611b5f848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f54836127a7565b9150509392505050565b6003600a60009054906101000a900460ff166003811115611b8d57611b8c613f81565b5b816003811115611ba057611b9f613f81565b5b14611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd790613a88565b60405180910390fd5b600282611bec33610cb5565b611bf69190613c7f565b1115611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e90613b08565b60405180910390fd5b81600e54611c459190613d06565b3414611c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7d90613b28565b60405180910390fd5b600c5482611c92610cdb565b611c9c9190613c7f565b1115611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490613aa8565b60405180910390fd5b611ce73383612679565b611cf133836127be565b5050565b611d00848484610cf2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6257611d2b84848484612808565b611d61576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60008084604051602001611d7c9190613915565b604051602081830303815290604052805190602001209050611de2848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601354836127a7565b9150509392505050565b6060611df782612357565b611e2d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611e37612968565b9050600081511415611e585760405180602001604052806000815250611e83565b80611e62846129fa565b604051602001611e73929190613930565b6040516020818303038152906040525b915050919050565b600080611e9f611e9a8461243c565b612489565b50925050508061ffff16915050919050565b6002600a60009054906101000a900460ff166003811115611ed557611ed4613f81565b5b816003811115611ee857611ee7613f81565b5b14611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f90613a88565b60405180910390fd5b611f333384846118dd565b80611f455750611f44338484611ae5565b5b611f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7b90613b68565b60405180910390fd5b600284611f9033612099565b611f9a9190613c7f565b1115611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290613b08565b60405180910390fd5b83600d54611fe99190613d06565b341461202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202190613b28565b60405180910390fd5b83601154101561206f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206690613ac8565b60405180910390fd5b6120793385612679565b836011600082825403925050819055506120933385612a54565b50505050565b6000806120ad6120a88461243c565b612489565b50509150508061ffff16915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6001600a60009054906101000a900460ff16600381111561217757612176613f81565b5b81600381111561218a57612189613f81565b5b146121ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c190613a88565b60405180910390fd5b6121d5338484611ae5565b612214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220b90613b68565b60405180910390fd5b600061221f33611688565b1461225f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225690613a48565b60405180910390fd5b600160105410156122a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229c90613a68565b60405180910390fd5b6122b0336001612679565b601060008154809291906001900391905055506122ce336001612a9e565b505050565b6122db6123be565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561234b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234290613a28565b60405180910390fd5b612354816126e1565b50565b6000816123626124dc565b11158015612371575060005482105b80156123af575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6123c6612ae8565b73ffffffffffffffffffffffffffffffffffffffff166123e461181b565b73ffffffffffffffffffffffffffffffffffffffff161461243a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243190613ae8565b60405180910390fd5b565b600060c0600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c9050919050565b60008060008061ffff60308667ffffffffffffffff16901c16935061ffff60208667ffffffffffffffff16901c16925061ffff60108667ffffffffffffffff16901c16915061ffff851690509193509193565b600090565b600080829050806124f06124dc565b11612578576000548110156125775760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612575575b600081141561256b576004600083600190039350838152602001908152602001600020549050612540565b80925050506125aa565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612637868684612af0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612693828260405180602001604052806000815250612af9565b5050565b6000806000806126ae6126a98761243c565b612489565b935093509350935084826126c29190613c47565b91506126d9866126d486868686612b96565b612be3565b505050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826127b48584612c99565b1490509392505050565b6000806000806127d56127d08761243c565b612489565b935093509350935084816127e99190613c47565b9050612800866127fb86868686612b96565b612be3565b505050505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261282e6123b6565b8786866040518563ffffffff1660e01b81526004016128509493929190613984565b602060405180830381600087803b15801561286a57600080fd5b505af192505050801561289b57506040513d601f19601f820116820180604052508101906128989190613547565b60015b612915573d80600081146128cb576040519150601f19603f3d011682016040523d82523d6000602084013e6128d0565b606091505b5060008151141561290d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461297790613e53565b80601f01602080910402602001604051908101604052809291908181526020018280546129a390613e53565b80156129f05780601f106129c5576101008083540402835291602001916129f0565b820191906000526020600020905b8154815290600101906020018083116129d357829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612a4057600183039250600a81066030018353600a81049050612a20565b508181036020830392508083525050919050565b600080600080612a6b612a668761243c565b612489565b93509350935093508483612a7f9190613c47565b9250612a9686612a9186868686612b96565b612be3565b505050505050565b600080600080612ab5612ab08761243c565b612489565b93509350935093508484612ac99190613c47565b9350612ae086612adb86868686612b96565b612be3565b505050505050565b600033905090565b60009392505050565b612b038383612cef565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b9157600080549050600083820390505b612b436000868380600101945086612808565b612b79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b30578160005414612b8e57600080fd5b50505b505050565b60008161ffff1660108461ffff1667ffffffffffffffff16901b60208661ffff1667ffffffffffffffff16901b60308861ffff1667ffffffffffffffff16901b1717179050949350505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600082905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff831617915081600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b60008082905060005b8451811015612ce457612ccf82868381518110612cc257612cc1613fdf565b5b6020026020010151612eac565b91508080612cdc90613eb6565b915050612ca2565b508091505092915050565b6000805490506000821415612d30576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d3d600084838561261a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612db483612da56000866000612620565b612dae85612ed7565b17612648565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612e5557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612e1a565b506000821415612e91576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612ea76000848385612673565b505050565b6000818310612ec457612ebf8284612ee7565b612ecf565b612ece8383612ee7565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612f0a90613e53565b90600052602060002090601f016020900481019282612f2c5760008555612f73565b82601f10612f4557803560ff1916838001178555612f73565b82800160010185558215612f73579182015b82811115612f72578235825591602001919060010190612f57565b5b509050612f809190612f84565b5090565b5b80821115612f9d576000816000905550600101612f85565b5090565b6000612fb4612faf84613bc8565b613ba3565b905082815260208101848484011115612fd057612fcf61404c565b5b612fdb848285613e11565b509392505050565b600081359050612ff281614279565b92915050565b60008083601f84011261300e5761300d614042565b5b8235905067ffffffffffffffff81111561302b5761302a61403d565b5b60208301915083602082028301111561304757613046614047565b5b9250929050565b60008083601f84011261306457613063614042565b5b8235905067ffffffffffffffff8111156130815761308061403d565b5b60208301915083602082028301111561309d5761309c614047565b5b9250929050565b60008083601f8401126130ba576130b9614042565b5b8235905067ffffffffffffffff8111156130d7576130d661403d565b5b6020830191508360208202830111156130f3576130f2614047565b5b9250929050565b60008135905061310981614290565b92915050565b60008135905061311e816142a7565b92915050565b600081359050613133816142be565b92915050565b600081519050613148816142be565b92915050565b600082601f83011261316357613162614042565b5b8135613173848260208601612fa1565b91505092915050565b60008135905061318b816142d5565b92915050565b60008083601f8401126131a7576131a6614042565b5b8235905067ffffffffffffffff8111156131c4576131c361403d565b5b6020830191508360018202830111156131e0576131df614047565b5b9250929050565b6000813590506131f6816142e5565b92915050565b60006020828403121561321257613211614056565b5b600061322084828501612fe3565b91505092915050565b600080604083850312156132405761323f614056565b5b600061324e85828601612fe3565b925050602061325f85828601612fe3565b9150509250929050565b60008060006060848603121561328257613281614056565b5b600061329086828701612fe3565b93505060206132a186828701612fe3565b92505060406132b2868287016131e7565b9150509250925092565b600080600080608085870312156132d6576132d5614056565b5b60006132e487828801612fe3565b94505060206132f587828801612fe3565b9350506040613306878288016131e7565b925050606085013567ffffffffffffffff81111561332757613326614051565b5b6133338782880161314e565b91505092959194509250565b60008060006040848603121561335857613357614056565b5b600061336686828701612fe3565b935050602084013567ffffffffffffffff81111561338757613386614051565b5b6133938682870161304e565b92509250509250925092565b600080604083850312156133b6576133b5614056565b5b60006133c485828601612fe3565b92505060206133d5858286016130fa565b9150509250929050565b600080604083850312156133f6576133f5614056565b5b600061340485828601612fe3565b9250506020613415858286016131e7565b9150509250929050565b6000806000806040858703121561343957613438614056565b5b600085013567ffffffffffffffff81111561345757613456614051565b5b61346387828801612ff8565b9450945050602085013567ffffffffffffffff81111561348657613485614051565b5b613492878288016130a4565b925092505092959194509250565b600080602083850312156134b7576134b6614056565b5b600083013567ffffffffffffffff8111156134d5576134d4614051565b5b6134e18582860161304e565b92509250509250929050565b60006020828403121561350357613502614056565b5b60006135118482850161310f565b91505092915050565b6000602082840312156135305761352f614056565b5b600061353e84828501613124565b91505092915050565b60006020828403121561355d5761355c614056565b5b600061356b84828501613139565b91505092915050565b60006020828403121561358a57613589614056565b5b60006135988482850161317c565b91505092915050565b600080602083850312156135b8576135b7614056565b5b600083013567ffffffffffffffff8111156135d6576135d5614051565b5b6135e285828601613191565b92509250509250929050565b60006020828403121561360457613603614056565b5b6000613612848285016131e7565b91505092915050565b60008060006040848603121561363457613633614056565b5b6000613642868287016131e7565b935050602084013567ffffffffffffffff81111561366357613662614051565b5b61366f8682870161304e565b92509250509250925092565b61368481613d60565b82525050565b61369b61369682613d60565b613eff565b82525050565b6136aa81613d72565b82525050565b60006136bb82613bf9565b6136c58185613c0f565b93506136d5818560208601613e20565b6136de8161405b565b840191505092915050565b6136f281613dff565b82525050565b600061370382613c04565b61370d8185613c2b565b935061371d818560208601613e20565b6137268161405b565b840191505092915050565b600061373c82613c04565b6137468185613c3c565b9350613756818560208601613e20565b80840191505092915050565b600061376f602683613c2b565b915061377a82614079565b604082019050919050565b6000613792600783613c2b565b915061379d826140c8565b602082019050919050565b60006137b5601783613c2b565b91506137c0826140f1565b602082019050919050565b60006137d8601a83613c2b565b91506137e38261411a565b602082019050919050565b60006137fb601483613c2b565b915061380682614143565b602082019050919050565b600061381e601283613c2b565b91506138298261416c565b602082019050919050565b6000613841602083613c2b565b915061384c82614195565b602082019050919050565b6000613864601783613c2b565b915061386f826141be565b602082019050919050565b6000613887601083613c2b565b9150613892826141e7565b602082019050919050565b60006138aa600083613c20565b91506138b582614210565b600082019050919050565b60006138cd600f83613c2b565b91506138d882614213565b602082019050919050565b60006138f0601583613c2b565b91506138fb8261423c565b602082019050919050565b61390f81613df5565b82525050565b6000613921828461368a565b60148201915081905092915050565b600061393c8285613731565b91506139488284613731565b91508190509392505050565b600061395f8261389d565b9150819050919050565b600060208201905061397e600083018461367b565b92915050565b6000608082019050613999600083018761367b565b6139a6602083018661367b565b6139b36040830185613906565b81810360608301526139c581846136b0565b905095945050505050565b60006020820190506139e560008301846136a1565b92915050565b6000602082019050613a0060008301846136e9565b92915050565b60006020820190508181036000830152613a2081846136f8565b905092915050565b60006020820190508181036000830152613a4181613762565b9050919050565b60006020820190508181036000830152613a6181613785565b9050919050565b60006020820190508181036000830152613a81816137a8565b9050919050565b60006020820190508181036000830152613aa1816137cb565b9050919050565b60006020820190508181036000830152613ac1816137ee565b9050919050565b60006020820190508181036000830152613ae181613811565b9050919050565b60006020820190508181036000830152613b0181613834565b9050919050565b60006020820190508181036000830152613b2181613857565b9050919050565b60006020820190508181036000830152613b418161387a565b9050919050565b60006020820190508181036000830152613b61816138c0565b9050919050565b60006020820190508181036000830152613b81816138e3565b9050919050565b6000602082019050613b9d6000830184613906565b92915050565b6000613bad613bbe565b9050613bb98282613e85565b919050565b6000604051905090565b600067ffffffffffffffff821115613be357613be261400e565b5b613bec8261405b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c5282613dc7565b9150613c5d83613dc7565b92508261ffff03821115613c7457613c73613f23565b5b828201905092915050565b6000613c8a82613df5565b9150613c9583613df5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cca57613cc9613f23565b5b828201905092915050565b6000613ce082613df5565b9150613ceb83613df5565b925082613cfb57613cfa613f52565b5b828204905092915050565b6000613d1182613df5565b9150613d1c83613df5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d5557613d54613f23565b5b828202905092915050565b6000613d6b82613dd5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050613dc282614265565b919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613e0a82613db4565b9050919050565b82818337600083830152505050565b60005b83811015613e3e578082015181840152602081019050613e23565b83811115613e4d576000848401525b50505050565b60006002820490506001821680613e6b57607f821691505b60208210811415613e7f57613e7e613fb0565b5b50919050565b613e8e8261405b565b810181811067ffffffffffffffff82111715613ead57613eac61400e565b5b80604052505050565b6000613ec182613df5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ef457613ef3613f23565b5b600182019050919050565b6000613f0a82613f11565b9050919050565b6000613f1c8261406c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7465642e00000000000000000000000000000000000000000000000000600082015250565b7f457863656564206d7670206d696e7420737570706c792e000000000000000000600082015250565b7f4e6f7420696e20636f7272656374206d696e742070686173652e000000000000600082015250565b7f45786365656420746f74616c20737570706c792e000000000000000000000000600082015250565b7f457863656564206d617820737570706c792e0000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f457863656564206e756d2070657220616464726573732e000000000000000000600082015250565b7f56616c7565206e6f742076616c69642e00000000000000000000000000000000600082015250565b50565b7f7472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f496e76616c6964206d65726b6c652070726f6f662e0000000000000000000000600082015250565b6004811061427657614275613f81565b5b50565b61428281613d60565b811461428d57600080fd5b50565b61429981613d72565b81146142a457600080fd5b50565b6142b081613d7e565b81146142bb57600080fd5b50565b6142c781613d88565b81146142d257600080fd5b50565b600481106142e257600080fd5b50565b6142ee81613df5565b81146142f957600080fd5b5056fea264697066735822122046564f2ae9704ea7e4f031668868fa9f60387902e2d6142e101a8ab1ef9b483264736f6c63430008070033

Deployed Bytecode Sourcemap

299:11874:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9112:630:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9996:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16309:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15769:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6818:55:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7718:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5080:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5851:317:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19918:2756;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6882:111:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11367:803;;;;;;;;;;;;;:::i;:::-;;22765:179:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7442:40:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8611:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9968:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11348:150:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11048:311:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3747:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7164:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7002:230:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;9626::4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8536:31:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10165:102:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8713:209:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7491:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16850:303:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7676:33:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7822:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10552:449;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23525:388:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9735:225:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10368:313:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4624:216:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8930:595;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4181:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17303:162:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8041:444:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9112:630:5;9197:4;9530:10;9515:25;;:11;:25;;;;:101;;;;9606:10;9591:25;;:11;:25;;;;9515:101;:177;;;;9682:10;9667:25;;:11;:25;;;;9515:177;9496:196;;9112:630;;;:::o;9996:98::-;10050:13;10082:5;10075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9996:98;:::o;16309:214::-;16385:7;16409:16;16417:7;16409;:16::i;:::-;16404:64;;16434:34;;;;;;;;;;;;;;16404:64;16486:15;:24;16502:7;16486:24;;;;;;;;;;;:30;;;;;;;;;;;;16479:37;;16309:214;;;:::o;15769:390::-;15849:13;15865:16;15873:7;15865;:16::i;:::-;15849:32;;15919:5;15896:28;;:19;:17;:19::i;:::-;:28;;;15892:172;;15943:44;15960:5;15967:19;:17;:19::i;:::-;15943:16;:44::i;:::-;15938:126;;16014:35;;;;;;;;;;;;;;15938:126;15892:172;16107:2;16074:15;:24;16090:7;16074:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16144:7;16140:2;16124:28;;16133:5;16124:28;;;;;;;;;;;;15839:320;15769:390;;:::o;6818:55:4:-;;;;;;;;;;;;;:::o;7718:96::-;1094:13:0;:11;:13::i;:::-;7801:5:4::1;7787:11;:19;;;;7718:96:::0;:::o;5080:207::-;5145:7;5172:28;5204:36;5226:13;5234:4;5226:7;:13::i;:::-;5204:21;:36::i;:::-;5165:75;;;;;5258:21;5251:28;;;;;5080:207;;;:::o;5851:317:5:-;5912:7;6136:15;:13;:15::i;:::-;6121:12;;6105:13;;:28;:46;6098:53;;5851:317;:::o;19918:2756::-;20047:27;20077;20096:7;20077:18;:27::i;:::-;20047:57;;20160:4;20119:45;;20135:19;20119:45;;;20115:86;;20173:28;;;;;;;;;;;;;;20115:86;20213:27;20242:23;20269:35;20296:7;20269:26;:35::i;:::-;20212:92;;;;20401:68;20426:15;20443:4;20449:19;:17;:19::i;:::-;20401:24;:68::i;:::-;20396:179;;20488:43;20505:4;20511:19;:17;:19::i;:::-;20488:16;:43::i;:::-;20483:92;;20540:35;;;;;;;;;;;;;;20483:92;20396:179;20604:1;20590:16;;:2;:16;;;20586:52;;;20615:23;;;;;;;;;;;;;;20586:52;20649:43;20671:4;20677:2;20681:7;20690:1;20649:21;:43::i;:::-;20781:15;20778:157;;;20919:1;20898:19;20891:30;20778:157;21307:18;:24;21326:4;21307:24;;;;;;;;;;;;;;;;21305:26;;;;;;;;;;;;21375:18;:22;21394:2;21375:22;;;;;;;;;;;;;;;;21373:24;;;;;;;;;;;21690:143;21726:2;21774:45;21789:4;21795:2;21799:19;21774:14;:45::i;:::-;2349:8;21746:73;21690:18;:143::i;:::-;21661:17;:26;21679:7;21661:26;;;;;;;;;;;:172;;;;22001:1;2349:8;21950:19;:47;:52;21946:617;;;22022:19;22054:1;22044:7;:11;22022:33;;22209:1;22175:17;:30;22193:11;22175:30;;;;;;;;;;;;:35;22171:378;;;22311:13;;22296:11;:28;22292:239;;22489:19;22456:17;:30;22474:11;22456:30;;;;;;;;;;;:52;;;;22292:239;22171:378;22004:559;21946:617;22607:7;22603:2;22588:27;;22597:4;22588:27;;;;;;;;;;;;22625:42;22646:4;22652:2;22656:7;22665:1;22625:20;:42::i;:::-;20037:2637;;;19918:2756;;;:::o;6882:111:4:-;1094:13:0;:11;:13::i;:::-;6975:10:4::1;6956:16;;:29;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;6882:111:::0;:::o;11367:803::-;1094:13:0;:11;:13::i;:::-;11417:20:4::1;11440:42;11417:65;;11493:20;11516:42;11493:65;;11597:8;11573:21;:32;11569:594;;;11623:12;11641;:17;;11666:21;11641:51;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11622:70;;;11715:7;11707:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;11607:147;11569:594;;;11776:12;11794;:17;;11819:8;11794:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11775:57;;;11855:7;11847:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;11911:12;:17;;11964:2;11960:1;11936:21;:25;;;;:::i;:::-;:30;;;;:::i;:::-;11911:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11897:74;;;;;11994:7;11986:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;12050:12;:17;;12075:21;12050:51;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12036:65;;;;;12124:7;12116:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;11760:403;11569:594;11406:764;;11367:803::o:0;22765:179:5:-;22898:39;22915:4;22921:2;22925:7;22898:39;;;;;;;;;;;;:16;:39::i;:::-;22765:179;;;:::o;7442:40:4:-;;;;:::o;8611:94::-;1094:13:0;:11;:13::i;:::-;8692:5:4::1;8679:10;:18;;;;8611:94:::0;:::o;7302:::-;1094:13:0;:11;:13::i;:::-;7384:4:4::1;;7374:7;:14;;;;;;;:::i;:::-;;7302:94:::0;;:::o;9968:524::-;10044:20;7089:16;;;;;;;;;;;7069:36;;;;;;;;:::i;:::-;;:16;:36;;;;;;;;:::i;:::-;;;7061:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;10085:32:::1;10099:10;10111:5;;10085:13;:32::i;:::-;10077:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;10201:1;10162:35;10186:10;10162:23;:35::i;:::-;:40;10154:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;10246:11;;10233:9;:24;10225:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;10310:1;10297:9;;:14;;10289:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;10345:24;10355:10;10367:1;10345:9;:24::i;:::-;10417:1;10404:9;;:14;;;;;;;;;;;10440:44;10470:10;10482:1;10440:29;:44::i;:::-;9968:524:::0;;;:::o;11348:150:5:-;11420:7;11462:27;11481:7;11462:18;:27::i;:::-;11439:52;;11348:150;;;:::o;11048:311:4:-;1094:13:0;:11;:13::i;:::-;11158:9:4::1;11153:199;11177:6;;:13;;11173:1;:17;11153:199;;;11253:14;;11236:10;;11247:1;11236:13;;;;;;;:::i;:::-;;;;;;;;11220;:11;:13::i;:::-;:29;;;;:::i;:::-;:47;;11212:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;11305:35;11315:6;;11322:1;11315:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11326:10;;11337:1;11326:13;;;;;;;:::i;:::-;;;;;;;;11305:9;:35::i;:::-;11192:3;;;;;:::i;:::-;;;;11153:199;;;;11048:311:::0;;;;:::o;3747:198::-;3809:7;3830:25;3865:36;3887:13;3895:4;3887:7;:13::i;:::-;3865:21;:36::i;:::-;3829:72;;;;;3919:18;3912:25;;;;;3747:198;;;:::o;7164:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7002:230:5:-;7074:7;7114:1;7097:19;;:5;:19;;;7093:60;;;7125:28;;;;;;;;;;;;;;7093:60;1317:13;7170:18;:25;7189:5;7170:25;;;;;;;;;;;;;;;;:55;7163:62;;7002:230;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;9626::4:-;1094:13:0;:11;:13::i;:::-;9714:5:4::1;9694:17;:25;;;;9626:101:::0;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;8536:31:4:-;;;;:::o;10165:102:5:-;10221:13;10253:7;10246:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10165:102;:::o;8713:209:4:-;8788:4;8805:12;8847:4;8830:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;8820:33;;;;;;8805:48;;8871:43;8890:5;;8871:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8897:10;;8909:4;8871:18;:43::i;:::-;8864:50;;;8713:209;;;;;:::o;7491:43::-;;;;:::o;16850:303:5:-;16960:19;:17;:19::i;:::-;16948:31;;:8;:31;;;16944:61;;;16988:17;;;;;;;;;;;;;;16944:61;17068:8;17016:18;:39;17035:19;:17;:19::i;:::-;17016:39;;;;;;;;;;;;;;;:49;17056:8;17016:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17127:8;17091:55;;17106:19;:17;:19::i;:::-;17091:55;;;17137:8;17091:55;;;;;;:::i;:::-;;;;;;;;16850:303;;:::o;7676:33:4:-;;;;:::o;7822:211::-;7898:4;7915:12;7957:4;7940:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;7930:33;;;;;;7915:48;;7981:44;8000:5;;7981:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8007:11;;8020:4;7981:18;:44::i;:::-;7974:51;;;7822:211;;;;;:::o;10552:449::-;10619:21;7089:16;;;;;;;;;;;7069:36;;;;;;;;:::i;:::-;;:16;:36;;;;;;;;:::i;:::-;;;7061:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;10706:1:::1;10696:6;10661:32;10682:10;10661:20;:32::i;:::-;:41;;;;:::i;:::-;:46;;10653:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;10785:6;10767:15;;:24;;;;:::i;:::-;10754:9;:37;10746:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;10857:14;;10847:6;10831:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:40;;10823:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10907:29;10917:10;10929:6;10907:9;:29::i;:::-;10947:46;10974:10;10986:6;10947:26;:46::i;:::-;10552:449:::0;;:::o;23525:388:5:-;23686:31;23699:4;23705:2;23709:7;23686:12;:31::i;:::-;23749:1;23731:2;:14;;;:19;23727:180;;23769:56;23800:4;23806:2;23810:7;23819:5;23769:30;:56::i;:::-;23764:143;;23852:40;;;;;;;;;;;;;;23764:143;23727:180;23525:388;;;;:::o;9735:225:4:-;9819:4;9836:12;9878:4;9861:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;9851:33;;;;;;9836:48;;9902:50;9921:5;;9902:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9928:17;;9947:4;9902:18;:50::i;:::-;9895:57;;;9735:225;;;;;:::o;10368:313:5:-;10441:13;10471:16;10479:7;10471;:16::i;:::-;10466:59;;10496:29;;;;;;;;;;;;;;10466:59;10536:21;10560:10;:8;:10::i;:::-;10536:34;;10612:1;10593:7;10587:21;:26;;:87;;;;;;;;;;;;;;;;;10640:7;10649:18;10659:7;10649:9;:18::i;:::-;10623:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10587:87;10580:94;;;10368:313;;;:::o;4624:216:4:-;4692:7;4717:31;4754:36;4776:13;4784:4;4776:7;:13::i;:::-;4754:21;:36::i;:::-;4712:78;;;;;4808:24;4801:31;;;;;4624:216;;;:::o;8930:595::-;9018:20;7089:16;;;;;;;;;;;7069:36;;;;;;;;:::i;:::-;;:16;:36;;;;;;;;:::i;:::-;;;7061:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;9059:23:::1;9064:10;9076:5;;9059:4;:23::i;:::-;:51;;;;9086:24;9092:10;9104:5;;9086;:24::i;:::-;9059:51;9051:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9196:1;9186:6;9155:28;9172:10;9155:16;:28::i;:::-;:37;;;;:::i;:::-;:42;;9147:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;9271:6;9257:11;;:20;;;;:::i;:::-;9244:9;:33;9236:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;9330:6;9317:9;;:19;;9309:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;9370:29;9380:10;9392:6;9370:9;:29::i;:::-;9447:6;9434:9;;:19;;;;;;;;;;;9475:42;9498:10;9510:6;9475:22;:42::i;:::-;8930:595:::0;;;;:::o;4181:195::-;4242:7;4265:24;4297:36;4319:13;4327:4;4319:7;:13::i;:::-;4297:21;:36::i;:::-;4262:71;;;;;4351:17;4344:24;;;;;4181:195;;;:::o;17303:162:5:-;17400:4;17423:18;:25;17442:5;17423:25;;;;;;;;;;;;;;;:35;17449:8;17423:35;;;;;;;;;;;;;;;;;;;;;;;;;17416:42;;17303:162;;;;:::o;8041:444:4:-;8109:23;7089:16;;;;;;;;;;;7069:36;;;;;;;;:::i;:::-;;:16;:36;;;;;;;;:::i;:::-;;;7061:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;8153:24:::1;8159:10;8171:5;;8153;:24::i;:::-;8145:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;8255:1;8222:29;8240:10;8222:17;:29::i;:::-;:34;8214:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;8303:1;8287:12;;:17;;8279:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;8343:24;8353:10;8365:1;8343:9;:24::i;:::-;8403:12;;:14;;;;;;;;;;;;;;8439:38;8463:10;8475:1;8439:23;:38::i;:::-;8041:444:::0;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;17714:277:5:-;17779:4;17833:7;17814:15;:13;:15::i;:::-;:26;;:65;;;;;17866:13;;17856:7;:23;17814:65;:151;;;;;17964:1;2075:8;17916:17;:26;17934:7;17916:26;;;;;;;;;;;;:44;:49;17814:151;17795:170;;17714:277;;;:::o;38922:103::-;38982:7;39008:10;39001:17;;38922:103;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;7867:135:5:-;7922:6;1682:3;7954:18;:25;7973:5;7954:25;;;;;;;;;;;;;;;;:40;;7940:55;;7867:135;;;:::o;6142:551:4:-;6223:25;6250:24;6276:31;6309:28;6406:18;6401:2;6378:19;:25;;;;:46;6350:75;;6491:18;6486:2;6463:19;:25;;;;:46;6436:74;;6583:18;6578:2;6555:19;:25;;;;:46;6521:81;;6666:18;6644:19;:40;6613:72;;6142:551;;;;;:::o;5383:90:5:-;5439:7;5383:90;:::o;12472:1249::-;12539:7;12558:12;12573:7;12558:22;;12638:4;12619:15;:13;:15::i;:::-;:23;12615:1042;;12671:13;;12664:4;:20;12660:997;;;12708:14;12725:17;:23;12743:4;12725:23;;;;;;;;;;;;12708:40;;12840:1;2075:8;12812:6;:24;:29;12808:831;;;13467:111;13484:1;13474:6;:11;13467:111;;;13526:17;:25;13544:6;;;;;;;13526:25;;;;;;;;;;;;13517:34;;13467:111;;;13610:6;13603:13;;;;;;12808:831;12686:971;12660:997;12615:1042;13683:31;;;;;;;;;;;;;;12472:1249;;;;:::o;18849:468::-;18948:27;18977:23;19016:38;19057:15;:24;19073:7;19057:24;;;;;;;;;;;19016:65;;19225:18;19202:41;;19281:19;19275:26;19256:45;;19188:123;18849:468;;;:::o;18095:646::-;18240:11;18402:16;18395:5;18391:28;18382:37;;18560:16;18549:9;18545:32;18532:45;;18708:15;18697:9;18694:30;18686:5;18675:9;18672:20;18669:56;18659:66;;18095:646;;;;;:::o;24557:154::-;;;;;:::o;38249:304::-;38380:7;38399:16;2470:3;38425:19;:41;;38399:68;;2470:3;38492:31;38503:4;38509:2;38513:9;38492:10;:31::i;:::-;38484:40;;:62;;38477:69;;;38249:304;;;;;:::o;14254:443::-;14334:14;14499:16;14492:5;14488:28;14479:37;;14674:5;14660:11;14635:23;14631:41;14628:52;14621:5;14618:63;14608:73;;14254:443;;;;:::o;25358:153::-;;;;;:::o;32908:110::-;32984:27;32994:2;32998:8;32984:27;;;;;;;;;;;;:9;:27::i;:::-;32908:110;;:::o;2277:449:4:-;2373:25;2400:24;2426:31;2459:28;2491:34;2513:11;2521:2;2513:7;:11::i;:::-;2491:21;:34::i;:::-;2372:153;;;;;;;;2571:15;2536:51;;;;;:::i;:::-;;;2598:120;2606:2;2610:107;2630:18;2650:17;2669:24;2695:21;2610:19;:107::i;:::-;2598:7;:120::i;:::-;2361:365;;;;2277:449;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;1153:184:3:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;1290:40;;1153:184;;;;;:::o;3070:443:4:-;3163:25;3190:24;3216:31;3249:28;3281:34;3303:11;3311:2;3303:7;:11::i;:::-;3281:21;:34::i;:::-;3162:153;;;;;;;;3358:15;3326:48;;;;;:::i;:::-;;;3385:120;3393:2;3397:107;3417:18;3437:17;3456:24;3482:21;3397:19;:107::i;:::-;3385:7;:120::i;:::-;3151:362;;;;3070:443;;:::o;25939:697:5:-;26097:4;26142:2;26117:45;;;26163:19;:17;:19::i;:::-;26184:4;26190:7;26199:5;26117:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26113:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26412:1;26395:6;:13;:18;26391:229;;;26440:40;;;;;;;;;;;;;;26391:229;26580:6;26574:13;26565:6;26561:2;26557:15;26550:38;26113:517;26283:54;;;26273:64;;;:6;:64;;;;26266:71;;;25939:697;;;;;;:::o;7194:100:4:-;7246:13;7279:7;7272:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7194:100;:::o;39122:1961:5:-;39187:17;39600:3;39593:4;39587:11;39583:21;39576:28;;39689:3;39683:4;39676:17;39792:3;40240:5;40368:1;40363:3;40359:11;40352:18;;40536:2;40530:4;40526:13;40522:2;40518:22;40513:3;40505:36;40576:2;40570:4;40566:13;40558:21;;40134:715;40594:4;40134:715;;;40780:1;40775:3;40771:11;40764:18;;40830:2;40824:4;40820:13;40816:2;40812:22;40807:3;40799:36;40687:2;40681:4;40677:13;40669:21;;40134:715;;;40138:455;40886:3;40881;40877:13;40999:2;40994:3;40990:12;40983:19;;41060:6;41055:3;41048:19;39225:1852;;39122:1961;;;:::o;1488:435:4:-;1577:25;1604:24;1630:31;1663:28;1695:34;1717:11;1725:2;1717:7;:11::i;:::-;1695:21;:34::i;:::-;1576:153;;;;;;;;1768:15;1740:44;;;;;:::i;:::-;;;1795:120;1803:2;1807:107;1827:18;1847:17;1866:24;1892:21;1807:19;:107::i;:::-;1795:7;:120::i;:::-;1565:358;;;;1488:435;;:::o;705:437::-;795:25;822:24;848:31;881:28;913:34;935:11;943:2;935:7;:11::i;:::-;913:21;:34::i;:::-;794:153;;;;;;;;987:15;958:45;;;;;:::i;:::-;;;1014:120;1022:2;1026:107;1046:18;1066:17;1085:24;1111:21;1026:19;:107::i;:::-;1014:7;:120::i;:::-;783:359;;;;705:437;;:::o;640:96:2:-;693:7;719:10;712:17;;640:96;:::o;37960:143:5:-;38093:6;37960:143;;;;;:::o;32160:669::-;32286:19;32292:2;32296:8;32286:5;:19::i;:::-;32362:1;32344:2;:14;;;:19;32340:473;;32383:11;32397:13;;32383:27;;32428:13;32450:8;32444:3;:14;32428:30;;32476:229;32506:62;32545:1;32549:2;32553:7;;;;;;32562:5;32506:30;:62::i;:::-;32501:165;;32603:40;;;;;;;;;;;;;;32501:165;32700:3;32692:5;:11;32476:229;;32785:3;32768:13;;:20;32764:34;;32790:8;;;32764:34;32365:448;;32340:473;32160:669;;;:::o;5492:354:4:-;5663:6;5815:22;5808:30;;5802:2;5772:25;5765:33;;:39;;;;5758:2;5735:18;5728:26;;:32;;;;5721:2;5697:19;5690:27;;:33;;;;5689:72;:116;:149;5682:156;;5492:354;;;;;;:::o;8184:395:5:-;8255:14;8272:18;:25;8291:5;8272:25;;;;;;;;;;;;;;;;8255:42;;8307:17;8434:3;8421:16;;1682:3;8503:9;:24;;1824:14;8466:6;:32;8465:63;8456:72;;8566:6;8538:18;:25;8557:5;8538:25;;;;;;;;;;;;;;;:34;;;;8245:334;;8184:395;;:::o;1991:290:3:-;2074:7;2093:20;2116:4;2093:27;;2135:9;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;;2202:9;:33::i;:::-;2187:48;;2168:3;;;;;:::i;:::-;;;;2130:116;;;;2262:12;2255:19;;;1991:290;;;;:::o;27082:2396:5:-;27154:20;27177:13;;27154:36;;27216:1;27204:8;:13;27200:44;;;27226:18;;;;;;;;;;;;;;27200:44;27255:61;27285:1;27289:2;27293:12;27307:8;27255:21;:61::i;:::-;27788:1;1452:2;27758:1;:26;;27757:32;27745:8;:45;27719:18;:22;27738:2;27719:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28060:136;28096:2;28149:33;28172:1;28176:2;28180:1;28149:14;:33::i;:::-;28116:30;28137:8;28116:20;:30::i;:::-;:66;28060:18;:136::i;:::-;28026:17;:31;28044:12;28026:31;;;;;;;;;;;:170;;;;28211:16;28241:11;28270:8;28255:12;:23;28241:37;;28520:16;28516:2;28512:25;28500:37;;28884:12;28845:8;28805:1;28744:25;28686:1;28626;28600:328;29005:1;28991:12;28987:20;28946:339;29045:3;29036:7;29033:16;28946:339;;29259:7;29249:8;29246:1;29219:25;29216:1;29213;29208:59;29097:1;29088:7;29084:15;29073:26;;28946:339;;;28950:75;29328:1;29316:8;:13;29312:45;;;29338:19;;;;;;;;;;;;;;29312:45;29388:3;29372:13;:19;;;;27499:1903;;29411:60;29440:1;29444:2;29448:12;29462:8;29411:20;:60::i;:::-;27144:2334;27082:2396;;:::o;8054:147:3:-;8117:7;8147:1;8143;:5;:51;;8174:20;8189:1;8192;8174:14;:20::i;:::-;8143:51;;;8151:20;8166:1;8169;8151:14;:20::i;:::-;8143:51;8136:58;;8054:147;;;;:::o;14794:318:5:-;14864:14;15093:1;15083:8;15080:15;15054:24;15050:46;15040:56;;14794:318;;;:::o;8207:261:3:-;8275:13;8379:1;8373:4;8366:15;8407:1;8401:4;8394:15;8447:4;8441;8431:21;8422:30;;8207:261;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:7:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1176:::-;1249:8;1259:6;1309:3;1302:4;1294:6;1290:17;1286:27;1276:122;;1317:79;;:::i;:::-;1276:122;1430:6;1417:20;1407:30;;1460:18;1452:6;1449:30;1446:117;;;1482:79;;:::i;:::-;1446:117;1596:4;1588:6;1584:17;1572:29;;1650:3;1642:4;1634:6;1630:17;1620:8;1616:32;1613:41;1610:128;;;1657:79;;:::i;:::-;1610:128;1176:568;;;;;:::o;1767:::-;1840:8;1850:6;1900:3;1893:4;1885:6;1881:17;1877:27;1867:122;;1908:79;;:::i;:::-;1867:122;2021:6;2008:20;1998:30;;2051:18;2043:6;2040:30;2037:117;;;2073:79;;:::i;:::-;2037:117;2187:4;2179:6;2175:17;2163:29;;2241:3;2233:4;2225:6;2221:17;2211:8;2207:32;2204:41;2201:128;;;2248:79;;:::i;:::-;2201:128;1767:568;;;;;:::o;2341:133::-;2384:5;2422:6;2409:20;2400:29;;2438:30;2462:5;2438:30;:::i;:::-;2341:133;;;;:::o;2480:139::-;2526:5;2564:6;2551:20;2542:29;;2580:33;2607:5;2580:33;:::i;:::-;2480:139;;;;:::o;2625:137::-;2670:5;2708:6;2695:20;2686:29;;2724:32;2750:5;2724:32;:::i;:::-;2625:137;;;;:::o;2768:141::-;2824:5;2855:6;2849:13;2840:22;;2871:32;2897:5;2871:32;:::i;:::-;2768:141;;;;:::o;2928:338::-;2983:5;3032:3;3025:4;3017:6;3013:17;3009:27;2999:122;;3040:79;;:::i;:::-;2999:122;3157:6;3144:20;3182:78;3256:3;3248:6;3241:4;3233:6;3229:17;3182:78;:::i;:::-;3173:87;;2989:277;2928:338;;;;:::o;3272:167::-;3332:5;3370:6;3357:20;3348:29;;3386:47;3427:5;3386:47;:::i;:::-;3272:167;;;;:::o;3459:553::-;3517:8;3527:6;3577:3;3570:4;3562:6;3558:17;3554:27;3544:122;;3585:79;;:::i;:::-;3544:122;3698:6;3685:20;3675:30;;3728:18;3720:6;3717:30;3714:117;;;3750:79;;:::i;:::-;3714:117;3864:4;3856:6;3852:17;3840:29;;3918:3;3910:4;3902:6;3898:17;3888:8;3884:32;3881:41;3878:128;;;3925:79;;:::i;:::-;3878:128;3459:553;;;;;:::o;4018:139::-;4064:5;4102:6;4089:20;4080:29;;4118:33;4145:5;4118:33;:::i;:::-;4018:139;;;;:::o;4163:329::-;4222:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:119;;;4277:79;;:::i;:::-;4239:119;4397:1;4422:53;4467:7;4458:6;4447:9;4443:22;4422:53;:::i;:::-;4412:63;;4368:117;4163:329;;;;:::o;4498:474::-;4566:6;4574;4623:2;4611:9;4602:7;4598:23;4594:32;4591:119;;;4629:79;;:::i;:::-;4591:119;4749:1;4774:53;4819:7;4810:6;4799:9;4795:22;4774:53;:::i;:::-;4764:63;;4720:117;4876:2;4902:53;4947:7;4938:6;4927:9;4923:22;4902:53;:::i;:::-;4892:63;;4847:118;4498:474;;;;;:::o;4978:619::-;5055:6;5063;5071;5120:2;5108:9;5099:7;5095:23;5091:32;5088:119;;;5126:79;;:::i;:::-;5088:119;5246:1;5271:53;5316:7;5307:6;5296:9;5292:22;5271:53;:::i;:::-;5261:63;;5217:117;5373:2;5399:53;5444:7;5435:6;5424:9;5420:22;5399:53;:::i;:::-;5389:63;;5344:118;5501:2;5527:53;5572:7;5563:6;5552:9;5548:22;5527:53;:::i;:::-;5517:63;;5472:118;4978:619;;;;;:::o;5603:943::-;5698:6;5706;5714;5722;5771:3;5759:9;5750:7;5746:23;5742:33;5739:120;;;5778:79;;:::i;:::-;5739:120;5898:1;5923:53;5968:7;5959:6;5948:9;5944:22;5923:53;:::i;:::-;5913:63;;5869:117;6025:2;6051:53;6096:7;6087:6;6076:9;6072:22;6051:53;:::i;:::-;6041:63;;5996:118;6153:2;6179:53;6224:7;6215:6;6204:9;6200:22;6179:53;:::i;:::-;6169:63;;6124:118;6309:2;6298:9;6294:18;6281:32;6340:18;6332:6;6329:30;6326:117;;;6362:79;;:::i;:::-;6326:117;6467:62;6521:7;6512:6;6501:9;6497:22;6467:62;:::i;:::-;6457:72;;6252:287;5603:943;;;;;;;:::o;6552:704::-;6647:6;6655;6663;6712:2;6700:9;6691:7;6687:23;6683:32;6680:119;;;6718:79;;:::i;:::-;6680:119;6838:1;6863:53;6908:7;6899:6;6888:9;6884:22;6863:53;:::i;:::-;6853:63;;6809:117;6993:2;6982:9;6978:18;6965:32;7024:18;7016:6;7013:30;7010:117;;;7046:79;;:::i;:::-;7010:117;7159:80;7231:7;7222:6;7211:9;7207:22;7159:80;:::i;:::-;7141:98;;;;6936:313;6552:704;;;;;:::o;7262:468::-;7327:6;7335;7384:2;7372:9;7363:7;7359:23;7355:32;7352:119;;;7390:79;;:::i;:::-;7352:119;7510:1;7535:53;7580:7;7571:6;7560:9;7556:22;7535:53;:::i;:::-;7525:63;;7481:117;7637:2;7663:50;7705:7;7696:6;7685:9;7681:22;7663:50;:::i;:::-;7653:60;;7608:115;7262:468;;;;;:::o;7736:474::-;7804:6;7812;7861:2;7849:9;7840:7;7836:23;7832:32;7829:119;;;7867:79;;:::i;:::-;7829:119;7987:1;8012:53;8057:7;8048:6;8037:9;8033:22;8012:53;:::i;:::-;8002:63;;7958:117;8114:2;8140:53;8185:7;8176:6;8165:9;8161:22;8140:53;:::i;:::-;8130:63;;8085:118;7736:474;;;;;:::o;8216:934::-;8338:6;8346;8354;8362;8411:2;8399:9;8390:7;8386:23;8382:32;8379:119;;;8417:79;;:::i;:::-;8379:119;8565:1;8554:9;8550:17;8537:31;8595:18;8587:6;8584:30;8581:117;;;8617:79;;:::i;:::-;8581:117;8730:80;8802:7;8793:6;8782:9;8778:22;8730:80;:::i;:::-;8712:98;;;;8508:312;8887:2;8876:9;8872:18;8859:32;8918:18;8910:6;8907:30;8904:117;;;8940:79;;:::i;:::-;8904:117;9053:80;9125:7;9116:6;9105:9;9101:22;9053:80;:::i;:::-;9035:98;;;;8830:313;8216:934;;;;;;;:::o;9156:559::-;9242:6;9250;9299:2;9287:9;9278:7;9274:23;9270:32;9267:119;;;9305:79;;:::i;:::-;9267:119;9453:1;9442:9;9438:17;9425:31;9483:18;9475:6;9472:30;9469:117;;;9505:79;;:::i;:::-;9469:117;9618:80;9690:7;9681:6;9670:9;9666:22;9618:80;:::i;:::-;9600:98;;;;9396:312;9156:559;;;;;:::o;9721:329::-;9780:6;9829:2;9817:9;9808:7;9804:23;9800:32;9797:119;;;9835:79;;:::i;:::-;9797:119;9955:1;9980:53;10025:7;10016:6;10005:9;10001:22;9980:53;:::i;:::-;9970:63;;9926:117;9721:329;;;;:::o;10056:327::-;10114:6;10163:2;10151:9;10142:7;10138:23;10134:32;10131:119;;;10169:79;;:::i;:::-;10131:119;10289:1;10314:52;10358:7;10349:6;10338:9;10334:22;10314:52;:::i;:::-;10304:62;;10260:116;10056:327;;;;:::o;10389:349::-;10458:6;10507:2;10495:9;10486:7;10482:23;10478:32;10475:119;;;10513:79;;:::i;:::-;10475:119;10633:1;10658:63;10713:7;10704:6;10693:9;10689:22;10658:63;:::i;:::-;10648:73;;10604:127;10389:349;;;;:::o;10744:357::-;10817:6;10866:2;10854:9;10845:7;10841:23;10837:32;10834:119;;;10872:79;;:::i;:::-;10834:119;10992:1;11017:67;11076:7;11067:6;11056:9;11052:22;11017:67;:::i;:::-;11007:77;;10963:131;10744:357;;;;:::o;11107:529::-;11178:6;11186;11235:2;11223:9;11214:7;11210:23;11206:32;11203:119;;;11241:79;;:::i;:::-;11203:119;11389:1;11378:9;11374:17;11361:31;11419:18;11411:6;11408:30;11405:117;;;11441:79;;:::i;:::-;11405:117;11554:65;11611:7;11602:6;11591:9;11587:22;11554:65;:::i;:::-;11536:83;;;;11332:297;11107:529;;;;;:::o;11642:329::-;11701:6;11750:2;11738:9;11729:7;11725:23;11721:32;11718:119;;;11756:79;;:::i;:::-;11718:119;11876:1;11901:53;11946:7;11937:6;11926:9;11922:22;11901:53;:::i;:::-;11891:63;;11847:117;11642:329;;;;:::o;11977:704::-;12072:6;12080;12088;12137:2;12125:9;12116:7;12112:23;12108:32;12105:119;;;12143:79;;:::i;:::-;12105:119;12263:1;12288:53;12333:7;12324:6;12313:9;12309:22;12288:53;:::i;:::-;12278:63;;12234:117;12418:2;12407:9;12403:18;12390:32;12449:18;12441:6;12438:30;12435:117;;;12471:79;;:::i;:::-;12435:117;12584:80;12656:7;12647:6;12636:9;12632:22;12584:80;:::i;:::-;12566:98;;;;12361:313;11977:704;;;;;:::o;12687:118::-;12774:24;12792:5;12774:24;:::i;:::-;12769:3;12762:37;12687:118;;:::o;12811:157::-;12916:45;12936:24;12954:5;12936:24;:::i;:::-;12916:45;:::i;:::-;12911:3;12904:58;12811:157;;:::o;12974:109::-;13055:21;13070:5;13055:21;:::i;:::-;13050:3;13043:34;12974:109;;:::o;13089:360::-;13175:3;13203:38;13235:5;13203:38;:::i;:::-;13257:70;13320:6;13315:3;13257:70;:::i;:::-;13250:77;;13336:52;13381:6;13376:3;13369:4;13362:5;13358:16;13336:52;:::i;:::-;13413:29;13435:6;13413:29;:::i;:::-;13408:3;13404:39;13397:46;;13179:270;13089:360;;;;:::o;13455:155::-;13554:49;13597:5;13554:49;:::i;:::-;13549:3;13542:62;13455:155;;:::o;13616:364::-;13704:3;13732:39;13765:5;13732:39;:::i;:::-;13787:71;13851:6;13846:3;13787:71;:::i;:::-;13780:78;;13867:52;13912:6;13907:3;13900:4;13893:5;13889:16;13867:52;:::i;:::-;13944:29;13966:6;13944:29;:::i;:::-;13939:3;13935:39;13928:46;;13708:272;13616:364;;;;:::o;13986:377::-;14092:3;14120:39;14153:5;14120:39;:::i;:::-;14175:89;14257:6;14252:3;14175:89;:::i;:::-;14168:96;;14273:52;14318:6;14313:3;14306:4;14299:5;14295:16;14273:52;:::i;:::-;14350:6;14345:3;14341:16;14334:23;;14096:267;13986:377;;;;:::o;14369:366::-;14511:3;14532:67;14596:2;14591:3;14532:67;:::i;:::-;14525:74;;14608:93;14697:3;14608:93;:::i;:::-;14726:2;14721:3;14717:12;14710:19;;14369:366;;;:::o;14741:365::-;14883:3;14904:66;14968:1;14963:3;14904:66;:::i;:::-;14897:73;;14979:93;15068:3;14979:93;:::i;:::-;15097:2;15092:3;15088:12;15081:19;;14741:365;;;:::o;15112:366::-;15254:3;15275:67;15339:2;15334:3;15275:67;:::i;:::-;15268:74;;15351:93;15440:3;15351:93;:::i;:::-;15469:2;15464:3;15460:12;15453:19;;15112:366;;;:::o;15484:::-;15626:3;15647:67;15711:2;15706:3;15647:67;:::i;:::-;15640:74;;15723:93;15812:3;15723:93;:::i;:::-;15841:2;15836:3;15832:12;15825:19;;15484:366;;;:::o;15856:::-;15998:3;16019:67;16083:2;16078:3;16019:67;:::i;:::-;16012:74;;16095:93;16184:3;16095:93;:::i;:::-;16213:2;16208:3;16204:12;16197:19;;15856:366;;;:::o;16228:::-;16370:3;16391:67;16455:2;16450:3;16391:67;:::i;:::-;16384:74;;16467:93;16556:3;16467:93;:::i;:::-;16585:2;16580:3;16576:12;16569:19;;16228:366;;;:::o;16600:::-;16742:3;16763:67;16827:2;16822:3;16763:67;:::i;:::-;16756:74;;16839:93;16928:3;16839:93;:::i;:::-;16957:2;16952:3;16948:12;16941:19;;16600:366;;;:::o;16972:::-;17114:3;17135:67;17199:2;17194:3;17135:67;:::i;:::-;17128:74;;17211:93;17300:3;17211:93;:::i;:::-;17329:2;17324:3;17320:12;17313:19;;16972:366;;;:::o;17344:::-;17486:3;17507:67;17571:2;17566:3;17507:67;:::i;:::-;17500:74;;17583:93;17672:3;17583:93;:::i;:::-;17701:2;17696:3;17692:12;17685:19;;17344:366;;;:::o;17716:398::-;17875:3;17896:83;17977:1;17972:3;17896:83;:::i;:::-;17889:90;;17988:93;18077:3;17988:93;:::i;:::-;18106:1;18101:3;18097:11;18090:18;;17716:398;;;:::o;18120:366::-;18262:3;18283:67;18347:2;18342:3;18283:67;:::i;:::-;18276:74;;18359:93;18448:3;18359:93;:::i;:::-;18477:2;18472:3;18468:12;18461:19;;18120:366;;;:::o;18492:::-;18634:3;18655:67;18719:2;18714:3;18655:67;:::i;:::-;18648:74;;18731:93;18820:3;18731:93;:::i;:::-;18849:2;18844:3;18840:12;18833:19;;18492:366;;;:::o;18864:118::-;18951:24;18969:5;18951:24;:::i;:::-;18946:3;18939:37;18864:118;;:::o;18988:256::-;19100:3;19115:75;19186:3;19177:6;19115:75;:::i;:::-;19215:2;19210:3;19206:12;19199:19;;19235:3;19228:10;;18988:256;;;;:::o;19250:435::-;19430:3;19452:95;19543:3;19534:6;19452:95;:::i;:::-;19445:102;;19564:95;19655:3;19646:6;19564:95;:::i;:::-;19557:102;;19676:3;19669:10;;19250:435;;;;;:::o;19691:379::-;19875:3;19897:147;20040:3;19897:147;:::i;:::-;19890:154;;20061:3;20054:10;;19691:379;;;:::o;20076:222::-;20169:4;20207:2;20196:9;20192:18;20184:26;;20220:71;20288:1;20277:9;20273:17;20264:6;20220:71;:::i;:::-;20076:222;;;;:::o;20304:640::-;20499:4;20537:3;20526:9;20522:19;20514:27;;20551:71;20619:1;20608:9;20604:17;20595:6;20551:71;:::i;:::-;20632:72;20700:2;20689:9;20685:18;20676:6;20632:72;:::i;:::-;20714;20782:2;20771:9;20767:18;20758:6;20714:72;:::i;:::-;20833:9;20827:4;20823:20;20818:2;20807:9;20803:18;20796:48;20861:76;20932:4;20923:6;20861:76;:::i;:::-;20853:84;;20304:640;;;;;;;:::o;20950:210::-;21037:4;21075:2;21064:9;21060:18;21052:26;;21088:65;21150:1;21139:9;21135:17;21126:6;21088:65;:::i;:::-;20950:210;;;;:::o;21166:246::-;21271:4;21309:2;21298:9;21294:18;21286:26;;21322:83;21402:1;21391:9;21387:17;21378:6;21322:83;:::i;:::-;21166:246;;;;:::o;21418:313::-;21531:4;21569:2;21558:9;21554:18;21546:26;;21618:9;21612:4;21608:20;21604:1;21593:9;21589:17;21582:47;21646:78;21719:4;21710:6;21646:78;:::i;:::-;21638:86;;21418:313;;;;:::o;21737:419::-;21903:4;21941:2;21930:9;21926:18;21918:26;;21990:9;21984:4;21980:20;21976:1;21965:9;21961:17;21954:47;22018:131;22144:4;22018:131;:::i;:::-;22010:139;;21737:419;;;:::o;22162:::-;22328:4;22366:2;22355:9;22351:18;22343:26;;22415:9;22409:4;22405:20;22401:1;22390:9;22386:17;22379:47;22443:131;22569:4;22443:131;:::i;:::-;22435:139;;22162:419;;;:::o;22587:::-;22753:4;22791:2;22780:9;22776:18;22768:26;;22840:9;22834:4;22830:20;22826:1;22815:9;22811:17;22804:47;22868:131;22994:4;22868:131;:::i;:::-;22860:139;;22587:419;;;:::o;23012:::-;23178:4;23216:2;23205:9;23201:18;23193:26;;23265:9;23259:4;23255:20;23251:1;23240:9;23236:17;23229:47;23293:131;23419:4;23293:131;:::i;:::-;23285:139;;23012:419;;;:::o;23437:::-;23603:4;23641:2;23630:9;23626:18;23618:26;;23690:9;23684:4;23680:20;23676:1;23665:9;23661:17;23654:47;23718:131;23844:4;23718:131;:::i;:::-;23710:139;;23437:419;;;:::o;23862:::-;24028:4;24066:2;24055:9;24051:18;24043:26;;24115:9;24109:4;24105:20;24101:1;24090:9;24086:17;24079:47;24143:131;24269:4;24143:131;:::i;:::-;24135:139;;23862:419;;;:::o;24287:::-;24453:4;24491:2;24480:9;24476:18;24468:26;;24540:9;24534:4;24530:20;24526:1;24515:9;24511:17;24504:47;24568:131;24694:4;24568:131;:::i;:::-;24560:139;;24287:419;;;:::o;24712:::-;24878:4;24916:2;24905:9;24901:18;24893:26;;24965:9;24959:4;24955:20;24951:1;24940:9;24936:17;24929:47;24993:131;25119:4;24993:131;:::i;:::-;24985:139;;24712:419;;;:::o;25137:::-;25303:4;25341:2;25330:9;25326:18;25318:26;;25390:9;25384:4;25380:20;25376:1;25365:9;25361:17;25354:47;25418:131;25544:4;25418:131;:::i;:::-;25410:139;;25137:419;;;:::o;25562:::-;25728:4;25766:2;25755:9;25751:18;25743:26;;25815:9;25809:4;25805:20;25801:1;25790:9;25786:17;25779:47;25843:131;25969:4;25843:131;:::i;:::-;25835:139;;25562:419;;;:::o;25987:::-;26153:4;26191:2;26180:9;26176:18;26168:26;;26240:9;26234:4;26230:20;26226:1;26215:9;26211:17;26204:47;26268:131;26394:4;26268:131;:::i;:::-;26260:139;;25987:419;;;:::o;26412:222::-;26505:4;26543:2;26532:9;26528:18;26520:26;;26556:71;26624:1;26613:9;26609:17;26600:6;26556:71;:::i;:::-;26412:222;;;;:::o;26640:129::-;26674:6;26701:20;;:::i;:::-;26691:30;;26730:33;26758:4;26750:6;26730:33;:::i;:::-;26640:129;;;:::o;26775:75::-;26808:6;26841:2;26835:9;26825:19;;26775:75;:::o;26856:307::-;26917:4;27007:18;26999:6;26996:30;26993:56;;;27029:18;;:::i;:::-;26993:56;27067:29;27089:6;27067:29;:::i;:::-;27059:37;;27151:4;27145;27141:15;27133:23;;26856:307;;;:::o;27169:98::-;27220:6;27254:5;27248:12;27238:22;;27169:98;;;:::o;27273:99::-;27325:6;27359:5;27353:12;27343:22;;27273:99;;;:::o;27378:168::-;27461:11;27495:6;27490:3;27483:19;27535:4;27530:3;27526:14;27511:29;;27378:168;;;;:::o;27552:147::-;27653:11;27690:3;27675:18;;27552:147;;;;:::o;27705:169::-;27789:11;27823:6;27818:3;27811:19;27863:4;27858:3;27854:14;27839:29;;27705:169;;;;:::o;27880:148::-;27982:11;28019:3;28004:18;;27880:148;;;;:::o;28034:242::-;28073:3;28092:19;28109:1;28092:19;:::i;:::-;28087:24;;28125:19;28142:1;28125:19;:::i;:::-;28120:24;;28218:1;28210:6;28206:14;28203:1;28200:21;28197:47;;;28224:18;;:::i;:::-;28197:47;28268:1;28265;28261:9;28254:16;;28034:242;;;;:::o;28282:305::-;28322:3;28341:20;28359:1;28341:20;:::i;:::-;28336:25;;28375:20;28393:1;28375:20;:::i;:::-;28370:25;;28529:1;28461:66;28457:74;28454:1;28451:81;28448:107;;;28535:18;;:::i;:::-;28448:107;28579:1;28576;28572:9;28565:16;;28282:305;;;;:::o;28593:185::-;28633:1;28650:20;28668:1;28650:20;:::i;:::-;28645:25;;28684:20;28702:1;28684:20;:::i;:::-;28679:25;;28723:1;28713:35;;28728:18;;:::i;:::-;28713:35;28770:1;28767;28763:9;28758:14;;28593:185;;;;:::o;28784:348::-;28824:7;28847:20;28865:1;28847:20;:::i;:::-;28842:25;;28881:20;28899:1;28881:20;:::i;:::-;28876:25;;29069:1;29001:66;28997:74;28994:1;28991:81;28986:1;28979:9;28972:17;28968:105;28965:131;;;29076:18;;:::i;:::-;28965:131;29124:1;29121;29117:9;29106:20;;28784:348;;;;:::o;29138:96::-;29175:7;29204:24;29222:5;29204:24;:::i;:::-;29193:35;;29138:96;;;:::o;29240:90::-;29274:7;29317:5;29310:13;29303:21;29292:32;;29240:90;;;:::o;29336:77::-;29373:7;29402:5;29391:16;;29336:77;;;:::o;29419:149::-;29455:7;29495:66;29488:5;29484:78;29473:89;;29419:149;;;:::o;29574:139::-;29625:7;29654:5;29643:16;;29660:47;29701:5;29660:47;:::i;:::-;29574:139;;;:::o;29719:89::-;29755:7;29795:6;29788:5;29784:18;29773:29;;29719:89;;;:::o;29814:126::-;29851:7;29891:42;29884:5;29880:54;29869:65;;29814:126;;;:::o;29946:77::-;29983:7;30012:5;30001:16;;29946:77;;;:::o;30029:139::-;30091:9;30124:38;30156:5;30124:38;:::i;:::-;30111:51;;30029:139;;;:::o;30174:154::-;30258:6;30253:3;30248;30235:30;30320:1;30311:6;30306:3;30302:16;30295:27;30174:154;;;:::o;30334:307::-;30402:1;30412:113;30426:6;30423:1;30420:13;30412:113;;;30511:1;30506:3;30502:11;30496:18;30492:1;30487:3;30483:11;30476:39;30448:2;30445:1;30441:10;30436:15;;30412:113;;;30543:6;30540:1;30537:13;30534:101;;;30623:1;30614:6;30609:3;30605:16;30598:27;30534:101;30383:258;30334:307;;;:::o;30647:320::-;30691:6;30728:1;30722:4;30718:12;30708:22;;30775:1;30769:4;30765:12;30796:18;30786:81;;30852:4;30844:6;30840:17;30830:27;;30786:81;30914:2;30906:6;30903:14;30883:18;30880:38;30877:84;;;30933:18;;:::i;:::-;30877:84;30698:269;30647:320;;;:::o;30973:281::-;31056:27;31078:4;31056:27;:::i;:::-;31048:6;31044:40;31186:6;31174:10;31171:22;31150:18;31138:10;31135:34;31132:62;31129:88;;;31197:18;;:::i;:::-;31129:88;31237:10;31233:2;31226:22;31016:238;30973:281;;:::o;31260:233::-;31299:3;31322:24;31340:5;31322:24;:::i;:::-;31313:33;;31368:66;31361:5;31358:77;31355:103;;;31438:18;;:::i;:::-;31355:103;31485:1;31478:5;31474:13;31467:20;;31260:233;;;:::o;31499:100::-;31538:7;31567:26;31587:5;31567:26;:::i;:::-;31556:37;;31499:100;;;:::o;31605:94::-;31644:7;31673:20;31687:5;31673:20;:::i;:::-;31662:31;;31605:94;;;:::o;31705:180::-;31753:77;31750:1;31743:88;31850:4;31847:1;31840:15;31874:4;31871:1;31864:15;31891:180;31939:77;31936:1;31929:88;32036:4;32033:1;32026:15;32060:4;32057:1;32050:15;32077:180;32125:77;32122:1;32115:88;32222:4;32219:1;32212:15;32246:4;32243:1;32236:15;32263:180;32311:77;32308:1;32301:88;32408:4;32405:1;32398:15;32432:4;32429:1;32422:15;32449:180;32497:77;32494:1;32487:88;32594:4;32591:1;32584:15;32618:4;32615:1;32608:15;32635:180;32683:77;32680:1;32673:88;32780:4;32777:1;32770:15;32804:4;32801:1;32794:15;32821:117;32930:1;32927;32920:12;32944:117;33053:1;33050;33043:12;33067:117;33176:1;33173;33166:12;33190:117;33299:1;33296;33289:12;33313:117;33422:1;33419;33412:12;33436:117;33545:1;33542;33535:12;33559:102;33600:6;33651:2;33647:7;33642:2;33635:5;33631:14;33627:28;33617:38;;33559:102;;;:::o;33667:94::-;33700:8;33748:5;33744:2;33740:14;33719:35;;33667:94;;;:::o;33767:225::-;33907:34;33903:1;33895:6;33891:14;33884:58;33976:8;33971:2;33963:6;33959:15;33952:33;33767:225;:::o;33998:157::-;34138:9;34134:1;34126:6;34122:14;34115:33;33998:157;:::o;34161:173::-;34301:25;34297:1;34289:6;34285:14;34278:49;34161:173;:::o;34340:176::-;34480:28;34476:1;34468:6;34464:14;34457:52;34340:176;:::o;34522:170::-;34662:22;34658:1;34650:6;34646:14;34639:46;34522:170;:::o;34698:168::-;34838:20;34834:1;34826:6;34822:14;34815:44;34698:168;:::o;34872:182::-;35012:34;35008:1;35000:6;34996:14;34989:58;34872:182;:::o;35060:173::-;35200:25;35196:1;35188:6;35184:14;35177:49;35060:173;:::o;35239:166::-;35379:18;35375:1;35367:6;35363:14;35356:42;35239:166;:::o;35411:114::-;;:::o;35531:165::-;35671:17;35667:1;35659:6;35655:14;35648:41;35531:165;:::o;35702:171::-;35842:23;35838:1;35830:6;35826:14;35819:47;35702:171;:::o;35879:119::-;35966:1;35959:5;35956:12;35946:46;;35972:18;;:::i;:::-;35946:46;35879:119;:::o;36004:122::-;36077:24;36095:5;36077:24;:::i;:::-;36070:5;36067:35;36057:63;;36116:1;36113;36106:12;36057:63;36004:122;:::o;36132:116::-;36202:21;36217:5;36202:21;:::i;:::-;36195:5;36192:32;36182:60;;36238:1;36235;36228:12;36182:60;36132:116;:::o;36254:122::-;36327:24;36345:5;36327:24;:::i;:::-;36320:5;36317:35;36307:63;;36366:1;36363;36356:12;36307:63;36254:122;:::o;36382:120::-;36454:23;36471:5;36454:23;:::i;:::-;36447:5;36444:34;36434:62;;36492:1;36489;36482:12;36434:62;36382:120;:::o;36508:113::-;36595:1;36588:5;36585:12;36575:40;;36611:1;36608;36601:12;36575:40;36508:113;:::o;36627:122::-;36700:24;36718:5;36700:24;:::i;:::-;36693:5;36690:35;36680:63;;36739:1;36736;36729:12;36680:63;36627:122;:::o

Swarm Source

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