ETH Price: $3,383.99 (-1.56%)
Gas: 1 Gwei

Token

Bored y00ts Ape Club (BYAC)
 

Overview

Max Total Supply

6,969 BYAC

Holders

1,599

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
slothy13.eth
Balance
2 BYAC
0x7680f91d3D3a5F451A6387ba802661d96f78dD8f
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:
Boredy00tsApeClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 7 : BoredY00tsApeClub.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
    
contract Boredy00tsApeClub is ERC721A, Ownable, ReentrancyGuard {
    bytes32 public merkleRoot;
    bool public isMintingStart  = false;
    uint256 public pricePublic = 5000000000000000;
    uint256 public pricey00tapelist = 3000000000000000;
    string public baseURI;  
    uint256 public maxPerTransaction = 20;  
    uint256 public maxSupply = 6969;
    uint256 public teamSupply = 69;  
    uint256 public mintSupply = 6900;
    uint256 public freey00tapelist = 2;
    mapping (address => uint256) public walletPublic;
    mapping (address => uint256) public wallety00tapelist ;
    constructor() ERC721A("Bored y00ts Ape Club", "BYAC"){}

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

    function publicMint(uint256 qty) external payable
    {
        require(isMintingStart , "BYAC isMintingStart Not Open Yet !");
        require(qty <= maxPerTransaction, "BYAC Max Per Max Per Transaction !");
        require(totalSupply() + qty <= mintSupply,"BYAC Soldout !");
        require(msg.value >= qty * pricePublic,"BYAC Insufficient Funds !");
        walletPublic[msg.sender] += qty;
        _safeMint(msg.sender, qty);
    }

    function y00tapelistMint(uint256 qty, bytes32[] calldata _merkleProof) external payable
    { 
        require(isMintingStart, "BYAC isMintingStart Not Open Yet !");
        if(wallety00tapelist[msg.sender] < freey00tapelist) 
        {
           uint256 claimFree = qty - freey00tapelist;
           require(msg.value >= claimFree * pricey00tapelist,"BYAC Insufficient Eth");
        }
        else
        {
           require(msg.value >= qty * pricey00tapelist,"BYAC Insufficient Eth");
        }
        require(qty <= maxPerTransaction, "BYAC Max Per Max Per Transaction !");
        require(totalSupply() + qty <= maxSupply,"BYAC Soldout !");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "BYAC Not y00tapelist");
        wallety00tapelist[msg.sender] += qty;
        _safeMint(msg.sender, qty);
    }

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

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

    function airdrop(address[] memory listedAirdrop ,uint256[] memory qty) external onlyOwner {
        for (uint256 i = 0; i < listedAirdrop.length; i++) {
           _safeMint(listedAirdrop[i], qty[i]);
        }
    }

    function teamMint(uint256 qty) external onlyOwner
    {
        _safeMint(msg.sender, qty);
    }

    function setPublicisMintingStart() external onlyOwner {
        isMintingStart  = !isMintingStart ;
    }
    
    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setPricePublic(uint256 price_) external onlyOwner {
        pricePublic = price_;
    }

    function setPricey00tapelist(uint256 pricey00tapelist_) external onlyOwner {
        pricey00tapelist = pricey00tapelist_;
    }

    function setmaxPerTransaction(uint256 maxPerTransaction_) external onlyOwner {
        maxPerTransaction = maxPerTransaction_;
    }

    function setMintSupply(uint256 mintSupply_) external onlyOwner {
        mintSupply = mintSupply_;
    }

    function setTeamSupply(uint256 maxTeam_) external onlyOwner {
        teamSupply = maxTeam_;
    }

    function setfreey00tapelist(uint256 freey00tapelist_) external onlyOwner {
        freey00tapelist = freey00tapelist_;
    }

    function setWalletMint(address addr_) external onlyOwner {
        walletPublic[addr_] = 0;
        wallety00tapelist[addr_] = 0;
    }

    function setMerkleRoot(bytes32 root) external onlyOwner {
        merkleRoot = root;
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(payable(address(this)).balance);
    }
}

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

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        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 payable 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 {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

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

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

    /**
     * @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.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            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`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 : 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 5 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 6 of 7 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 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":"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":"listedAirdrop","type":"address[]"},{"internalType":"uint256[]","name":"qty","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freey00tapelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintingStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricey00tapelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintSupply_","type":"uint256"}],"name":"setMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pricey00tapelist_","type":"uint256"}],"name":"setPricey00tapelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicisMintingStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTeam_","type":"uint256"}],"name":"setTeamSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr_","type":"address"}],"name":"setWalletMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freey00tapelist_","type":"uint256"}],"name":"setfreey00tapelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTransaction_","type":"uint256"}],"name":"setmaxPerTransaction","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":"qty","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wallety00tapelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"y00tapelistMint","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600b60006101000a81548160ff0219169083151502179055506611c37937e08000600c55660aa87bee538000600d556014600f55611b396010556045601155611af460125560026013553480156200005d57600080fd5b506040518060400160405280601481526020017f426f7265642079303074732041706520436c75620000000000000000000000008152506040518060400160405280600481526020017f42594143000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e292919062000219565b508060039080519060200190620000fb92919062000219565b506200010c6200014260201b60201c565b600081905550505062000134620001286200014b60201b60201c565b6200015360201b60201c565b60016009819055506200032e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022790620002c9565b90600052602060002090601f0160209004810192826200024b576000855562000297565b82601f106200026657805160ff191683800117855562000297565b8280016001018555821562000297579182015b828111156200029657825182559160200191906001019062000279565b5b509050620002a69190620002aa565b5090565b5b80821115620002c5576000816000905550600101620002ab565b5090565b60006002820490506001821680620002e257607f821691505b60208210811415620002f957620002f8620002ff565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613890806200033e6000396000f3fe6080604052600436106102725760003560e01c80634b980d671161014f5780638da5cb5b116100c1578063ca36199a1161007a578063ca36199a146108d6578063d5abeb0114610901578063dc33e6811461092c578063e985e9c514610969578063f2fde38b146109a6578063f8f103dd146109cf57610272565b80638da5cb5b146107d557806395d89b4114610800578063a22cb4651461082b578063ac568e8414610854578063b88d4fde1461087d578063c87b56dd1461089957610272565b8063672434821161011357806367243482146106ed5780636c0360eb1461071657806370a0823114610741578063715018a61461077e57806376cc322d146107955780637cb64759146107ac57610272565b80634b980d671461060657806355f804b314610631578063581c099f1461065a5780635ff0c75b146106855780636352211e146106b057610272565b806323b872dd116101e85780632db11544116101ac5780632db115441461053a5780632eb4a7ab146105565780632fbba115146105815780633ccfd60b146105aa57806342842e0e146105c15780634530a832146105dd57610272565b806323b872dd14610471578063243ce6f71461048d5780632ada2ad0146104b65780632be905ba146104d25780632cfac6ec1461050f57610272565b8063081812fc1161023a578063081812fc14610370578063095ea7b3146103ad578063102e766d146103c9578063108bfbfa146103f457806318160ddd1461041d578063200e37151461044857610272565b806301ffc9a714610277578063045b7dca146102b457806306f9ae43146102df57806306fdde0314610308578063080fc35514610333575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190612c48565b6109f8565b6040516102ab919061302c565b60405180910390f35b3480156102c057600080fd5b506102c9610a8a565b6040516102d69190613184565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906129e0565b610a90565b005b34801561031457600080fd5b5061031d610b25565b60405161032a9190613062565b60405180910390f35b34801561033f57600080fd5b5061035a600480360381019061035591906129e0565b610bb7565b6040516103679190613184565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190612ceb565b610bcf565b6040516103a49190612fc5565b60405180910390f35b6103c760048036038101906103c29190612b63565b610c4e565b005b3480156103d557600080fd5b506103de610d92565b6040516103eb9190613184565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190612ceb565b610d98565b005b34801561042957600080fd5b50610432610daa565b60405161043f9190613184565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190612ceb565b610dc1565b005b61048b60048036038101906104869190612a4d565b610dd3565b005b34801561049957600080fd5b506104b460048036038101906104af9190612ceb565b6110f8565b005b6104d060048036038101906104cb9190612d18565b61110a565b005b3480156104de57600080fd5b506104f960048036038101906104f491906129e0565b611415565b6040516105069190613184565b60405180910390f35b34801561051b57600080fd5b5061052461142d565b6040516105319190613184565b60405180910390f35b610554600480360381019061054f9190612ceb565b611433565b005b34801561056257600080fd5b5061056b6115d1565b6040516105789190613047565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190612ceb565b6115d7565b005b3480156105b657600080fd5b506105bf6115ec565b005b6105db60048036038101906105d69190612a4d565b611654565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190612ceb565b611674565b005b34801561061257600080fd5b5061061b611686565b6040516106289190613184565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190612ca2565b61168c565b005b34801561066657600080fd5b5061066f6116ae565b60405161067c9190613184565b60405180910390f35b34801561069157600080fd5b5061069a6116b4565b6040516106a7919061302c565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612ceb565b6116c7565b6040516106e49190612fc5565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190612ba3565b6116d9565b005b34801561072257600080fd5b5061072b611743565b6040516107389190613062565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906129e0565b6117d1565b6040516107759190613184565b60405180910390f35b34801561078a57600080fd5b5061079361188a565b005b3480156107a157600080fd5b506107aa61189e565b005b3480156107b857600080fd5b506107d360048036038101906107ce9190612c1b565b6118d2565b005b3480156107e157600080fd5b506107ea6118e4565b6040516107f79190612fc5565b60405180910390f35b34801561080c57600080fd5b5061081561190e565b6040516108229190613062565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d9190612b23565b6119a0565b005b34801561086057600080fd5b5061087b60048036038101906108769190612ceb565b611aab565b005b61089760048036038101906108929190612aa0565b611abd565b005b3480156108a557600080fd5b506108c060048036038101906108bb9190612ceb565b611b30565b6040516108cd9190613062565b60405180910390f35b3480156108e257600080fd5b506108eb611bcf565b6040516108f89190613184565b60405180910390f35b34801561090d57600080fd5b50610916611bd5565b6040516109239190613184565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e91906129e0565b611bdb565b6040516109609190613184565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190612a0d565b611bed565b60405161099d919061302c565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c891906129e0565b611c81565b005b3480156109db57600080fd5b506109f660048036038101906109f19190612ceb565b611d05565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a835750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60125481565b610a98611d17565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b606060028054610b3490613465565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6090613465565b8015610bad5780601f10610b8257610100808354040283529160200191610bad565b820191906000526020600020905b815481529060010190602001808311610b9057829003601f168201915b5050505050905090565b60156020528060005260406000206000915090505481565b6000610bda82611d95565b610c10576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c59826116c7565b90508073ffffffffffffffffffffffffffffffffffffffff16610c7a611df4565b73ffffffffffffffffffffffffffffffffffffffff1614610cdd57610ca681610ca1611df4565b611bed565b610cdc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b610da0611d17565b80600f8190555050565b6000610db4611dfc565b6001546000540303905090565b610dc9611d17565b80600d8190555050565b6000610dde82611e05565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e45576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e5184611ed3565b91509150610e678187610e62611df4565b611efa565b610eb357610e7c86610e77611df4565b611bed565b610eb2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f1a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f278686866001611f3e565b8015610f3257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061100085610fdc888887611f44565b7c020000000000000000000000000000000000000000000000000000000017611f6c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611088576000600185019050600060046000838152602001908152602001600020541415611086576000548114611085578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110f08686866001611f97565b505050505050565b611100611d17565b8060138190555050565b600b60009054906101000a900460ff16611159576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611150906130e4565b60405180910390fd5b601354601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561120a576000601354846111b29190613371565b9050600d54816111c29190613317565b341015611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90613124565b60405180910390fd5b5061125b565b600d54836112189190613317565b34101561125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190613124565b60405180910390fd5b5b600f548311156112a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611297906130c4565b60405180910390fd5b601054836112ac610daa565b6112b691906132c1565b11156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90613164565b60405180910390fd5b60003360405160200161130a9190612f86565b604051602081830303815290604052805190602001209050611370838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483611f9d565b6113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690613144565b60405180910390fd5b83601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113fe91906132c1565b9250508190555061140f3385611fb4565b50505050565b60146020528060005260406000206000915090505481565b60115481565b600b60009054906101000a900460ff16611482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611479906130e4565b60405180910390fd5b600f548111156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be906130c4565b60405180910390fd5b601254816114d3610daa565b6114dd91906132c1565b111561151e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151590613164565b60405180910390fd5b600c548161152c9190613317565b34101561156e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611565906130a4565b60405180910390fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115bd91906132c1565b925050819055506115ce3382611fb4565b50565b600a5481565b6115df611d17565b6115e93382611fb4565b50565b6115f4611d17565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611651573d6000803e3d6000fd5b50565b61166f83838360405180602001604052806000815250611abd565b505050565b61167c611d17565b80600c8190555050565b600f5481565b611694611d17565b80600e90805190602001906116aa92919061264d565b5050565b60135481565b600b60009054906101000a900460ff1681565b60006116d282611e05565b9050919050565b6116e1611d17565b60005b825181101561173e5761172b83828151811061170357611702613593565b5b602002602001015183838151811061171e5761171d613593565b5b6020026020010151611fb4565b8080611736906134c8565b9150506116e4565b505050565b600e805461175090613465565b80601f016020809104026020016040519081016040528092919081815260200182805461177c90613465565b80156117c95780601f1061179e576101008083540402835291602001916117c9565b820191906000526020600020905b8154815290600101906020018083116117ac57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611839576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611892611d17565b61189c6000611fd2565b565b6118a6611d17565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6118da611d17565b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461191d90613465565b80601f016020809104026020016040519081016040528092919081815260200182805461194990613465565b80156119965780601f1061196b57610100808354040283529160200191611996565b820191906000526020600020905b81548152906001019060200180831161197957829003601f168201915b5050505050905090565b80600760006119ad611df4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5a611df4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a9f919061302c565b60405180910390a35050565b611ab3611d17565b8060128190555050565b611ac8848484610dd3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b2a57611af384848484612098565b611b29576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b3b82611d95565b611b71576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611b7b6121f8565b9050600081511415611b9c5760405180602001604052806000815250611bc7565b80611ba68461228a565b604051602001611bb7929190612fa1565b6040516020818303038152906040525b915050919050565b600d5481565b60105481565b6000611be6826122e3565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c89611d17565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf090613084565b60405180910390fd5b611d0281611fd2565b50565b611d0d611d17565b8060118190555050565b611d1f61233a565b73ffffffffffffffffffffffffffffffffffffffff16611d3d6118e4565b73ffffffffffffffffffffffffffffffffffffffff1614611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a90613104565b60405180910390fd5b565b600081611da0611dfc565b11158015611daf575060005482105b8015611ded575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611e14611dfc565b11611e9c57600054811015611e9b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e99575b6000811415611e8f576004600083600190039350838152602001908152602001600020549050611e64565b8092505050611ece565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f5b868684612342565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600082611faa858461234b565b1490509392505050565b611fce8282604051806020016040528060008152506123a1565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120be611df4565b8786866040518563ffffffff1660e01b81526004016120e09493929190612fe0565b602060405180830381600087803b1580156120fa57600080fd5b505af192505050801561212b57506040513d601f19601f820116820180604052508101906121289190612c75565b60015b6121a5573d806000811461215b576040519150601f19603f3d011682016040523d82523d6000602084013e612160565b606091505b5060008151141561219d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461220790613465565b80601f016020809104026020016040519081016040528092919081815260200182805461223390613465565b80156122805780601f1061225557610100808354040283529160200191612280565b820191906000526020600020905b81548152906001019060200180831161226357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156122ce57600184039350600a81066030018453600a81049050806122c9576122ce565b6122a3565b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60009392505050565b60008082905060005b8451811015612396576123818286838151811061237457612373613593565b5b602002602001015161243e565b9150808061238e906134c8565b915050612354565b508091505092915050565b6123ab8383612469565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461243957600080549050600083820390505b6123eb6000868380600101945086612098565b612421576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123d857816000541461243657600080fd5b50505b505050565b6000818310612456576124518284612626565b612461565b6124608383612626565b5b905092915050565b60008054905060008214156124aa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124b76000848385611f3e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061252e8361251f6000866000611f44565b6125288561263d565b17611f6c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125cf57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612594565b50600082141561260b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126216000848385611f97565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461265990613465565b90600052602060002090601f01602090048101928261267b57600085556126c2565b82601f1061269457805160ff19168380011785556126c2565b828001600101855582156126c2579182015b828111156126c15782518255916020019190600101906126a6565b5b5090506126cf91906126d3565b5090565b5b808211156126ec5760008160009055506001016126d4565b5090565b60006127036126fe846131c4565b61319f565b90508083825260208201905082856020860282011115612726576127256135fb565b5b60005b85811015612756578161273c8882612854565b845260208401935060208301925050600181019050612729565b5050509392505050565b600061277361276e846131f0565b61319f565b90508083825260208201905082856020860282011115612796576127956135fb565b5b60005b858110156127c657816127ac88826129cb565b845260208401935060208301925050600181019050612799565b5050509392505050565b60006127e36127de8461321c565b61319f565b9050828152602081018484840111156127ff576127fe613600565b5b61280a848285613423565b509392505050565b60006128256128208461324d565b61319f565b90508281526020810184848401111561284157612840613600565b5b61284c848285613423565b509392505050565b600081359050612863816137e7565b92915050565b600082601f83011261287e5761287d6135f6565b5b813561288e8482602086016126f0565b91505092915050565b60008083601f8401126128ad576128ac6135f6565b5b8235905067ffffffffffffffff8111156128ca576128c96135f1565b5b6020830191508360208202830111156128e6576128e56135fb565b5b9250929050565b600082601f830112612902576129016135f6565b5b8135612912848260208601612760565b91505092915050565b60008135905061292a816137fe565b92915050565b60008135905061293f81613815565b92915050565b6000813590506129548161382c565b92915050565b6000815190506129698161382c565b92915050565b600082601f830112612984576129836135f6565b5b81356129948482602086016127d0565b91505092915050565b600082601f8301126129b2576129b16135f6565b5b81356129c2848260208601612812565b91505092915050565b6000813590506129da81613843565b92915050565b6000602082840312156129f6576129f561360a565b5b6000612a0484828501612854565b91505092915050565b60008060408385031215612a2457612a2361360a565b5b6000612a3285828601612854565b9250506020612a4385828601612854565b9150509250929050565b600080600060608486031215612a6657612a6561360a565b5b6000612a7486828701612854565b9350506020612a8586828701612854565b9250506040612a96868287016129cb565b9150509250925092565b60008060008060808587031215612aba57612ab961360a565b5b6000612ac887828801612854565b9450506020612ad987828801612854565b9350506040612aea878288016129cb565b925050606085013567ffffffffffffffff811115612b0b57612b0a613605565b5b612b178782880161296f565b91505092959194509250565b60008060408385031215612b3a57612b3961360a565b5b6000612b4885828601612854565b9250506020612b598582860161291b565b9150509250929050565b60008060408385031215612b7a57612b7961360a565b5b6000612b8885828601612854565b9250506020612b99858286016129cb565b9150509250929050565b60008060408385031215612bba57612bb961360a565b5b600083013567ffffffffffffffff811115612bd857612bd7613605565b5b612be485828601612869565b925050602083013567ffffffffffffffff811115612c0557612c04613605565b5b612c11858286016128ed565b9150509250929050565b600060208284031215612c3157612c3061360a565b5b6000612c3f84828501612930565b91505092915050565b600060208284031215612c5e57612c5d61360a565b5b6000612c6c84828501612945565b91505092915050565b600060208284031215612c8b57612c8a61360a565b5b6000612c998482850161295a565b91505092915050565b600060208284031215612cb857612cb761360a565b5b600082013567ffffffffffffffff811115612cd657612cd5613605565b5b612ce28482850161299d565b91505092915050565b600060208284031215612d0157612d0061360a565b5b6000612d0f848285016129cb565b91505092915050565b600080600060408486031215612d3157612d3061360a565b5b6000612d3f868287016129cb565b935050602084013567ffffffffffffffff811115612d6057612d5f613605565b5b612d6c86828701612897565b92509250509250925092565b612d81816133a5565b82525050565b612d98612d93826133a5565b613511565b82525050565b612da7816133b7565b82525050565b612db6816133c3565b82525050565b6000612dc78261327e565b612dd18185613294565b9350612de1818560208601613432565b612dea8161360f565b840191505092915050565b6000612e0082613289565b612e0a81856132a5565b9350612e1a818560208601613432565b612e238161360f565b840191505092915050565b6000612e3982613289565b612e4381856132b6565b9350612e53818560208601613432565b80840191505092915050565b6000612e6c6026836132a5565b9150612e778261362d565b604082019050919050565b6000612e8f6019836132a5565b9150612e9a8261367c565b602082019050919050565b6000612eb26022836132a5565b9150612ebd826136a5565b604082019050919050565b6000612ed56022836132a5565b9150612ee0826136f4565b604082019050919050565b6000612ef86020836132a5565b9150612f0382613743565b602082019050919050565b6000612f1b6015836132a5565b9150612f268261376c565b602082019050919050565b6000612f3e6014836132a5565b9150612f4982613795565b602082019050919050565b6000612f61600e836132a5565b9150612f6c826137be565b602082019050919050565b612f8081613419565b82525050565b6000612f928284612d87565b60148201915081905092915050565b6000612fad8285612e2e565b9150612fb98284612e2e565b91508190509392505050565b6000602082019050612fda6000830184612d78565b92915050565b6000608082019050612ff56000830187612d78565b6130026020830186612d78565b61300f6040830185612f77565b81810360608301526130218184612dbc565b905095945050505050565b60006020820190506130416000830184612d9e565b92915050565b600060208201905061305c6000830184612dad565b92915050565b6000602082019050818103600083015261307c8184612df5565b905092915050565b6000602082019050818103600083015261309d81612e5f565b9050919050565b600060208201905081810360008301526130bd81612e82565b9050919050565b600060208201905081810360008301526130dd81612ea5565b9050919050565b600060208201905081810360008301526130fd81612ec8565b9050919050565b6000602082019050818103600083015261311d81612eeb565b9050919050565b6000602082019050818103600083015261313d81612f0e565b9050919050565b6000602082019050818103600083015261315d81612f31565b9050919050565b6000602082019050818103600083015261317d81612f54565b9050919050565b60006020820190506131996000830184612f77565b92915050565b60006131a96131ba565b90506131b58282613497565b919050565b6000604051905090565b600067ffffffffffffffff8211156131df576131de6135c2565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561320b5761320a6135c2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613237576132366135c2565b5b6132408261360f565b9050602081019050919050565b600067ffffffffffffffff821115613268576132676135c2565b5b6132718261360f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006132cc82613419565b91506132d783613419565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330c5761330b613535565b5b828201905092915050565b600061332282613419565b915061332d83613419565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561336657613365613535565b5b828202905092915050565b600061337c82613419565b915061338783613419565b92508282101561339a57613399613535565b5b828203905092915050565b60006133b0826133f9565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613450578082015181840152602081019050613435565b8381111561345f576000848401525b50505050565b6000600282049050600182168061347d57607f821691505b6020821081141561349157613490613564565b5b50919050565b6134a08261360f565b810181811067ffffffffffffffff821117156134bf576134be6135c2565b5b80604052505050565b60006134d382613419565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561350657613505613535565b5b600182019050919050565b600061351c82613523565b9050919050565b600061352e82613620565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4259414320496e73756666696369656e742046756e6473202100000000000000600082015250565b7f42594143204d617820506572204d617820506572205472616e73616374696f6e60008201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b7f425941432069734d696e74696e675374617274204e6f74204f70656e2059657460008201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4259414320496e73756666696369656e74204574680000000000000000000000600082015250565b7f42594143204e6f7420793030746170656c697374000000000000000000000000600082015250565b7f4259414320536f6c646f75742021000000000000000000000000000000000000600082015250565b6137f0816133a5565b81146137fb57600080fd5b50565b613807816133b7565b811461381257600080fd5b50565b61381e816133c3565b811461382957600080fd5b50565b613835816133cd565b811461384057600080fd5b50565b61384c81613419565b811461385757600080fd5b5056fea26469706673582212209cae62f959520d43f5e9771a7cbfd8d8f9676577ebb136168e126fd515b6cbef64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102725760003560e01c80634b980d671161014f5780638da5cb5b116100c1578063ca36199a1161007a578063ca36199a146108d6578063d5abeb0114610901578063dc33e6811461092c578063e985e9c514610969578063f2fde38b146109a6578063f8f103dd146109cf57610272565b80638da5cb5b146107d557806395d89b4114610800578063a22cb4651461082b578063ac568e8414610854578063b88d4fde1461087d578063c87b56dd1461089957610272565b8063672434821161011357806367243482146106ed5780636c0360eb1461071657806370a0823114610741578063715018a61461077e57806376cc322d146107955780637cb64759146107ac57610272565b80634b980d671461060657806355f804b314610631578063581c099f1461065a5780635ff0c75b146106855780636352211e146106b057610272565b806323b872dd116101e85780632db11544116101ac5780632db115441461053a5780632eb4a7ab146105565780632fbba115146105815780633ccfd60b146105aa57806342842e0e146105c15780634530a832146105dd57610272565b806323b872dd14610471578063243ce6f71461048d5780632ada2ad0146104b65780632be905ba146104d25780632cfac6ec1461050f57610272565b8063081812fc1161023a578063081812fc14610370578063095ea7b3146103ad578063102e766d146103c9578063108bfbfa146103f457806318160ddd1461041d578063200e37151461044857610272565b806301ffc9a714610277578063045b7dca146102b457806306f9ae43146102df57806306fdde0314610308578063080fc35514610333575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190612c48565b6109f8565b6040516102ab919061302c565b60405180910390f35b3480156102c057600080fd5b506102c9610a8a565b6040516102d69190613184565b60405180910390f35b3480156102eb57600080fd5b50610306600480360381019061030191906129e0565b610a90565b005b34801561031457600080fd5b5061031d610b25565b60405161032a9190613062565b60405180910390f35b34801561033f57600080fd5b5061035a600480360381019061035591906129e0565b610bb7565b6040516103679190613184565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190612ceb565b610bcf565b6040516103a49190612fc5565b60405180910390f35b6103c760048036038101906103c29190612b63565b610c4e565b005b3480156103d557600080fd5b506103de610d92565b6040516103eb9190613184565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190612ceb565b610d98565b005b34801561042957600080fd5b50610432610daa565b60405161043f9190613184565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a9190612ceb565b610dc1565b005b61048b60048036038101906104869190612a4d565b610dd3565b005b34801561049957600080fd5b506104b460048036038101906104af9190612ceb565b6110f8565b005b6104d060048036038101906104cb9190612d18565b61110a565b005b3480156104de57600080fd5b506104f960048036038101906104f491906129e0565b611415565b6040516105069190613184565b60405180910390f35b34801561051b57600080fd5b5061052461142d565b6040516105319190613184565b60405180910390f35b610554600480360381019061054f9190612ceb565b611433565b005b34801561056257600080fd5b5061056b6115d1565b6040516105789190613047565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190612ceb565b6115d7565b005b3480156105b657600080fd5b506105bf6115ec565b005b6105db60048036038101906105d69190612a4d565b611654565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190612ceb565b611674565b005b34801561061257600080fd5b5061061b611686565b6040516106289190613184565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190612ca2565b61168c565b005b34801561066657600080fd5b5061066f6116ae565b60405161067c9190613184565b60405180910390f35b34801561069157600080fd5b5061069a6116b4565b6040516106a7919061302c565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612ceb565b6116c7565b6040516106e49190612fc5565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190612ba3565b6116d9565b005b34801561072257600080fd5b5061072b611743565b6040516107389190613062565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906129e0565b6117d1565b6040516107759190613184565b60405180910390f35b34801561078a57600080fd5b5061079361188a565b005b3480156107a157600080fd5b506107aa61189e565b005b3480156107b857600080fd5b506107d360048036038101906107ce9190612c1b565b6118d2565b005b3480156107e157600080fd5b506107ea6118e4565b6040516107f79190612fc5565b60405180910390f35b34801561080c57600080fd5b5061081561190e565b6040516108229190613062565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d9190612b23565b6119a0565b005b34801561086057600080fd5b5061087b60048036038101906108769190612ceb565b611aab565b005b61089760048036038101906108929190612aa0565b611abd565b005b3480156108a557600080fd5b506108c060048036038101906108bb9190612ceb565b611b30565b6040516108cd9190613062565b60405180910390f35b3480156108e257600080fd5b506108eb611bcf565b6040516108f89190613184565b60405180910390f35b34801561090d57600080fd5b50610916611bd5565b6040516109239190613184565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e91906129e0565b611bdb565b6040516109609190613184565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190612a0d565b611bed565b60405161099d919061302c565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c891906129e0565b611c81565b005b3480156109db57600080fd5b506109f660048036038101906109f19190612ceb565b611d05565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a835750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60125481565b610a98611d17565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b606060028054610b3490613465565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6090613465565b8015610bad5780601f10610b8257610100808354040283529160200191610bad565b820191906000526020600020905b815481529060010190602001808311610b9057829003601f168201915b5050505050905090565b60156020528060005260406000206000915090505481565b6000610bda82611d95565b610c10576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c59826116c7565b90508073ffffffffffffffffffffffffffffffffffffffff16610c7a611df4565b73ffffffffffffffffffffffffffffffffffffffff1614610cdd57610ca681610ca1611df4565b611bed565b610cdc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b610da0611d17565b80600f8190555050565b6000610db4611dfc565b6001546000540303905090565b610dc9611d17565b80600d8190555050565b6000610dde82611e05565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e45576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e5184611ed3565b91509150610e678187610e62611df4565b611efa565b610eb357610e7c86610e77611df4565b611bed565b610eb2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610f1a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f278686866001611f3e565b8015610f3257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061100085610fdc888887611f44565b7c020000000000000000000000000000000000000000000000000000000017611f6c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611088576000600185019050600060046000838152602001908152602001600020541415611086576000548114611085578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110f08686866001611f97565b505050505050565b611100611d17565b8060138190555050565b600b60009054906101000a900460ff16611159576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611150906130e4565b60405180910390fd5b601354601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561120a576000601354846111b29190613371565b9050600d54816111c29190613317565b341015611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90613124565b60405180910390fd5b5061125b565b600d54836112189190613317565b34101561125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190613124565b60405180910390fd5b5b600f548311156112a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611297906130c4565b60405180910390fd5b601054836112ac610daa565b6112b691906132c1565b11156112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90613164565b60405180910390fd5b60003360405160200161130a9190612f86565b604051602081830303815290604052805190602001209050611370838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483611f9d565b6113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690613144565b60405180910390fd5b83601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113fe91906132c1565b9250508190555061140f3385611fb4565b50505050565b60146020528060005260406000206000915090505481565b60115481565b600b60009054906101000a900460ff16611482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611479906130e4565b60405180910390fd5b600f548111156114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be906130c4565b60405180910390fd5b601254816114d3610daa565b6114dd91906132c1565b111561151e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151590613164565b60405180910390fd5b600c548161152c9190613317565b34101561156e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611565906130a4565b60405180910390fd5b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115bd91906132c1565b925050819055506115ce3382611fb4565b50565b600a5481565b6115df611d17565b6115e93382611fb4565b50565b6115f4611d17565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611651573d6000803e3d6000fd5b50565b61166f83838360405180602001604052806000815250611abd565b505050565b61167c611d17565b80600c8190555050565b600f5481565b611694611d17565b80600e90805190602001906116aa92919061264d565b5050565b60135481565b600b60009054906101000a900460ff1681565b60006116d282611e05565b9050919050565b6116e1611d17565b60005b825181101561173e5761172b83828151811061170357611702613593565b5b602002602001015183838151811061171e5761171d613593565b5b6020026020010151611fb4565b8080611736906134c8565b9150506116e4565b505050565b600e805461175090613465565b80601f016020809104026020016040519081016040528092919081815260200182805461177c90613465565b80156117c95780601f1061179e576101008083540402835291602001916117c9565b820191906000526020600020905b8154815290600101906020018083116117ac57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611839576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611892611d17565b61189c6000611fd2565b565b6118a6611d17565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6118da611d17565b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461191d90613465565b80601f016020809104026020016040519081016040528092919081815260200182805461194990613465565b80156119965780601f1061196b57610100808354040283529160200191611996565b820191906000526020600020905b81548152906001019060200180831161197957829003601f168201915b5050505050905090565b80600760006119ad611df4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5a611df4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a9f919061302c565b60405180910390a35050565b611ab3611d17565b8060128190555050565b611ac8848484610dd3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b2a57611af384848484612098565b611b29576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b3b82611d95565b611b71576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611b7b6121f8565b9050600081511415611b9c5760405180602001604052806000815250611bc7565b80611ba68461228a565b604051602001611bb7929190612fa1565b6040516020818303038152906040525b915050919050565b600d5481565b60105481565b6000611be6826122e3565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c89611d17565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf090613084565b60405180910390fd5b611d0281611fd2565b50565b611d0d611d17565b8060118190555050565b611d1f61233a565b73ffffffffffffffffffffffffffffffffffffffff16611d3d6118e4565b73ffffffffffffffffffffffffffffffffffffffff1614611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a90613104565b60405180910390fd5b565b600081611da0611dfc565b11158015611daf575060005482105b8015611ded575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611e14611dfc565b11611e9c57600054811015611e9b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e99575b6000811415611e8f576004600083600190039350838152602001908152602001600020549050611e64565b8092505050611ece565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f5b868684612342565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600082611faa858461234b565b1490509392505050565b611fce8282604051806020016040528060008152506123a1565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120be611df4565b8786866040518563ffffffff1660e01b81526004016120e09493929190612fe0565b602060405180830381600087803b1580156120fa57600080fd5b505af192505050801561212b57506040513d601f19601f820116820180604052508101906121289190612c75565b60015b6121a5573d806000811461215b576040519150601f19603f3d011682016040523d82523d6000602084013e612160565b606091505b5060008151141561219d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461220790613465565b80601f016020809104026020016040519081016040528092919081815260200182805461223390613465565b80156122805780601f1061225557610100808354040283529160200191612280565b820191906000526020600020905b81548152906001019060200180831161226357829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156122ce57600184039350600a81066030018453600a81049050806122c9576122ce565b6122a3565b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60009392505050565b60008082905060005b8451811015612396576123818286838151811061237457612373613593565b5b602002602001015161243e565b9150808061238e906134c8565b915050612354565b508091505092915050565b6123ab8383612469565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461243957600080549050600083820390505b6123eb6000868380600101945086612098565b612421576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123d857816000541461243657600080fd5b50505b505050565b6000818310612456576124518284612626565b612461565b6124608383612626565b5b905092915050565b60008054905060008214156124aa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124b76000848385611f3e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061252e8361251f6000866000611f44565b6125288561263d565b17611f6c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146125cf57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612594565b50600082141561260b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126216000848385611f97565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b82805461265990613465565b90600052602060002090601f01602090048101928261267b57600085556126c2565b82601f1061269457805160ff19168380011785556126c2565b828001600101855582156126c2579182015b828111156126c15782518255916020019190600101906126a6565b5b5090506126cf91906126d3565b5090565b5b808211156126ec5760008160009055506001016126d4565b5090565b60006127036126fe846131c4565b61319f565b90508083825260208201905082856020860282011115612726576127256135fb565b5b60005b85811015612756578161273c8882612854565b845260208401935060208301925050600181019050612729565b5050509392505050565b600061277361276e846131f0565b61319f565b90508083825260208201905082856020860282011115612796576127956135fb565b5b60005b858110156127c657816127ac88826129cb565b845260208401935060208301925050600181019050612799565b5050509392505050565b60006127e36127de8461321c565b61319f565b9050828152602081018484840111156127ff576127fe613600565b5b61280a848285613423565b509392505050565b60006128256128208461324d565b61319f565b90508281526020810184848401111561284157612840613600565b5b61284c848285613423565b509392505050565b600081359050612863816137e7565b92915050565b600082601f83011261287e5761287d6135f6565b5b813561288e8482602086016126f0565b91505092915050565b60008083601f8401126128ad576128ac6135f6565b5b8235905067ffffffffffffffff8111156128ca576128c96135f1565b5b6020830191508360208202830111156128e6576128e56135fb565b5b9250929050565b600082601f830112612902576129016135f6565b5b8135612912848260208601612760565b91505092915050565b60008135905061292a816137fe565b92915050565b60008135905061293f81613815565b92915050565b6000813590506129548161382c565b92915050565b6000815190506129698161382c565b92915050565b600082601f830112612984576129836135f6565b5b81356129948482602086016127d0565b91505092915050565b600082601f8301126129b2576129b16135f6565b5b81356129c2848260208601612812565b91505092915050565b6000813590506129da81613843565b92915050565b6000602082840312156129f6576129f561360a565b5b6000612a0484828501612854565b91505092915050565b60008060408385031215612a2457612a2361360a565b5b6000612a3285828601612854565b9250506020612a4385828601612854565b9150509250929050565b600080600060608486031215612a6657612a6561360a565b5b6000612a7486828701612854565b9350506020612a8586828701612854565b9250506040612a96868287016129cb565b9150509250925092565b60008060008060808587031215612aba57612ab961360a565b5b6000612ac887828801612854565b9450506020612ad987828801612854565b9350506040612aea878288016129cb565b925050606085013567ffffffffffffffff811115612b0b57612b0a613605565b5b612b178782880161296f565b91505092959194509250565b60008060408385031215612b3a57612b3961360a565b5b6000612b4885828601612854565b9250506020612b598582860161291b565b9150509250929050565b60008060408385031215612b7a57612b7961360a565b5b6000612b8885828601612854565b9250506020612b99858286016129cb565b9150509250929050565b60008060408385031215612bba57612bb961360a565b5b600083013567ffffffffffffffff811115612bd857612bd7613605565b5b612be485828601612869565b925050602083013567ffffffffffffffff811115612c0557612c04613605565b5b612c11858286016128ed565b9150509250929050565b600060208284031215612c3157612c3061360a565b5b6000612c3f84828501612930565b91505092915050565b600060208284031215612c5e57612c5d61360a565b5b6000612c6c84828501612945565b91505092915050565b600060208284031215612c8b57612c8a61360a565b5b6000612c998482850161295a565b91505092915050565b600060208284031215612cb857612cb761360a565b5b600082013567ffffffffffffffff811115612cd657612cd5613605565b5b612ce28482850161299d565b91505092915050565b600060208284031215612d0157612d0061360a565b5b6000612d0f848285016129cb565b91505092915050565b600080600060408486031215612d3157612d3061360a565b5b6000612d3f868287016129cb565b935050602084013567ffffffffffffffff811115612d6057612d5f613605565b5b612d6c86828701612897565b92509250509250925092565b612d81816133a5565b82525050565b612d98612d93826133a5565b613511565b82525050565b612da7816133b7565b82525050565b612db6816133c3565b82525050565b6000612dc78261327e565b612dd18185613294565b9350612de1818560208601613432565b612dea8161360f565b840191505092915050565b6000612e0082613289565b612e0a81856132a5565b9350612e1a818560208601613432565b612e238161360f565b840191505092915050565b6000612e3982613289565b612e4381856132b6565b9350612e53818560208601613432565b80840191505092915050565b6000612e6c6026836132a5565b9150612e778261362d565b604082019050919050565b6000612e8f6019836132a5565b9150612e9a8261367c565b602082019050919050565b6000612eb26022836132a5565b9150612ebd826136a5565b604082019050919050565b6000612ed56022836132a5565b9150612ee0826136f4565b604082019050919050565b6000612ef86020836132a5565b9150612f0382613743565b602082019050919050565b6000612f1b6015836132a5565b9150612f268261376c565b602082019050919050565b6000612f3e6014836132a5565b9150612f4982613795565b602082019050919050565b6000612f61600e836132a5565b9150612f6c826137be565b602082019050919050565b612f8081613419565b82525050565b6000612f928284612d87565b60148201915081905092915050565b6000612fad8285612e2e565b9150612fb98284612e2e565b91508190509392505050565b6000602082019050612fda6000830184612d78565b92915050565b6000608082019050612ff56000830187612d78565b6130026020830186612d78565b61300f6040830185612f77565b81810360608301526130218184612dbc565b905095945050505050565b60006020820190506130416000830184612d9e565b92915050565b600060208201905061305c6000830184612dad565b92915050565b6000602082019050818103600083015261307c8184612df5565b905092915050565b6000602082019050818103600083015261309d81612e5f565b9050919050565b600060208201905081810360008301526130bd81612e82565b9050919050565b600060208201905081810360008301526130dd81612ea5565b9050919050565b600060208201905081810360008301526130fd81612ec8565b9050919050565b6000602082019050818103600083015261311d81612eeb565b9050919050565b6000602082019050818103600083015261313d81612f0e565b9050919050565b6000602082019050818103600083015261315d81612f31565b9050919050565b6000602082019050818103600083015261317d81612f54565b9050919050565b60006020820190506131996000830184612f77565b92915050565b60006131a96131ba565b90506131b58282613497565b919050565b6000604051905090565b600067ffffffffffffffff8211156131df576131de6135c2565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561320b5761320a6135c2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613237576132366135c2565b5b6132408261360f565b9050602081019050919050565b600067ffffffffffffffff821115613268576132676135c2565b5b6132718261360f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006132cc82613419565b91506132d783613419565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561330c5761330b613535565b5b828201905092915050565b600061332282613419565b915061332d83613419565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561336657613365613535565b5b828202905092915050565b600061337c82613419565b915061338783613419565b92508282101561339a57613399613535565b5b828203905092915050565b60006133b0826133f9565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613450578082015181840152602081019050613435565b8381111561345f576000848401525b50505050565b6000600282049050600182168061347d57607f821691505b6020821081141561349157613490613564565b5b50919050565b6134a08261360f565b810181811067ffffffffffffffff821117156134bf576134be6135c2565b5b80604052505050565b60006134d382613419565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561350657613505613535565b5b600182019050919050565b600061351c82613523565b9050919050565b600061352e82613620565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4259414320496e73756666696369656e742046756e6473202100000000000000600082015250565b7f42594143204d617820506572204d617820506572205472616e73616374696f6e60008201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b7f425941432069734d696e74696e675374617274204e6f74204f70656e2059657460008201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4259414320496e73756666696369656e74204574680000000000000000000000600082015250565b7f42594143204e6f7420793030746170656c697374000000000000000000000000600082015250565b7f4259414320536f6c646f75742021000000000000000000000000000000000000600082015250565b6137f0816133a5565b81146137fb57600080fd5b50565b613807816133b7565b811461381257600080fd5b50565b61381e816133c3565b811461382957600080fd5b50565b613835816133cd565b811461384057600080fd5b50565b61384c81613419565b811461385757600080fd5b5056fea26469706673582212209cae62f959520d43f5e9771a7cbfd8d8f9676577ebb136168e126fd515b6cbef64736f6c63430008070033

Deployed Bytecode Sourcemap

297:4056:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;704:32:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3988:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10039:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;839:53:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;442:45:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3490:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3352:130:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19903:2764:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3854:126:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1525:913;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;784:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;665:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1072:445;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;368:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2911:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4234:116;;;;;;;;;;;;;:::i;:::-;;22758:187:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3246:98:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;581:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3138:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;743:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;400:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11391:150:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2683:220:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;551:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;3019:107:4;;;;;;;;;;;;;:::i;:::-;;4134:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10208:102:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16901:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3632:106:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23526:396:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10411:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;494:50:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;627:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2446:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17282:162:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3746:100:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9155:630:5;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;704:32:4:-;;;;:::o;3988:138::-;1094:13:0;:11;:13::i;:::-;4078:1:4::1;4056:12;:19;4069:5;4056:19;;;;;;;;;;;;;;;:23;;;;4117:1;4090:17;:24;4108:5;4090:24;;;;;;;;;;;;;;;:28;;;;3988:138:::0;:::o;10039:98:5:-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;839:53:4:-;;;;;;;;;;;;;;;;;:::o;16360:214:5:-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;442:45:4:-;;;;:::o;3490:134::-;1094:13:0;:11;:13::i;:::-;3598:18:4::1;3578:17;:38;;;;3490:134:::0;:::o;5894:317:5:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;3352:130:4:-;1094:13:0;:11;:13::i;:::-;3457:17:4::1;3438:16;:36;;;;3352:130:::0;:::o;19903:2764:5:-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;3854:126:4:-;1094:13:0;:11;:13::i;:::-;3956:16:4::1;3938:15;:34;;;;3854:126:::0;:::o;1525:913::-;1638:14;;;;;;;;;;;1630:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;1737:15;;1705:17;:29;1723:10;1705:29;;;;;;;;;;;;;;;;:47;1702:335;;;1778:17;1804:15;;1798:3;:21;;;;:::i;:::-;1778:41;;1866:16;;1854:9;:28;;;;:::i;:::-;1841:9;:41;;1833:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1764:155;1702:335;;;1984:16;;1978:3;:22;;;;:::i;:::-;1965:9;:35;;1957:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1702:335;2062:17;;2055:3;:24;;2047:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;2160:9;;2153:3;2137:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;2129:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;2198:12;2240:10;2223:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;2213:39;;;;;;2198:54;;2271:50;2290:12;;2271:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2304:10;;2316:4;2271:18;:50::i;:::-;2263:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;2390:3;2357:17;:29;2375:10;2357:29;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;2404:26;2414:10;2426:3;2404:9;:26::i;:::-;1618:820;1525:913;;;:::o;784:48::-;;;;;;;;;;;;;;;;;:::o;665:30::-;;;;:::o;1072:445::-;1146:14;;;;;;;;;;;1138:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1226:17;;1219:3;:24;;1211:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1324:10;;1317:3;1301:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:33;;1293:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;1390:11;;1384:3;:17;;;;:::i;:::-;1371:9;:30;;1363:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1469:3;1441:12;:24;1454:10;1441:24;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;1483:26;1493:10;1505:3;1483:9;:26::i;:::-;1072:445;:::o;368:25::-;;;;:::o;2911:100::-;1094:13:0;:11;:13::i;:::-;2977:26:4::1;2987:10;2999:3;2977:9;:26::i;:::-;2911:100:::0;:::o;4234:116::-;1094:13:0;:11;:13::i;:::-;4290:10:4::1;4282:28;;:60;4327:4;4311:30;;;4282:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4234:116::o:0;22758:187:5:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;3246:98:4:-;1094:13:0;:11;:13::i;:::-;3330:6:4::1;3316:11;:20;;;;3246:98:::0;:::o;581:37::-;;;;:::o;3138:100::-;1094:13:0;:11;:13::i;:::-;3222:8:4::1;3212:7;:18;;;;;;;;;;;;:::i;:::-;;3138:100:::0;:::o;743:34::-;;;;:::o;400:35::-;;;;;;;;;;;;;:::o;11391:150:5:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;2683:220:4:-;1094:13:0;:11;:13::i;:::-;2789:9:4::1;2784:112;2808:13;:20;2804:1;:24;2784:112;;;2849:35;2859:13;2873:1;2859:16;;;;;;;;:::i;:::-;;;;;;;;2877:3;2881:1;2877:6;;;;;;;;:::i;:::-;;;;;;;;2849:9;:35::i;:::-;2830:3;;;;;:::i;:::-;;;;2784:112;;;;2683:220:::0;;:::o;551:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7045:230:5:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;3019:107:4:-;1094:13:0;:11;:13::i;:::-;3103:14:4::1;;;;;;;;;;;3102:15;3084:14;;:33;;;;;;;;;;;;;;;;;;3019:107::o:0;4134:92::-;1094:13:0;:11;:13::i;:::-;4214:4:4::1;4201:10;:17;;;;4134:92:::0;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;10208:102:5:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;16901:231::-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;3632:106:4:-;1094:13:0;:11;:13::i;:::-;3719:11:4::1;3706:10;:24;;;;3632:106:::0;:::o;23526:396:5:-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;10411:313::-;10484:13;10514:16;10522:7;10514;:16::i;:::-;10509:59;;10539:29;;;;;;;;;;;;;;10509:59;10579:21;10603:10;:8;:10::i;:::-;10579:34;;10655:1;10636:7;10630:21;:26;;:87;;;;;;;;;;;;;;;;;10683:7;10692:18;10702:7;10692:9;:18::i;:::-;10666:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10630:87;10623:94;;;10411:313;;;:::o;494:50:4:-;;;;:::o;627:31::-;;;;:::o;2446:113::-;2504:7;2531:20;2545:5;2531:13;:20::i;:::-;2524:27;;2446:113;;;:::o;17282:162:5:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::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;3746:100:4:-;1094:13:0;:11;:13::i;:::-;3830:8:4::1;3817:10;:21;;;;3746:100:::0;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;17693:277:5:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;963:101:4:-;1028:7;1055:1;1048:8;;963:101;:::o;12515:1249:5:-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;;13510:111;13527:1;13517:6;:11;13510:111;;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;18828:474::-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;1153:184:3:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;1290:40;;1153:184;;;;;:::o;33423:110:5:-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::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;25948:697:5:-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;2567:108:4:-;2627:13;2660:7;2653:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2567:108;:::o;39637:1708:5:-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40716:1;40690:419;;;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41009:4;41005:13;40997:21;;41080:4;41070:25;;41088:5;;41070:25;40690:419;;;40694:21;41146:3;41141;41137:13;41259:4;41254:3;41250:14;41243:21;;41322:6;41317:3;41310:19;39740:1599;;;39637:1708;;;:::o;7352:176::-;7413:7;1360:13;1495:2;7440:18;:25;7459:5;7440:25;;;;;;;;;;;;;;;;:50;;7439:82;7432:89;;7352:176;;;:::o;640:96:2:-;693:7;719:10;712:17;;640:96;:::o;38475:143:5:-;38608:6;38475:143;;;;;:::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;32675:669:5:-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::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;27091:2902:5:-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::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;14837:318:5:-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:7:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:568::-;2959:8;2969:6;3019:3;3012:4;3004:6;3000:17;2996:27;2986:122;;3027:79;;:::i;:::-;2986:122;3140:6;3127:20;3117:30;;3170:18;3162:6;3159:30;3156:117;;;3192:79;;:::i;:::-;3156:117;3306:4;3298:6;3294:17;3282:29;;3360:3;3352:4;3344:6;3340:17;3330:8;3326:32;3323:41;3320:128;;;3367:79;;:::i;:::-;3320:128;2886:568;;;;;:::o;3477:370::-;3548:5;3597:3;3590:4;3582:6;3578:17;3574:27;3564:122;;3605:79;;:::i;:::-;3564:122;3722:6;3709:20;3747:94;3837:3;3829:6;3822:4;3814:6;3810:17;3747:94;:::i;:::-;3738:103;;3554:293;3477:370;;;;:::o;3853:133::-;3896:5;3934:6;3921:20;3912:29;;3950:30;3974:5;3950:30;:::i;:::-;3853:133;;;;:::o;3992:139::-;4038:5;4076:6;4063:20;4054:29;;4092:33;4119:5;4092:33;:::i;:::-;3992:139;;;;:::o;4137:137::-;4182:5;4220:6;4207:20;4198:29;;4236:32;4262:5;4236:32;:::i;:::-;4137:137;;;;:::o;4280:141::-;4336:5;4367:6;4361:13;4352:22;;4383:32;4409:5;4383:32;:::i;:::-;4280:141;;;;:::o;4440:338::-;4495:5;4544:3;4537:4;4529:6;4525:17;4521:27;4511:122;;4552:79;;:::i;:::-;4511:122;4669:6;4656:20;4694:78;4768:3;4760:6;4753:4;4745:6;4741:17;4694:78;:::i;:::-;4685:87;;4501:277;4440:338;;;;:::o;4798:340::-;4854:5;4903:3;4896:4;4888:6;4884:17;4880:27;4870:122;;4911:79;;:::i;:::-;4870:122;5028:6;5015:20;5053:79;5128:3;5120:6;5113:4;5105:6;5101:17;5053:79;:::i;:::-;5044:88;;4860:278;4798:340;;;;:::o;5144:139::-;5190:5;5228:6;5215:20;5206:29;;5244:33;5271:5;5244:33;:::i;:::-;5144:139;;;;:::o;5289:329::-;5348:6;5397:2;5385:9;5376:7;5372:23;5368:32;5365:119;;;5403:79;;:::i;:::-;5365:119;5523:1;5548:53;5593:7;5584:6;5573:9;5569:22;5548:53;:::i;:::-;5538:63;;5494:117;5289:329;;;;:::o;5624:474::-;5692:6;5700;5749:2;5737:9;5728:7;5724:23;5720:32;5717:119;;;5755:79;;:::i;:::-;5717:119;5875:1;5900:53;5945:7;5936:6;5925:9;5921:22;5900:53;:::i;:::-;5890:63;;5846:117;6002:2;6028:53;6073:7;6064:6;6053:9;6049:22;6028:53;:::i;:::-;6018:63;;5973:118;5624:474;;;;;:::o;6104:619::-;6181:6;6189;6197;6246:2;6234:9;6225:7;6221:23;6217:32;6214:119;;;6252:79;;:::i;:::-;6214:119;6372:1;6397:53;6442:7;6433:6;6422:9;6418:22;6397:53;:::i;:::-;6387:63;;6343:117;6499:2;6525:53;6570:7;6561:6;6550:9;6546:22;6525:53;:::i;:::-;6515:63;;6470:118;6627:2;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6598:118;6104:619;;;;;:::o;6729:943::-;6824:6;6832;6840;6848;6897:3;6885:9;6876:7;6872:23;6868:33;6865:120;;;6904:79;;:::i;:::-;6865:120;7024:1;7049:53;7094:7;7085:6;7074:9;7070:22;7049:53;:::i;:::-;7039:63;;6995:117;7151:2;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7122:118;7279:2;7305:53;7350:7;7341:6;7330:9;7326:22;7305:53;:::i;:::-;7295:63;;7250:118;7435:2;7424:9;7420:18;7407:32;7466:18;7458:6;7455:30;7452:117;;;7488:79;;:::i;:::-;7452:117;7593:62;7647:7;7638:6;7627:9;7623:22;7593:62;:::i;:::-;7583:72;;7378:287;6729:943;;;;;;;:::o;7678:468::-;7743:6;7751;7800:2;7788:9;7779:7;7775:23;7771:32;7768:119;;;7806:79;;:::i;:::-;7768:119;7926:1;7951:53;7996:7;7987:6;7976:9;7972:22;7951:53;:::i;:::-;7941:63;;7897:117;8053:2;8079:50;8121:7;8112:6;8101:9;8097:22;8079:50;:::i;:::-;8069:60;;8024:115;7678:468;;;;;:::o;8152:474::-;8220:6;8228;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:53;8473:7;8464:6;8453:9;8449:22;8428:53;:::i;:::-;8418:63;;8374:117;8530:2;8556:53;8601:7;8592:6;8581:9;8577:22;8556:53;:::i;:::-;8546:63;;8501:118;8152:474;;;;;:::o;8632:894::-;8750:6;8758;8807:2;8795:9;8786:7;8782:23;8778:32;8775:119;;;8813:79;;:::i;:::-;8775:119;8961:1;8950:9;8946:17;8933:31;8991:18;8983:6;8980:30;8977:117;;;9013:79;;:::i;:::-;8977:117;9118:78;9188:7;9179:6;9168:9;9164:22;9118:78;:::i;:::-;9108:88;;8904:302;9273:2;9262:9;9258:18;9245:32;9304:18;9296:6;9293:30;9290:117;;;9326:79;;:::i;:::-;9290:117;9431:78;9501:7;9492:6;9481:9;9477:22;9431:78;:::i;:::-;9421:88;;9216:303;8632:894;;;;;:::o;9532:329::-;9591:6;9640:2;9628:9;9619:7;9615:23;9611:32;9608:119;;;9646:79;;:::i;:::-;9608:119;9766:1;9791:53;9836:7;9827:6;9816:9;9812:22;9791:53;:::i;:::-;9781:63;;9737:117;9532:329;;;;:::o;9867:327::-;9925:6;9974:2;9962:9;9953:7;9949:23;9945:32;9942:119;;;9980:79;;:::i;:::-;9942:119;10100:1;10125:52;10169:7;10160:6;10149:9;10145:22;10125:52;:::i;:::-;10115:62;;10071:116;9867:327;;;;:::o;10200:349::-;10269:6;10318:2;10306:9;10297:7;10293:23;10289:32;10286:119;;;10324:79;;:::i;:::-;10286:119;10444:1;10469:63;10524:7;10515:6;10504:9;10500:22;10469:63;:::i;:::-;10459:73;;10415:127;10200:349;;;;:::o;10555:509::-;10624:6;10673:2;10661:9;10652:7;10648:23;10644:32;10641:119;;;10679:79;;:::i;:::-;10641:119;10827:1;10816:9;10812:17;10799:31;10857:18;10849:6;10846:30;10843:117;;;10879:79;;:::i;:::-;10843:117;10984:63;11039:7;11030:6;11019:9;11015:22;10984:63;:::i;:::-;10974:73;;10770:287;10555:509;;;;:::o;11070:329::-;11129:6;11178:2;11166:9;11157:7;11153:23;11149:32;11146:119;;;11184:79;;:::i;:::-;11146:119;11304:1;11329:53;11374:7;11365:6;11354:9;11350:22;11329:53;:::i;:::-;11319:63;;11275:117;11070:329;;;;:::o;11405:704::-;11500:6;11508;11516;11565:2;11553:9;11544:7;11540:23;11536:32;11533:119;;;11571:79;;:::i;:::-;11533:119;11691:1;11716:53;11761:7;11752:6;11741:9;11737:22;11716:53;:::i;:::-;11706:63;;11662:117;11846:2;11835:9;11831:18;11818:32;11877:18;11869:6;11866:30;11863:117;;;11899:79;;:::i;:::-;11863:117;12012:80;12084:7;12075:6;12064:9;12060:22;12012:80;:::i;:::-;11994:98;;;;11789:313;11405:704;;;;;:::o;12115:118::-;12202:24;12220:5;12202:24;:::i;:::-;12197:3;12190:37;12115:118;;:::o;12239:157::-;12344:45;12364:24;12382:5;12364:24;:::i;:::-;12344:45;:::i;:::-;12339:3;12332:58;12239:157;;:::o;12402:109::-;12483:21;12498:5;12483:21;:::i;:::-;12478:3;12471:34;12402:109;;:::o;12517:118::-;12604:24;12622:5;12604:24;:::i;:::-;12599:3;12592:37;12517:118;;:::o;12641:360::-;12727:3;12755:38;12787:5;12755:38;:::i;:::-;12809:70;12872:6;12867:3;12809:70;:::i;:::-;12802:77;;12888:52;12933:6;12928:3;12921:4;12914:5;12910:16;12888:52;:::i;:::-;12965:29;12987:6;12965:29;:::i;:::-;12960:3;12956:39;12949:46;;12731:270;12641:360;;;;:::o;13007:364::-;13095:3;13123:39;13156:5;13123:39;:::i;:::-;13178:71;13242:6;13237:3;13178:71;:::i;:::-;13171:78;;13258:52;13303:6;13298:3;13291:4;13284:5;13280:16;13258:52;:::i;:::-;13335:29;13357:6;13335:29;:::i;:::-;13330:3;13326:39;13319:46;;13099:272;13007:364;;;;:::o;13377:377::-;13483:3;13511:39;13544:5;13511:39;:::i;:::-;13566:89;13648:6;13643:3;13566:89;:::i;:::-;13559:96;;13664:52;13709:6;13704:3;13697:4;13690:5;13686:16;13664:52;:::i;:::-;13741:6;13736:3;13732:16;13725:23;;13487:267;13377:377;;;;:::o;13760:366::-;13902:3;13923:67;13987:2;13982:3;13923:67;:::i;:::-;13916:74;;13999:93;14088:3;13999:93;:::i;:::-;14117:2;14112:3;14108:12;14101:19;;13760:366;;;:::o;14132:::-;14274:3;14295:67;14359:2;14354:3;14295:67;:::i;:::-;14288:74;;14371:93;14460:3;14371:93;:::i;:::-;14489:2;14484:3;14480:12;14473:19;;14132:366;;;:::o;14504:::-;14646:3;14667:67;14731:2;14726:3;14667:67;:::i;:::-;14660:74;;14743:93;14832:3;14743:93;:::i;:::-;14861:2;14856:3;14852:12;14845:19;;14504:366;;;:::o;14876:::-;15018:3;15039:67;15103:2;15098:3;15039:67;:::i;:::-;15032:74;;15115:93;15204:3;15115:93;:::i;:::-;15233:2;15228:3;15224:12;15217:19;;14876:366;;;:::o;15248:::-;15390:3;15411:67;15475:2;15470:3;15411:67;:::i;:::-;15404:74;;15487:93;15576:3;15487:93;:::i;:::-;15605:2;15600:3;15596:12;15589:19;;15248:366;;;:::o;15620:::-;15762:3;15783:67;15847:2;15842:3;15783:67;:::i;:::-;15776:74;;15859:93;15948:3;15859:93;:::i;:::-;15977:2;15972:3;15968:12;15961:19;;15620:366;;;:::o;15992:::-;16134:3;16155:67;16219:2;16214:3;16155:67;:::i;:::-;16148:74;;16231:93;16320:3;16231:93;:::i;:::-;16349:2;16344:3;16340:12;16333:19;;15992:366;;;:::o;16364:::-;16506:3;16527:67;16591:2;16586:3;16527:67;:::i;:::-;16520:74;;16603:93;16692:3;16603:93;:::i;:::-;16721:2;16716:3;16712:12;16705:19;;16364:366;;;:::o;16736:118::-;16823:24;16841:5;16823:24;:::i;:::-;16818:3;16811:37;16736:118;;:::o;16860:256::-;16972:3;16987:75;17058:3;17049:6;16987:75;:::i;:::-;17087:2;17082:3;17078:12;17071:19;;17107:3;17100:10;;16860:256;;;;:::o;17122:435::-;17302:3;17324:95;17415:3;17406:6;17324:95;:::i;:::-;17317:102;;17436:95;17527:3;17518:6;17436:95;:::i;:::-;17429:102;;17548:3;17541:10;;17122:435;;;;;:::o;17563:222::-;17656:4;17694:2;17683:9;17679:18;17671:26;;17707:71;17775:1;17764:9;17760:17;17751:6;17707:71;:::i;:::-;17563:222;;;;:::o;17791:640::-;17986:4;18024:3;18013:9;18009:19;18001:27;;18038:71;18106:1;18095:9;18091:17;18082:6;18038:71;:::i;:::-;18119:72;18187:2;18176:9;18172:18;18163:6;18119:72;:::i;:::-;18201;18269:2;18258:9;18254:18;18245:6;18201:72;:::i;:::-;18320:9;18314:4;18310:20;18305:2;18294:9;18290:18;18283:48;18348:76;18419:4;18410:6;18348:76;:::i;:::-;18340:84;;17791:640;;;;;;;:::o;18437:210::-;18524:4;18562:2;18551:9;18547:18;18539:26;;18575:65;18637:1;18626:9;18622:17;18613:6;18575:65;:::i;:::-;18437:210;;;;:::o;18653:222::-;18746:4;18784:2;18773:9;18769:18;18761:26;;18797:71;18865:1;18854:9;18850:17;18841:6;18797:71;:::i;:::-;18653:222;;;;:::o;18881:313::-;18994:4;19032:2;19021:9;19017:18;19009:26;;19081:9;19075:4;19071:20;19067:1;19056:9;19052:17;19045:47;19109:78;19182:4;19173:6;19109:78;:::i;:::-;19101:86;;18881:313;;;;:::o;19200:419::-;19366:4;19404:2;19393:9;19389:18;19381:26;;19453:9;19447:4;19443:20;19439:1;19428:9;19424:17;19417:47;19481:131;19607:4;19481:131;:::i;:::-;19473:139;;19200:419;;;:::o;19625:::-;19791:4;19829:2;19818:9;19814:18;19806:26;;19878:9;19872:4;19868:20;19864:1;19853:9;19849:17;19842:47;19906:131;20032:4;19906:131;:::i;:::-;19898:139;;19625:419;;;:::o;20050:::-;20216:4;20254:2;20243:9;20239:18;20231:26;;20303:9;20297:4;20293:20;20289:1;20278:9;20274:17;20267:47;20331:131;20457:4;20331:131;:::i;:::-;20323:139;;20050:419;;;:::o;20475:::-;20641:4;20679:2;20668:9;20664:18;20656:26;;20728:9;20722:4;20718:20;20714:1;20703:9;20699:17;20692:47;20756:131;20882:4;20756:131;:::i;:::-;20748:139;;20475:419;;;:::o;20900:::-;21066:4;21104:2;21093:9;21089:18;21081:26;;21153:9;21147:4;21143:20;21139:1;21128:9;21124:17;21117:47;21181:131;21307:4;21181:131;:::i;:::-;21173:139;;20900:419;;;:::o;21325:::-;21491:4;21529:2;21518:9;21514:18;21506:26;;21578:9;21572:4;21568:20;21564:1;21553:9;21549:17;21542:47;21606:131;21732:4;21606:131;:::i;:::-;21598:139;;21325:419;;;:::o;21750:::-;21916:4;21954:2;21943:9;21939:18;21931:26;;22003:9;21997:4;21993:20;21989:1;21978:9;21974:17;21967:47;22031:131;22157:4;22031:131;:::i;:::-;22023:139;;21750:419;;;:::o;22175:::-;22341:4;22379:2;22368:9;22364:18;22356:26;;22428:9;22422:4;22418:20;22414:1;22403:9;22399:17;22392:47;22456:131;22582:4;22456:131;:::i;:::-;22448:139;;22175:419;;;:::o;22600:222::-;22693:4;22731:2;22720:9;22716:18;22708:26;;22744:71;22812:1;22801:9;22797:17;22788:6;22744:71;:::i;:::-;22600:222;;;;:::o;22828:129::-;22862:6;22889:20;;:::i;:::-;22879:30;;22918:33;22946:4;22938:6;22918:33;:::i;:::-;22828:129;;;:::o;22963:75::-;22996:6;23029:2;23023:9;23013:19;;22963:75;:::o;23044:311::-;23121:4;23211:18;23203:6;23200:30;23197:56;;;23233:18;;:::i;:::-;23197:56;23283:4;23275:6;23271:17;23263:25;;23343:4;23337;23333:15;23325:23;;23044:311;;;:::o;23361:::-;23438:4;23528:18;23520:6;23517:30;23514:56;;;23550:18;;:::i;:::-;23514:56;23600:4;23592:6;23588:17;23580:25;;23660:4;23654;23650:15;23642:23;;23361:311;;;:::o;23678:307::-;23739:4;23829:18;23821:6;23818:30;23815:56;;;23851:18;;:::i;:::-;23815:56;23889:29;23911:6;23889:29;:::i;:::-;23881:37;;23973:4;23967;23963:15;23955:23;;23678:307;;;:::o;23991:308::-;24053:4;24143:18;24135:6;24132:30;24129:56;;;24165:18;;:::i;:::-;24129:56;24203:29;24225:6;24203:29;:::i;:::-;24195:37;;24287:4;24281;24277:15;24269:23;;23991:308;;;:::o;24305:98::-;24356:6;24390:5;24384:12;24374:22;;24305:98;;;:::o;24409:99::-;24461:6;24495:5;24489:12;24479:22;;24409:99;;;:::o;24514:168::-;24597:11;24631:6;24626:3;24619:19;24671:4;24666:3;24662:14;24647:29;;24514:168;;;;:::o;24688:169::-;24772:11;24806:6;24801:3;24794:19;24846:4;24841:3;24837:14;24822:29;;24688:169;;;;:::o;24863:148::-;24965:11;25002:3;24987:18;;24863:148;;;;:::o;25017:305::-;25057:3;25076:20;25094:1;25076:20;:::i;:::-;25071:25;;25110:20;25128:1;25110:20;:::i;:::-;25105:25;;25264:1;25196:66;25192:74;25189:1;25186:81;25183:107;;;25270:18;;:::i;:::-;25183:107;25314:1;25311;25307:9;25300:16;;25017:305;;;;:::o;25328:348::-;25368:7;25391:20;25409:1;25391:20;:::i;:::-;25386:25;;25425:20;25443:1;25425:20;:::i;:::-;25420:25;;25613:1;25545:66;25541:74;25538:1;25535:81;25530:1;25523:9;25516:17;25512:105;25509:131;;;25620:18;;:::i;:::-;25509:131;25668:1;25665;25661:9;25650:20;;25328:348;;;;:::o;25682:191::-;25722:4;25742:20;25760:1;25742:20;:::i;:::-;25737:25;;25776:20;25794:1;25776:20;:::i;:::-;25771:25;;25815:1;25812;25809:8;25806:34;;;25820:18;;:::i;:::-;25806:34;25865:1;25862;25858:9;25850:17;;25682:191;;;;:::o;25879:96::-;25916:7;25945:24;25963:5;25945:24;:::i;:::-;25934:35;;25879:96;;;:::o;25981:90::-;26015:7;26058:5;26051:13;26044:21;26033:32;;25981:90;;;:::o;26077:77::-;26114:7;26143:5;26132:16;;26077:77;;;:::o;26160:149::-;26196:7;26236:66;26229:5;26225:78;26214:89;;26160:149;;;:::o;26315:126::-;26352:7;26392:42;26385:5;26381:54;26370:65;;26315:126;;;:::o;26447:77::-;26484:7;26513:5;26502:16;;26447:77;;;:::o;26530:154::-;26614:6;26609:3;26604;26591:30;26676:1;26667:6;26662:3;26658:16;26651:27;26530:154;;;:::o;26690:307::-;26758:1;26768:113;26782:6;26779:1;26776:13;26768:113;;;26867:1;26862:3;26858:11;26852:18;26848:1;26843:3;26839:11;26832:39;26804:2;26801:1;26797:10;26792:15;;26768:113;;;26899:6;26896:1;26893:13;26890:101;;;26979:1;26970:6;26965:3;26961:16;26954:27;26890:101;26739:258;26690:307;;;:::o;27003:320::-;27047:6;27084:1;27078:4;27074:12;27064:22;;27131:1;27125:4;27121:12;27152:18;27142:81;;27208:4;27200:6;27196:17;27186:27;;27142:81;27270:2;27262:6;27259:14;27239:18;27236:38;27233:84;;;27289:18;;:::i;:::-;27233:84;27054:269;27003:320;;;:::o;27329:281::-;27412:27;27434:4;27412:27;:::i;:::-;27404:6;27400:40;27542:6;27530:10;27527:22;27506:18;27494:10;27491:34;27488:62;27485:88;;;27553:18;;:::i;:::-;27485:88;27593:10;27589:2;27582:22;27372:238;27329:281;;:::o;27616:233::-;27655:3;27678:24;27696:5;27678:24;:::i;:::-;27669:33;;27724:66;27717:5;27714:77;27711:103;;;27794:18;;:::i;:::-;27711:103;27841:1;27834:5;27830:13;27823:20;;27616:233;;;:::o;27855:100::-;27894:7;27923:26;27943:5;27923:26;:::i;:::-;27912:37;;27855:100;;;:::o;27961:94::-;28000:7;28029:20;28043:5;28029:20;:::i;:::-;28018:31;;27961:94;;;:::o;28061:180::-;28109:77;28106:1;28099:88;28206:4;28203:1;28196:15;28230:4;28227:1;28220:15;28247:180;28295:77;28292:1;28285:88;28392:4;28389:1;28382:15;28416:4;28413:1;28406:15;28433:180;28481:77;28478:1;28471:88;28578:4;28575:1;28568:15;28602:4;28599:1;28592:15;28619:180;28667:77;28664:1;28657:88;28764:4;28761:1;28754:15;28788:4;28785:1;28778:15;28805:117;28914:1;28911;28904:12;28928:117;29037:1;29034;29027:12;29051:117;29160:1;29157;29150:12;29174:117;29283:1;29280;29273:12;29297:117;29406:1;29403;29396:12;29420:117;29529:1;29526;29519:12;29543:102;29584:6;29635:2;29631:7;29626:2;29619:5;29615:14;29611:28;29601:38;;29543:102;;;:::o;29651:94::-;29684:8;29732:5;29728:2;29724:14;29703:35;;29651:94;;;:::o;29751:225::-;29891:34;29887:1;29879:6;29875:14;29868:58;29960:8;29955:2;29947:6;29943:15;29936:33;29751:225;:::o;29982:175::-;30122:27;30118:1;30110:6;30106:14;30099:51;29982:175;:::o;30163:221::-;30303:34;30299:1;30291:6;30287:14;30280:58;30372:4;30367:2;30359:6;30355:15;30348:29;30163:221;:::o;30390:::-;30530:34;30526:1;30518:6;30514:14;30507:58;30599:4;30594:2;30586:6;30582:15;30575:29;30390:221;:::o;30617:182::-;30757:34;30753:1;30745:6;30741:14;30734:58;30617:182;:::o;30805:171::-;30945:23;30941:1;30933:6;30929:14;30922:47;30805:171;:::o;30982:170::-;31122:22;31118:1;31110:6;31106:14;31099:46;30982:170;:::o;31158:164::-;31298:16;31294:1;31286:6;31282:14;31275:40;31158:164;:::o;31328:122::-;31401:24;31419:5;31401:24;:::i;:::-;31394:5;31391:35;31381:63;;31440:1;31437;31430:12;31381:63;31328:122;:::o;31456:116::-;31526:21;31541:5;31526:21;:::i;:::-;31519:5;31516:32;31506:60;;31562:1;31559;31552:12;31506:60;31456:116;:::o;31578:122::-;31651:24;31669:5;31651:24;:::i;:::-;31644:5;31641:35;31631:63;;31690:1;31687;31680:12;31631:63;31578:122;:::o;31706:120::-;31778:23;31795:5;31778:23;:::i;:::-;31771:5;31768:34;31758:62;;31816:1;31813;31806:12;31758:62;31706:120;:::o;31832:122::-;31905:24;31923:5;31905:24;:::i;:::-;31898:5;31895:35;31885:63;;31944:1;31941;31934:12;31885:63;31832:122;:::o

Swarm Source

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