ETH Price: $3,488.16 (+2.35%)
Gas: 10 Gwei

Token

Capies (CAPIES)
 

Overview

Max Total Supply

10,000 CAPIES

Holders

2,549

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
firerus.eth
Balance
9 CAPIES
0xb6ed0d1b01e577a7e02f9a084e54aafc6ab38d20
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:
CAPIES

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 11 : capies.sol
pragma solidity 0.8.17;
// SPDX-License-Identifier: MIT

import "https://github.com/chiru-labs/ERC721A/blob/main/contracts/extensions/ERC721ABurnable.sol";
import "https://github.com/chiru-labs/ERC721A/blob/main/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";

/**
 * Only EOA accounts permitted
*/
error EOAOnly();
/**
 * Address exceeding allowance
*/
error AllowanceExceeded();
/**
 * Maximum supply reached
*/
error MaxSupplyExceeded();
/**
 * User provided incorrect merkle proof
*/
error IncorrectProof();
/**
 * Exceeding whitelist supply
*/
error WhitelistSupplyExceeded();

contract CAPIES is ERC721ABurnable, ERC721AQueryable, Ownable, Pausable {
    constructor(
        string memory _baseTokenURI
    ) ERC721A("Capies", "CAPIES") {
        baseTokenURI = _baseTokenURI;
        merkleRoot[0] = 0x4a9e28a1615f7480a2cf10423357dbea63a2eeb72b106c97589f2e54385846fb;
        merkleRoot[1] = 0x953ba90ea587a1e5fd8a831aacc5f6de88a819e02849864c803b74e369500d8b;
        _pause();
    }

    ////////////////////////////////////////////////
    /// Variables
    ////////////////////////////////////////////////
    mapping(address => uint) public amountMinted;
    mapping(uint => bytes32) private merkleRoot;
    string private baseTokenURI;
    uint private MAX_SUPPLY = 10000;
    uint private WL_ALLOCATION = 8000;
    uint private ACC_LIMIT = 2;
    bool private revealed;
    bool public skipPremint;

    ////////////////////////////////////////////////
    /// Modifiers
    ////////////////////////////////////////////////
    modifier onlyEOA {
        if (msg.sender != tx.origin) revert EOAOnly();
        _;
    }

    ////////////////////////////////////////////////
    /// Public Functions
    ////////////////////////////////////////////////
    function mint(bytes32[] calldata _merkleProof, uint _amount) public whenNotPaused onlyEOA {
        uint supply = totalSupply();
        if (amountMinted[msg.sender] + _amount > ACC_LIMIT) revert AllowanceExceeded();
        if (supply + _amount > MAX_SUPPLY) revert MaxSupplyExceeded();

        if (supply < WL_ALLOCATION) {                   // First 8000 (Haus + Muri holders)
            if (supply + _amount <= WL_ALLOCATION) {
                _WLVerify(_merkleProof, 0);
            } else {
                revert WhitelistSupplyExceeded();
            }
        } else if (supply >= WL_ALLOCATION && !skipPremint) {            // NEXT 2000 (Premint)
            if (amountMinted[msg.sender] + _amount > 1) revert AllowanceExceeded();
            _WLVerify(_merkleProof, 1);
        }

        unchecked { amountMinted[msg.sender] += _amount; }
        _mint(msg.sender, _amount);
    }

    function mintAdmin(uint _amount) public onlyOwner {
        uint supply = totalSupply();
        if (supply + _amount > MAX_SUPPLY) revert MaxSupplyExceeded();
        _mint(msg.sender, _amount);
    }

    function _WLVerify(bytes32[] calldata _merkleProof, uint stage) internal view {
        if (
            !MerkleProof.verify(
                _merkleProof,
                merkleRoot[stage],
                keccak256(abi.encodePacked(msg.sender))
            )
        ) revert IncorrectProof();
    }

    ////////////////////////////////////////////////
    /// Overrides
    ////////////////////////////////////////////////
    function _startTokenId() internal view virtual override returns (uint256) {
        return 0;
    }

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

    function tokenURI(uint256 tokenId) public view virtual override(ERC721A, IERC721A) returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    ////////////////////////////////////////////////
    /// Owner functions
    ///////////////////////////////////////////////
    function doSkipPremint() external onlyOwner {
        skipPremint = true;
    }

    function setMerkleRoot(bytes32 _newRoot, uint256 stage) external onlyOwner {
        merkleRoot[stage] = _newRoot;
    }

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

    function setPaused(bool _state) external onlyOwner {
        _state ? _pause() : _unpause();
    }

    function reveal() external onlyOwner {
        revealed = true;
    }
}

File 2 of 11 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 3 of 11 : 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 4 of 11 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 6 of 11 : ERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721ABurnable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721ABurnable.
 *
 * @dev ERC721A token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual override {
        _burn(tokenId, true);
    }
}

File 7 of 11 : 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 8 of 11 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 9 of 11 : IERC721ABurnable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of ERC721ABurnable.
 */
interface IERC721ABurnable is IERC721A {
    /**
     * @dev Burns `tokenId`. See {ERC721A-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) external;
}

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

pragma solidity ^0.8.0;

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

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

File 11 of 11 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllowanceExceeded","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"EOAOnly","type":"error"},{"inputs":[],"name":"IncorrectProof","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MaxSupplyExceeded","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"},{"inputs":[],"name":"WhitelistSupplyExceeded","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"doSkipPremint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"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":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"_newRoot","type":"bytes32"},{"internalType":"uint256","name":"stage","type":"uint256"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"skipPremint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600c55611f40600d556002600e553480156200002257600080fd5b50604051620045a6380380620045a6833981810160405281019062000048919062000512565b6040518060400160405280600681526020017f43617069657300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f43415049455300000000000000000000000000000000000000000000000000008152508160029081620000c59190620007ae565b508060039081620000d79190620007ae565b50620000e8620001cb60201b60201c565b60008190555050506200011062000104620001d060201b60201c565b620001d860201b60201c565b6000600860146101000a81548160ff02191690831515021790555080600b90816200013c9190620007ae565b507f4a9e28a1615f7480a2cf10423357dbea63a2eeb72b106c97589f2e54385846fb60001b600a6000808152602001908152602001600020819055507f953ba90ea587a1e5fd8a831aacc5f6de88a819e02849864c803b74e369500d8b60001b600a60006001815260200190815260200160002081905550620001c46200029e60201b60201c565b506200097a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ae6200031360201b60201c565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002fa620001d060201b60201c565b604051620003099190620008da565b60405180910390a1565b620003236200036860201b60201c565b1562000366576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035d9062000958565b60405180910390fd5b565b6000600860149054906101000a900460ff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003e8826200039d565b810181811067ffffffffffffffff821117156200040a5762000409620003ae565b5b80604052505050565b60006200041f6200037f565b90506200042d8282620003dd565b919050565b600067ffffffffffffffff82111562000450576200044f620003ae565b5b6200045b826200039d565b9050602081019050919050565b60005b83811015620004885780820151818401526020810190506200046b565b60008484015250505050565b6000620004ab620004a58462000432565b62000413565b905082815260208101848484011115620004ca57620004c962000398565b5b620004d784828562000468565b509392505050565b600082601f830112620004f757620004f662000393565b5b81516200050984826020860162000494565b91505092915050565b6000602082840312156200052b576200052a62000389565b5b600082015167ffffffffffffffff8111156200054c576200054b6200038e565b5b6200055a84828501620004df565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005b657607f821691505b602082108103620005cc57620005cb6200056e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006367fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005f7565b620006428683620005f7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200068f6200068962000683846200065a565b62000664565b6200065a565b9050919050565b6000819050919050565b620006ab836200066e565b620006c3620006ba8262000696565b84845462000604565b825550505050565b600090565b620006da620006cb565b620006e7818484620006a0565b505050565b5b818110156200070f5762000703600082620006d0565b600181019050620006ed565b5050565b601f8211156200075e576200072881620005d2565b6200073384620005e7565b8101602085101562000743578190505b6200075b6200075285620005e7565b830182620006ec565b50505b505050565b600082821c905092915050565b6000620007836000198460080262000763565b1980831691505092915050565b60006200079e838362000770565b9150826002028217905092915050565b620007b98262000563565b67ffffffffffffffff811115620007d557620007d4620003ae565b5b620007e182546200059d565b620007ee82828562000713565b600060209050601f83116001811462000826576000841562000811578287015190505b6200081d858262000790565b8655506200088d565b601f1984166200083686620005d2565b60005b82811015620008605784890151825560018201915060208501945060208101905062000839565b868310156200088057848901516200087c601f89168262000770565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008c28262000895565b9050919050565b620008d481620008b5565b82525050565b6000602082019050620008f16000830184620008c9565b92915050565b600082825260208201905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000940601083620008f7565b91506200094d8262000908565b602082019050919050565b60006020820190508181036000830152620009738162000931565b9050919050565b613c1c806200098a6000396000f3fe6080604052600436106101e35760003560e01c8063677ab70b11610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146106cc578063cbe6ffe714610709578063e985e9c514610720578063f2fde38b1461075d576101e3565b8063a22cb46514610633578063a475b5dd1461065c578063b88d4fde14610673578063c23dc68f1461068f576101e3565b80638462151c116100d15780638462151c146105635780638da5cb5b146105a057806395d89b41146105cb57806399a2557a146105f6576101e3565b8063677ab70b146104bd57806370a08231146104e6578063715018a6146105235780637c382d0b1461053a576101e3565b806342966c681161017a57806355f804b31161014957806355f804b3146103ef5780635bbb2177146104185780635c975abb146104555780636352211e14610480576101e3565b806342966c6814610335578063438a67e71461035e57806345de0d9b1461039b57806346356cd4146103c4576101e3565b806316c38b3c116101b657806316c38b3c146102a957806318160ddd146102d257806323b872dd146102fd57806342842e0e14610319576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061298a565b610786565b60405161021c91906129d2565b60405180910390f35b34801561023157600080fd5b5061023a610818565b6040516102479190612a7d565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612ad5565b6108aa565b6040516102849190612b43565b60405180910390f35b6102a760048036038101906102a29190612b8a565b610929565b005b3480156102b557600080fd5b506102d060048036038101906102cb9190612bf6565b610a6d565b005b3480156102de57600080fd5b506102e7610a93565b6040516102f49190612c32565b60405180910390f35b61031760048036038101906103129190612c4d565b610aaa565b005b610333600480360381019061032e9190612c4d565b610dcc565b005b34801561034157600080fd5b5061035c60048036038101906103579190612ad5565b610dec565b005b34801561036a57600080fd5b5061038560048036038101906103809190612ca0565b610dfa565b6040516103929190612c32565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190612d32565b610e12565b005b3480156103d057600080fd5b506103d96110d2565b6040516103e691906129d2565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190612de8565b6110e5565b005b34801561042457600080fd5b5061043f600480360381019061043a9190612e8b565b611103565b60405161044c919061303b565b60405180910390f35b34801561046157600080fd5b5061046a6111c6565b60405161047791906129d2565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190612ad5565b6111dd565b6040516104b49190612b43565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df9190612ad5565b6111ef565b005b3480156104f257600080fd5b5061050d60048036038101906105089190612ca0565b611258565b60405161051a9190612c32565b60405180910390f35b34801561052f57600080fd5b50610538611310565b005b34801561054657600080fd5b50610561600480360381019061055c9190613093565b611324565b005b34801561056f57600080fd5b5061058a60048036038101906105859190612ca0565b611348565b6040516105979190613191565b60405180910390f35b3480156105ac57600080fd5b506105b561148b565b6040516105c29190612b43565b60405180910390f35b3480156105d757600080fd5b506105e06114b5565b6040516105ed9190612a7d565b60405180910390f35b34801561060257600080fd5b5061061d600480360381019061061891906131b3565b611547565b60405161062a9190613191565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190613206565b611753565b005b34801561066857600080fd5b5061067161185e565b005b61068d60048036038101906106889190613376565b611883565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612ad5565b6118f6565b6040516106c3919061344e565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612ad5565b611960565b6040516107009190612a7d565b60405180910390f35b34801561071557600080fd5b5061071e611a1c565b005b34801561072c57600080fd5b5061074760048036038101906107429190613469565b611a41565b60405161075491906129d2565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612ca0565b611ad5565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108115750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610827906134d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610853906134d8565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b60006108b582611b58565b6108eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610934826111dd565b90508073ffffffffffffffffffffffffffffffffffffffff16610955611bb7565b73ffffffffffffffffffffffffffffffffffffffff16146109b8576109818161097c611bb7565b611a41565b6109b7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a75611bbf565b80610a8757610a82611c3d565b610a90565b610a8f611ca0565b5b50565b6000610a9d611d03565b6001546000540303905090565b6000610ab582611d08565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b1c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b2884611dd4565b91509150610b3e8187610b39611bb7565b611dfb565b610b8a57610b5386610b4e611bb7565b611a41565b610b89576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610bf0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bfd8686866001611e3f565b8015610c0857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cd685610cb2888887611e45565b7c020000000000000000000000000000000000000000000000000000000017611e6d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d5c5760006001850190506000600460008381526020019081526020016000205403610d5a576000548114610d59578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dc48686866001611e98565b505050505050565b610de783838360405180602001604052806000815250611883565b505050565b610df7816001611e9e565b50565b60096020528060005260406000206000915090505481565b610e1a6120f0565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e7f576040517fd26e878f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610e89610a93565b9050600e5482600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ed99190613538565b1115610f11576040517fc45cb51300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c548282610f209190613538565b1115610f58576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d54811015610fbe57600d548282610f719190613538565b11610f8757610f828484600061213a565b610fb9565b6040517f1815270200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611075565b600d548110158015610fdd5750600f60019054906101000a900460ff16155b1561107457600182600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461102f9190613538565b1115611067576040517fc45cb51300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110738484600161213a565b5b5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506110cc33836121f9565b50505050565b600f60019054906101000a900460ff1681565b6110ed611bbf565b8181600b91826110fe929190613723565b505050565b6060600083839050905060008167ffffffffffffffff8111156111295761112861324b565b5b60405190808252806020026020018201604052801561116257816020015b61114f6128cf565b8152602001906001900390816111475790505b50905060005b8281146111ba57611191868683818110611185576111846137f3565b5b905060200201356118f6565b8282815181106111a4576111a36137f3565b5b6020026020010181905250806001019050611168565b50809250505092915050565b6000600860149054906101000a900460ff16905090565b60006111e882611d08565b9050919050565b6111f7611bbf565b6000611201610a93565b9050600c5482826112129190613538565b111561124a576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61125433836121f9565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112bf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611318611bbf565b61132260006123b4565b565b61132c611bbf565b81600a6000838152602001908152602001600020819055505050565b6060600080600061135885611258565b905060008167ffffffffffffffff8111156113765761137561324b565b5b6040519080825280602002602001820160405280156113a45781602001602082028036833780820191505090505b5090506113af6128cf565b60006113b9611d03565b90505b83861461147d576113cc8161247a565b9150816040015161147257600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461141757816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036114715780838780600101985081518110611464576114636137f3565b5b6020026020010181815250505b5b8060010190506113bc565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114c4906134d8565b80601f01602080910402602001604051908101604052809291908181526020018280546114f0906134d8565b801561153d5780601f106115125761010080835404028352916020019161153d565b820191906000526020600020905b81548152906001019060200180831161152057829003601f168201915b5050505050905090565b6060818310611582576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061158d6124a5565b9050611597611d03565b8510156115a9576115a6611d03565b94505b808411156115b5578093505b60006115c087611258565b9050848610156115e35760008686039050818110156115dd578091505b506115e8565b600090505b60008167ffffffffffffffff8111156116045761160361324b565b5b6040519080825280602002602001820160405280156116325781602001602082028036833780820191505090505b50905060008203611649578094505050505061174c565b6000611654886118f6565b90506000816040015161166957816000015190505b60008990505b88811415801561167f5750848714155b1561173e5761168d8161247a565b9250826040015161173357600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146116d857826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117325780848880600101995081518110611725576117246137f3565b5b6020026020010181815250505b5b80600101905061166f565b508583528296505050505050505b9392505050565b8060076000611760611bb7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661180d611bb7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161185291906129d2565b60405180910390a35050565b611866611bbf565b6001600f60006101000a81548160ff021916908315150217905550565b61188e848484610aaa565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118f0576118b9848484846124ae565b6118ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6118fe6128cf565b6119066128cf565b61190e611d03565b831080611922575061191e6124a5565b8310155b15611930578091505061195b565b6119398361247a565b905080604001511561194e578091505061195b565b611957836125fe565b9150505b919050565b606061196b82611b58565b6119a1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119ab61261e565b9050600f60009054906101000a900460ff166119ca5780915050611a17565b60008151036119e85760405180602001604052806000815250611a13565b806119f2846126b0565b604051602001611a0392919061385e565b6040516020818303038152906040525b9150505b919050565b611a24611bbf565b6001600f60016101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611add611bbf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b43906138f4565b60405180910390fd5b611b55816123b4565b50565b600081611b63611d03565b11158015611b72575060005482105b8015611bb0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611bc7612700565b73ffffffffffffffffffffffffffffffffffffffff16611be561148b565b73ffffffffffffffffffffffffffffffffffffffff1614611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3290613960565b60405180910390fd5b565b611c45612708565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c89612700565b604051611c969190612b43565b60405180910390a1565b611ca86120f0565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611cec612700565b604051611cf99190612b43565b60405180910390a1565b600090565b60008082905080611d17611d03565b11611d9d57600054811015611d9c5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d9a575b60008103611d90576004600083600190039350838152602001908152602001600020549050611d66565b8092505050611dcf565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e5c868684612751565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611ea983611d08565b90506000819050600080611ebc86611dd4565b915091508415611f2557611ed88184611ed3611bb7565b611dfb565b611f2457611eed83611ee8611bb7565b611a41565b611f23576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611f33836000886001611e3f565b8015611f3e57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fe683611fa385600088611e45565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611e6d565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085160361206c576000600187019050600060046000838152602001908152602001600020540361206a576000548114612069578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120d6836000886001611e98565b600160008154809291906001019190505550505050505050565b6120f86111c6565b15612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f906139cc565b60405180910390fd5b565b6121bf838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a600084815260200190815260200160002054336040516020016121a49190613a34565b6040516020818303038152906040528051906020012061275a565b6121f4576040517e27b15500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60008054905060008203612239576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122466000848385611e3f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122bd836122ae6000866000611e45565b6122b785612771565b17611e6d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461235e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612323565b5060008203612399576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123af6000848385611e98565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124826128cf565b61249e6004600084815260200190815260200160002054612781565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124d4611bb7565b8786866040518563ffffffff1660e01b81526004016124f69493929190613aa4565b6020604051808303816000875af192505050801561253257506040513d601f19601f8201168201806040525081019061252f9190613b05565b60015b6125ab573d8060008114612562576040519150601f19603f3d011682016040523d82523d6000602084013e612567565b606091505b5060008151036125a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6126066128cf565b61261761261283611d08565b612781565b9050919050565b6060600b805461262d906134d8565b80601f0160208091040260200160405190810160405280929190818152602001828054612659906134d8565b80156126a65780601f1061267b576101008083540402835291602001916126a6565b820191906000526020600020905b81548152906001019060200180831161268957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156126eb57600184039350600a81066030018453600a81049050806126c9575b50828103602084039350808452505050919050565b600033905090565b6127106111c6565b61274f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274690613b7e565b60405180910390fd5b565b60009392505050565b6000826127678584612837565b1490509392505050565b60006001821460e11b9050919050565b6127896128cf565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b84518110156128825761286d828683815181106128605761285f6137f3565b5b602002602001015161288d565b9150808061287a90613b9e565b915050612840565b508091505092915050565b60008183106128a5576128a082846128b8565b6128b0565b6128af83836128b8565b5b905092915050565b600082600052816020526040600020905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61296781612932565b811461297257600080fd5b50565b6000813590506129848161295e565b92915050565b6000602082840312156129a05761299f612928565b5b60006129ae84828501612975565b91505092915050565b60008115159050919050565b6129cc816129b7565b82525050565b60006020820190506129e760008301846129c3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a27578082015181840152602081019050612a0c565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a4f826129ed565b612a5981856129f8565b9350612a69818560208601612a09565b612a7281612a33565b840191505092915050565b60006020820190508181036000830152612a978184612a44565b905092915050565b6000819050919050565b612ab281612a9f565b8114612abd57600080fd5b50565b600081359050612acf81612aa9565b92915050565b600060208284031215612aeb57612aea612928565b5b6000612af984828501612ac0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b2d82612b02565b9050919050565b612b3d81612b22565b82525050565b6000602082019050612b586000830184612b34565b92915050565b612b6781612b22565b8114612b7257600080fd5b50565b600081359050612b8481612b5e565b92915050565b60008060408385031215612ba157612ba0612928565b5b6000612baf85828601612b75565b9250506020612bc085828601612ac0565b9150509250929050565b612bd3816129b7565b8114612bde57600080fd5b50565b600081359050612bf081612bca565b92915050565b600060208284031215612c0c57612c0b612928565b5b6000612c1a84828501612be1565b91505092915050565b612c2c81612a9f565b82525050565b6000602082019050612c476000830184612c23565b92915050565b600080600060608486031215612c6657612c65612928565b5b6000612c7486828701612b75565b9350506020612c8586828701612b75565b9250506040612c9686828701612ac0565b9150509250925092565b600060208284031215612cb657612cb5612928565b5b6000612cc484828501612b75565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612cf257612cf1612ccd565b5b8235905067ffffffffffffffff811115612d0f57612d0e612cd2565b5b602083019150836020820283011115612d2b57612d2a612cd7565b5b9250929050565b600080600060408486031215612d4b57612d4a612928565b5b600084013567ffffffffffffffff811115612d6957612d6861292d565b5b612d7586828701612cdc565b93509350506020612d8886828701612ac0565b9150509250925092565b60008083601f840112612da857612da7612ccd565b5b8235905067ffffffffffffffff811115612dc557612dc4612cd2565b5b602083019150836001820283011115612de157612de0612cd7565b5b9250929050565b60008060208385031215612dff57612dfe612928565b5b600083013567ffffffffffffffff811115612e1d57612e1c61292d565b5b612e2985828601612d92565b92509250509250929050565b60008083601f840112612e4b57612e4a612ccd565b5b8235905067ffffffffffffffff811115612e6857612e67612cd2565b5b602083019150836020820283011115612e8457612e83612cd7565b5b9250929050565b60008060208385031215612ea257612ea1612928565b5b600083013567ffffffffffffffff811115612ec057612ebf61292d565b5b612ecc85828601612e35565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f0d81612b22565b82525050565b600067ffffffffffffffff82169050919050565b612f3081612f13565b82525050565b612f3f816129b7565b82525050565b600062ffffff82169050919050565b612f5d81612f45565b82525050565b608082016000820151612f796000850182612f04565b506020820151612f8c6020850182612f27565b506040820151612f9f6040850182612f36565b506060820151612fb26060850182612f54565b50505050565b6000612fc48383612f63565b60808301905092915050565b6000602082019050919050565b6000612fe882612ed8565b612ff28185612ee3565b9350612ffd83612ef4565b8060005b8381101561302e5781516130158882612fb8565b975061302083612fd0565b925050600181019050613001565b5085935050505092915050565b600060208201905081810360008301526130558184612fdd565b905092915050565b6000819050919050565b6130708161305d565b811461307b57600080fd5b50565b60008135905061308d81613067565b92915050565b600080604083850312156130aa576130a9612928565b5b60006130b88582860161307e565b92505060206130c985828601612ac0565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61310881612a9f565b82525050565b600061311a83836130ff565b60208301905092915050565b6000602082019050919050565b600061313e826130d3565b61314881856130de565b9350613153836130ef565b8060005b8381101561318457815161316b888261310e565b975061317683613126565b925050600181019050613157565b5085935050505092915050565b600060208201905081810360008301526131ab8184613133565b905092915050565b6000806000606084860312156131cc576131cb612928565b5b60006131da86828701612b75565b93505060206131eb86828701612ac0565b92505060406131fc86828701612ac0565b9150509250925092565b6000806040838503121561321d5761321c612928565b5b600061322b85828601612b75565b925050602061323c85828601612be1565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61328382612a33565b810181811067ffffffffffffffff821117156132a2576132a161324b565b5b80604052505050565b60006132b561291e565b90506132c1828261327a565b919050565b600067ffffffffffffffff8211156132e1576132e061324b565b5b6132ea82612a33565b9050602081019050919050565b82818337600083830152505050565b6000613319613314846132c6565b6132ab565b90508281526020810184848401111561333557613334613246565b5b6133408482856132f7565b509392505050565b600082601f83011261335d5761335c612ccd565b5b813561336d848260208601613306565b91505092915050565b600080600080608085870312156133905761338f612928565b5b600061339e87828801612b75565b94505060206133af87828801612b75565b93505060406133c087828801612ac0565b925050606085013567ffffffffffffffff8111156133e1576133e061292d565b5b6133ed87828801613348565b91505092959194509250565b60808201600082015161340f6000850182612f04565b5060208201516134226020850182612f27565b5060408201516134356040850182612f36565b5060608201516134486060850182612f54565b50505050565b600060808201905061346360008301846133f9565b92915050565b600080604083850312156134805761347f612928565b5b600061348e85828601612b75565b925050602061349f85828601612b75565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134f057607f821691505b602082108103613503576135026134a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061354382612a9f565b915061354e83612a9f565b925082820190508082111561356657613565613509565b5b92915050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261359c565b6135e3868361359c565b95508019841693508086168417925050509392505050565b6000819050919050565b600061362061361b61361684612a9f565b6135fb565b612a9f565b9050919050565b6000819050919050565b61363a83613605565b61364e61364682613627565b8484546135a9565b825550505050565b600090565b613663613656565b61366e818484613631565b505050565b5b818110156136925761368760008261365b565b600181019050613674565b5050565b601f8211156136d7576136a881613577565b6136b18461358c565b810160208510156136c0578190505b6136d46136cc8561358c565b830182613673565b50505b505050565b600082821c905092915050565b60006136fa600019846008026136dc565b1980831691505092915050565b600061371383836136e9565b9150826002028217905092915050565b61372d838361356c565b67ffffffffffffffff8111156137465761374561324b565b5b61375082546134d8565b61375b828285613696565b6000601f83116001811461378a5760008415613778578287013590505b6137828582613707565b8655506137ea565b601f19841661379886613577565b60005b828110156137c05784890135825560018201915060208501945060208101905061379b565b868310156137dd57848901356137d9601f8916826136e9565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b6000613838826129ed565b6138428185613822565b9350613852818560208601612a09565b80840191505092915050565b600061386a828561382d565b9150613876828461382d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138de6026836129f8565b91506138e982613882565b604082019050919050565b6000602082019050818103600083015261390d816138d1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061394a6020836129f8565b915061395582613914565b602082019050919050565b600060208201905081810360008301526139798161393d565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006139b66010836129f8565b91506139c182613980565b602082019050919050565b600060208201905081810360008301526139e5816139a9565b9050919050565b60008160601b9050919050565b6000613a04826139ec565b9050919050565b6000613a16826139f9565b9050919050565b613a2e613a2982612b22565b613a0b565b82525050565b6000613a408284613a1d565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000613a7682613a4f565b613a808185613a5a565b9350613a90818560208601612a09565b613a9981612a33565b840191505092915050565b6000608082019050613ab96000830187612b34565b613ac66020830186612b34565b613ad36040830185612c23565b8181036060830152613ae58184613a6b565b905095945050505050565b600081519050613aff8161295e565b92915050565b600060208284031215613b1b57613b1a612928565b5b6000613b2984828501613af0565b91505092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613b686014836129f8565b9150613b7382613b32565b602082019050919050565b60006020820190508181036000830152613b9781613b5b565b9050919050565b6000613ba982612a9f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bdb57613bda613509565b5b60018201905091905056fea2646970667358221220db6af6995faa5320a24591ba0c7dd3ab371fb68b22cdecf0067a008e45be39fd64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d625863745537424e367942746432416e36505557446a4673796b4b4861774a5a33736d5668706135543137500000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063677ab70b11610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146106cc578063cbe6ffe714610709578063e985e9c514610720578063f2fde38b1461075d576101e3565b8063a22cb46514610633578063a475b5dd1461065c578063b88d4fde14610673578063c23dc68f1461068f576101e3565b80638462151c116100d15780638462151c146105635780638da5cb5b146105a057806395d89b41146105cb57806399a2557a146105f6576101e3565b8063677ab70b146104bd57806370a08231146104e6578063715018a6146105235780637c382d0b1461053a576101e3565b806342966c681161017a57806355f804b31161014957806355f804b3146103ef5780635bbb2177146104185780635c975abb146104555780636352211e14610480576101e3565b806342966c6814610335578063438a67e71461035e57806345de0d9b1461039b57806346356cd4146103c4576101e3565b806316c38b3c116101b657806316c38b3c146102a957806318160ddd146102d257806323b872dd146102fd57806342842e0e14610319576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061298a565b610786565b60405161021c91906129d2565b60405180910390f35b34801561023157600080fd5b5061023a610818565b6040516102479190612a7d565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612ad5565b6108aa565b6040516102849190612b43565b60405180910390f35b6102a760048036038101906102a29190612b8a565b610929565b005b3480156102b557600080fd5b506102d060048036038101906102cb9190612bf6565b610a6d565b005b3480156102de57600080fd5b506102e7610a93565b6040516102f49190612c32565b60405180910390f35b61031760048036038101906103129190612c4d565b610aaa565b005b610333600480360381019061032e9190612c4d565b610dcc565b005b34801561034157600080fd5b5061035c60048036038101906103579190612ad5565b610dec565b005b34801561036a57600080fd5b5061038560048036038101906103809190612ca0565b610dfa565b6040516103929190612c32565b60405180910390f35b3480156103a757600080fd5b506103c260048036038101906103bd9190612d32565b610e12565b005b3480156103d057600080fd5b506103d96110d2565b6040516103e691906129d2565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190612de8565b6110e5565b005b34801561042457600080fd5b5061043f600480360381019061043a9190612e8b565b611103565b60405161044c919061303b565b60405180910390f35b34801561046157600080fd5b5061046a6111c6565b60405161047791906129d2565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a29190612ad5565b6111dd565b6040516104b49190612b43565b60405180910390f35b3480156104c957600080fd5b506104e460048036038101906104df9190612ad5565b6111ef565b005b3480156104f257600080fd5b5061050d60048036038101906105089190612ca0565b611258565b60405161051a9190612c32565b60405180910390f35b34801561052f57600080fd5b50610538611310565b005b34801561054657600080fd5b50610561600480360381019061055c9190613093565b611324565b005b34801561056f57600080fd5b5061058a60048036038101906105859190612ca0565b611348565b6040516105979190613191565b60405180910390f35b3480156105ac57600080fd5b506105b561148b565b6040516105c29190612b43565b60405180910390f35b3480156105d757600080fd5b506105e06114b5565b6040516105ed9190612a7d565b60405180910390f35b34801561060257600080fd5b5061061d600480360381019061061891906131b3565b611547565b60405161062a9190613191565b60405180910390f35b34801561063f57600080fd5b5061065a60048036038101906106559190613206565b611753565b005b34801561066857600080fd5b5061067161185e565b005b61068d60048036038101906106889190613376565b611883565b005b34801561069b57600080fd5b506106b660048036038101906106b19190612ad5565b6118f6565b6040516106c3919061344e565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612ad5565b611960565b6040516107009190612a7d565b60405180910390f35b34801561071557600080fd5b5061071e611a1c565b005b34801561072c57600080fd5b5061074760048036038101906107429190613469565b611a41565b60405161075491906129d2565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612ca0565b611ad5565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108115750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610827906134d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610853906134d8565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b60006108b582611b58565b6108eb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610934826111dd565b90508073ffffffffffffffffffffffffffffffffffffffff16610955611bb7565b73ffffffffffffffffffffffffffffffffffffffff16146109b8576109818161097c611bb7565b611a41565b6109b7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a75611bbf565b80610a8757610a82611c3d565b610a90565b610a8f611ca0565b5b50565b6000610a9d611d03565b6001546000540303905090565b6000610ab582611d08565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b1c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b2884611dd4565b91509150610b3e8187610b39611bb7565b611dfb565b610b8a57610b5386610b4e611bb7565b611a41565b610b89576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610bf0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bfd8686866001611e3f565b8015610c0857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cd685610cb2888887611e45565b7c020000000000000000000000000000000000000000000000000000000017611e6d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d5c5760006001850190506000600460008381526020019081526020016000205403610d5a576000548114610d59578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dc48686866001611e98565b505050505050565b610de783838360405180602001604052806000815250611883565b505050565b610df7816001611e9e565b50565b60096020528060005260406000206000915090505481565b610e1a6120f0565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e7f576040517fd26e878f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610e89610a93565b9050600e5482600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ed99190613538565b1115610f11576040517fc45cb51300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c548282610f209190613538565b1115610f58576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d54811015610fbe57600d548282610f719190613538565b11610f8757610f828484600061213a565b610fb9565b6040517f1815270200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611075565b600d548110158015610fdd5750600f60019054906101000a900460ff16155b1561107457600182600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461102f9190613538565b1115611067576040517fc45cb51300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110738484600161213a565b5b5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506110cc33836121f9565b50505050565b600f60019054906101000a900460ff1681565b6110ed611bbf565b8181600b91826110fe929190613723565b505050565b6060600083839050905060008167ffffffffffffffff8111156111295761112861324b565b5b60405190808252806020026020018201604052801561116257816020015b61114f6128cf565b8152602001906001900390816111475790505b50905060005b8281146111ba57611191868683818110611185576111846137f3565b5b905060200201356118f6565b8282815181106111a4576111a36137f3565b5b6020026020010181905250806001019050611168565b50809250505092915050565b6000600860149054906101000a900460ff16905090565b60006111e882611d08565b9050919050565b6111f7611bbf565b6000611201610a93565b9050600c5482826112129190613538565b111561124a576040517f8a164f6300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61125433836121f9565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112bf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611318611bbf565b61132260006123b4565b565b61132c611bbf565b81600a6000838152602001908152602001600020819055505050565b6060600080600061135885611258565b905060008167ffffffffffffffff8111156113765761137561324b565b5b6040519080825280602002602001820160405280156113a45781602001602082028036833780820191505090505b5090506113af6128cf565b60006113b9611d03565b90505b83861461147d576113cc8161247a565b9150816040015161147257600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461141757816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036114715780838780600101985081518110611464576114636137f3565b5b6020026020010181815250505b5b8060010190506113bc565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114c4906134d8565b80601f01602080910402602001604051908101604052809291908181526020018280546114f0906134d8565b801561153d5780601f106115125761010080835404028352916020019161153d565b820191906000526020600020905b81548152906001019060200180831161152057829003601f168201915b5050505050905090565b6060818310611582576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061158d6124a5565b9050611597611d03565b8510156115a9576115a6611d03565b94505b808411156115b5578093505b60006115c087611258565b9050848610156115e35760008686039050818110156115dd578091505b506115e8565b600090505b60008167ffffffffffffffff8111156116045761160361324b565b5b6040519080825280602002602001820160405280156116325781602001602082028036833780820191505090505b50905060008203611649578094505050505061174c565b6000611654886118f6565b90506000816040015161166957816000015190505b60008990505b88811415801561167f5750848714155b1561173e5761168d8161247a565b9250826040015161173357600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146116d857826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117325780848880600101995081518110611725576117246137f3565b5b6020026020010181815250505b5b80600101905061166f565b508583528296505050505050505b9392505050565b8060076000611760611bb7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661180d611bb7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161185291906129d2565b60405180910390a35050565b611866611bbf565b6001600f60006101000a81548160ff021916908315150217905550565b61188e848484610aaa565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118f0576118b9848484846124ae565b6118ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6118fe6128cf565b6119066128cf565b61190e611d03565b831080611922575061191e6124a5565b8310155b15611930578091505061195b565b6119398361247a565b905080604001511561194e578091505061195b565b611957836125fe565b9150505b919050565b606061196b82611b58565b6119a1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119ab61261e565b9050600f60009054906101000a900460ff166119ca5780915050611a17565b60008151036119e85760405180602001604052806000815250611a13565b806119f2846126b0565b604051602001611a0392919061385e565b6040516020818303038152906040525b9150505b919050565b611a24611bbf565b6001600f60016101000a81548160ff021916908315150217905550565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611add611bbf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b43906138f4565b60405180910390fd5b611b55816123b4565b50565b600081611b63611d03565b11158015611b72575060005482105b8015611bb0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611bc7612700565b73ffffffffffffffffffffffffffffffffffffffff16611be561148b565b73ffffffffffffffffffffffffffffffffffffffff1614611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3290613960565b60405180910390fd5b565b611c45612708565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c89612700565b604051611c969190612b43565b60405180910390a1565b611ca86120f0565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611cec612700565b604051611cf99190612b43565b60405180910390a1565b600090565b60008082905080611d17611d03565b11611d9d57600054811015611d9c5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d9a575b60008103611d90576004600083600190039350838152602001908152602001600020549050611d66565b8092505050611dcf565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e5c868684612751565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611ea983611d08565b90506000819050600080611ebc86611dd4565b915091508415611f2557611ed88184611ed3611bb7565b611dfb565b611f2457611eed83611ee8611bb7565b611a41565b611f23576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611f33836000886001611e3f565b8015611f3e57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fe683611fa385600088611e45565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611e6d565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085160361206c576000600187019050600060046000838152602001908152602001600020540361206a576000548114612069578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120d6836000886001611e98565b600160008154809291906001019190505550505050505050565b6120f86111c6565b15612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f906139cc565b60405180910390fd5b565b6121bf838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a600084815260200190815260200160002054336040516020016121a49190613a34565b6040516020818303038152906040528051906020012061275a565b6121f4576040517e27b15500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60008054905060008203612239576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122466000848385611e3f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506122bd836122ae6000866000611e45565b6122b785612771565b17611e6d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461235e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612323565b5060008203612399576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123af6000848385611e98565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124826128cf565b61249e6004600084815260200190815260200160002054612781565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124d4611bb7565b8786866040518563ffffffff1660e01b81526004016124f69493929190613aa4565b6020604051808303816000875af192505050801561253257506040513d601f19601f8201168201806040525081019061252f9190613b05565b60015b6125ab573d8060008114612562576040519150601f19603f3d011682016040523d82523d6000602084013e612567565b606091505b5060008151036125a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6126066128cf565b61261761261283611d08565b612781565b9050919050565b6060600b805461262d906134d8565b80601f0160208091040260200160405190810160405280929190818152602001828054612659906134d8565b80156126a65780601f1061267b576101008083540402835291602001916126a6565b820191906000526020600020905b81548152906001019060200180831161268957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156126eb57600184039350600a81066030018453600a81049050806126c9575b50828103602084039350808452505050919050565b600033905090565b6127106111c6565b61274f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274690613b7e565b60405180910390fd5b565b60009392505050565b6000826127678584612837565b1490509392505050565b60006001821460e11b9050919050565b6127896128cf565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008082905060005b84518110156128825761286d828683815181106128605761285f6137f3565b5b602002602001015161288d565b9150808061287a90613b9e565b915050612840565b508091505092915050565b60008183106128a5576128a082846128b8565b6128b0565b6128af83836128b8565b5b905092915050565b600082600052816020526040600020905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61296781612932565b811461297257600080fd5b50565b6000813590506129848161295e565b92915050565b6000602082840312156129a05761299f612928565b5b60006129ae84828501612975565b91505092915050565b60008115159050919050565b6129cc816129b7565b82525050565b60006020820190506129e760008301846129c3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a27578082015181840152602081019050612a0c565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a4f826129ed565b612a5981856129f8565b9350612a69818560208601612a09565b612a7281612a33565b840191505092915050565b60006020820190508181036000830152612a978184612a44565b905092915050565b6000819050919050565b612ab281612a9f565b8114612abd57600080fd5b50565b600081359050612acf81612aa9565b92915050565b600060208284031215612aeb57612aea612928565b5b6000612af984828501612ac0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b2d82612b02565b9050919050565b612b3d81612b22565b82525050565b6000602082019050612b586000830184612b34565b92915050565b612b6781612b22565b8114612b7257600080fd5b50565b600081359050612b8481612b5e565b92915050565b60008060408385031215612ba157612ba0612928565b5b6000612baf85828601612b75565b9250506020612bc085828601612ac0565b9150509250929050565b612bd3816129b7565b8114612bde57600080fd5b50565b600081359050612bf081612bca565b92915050565b600060208284031215612c0c57612c0b612928565b5b6000612c1a84828501612be1565b91505092915050565b612c2c81612a9f565b82525050565b6000602082019050612c476000830184612c23565b92915050565b600080600060608486031215612c6657612c65612928565b5b6000612c7486828701612b75565b9350506020612c8586828701612b75565b9250506040612c9686828701612ac0565b9150509250925092565b600060208284031215612cb657612cb5612928565b5b6000612cc484828501612b75565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612cf257612cf1612ccd565b5b8235905067ffffffffffffffff811115612d0f57612d0e612cd2565b5b602083019150836020820283011115612d2b57612d2a612cd7565b5b9250929050565b600080600060408486031215612d4b57612d4a612928565b5b600084013567ffffffffffffffff811115612d6957612d6861292d565b5b612d7586828701612cdc565b93509350506020612d8886828701612ac0565b9150509250925092565b60008083601f840112612da857612da7612ccd565b5b8235905067ffffffffffffffff811115612dc557612dc4612cd2565b5b602083019150836001820283011115612de157612de0612cd7565b5b9250929050565b60008060208385031215612dff57612dfe612928565b5b600083013567ffffffffffffffff811115612e1d57612e1c61292d565b5b612e2985828601612d92565b92509250509250929050565b60008083601f840112612e4b57612e4a612ccd565b5b8235905067ffffffffffffffff811115612e6857612e67612cd2565b5b602083019150836020820283011115612e8457612e83612cd7565b5b9250929050565b60008060208385031215612ea257612ea1612928565b5b600083013567ffffffffffffffff811115612ec057612ebf61292d565b5b612ecc85828601612e35565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f0d81612b22565b82525050565b600067ffffffffffffffff82169050919050565b612f3081612f13565b82525050565b612f3f816129b7565b82525050565b600062ffffff82169050919050565b612f5d81612f45565b82525050565b608082016000820151612f796000850182612f04565b506020820151612f8c6020850182612f27565b506040820151612f9f6040850182612f36565b506060820151612fb26060850182612f54565b50505050565b6000612fc48383612f63565b60808301905092915050565b6000602082019050919050565b6000612fe882612ed8565b612ff28185612ee3565b9350612ffd83612ef4565b8060005b8381101561302e5781516130158882612fb8565b975061302083612fd0565b925050600181019050613001565b5085935050505092915050565b600060208201905081810360008301526130558184612fdd565b905092915050565b6000819050919050565b6130708161305d565b811461307b57600080fd5b50565b60008135905061308d81613067565b92915050565b600080604083850312156130aa576130a9612928565b5b60006130b88582860161307e565b92505060206130c985828601612ac0565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61310881612a9f565b82525050565b600061311a83836130ff565b60208301905092915050565b6000602082019050919050565b600061313e826130d3565b61314881856130de565b9350613153836130ef565b8060005b8381101561318457815161316b888261310e565b975061317683613126565b925050600181019050613157565b5085935050505092915050565b600060208201905081810360008301526131ab8184613133565b905092915050565b6000806000606084860312156131cc576131cb612928565b5b60006131da86828701612b75565b93505060206131eb86828701612ac0565b92505060406131fc86828701612ac0565b9150509250925092565b6000806040838503121561321d5761321c612928565b5b600061322b85828601612b75565b925050602061323c85828601612be1565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61328382612a33565b810181811067ffffffffffffffff821117156132a2576132a161324b565b5b80604052505050565b60006132b561291e565b90506132c1828261327a565b919050565b600067ffffffffffffffff8211156132e1576132e061324b565b5b6132ea82612a33565b9050602081019050919050565b82818337600083830152505050565b6000613319613314846132c6565b6132ab565b90508281526020810184848401111561333557613334613246565b5b6133408482856132f7565b509392505050565b600082601f83011261335d5761335c612ccd565b5b813561336d848260208601613306565b91505092915050565b600080600080608085870312156133905761338f612928565b5b600061339e87828801612b75565b94505060206133af87828801612b75565b93505060406133c087828801612ac0565b925050606085013567ffffffffffffffff8111156133e1576133e061292d565b5b6133ed87828801613348565b91505092959194509250565b60808201600082015161340f6000850182612f04565b5060208201516134226020850182612f27565b5060408201516134356040850182612f36565b5060608201516134486060850182612f54565b50505050565b600060808201905061346360008301846133f9565b92915050565b600080604083850312156134805761347f612928565b5b600061348e85828601612b75565b925050602061349f85828601612b75565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134f057607f821691505b602082108103613503576135026134a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061354382612a9f565b915061354e83612a9f565b925082820190508082111561356657613565613509565b5b92915050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261359c565b6135e3868361359c565b95508019841693508086168417925050509392505050565b6000819050919050565b600061362061361b61361684612a9f565b6135fb565b612a9f565b9050919050565b6000819050919050565b61363a83613605565b61364e61364682613627565b8484546135a9565b825550505050565b600090565b613663613656565b61366e818484613631565b505050565b5b818110156136925761368760008261365b565b600181019050613674565b5050565b601f8211156136d7576136a881613577565b6136b18461358c565b810160208510156136c0578190505b6136d46136cc8561358c565b830182613673565b50505b505050565b600082821c905092915050565b60006136fa600019846008026136dc565b1980831691505092915050565b600061371383836136e9565b9150826002028217905092915050565b61372d838361356c565b67ffffffffffffffff8111156137465761374561324b565b5b61375082546134d8565b61375b828285613696565b6000601f83116001811461378a5760008415613778578287013590505b6137828582613707565b8655506137ea565b601f19841661379886613577565b60005b828110156137c05784890135825560018201915060208501945060208101905061379b565b868310156137dd57848901356137d9601f8916826136e9565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b6000613838826129ed565b6138428185613822565b9350613852818560208601612a09565b80840191505092915050565b600061386a828561382d565b9150613876828461382d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138de6026836129f8565b91506138e982613882565b604082019050919050565b6000602082019050818103600083015261390d816138d1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061394a6020836129f8565b915061395582613914565b602082019050919050565b600060208201905081810360008301526139798161393d565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006139b66010836129f8565b91506139c182613980565b602082019050919050565b600060208201905081810360008301526139e5816139a9565b9050919050565b60008160601b9050919050565b6000613a04826139ec565b9050919050565b6000613a16826139f9565b9050919050565b613a2e613a2982612b22565b613a0b565b82525050565b6000613a408284613a1d565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000613a7682613a4f565b613a808185613a5a565b9350613a90818560208601612a09565b613a9981612a33565b840191505092915050565b6000608082019050613ab96000830187612b34565b613ac66020830186612b34565b613ad36040830185612c23565b8181036060830152613ae58184613a6b565b905095945050505050565b600081519050613aff8161295e565b92915050565b600060208284031215613b1b57613b1a612928565b5b6000613b2984828501613af0565b91505092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613b686014836129f8565b9150613b7382613b32565b602082019050919050565b60006020820190508181036000830152613b9781613b5b565b9050919050565b6000613ba982612a9f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613bdb57613bda613509565b5b60018201905091905056fea2646970667358221220db6af6995faa5320a24591ba0c7dd3ab371fb68b22cdecf0067a008e45be39fd64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d625863745537424e367942746432416e36505557446a4673796b4b4861774a5a33736d5668706135543137500000000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): ipfs://QmbXctU7BN6yBtd2An6PUWDjFsykKHawJZ3smVhpa5T17P

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d625863745537424e367942746432416e36505557446a46
Arg [3] : 73796b4b4861774a5a33736d5668706135543137500000000000000000000000


Deployed Bytecode Sourcemap

787:4057:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4662:100:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5894:317:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22758:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;510:92:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1338:44:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2006:912;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1612:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4549:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1641:513:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1615:84:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11391:150:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2926:205:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7045:230:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;4419:122:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5417:879:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10208:102:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2528:2454:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16901:231:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4770:71:4;;;;;;;;;;;;;:::i;:::-;;23526:396:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1070:418:8;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3813:377:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4330:81;;;;;;;;;;;;;:::i;:::-;;17282:162:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::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;10039:98::-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;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;4662:100:4:-;1094:13:0;:11;:13::i;:::-;4724:6:4::1;:30;;4744:10;:8;:10::i;:::-;4724:30;;;4733:8;:6;:8::i;:::-;4724:30;4662:100:::0;:::o;5894:317:5:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;19903:2764::-;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;22758:187::-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;510:92:7:-;575:20;581:7;590:4;575:5;:20::i;:::-;510:92;:::o;1338:44:4:-;;;;;;;;;;;;;;;;;:::o;2006:912::-;1239:19:1;:17;:19::i;:::-;1817:9:4::1;1803:23;;:10;:23;;;1799:45;;1835:9;;;;;;;;;;;;;;1799:45;2107:11:::2;2121:13;:11;:13::i;:::-;2107:27;;2186:9;;2176:7;2149:12;:24;2162:10;2149:24;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;:46;2145:78;;;2204:19;;;;;;;;;;;;;;2145:78;2257:10;;2247:7;2238:6;:16;;;;:::i;:::-;:29;2234:61;;;2276:19;;;;;;;;;;;;;;2234:61;2321:13;;2312:6;:22;2308:504;;;2429:13;;2418:7;2409:6;:16;;;;:::i;:::-;:33;2405:173;;2463:26;2473:12;;2487:1;2463:9;:26::i;:::-;2405:173;;;2537:25;;;;;;;;;;;;;;2405:173;2308:504;;;2609:13;;2599:6;:23;;:39;;;;;2627:11;;;;;;;;;;;2626:12;2599:39;2595:217;;;2730:1;2720:7;2693:12;:24;2706:10;2693:24;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;:38;2689:70;;;2740:19;;;;;;;;;;;;;;2689:70;2774:26;2784:12;;2798:1;2774:9;:26::i;:::-;2595:217;2308:504;2864:7;2836:12;:24;2849:10;2836:24;;;;;;;;;;;;;;;;:35;;;;;;;;;;;2884:26;2890:10;2902:7;2884:5;:26::i;:::-;2096:822;2006:912:::0;;;:::o;1612:23::-;;;;;;;;;;;;;:::o;4549:105::-;1094:13:0;:11;:13::i;:::-;4639:7:4::1;;4624:12;:22;;;;;;;:::i;:::-;;4549:105:::0;;:::o;1641:513:8:-;1780:23;1843:22;1868:8;;:15;;1843:40;;1897:34;1955:14;1934:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1897:73;;1989:9;1984:123;2005:14;2000:1;:19;1984:123;;2060:32;2080:8;;2089:1;2080:11;;;;;;;:::i;:::-;;;;;;;;2060:19;:32::i;:::-;2044:10;2055:1;2044:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;2021:3;;;;;1984:123;;;;2127:10;2120:17;;;;1641:513;;;;:::o;1615:84:1:-;1662:4;1685:7;;;;;;;;;;;1678:14;;1615:84;:::o;11391:150:5:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;2926:205:4:-;1094:13:0;:11;:13::i;:::-;2987:11:4::1;3001:13;:11;:13::i;:::-;2987:27;;3048:10;;3038:7;3029:6;:16;;;;:::i;:::-;:29;3025:61;;;3067:19;;;;;;;;;;;;;;3025:61;3097:26;3103:10;3115:7;3097:5;:26::i;:::-;2976:155;2926:205:::0;:::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;4419:122:4:-;1094:13:0;:11;:13::i;:::-;4525:8:4::1;4505:10;:17;4516:5;4505:17;;;;;;;;;;;:28;;;;4419:122:::0;;:::o;5417:879:8:-;5495:16;5547:19;5580:25;5619:22;5644:16;5654:5;5644:9;:16::i;:::-;5619:41;;5674:25;5716:14;5702:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5674:57;;5745:31;;:::i;:::-;5795:9;5807:15;:13;:15::i;:::-;5795:27;;5790:461;5839:14;5824:11;:29;5790:461;;5890:15;5903:1;5890:12;:15::i;:::-;5878:27;;5927:9;:16;;;5967:8;5923:71;6041:1;6015:28;;:9;:14;;;:28;;;6011:109;;6087:9;:14;;;6067:34;;6011:109;6162:5;6141:26;;:17;:26;;;6137:100;;6217:1;6191:8;6200:13;;;;;;6191:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;6137:100;5790:461;5855:3;;;;;5790:461;;;;6271:8;6264:15;;;;;;;5417:879;;;:::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;2528:2454:8:-;2667:16;2732:4;2723:5;:13;2719:45;;2745:19;;;;;;;;;;;;;;2719:45;2778:19;2811:17;2831:14;:12;:14::i;:::-;2811:34;;2929:15;:13;:15::i;:::-;2921:5;:23;2917:85;;;2972:15;:13;:15::i;:::-;2964:23;;2917:85;3076:9;3069:4;:16;3065:71;;;3112:9;3105:16;;3065:71;3149:25;3177:16;3187:5;3177:9;:16::i;:::-;3149:44;;3368:4;3360:5;:12;3356:271;;;3392:19;3421:5;3414:4;:12;3392:34;;3462:17;3448:11;:31;3444:109;;;3523:11;3503:31;;3444:109;3374:193;3356:271;;;3611:1;3591:21;;3356:271;3640:25;3682:17;3668:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3640:60;;3739:1;3718:17;:22;3714:76;;3767:8;3760:15;;;;;;;;3714:76;3931:31;3965:26;3985:5;3965:19;:26::i;:::-;3931:60;;4005:25;4247:9;:16;;;4242:90;;4303:9;:14;;;4283:34;;4242:90;4350:9;4362:5;4350:17;;4345:467;4374:4;4369:1;:9;;:45;;;;;4397:17;4382:11;:32;;4369:45;4345:467;;;4451:15;4464:1;4451:12;:15::i;:::-;4439:27;;4488:9;:16;;;4528:8;4484:71;4602:1;4576:28;;:9;:14;;;:28;;;4572:109;;4648:9;:14;;;4628:34;;4572:109;4723:5;4702:26;;:17;:26;;;4698:100;;4778:1;4752:8;4761:13;;;;;;4752:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;4698:100;4345:467;4416:3;;;;;4345:467;;;;4911:11;4901:8;4894:29;4957:8;4950:15;;;;;;;;2528:2454;;;;;;:::o;16901:231:5:-;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;4770:71:4:-;1094:13:0;:11;:13::i;:::-;4829:4:4::1;4818:8;;:15;;;;;;;;;;;;;;;;;;4770:71::o:0;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;1070:418:8:-;1154:21;;:::i;:::-;1187:31;;:::i;:::-;1242:15;:13;:15::i;:::-;1232:7;:25;:54;;;;1272:14;:12;:14::i;:::-;1261:7;:25;;1232:54;1228:101;;;1309:9;1302:16;;;;;1228:101;1350:21;1363:7;1350:12;:21::i;:::-;1338:33;;1385:9;:16;;;1381:63;;;1424:9;1417:16;;;;;1381:63;1460:21;1473:7;1460:12;:21::i;:::-;1453:28;;;1070:418;;;;:::o;3813:377:4:-;3905:13;3936:16;3944:7;3936;:16::i;:::-;3931:59;;3961:29;;;;;;;;;;;;;;3931:59;4003:21;4027:10;:8;:10::i;:::-;4003:34;;4053:8;;;;;;;;;;;4048:29;;4070:7;4063:14;;;;;4048:29;4120:1;4101:7;4095:21;:26;:87;;;;;;;;;;;;;;;;;4148:7;4157:18;4167:7;4157:9;:18::i;:::-;4131:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4095:87;4088:94;;;3813:377;;;;:::o;4330:81::-;1094:13:0;:11;:13::i;:::-;4399:4:4::1;4385:11;;:18;;;;;;;;;;;;;;;;;;4330:81::o:0;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;;::::0;2161:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::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;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;2433:117:1:-;1486:16;:14;:16::i;:::-;2501:5:::1;2491:7;;:15;;;;;;;;;;;;;;;;;;2521:22;2530:12;:10;:12::i;:::-;2521:22;;;;;;:::i;:::-;;;;;;;;2433:117::o:0;2186:115::-;1239:19;:17;:19::i;:::-;2255:4:::1;2245:7;;:14;;;;;;;;;;;;;;;;;;2274:20;2281:12;:10;:12::i;:::-;2274:20;;;;;;:::i;:::-;;;;;;;;2186:115::o:0;3583:101:4:-;3648:7;3583: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;34095:3015::-;34174:27;34204;34223:7;34204:18;:27::i;:::-;34174:57;;34242:12;34273:19;34242:52;;34306:27;34335:23;34362:35;34389:7;34362:26;:35::i;:::-;34305:92;;;;34412:13;34408:312;;;34531:68;34556:15;34573:4;34579:19;:17;:19::i;:::-;34531:24;:68::i;:::-;34526:183;;34622:43;34639:4;34645:19;:17;:19::i;:::-;34622:16;:43::i;:::-;34617:92;;34674:35;;;;;;;;;;;;;;34617:92;34526:183;34408:312;34730:51;34752:4;34766:1;34770:7;34779:1;34730:21;:51::i;:::-;34870:15;34867:157;;;35008:1;34987:19;34980:30;34867:157;35672:1;1619:3;35642:1;:26;;35641:32;35613:18;:24;35632:4;35613:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;35933:173;35969:4;36039:53;36054:4;36068:1;36072:19;36039:14;:53::i;:::-;2392:8;2118;35992:43;35991:101;35933:18;:173::i;:::-;35904:17;:26;35922:7;35904:26;;;;;;;;;;;:202;;;;36274:1;2392:8;36223:19;:47;:52;36219:617;;36295:19;36327:1;36317:7;:11;36295:33;;36482:1;36448:17;:30;36466:11;36448:30;;;;;;;;;;;;:35;36444:378;;36584:13;;36569:11;:28;36565:239;;36762:19;36729:17;:30;36747:11;36729:30;;;;;;;;;;;:52;;;;36565:239;36444:378;36277:559;36219:617;36888:7;36884:1;36861:35;;36870:4;36861:35;;;;;;;;;;;;36906:50;36927:4;36941:1;36945:7;36954:1;36906:20;:50::i;:::-;37079:12;;:14;;;;;;;;;;;;;34164:2946;;;;34095:3015;;:::o;1767:106:1:-;1837:8;:6;:8::i;:::-;1836:9;1828:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1767:106::o;3139:309:4:-;3247:158;3284:12;;3247:158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3315:10;:17;3326:5;3315:17;;;;;;;;;;;;3378:10;3361:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;3351:39;;;;;;3247:18;:158::i;:::-;3228:212;;3424:16;;;;;;;;;;;;;;3228:212;3139:309;;;:::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;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;11979:159:5:-;12047:21;;:::i;:::-;12087:44;12106:17;:24;12124:5;12106:24;;;;;;;;;;;;12087:18;:44::i;:::-;12080:51;;11979:159;;;:::o;5590:101::-;5645:7;5671:13;;5664:20;;5590:101;:::o;25948:697::-;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;11724:164::-;11794:21;;:::i;:::-;11834:47;11853:27;11872:7;11853:18;:27::i;:::-;11834:18;:47::i;:::-;11827:54;;11724:164;;;:::o;3692:113:4:-;3752:13;3785:12;3778:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3692:113;:::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;40690:419;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;640:96:2:-;693:7;719:10;712:17;;640:96;:::o;1945:106:1:-;2011:8;:6;:8::i;:::-;2003:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1945:106::o;38475:143:5:-;38608:6;38475:143;;;;;:::o;1153:184:3:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;1290:40;;1153:184;;;;;:::o;14837:318:5:-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;13858:361::-;13924:31;;:::i;:::-;14000:6;13967:9;:14;;:41;;;;;;;;;;;2004:3;14052:6;:33;;14018:9;:24;;:68;;;;;;;;;;;14143:1;2118:8;14115:6;:24;:29;;14096:9;:16;;:48;;;;;;;;;;;2513:3;14183:6;:28;;14154:9;:19;;:58;;;;;;;;;;;13858:361;;;:::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;8054:147::-;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;8207:261::-;8275:13;8379:1;8373:4;8366:15;8407:1;8401:4;8394:15;8447:4;8441;8431:21;8422:30;;8207:261;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:11:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:116::-;4960:21;4975:5;4960:21;:::i;:::-;4953:5;4950:32;4940:60;;4996:1;4993;4986:12;4940:60;4890:116;:::o;5012:133::-;5055:5;5093:6;5080:20;5071:29;;5109:30;5133:5;5109:30;:::i;:::-;5012:133;;;;:::o;5151:323::-;5207:6;5256:2;5244:9;5235:7;5231:23;5227:32;5224:119;;;5262:79;;:::i;:::-;5224:119;5382:1;5407:50;5449:7;5440:6;5429:9;5425:22;5407:50;:::i;:::-;5397:60;;5353:114;5151:323;;;;:::o;5480:118::-;5567:24;5585:5;5567:24;:::i;:::-;5562:3;5555:37;5480:118;;:::o;5604:222::-;5697:4;5735:2;5724:9;5720:18;5712:26;;5748:71;5816:1;5805:9;5801:17;5792:6;5748:71;:::i;:::-;5604:222;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:329::-;6516:6;6565:2;6553:9;6544:7;6540:23;6536:32;6533:119;;;6571:79;;:::i;:::-;6533:119;6691:1;6716:53;6761:7;6752:6;6741:9;6737:22;6716:53;:::i;:::-;6706:63;;6662:117;6457:329;;;;:::o;6792:117::-;6901:1;6898;6891:12;6915:117;7024:1;7021;7014:12;7038:117;7147:1;7144;7137:12;7178:568;7251:8;7261:6;7311:3;7304:4;7296:6;7292:17;7288:27;7278:122;;7319:79;;:::i;:::-;7278:122;7432:6;7419:20;7409:30;;7462:18;7454:6;7451:30;7448:117;;;7484:79;;:::i;:::-;7448:117;7598:4;7590:6;7586:17;7574:29;;7652:3;7644:4;7636:6;7632:17;7622:8;7618:32;7615:41;7612:128;;;7659:79;;:::i;:::-;7612:128;7178:568;;;;;:::o;7752:704::-;7847:6;7855;7863;7912:2;7900:9;7891:7;7887:23;7883:32;7880:119;;;7918:79;;:::i;:::-;7880:119;8066:1;8055:9;8051:17;8038:31;8096:18;8088:6;8085:30;8082:117;;;8118:79;;:::i;:::-;8082:117;8231:80;8303:7;8294:6;8283:9;8279:22;8231:80;:::i;:::-;8213:98;;;;8009:312;8360:2;8386:53;8431:7;8422:6;8411:9;8407:22;8386:53;:::i;:::-;8376:63;;8331:118;7752:704;;;;;:::o;8476:553::-;8534:8;8544:6;8594:3;8587:4;8579:6;8575:17;8571:27;8561:122;;8602:79;;:::i;:::-;8561:122;8715:6;8702:20;8692:30;;8745:18;8737:6;8734:30;8731:117;;;8767:79;;:::i;:::-;8731:117;8881:4;8873:6;8869:17;8857:29;;8935:3;8927:4;8919:6;8915:17;8905:8;8901:32;8898:41;8895:128;;;8942:79;;:::i;:::-;8895:128;8476:553;;;;;:::o;9035:529::-;9106:6;9114;9163:2;9151:9;9142:7;9138:23;9134:32;9131:119;;;9169:79;;:::i;:::-;9131:119;9317:1;9306:9;9302:17;9289:31;9347:18;9339:6;9336:30;9333:117;;;9369:79;;:::i;:::-;9333:117;9482:65;9539:7;9530:6;9519:9;9515:22;9482:65;:::i;:::-;9464:83;;;;9260:297;9035:529;;;;;:::o;9587:568::-;9660:8;9670:6;9720:3;9713:4;9705:6;9701:17;9697:27;9687:122;;9728:79;;:::i;:::-;9687:122;9841:6;9828:20;9818:30;;9871:18;9863:6;9860:30;9857:117;;;9893:79;;:::i;:::-;9857:117;10007:4;9999:6;9995:17;9983:29;;10061:3;10053:4;10045:6;10041:17;10031:8;10027:32;10024:41;10021:128;;;10068:79;;:::i;:::-;10021:128;9587:568;;;;;:::o;10161:559::-;10247:6;10255;10304:2;10292:9;10283:7;10279:23;10275:32;10272:119;;;10310:79;;:::i;:::-;10272:119;10458:1;10447:9;10443:17;10430:31;10488:18;10480:6;10477:30;10474:117;;;10510:79;;:::i;:::-;10474:117;10623:80;10695:7;10686:6;10675:9;10671:22;10623:80;:::i;:::-;10605:98;;;;10401:312;10161:559;;;;;:::o;10726:146::-;10825:6;10859:5;10853:12;10843:22;;10726:146;;;:::o;10878:216::-;11009:11;11043:6;11038:3;11031:19;11083:4;11078:3;11074:14;11059:29;;10878:216;;;;:::o;11100:164::-;11199:4;11222:3;11214:11;;11252:4;11247:3;11243:14;11235:22;;11100:164;;;:::o;11270:108::-;11347:24;11365:5;11347:24;:::i;:::-;11342:3;11335:37;11270:108;;:::o;11384:101::-;11420:7;11460:18;11453:5;11449:30;11438:41;;11384:101;;;:::o;11491:105::-;11566:23;11583:5;11566:23;:::i;:::-;11561:3;11554:36;11491:105;;:::o;11602:99::-;11673:21;11688:5;11673:21;:::i;:::-;11668:3;11661:34;11602:99;;:::o;11707:91::-;11743:7;11783:8;11776:5;11772:20;11761:31;;11707:91;;;:::o;11804:105::-;11879:23;11896:5;11879:23;:::i;:::-;11874:3;11867:36;11804:105;;:::o;11987:866::-;12138:4;12133:3;12129:14;12225:4;12218:5;12214:16;12208:23;12244:63;12301:4;12296:3;12292:14;12278:12;12244:63;:::i;:::-;12153:164;12409:4;12402:5;12398:16;12392:23;12428:61;12483:4;12478:3;12474:14;12460:12;12428:61;:::i;:::-;12327:172;12583:4;12576:5;12572:16;12566:23;12602:57;12653:4;12648:3;12644:14;12630:12;12602:57;:::i;:::-;12509:160;12756:4;12749:5;12745:16;12739:23;12775:61;12830:4;12825:3;12821:14;12807:12;12775:61;:::i;:::-;12679:167;12107:746;11987:866;;:::o;12859:307::-;12992:10;13013:110;13119:3;13111:6;13013:110;:::i;:::-;13155:4;13150:3;13146:14;13132:28;;12859:307;;;;:::o;13172:145::-;13274:4;13306;13301:3;13297:14;13289:22;;13172:145;;;:::o;13399:988::-;13582:3;13611:86;13691:5;13611:86;:::i;:::-;13713:118;13824:6;13819:3;13713:118;:::i;:::-;13706:125;;13855:88;13937:5;13855:88;:::i;:::-;13966:7;13997:1;13982:380;14007:6;14004:1;14001:13;13982:380;;;14083:6;14077:13;14110:127;14233:3;14218:13;14110:127;:::i;:::-;14103:134;;14260:92;14345:6;14260:92;:::i;:::-;14250:102;;14042:320;14029:1;14026;14022:9;14017:14;;13982:380;;;13986:14;14378:3;14371:10;;13587:800;;;13399:988;;;;:::o;14393:501::-;14600:4;14638:2;14627:9;14623:18;14615:26;;14687:9;14681:4;14677:20;14673:1;14662:9;14658:17;14651:47;14715:172;14882:4;14873:6;14715:172;:::i;:::-;14707:180;;14393:501;;;;:::o;14900:77::-;14937:7;14966:5;14955:16;;14900:77;;;:::o;14983:122::-;15056:24;15074:5;15056:24;:::i;:::-;15049:5;15046:35;15036:63;;15095:1;15092;15085:12;15036:63;14983:122;:::o;15111:139::-;15157:5;15195:6;15182:20;15173:29;;15211:33;15238:5;15211:33;:::i;:::-;15111:139;;;;:::o;15256:474::-;15324:6;15332;15381:2;15369:9;15360:7;15356:23;15352:32;15349:119;;;15387:79;;:::i;:::-;15349:119;15507:1;15532:53;15577:7;15568:6;15557:9;15553:22;15532:53;:::i;:::-;15522:63;;15478:117;15634:2;15660:53;15705:7;15696:6;15685:9;15681:22;15660:53;:::i;:::-;15650:63;;15605:118;15256:474;;;;;:::o;15736:114::-;15803:6;15837:5;15831:12;15821:22;;15736:114;;;:::o;15856:184::-;15955:11;15989:6;15984:3;15977:19;16029:4;16024:3;16020:14;16005:29;;15856:184;;;;:::o;16046:132::-;16113:4;16136:3;16128:11;;16166:4;16161:3;16157:14;16149:22;;16046:132;;;:::o;16184:108::-;16261:24;16279:5;16261:24;:::i;:::-;16256:3;16249:37;16184:108;;:::o;16298:179::-;16367:10;16388:46;16430:3;16422:6;16388:46;:::i;:::-;16466:4;16461:3;16457:14;16443:28;;16298:179;;;;:::o;16483:113::-;16553:4;16585;16580:3;16576:14;16568:22;;16483:113;;;:::o;16632:732::-;16751:3;16780:54;16828:5;16780:54;:::i;:::-;16850:86;16929:6;16924:3;16850:86;:::i;:::-;16843:93;;16960:56;17010:5;16960:56;:::i;:::-;17039:7;17070:1;17055:284;17080:6;17077:1;17074:13;17055:284;;;17156:6;17150:13;17183:63;17242:3;17227:13;17183:63;:::i;:::-;17176:70;;17269:60;17322:6;17269:60;:::i;:::-;17259:70;;17115:224;17102:1;17099;17095:9;17090:14;;17055:284;;;17059:14;17355:3;17348:10;;16756:608;;;16632:732;;;;:::o;17370:373::-;17513:4;17551:2;17540:9;17536:18;17528:26;;17600:9;17594:4;17590:20;17586:1;17575:9;17571:17;17564:47;17628:108;17731:4;17722:6;17628:108;:::i;:::-;17620:116;;17370:373;;;;:::o;17749:619::-;17826:6;17834;17842;17891:2;17879:9;17870:7;17866:23;17862:32;17859:119;;;17897:79;;:::i;:::-;17859:119;18017:1;18042:53;18087:7;18078:6;18067:9;18063:22;18042:53;:::i;:::-;18032:63;;17988:117;18144:2;18170:53;18215:7;18206:6;18195:9;18191:22;18170:53;:::i;:::-;18160:63;;18115:118;18272:2;18298:53;18343:7;18334:6;18323:9;18319:22;18298:53;:::i;:::-;18288:63;;18243:118;17749:619;;;;;:::o;18374:468::-;18439:6;18447;18496:2;18484:9;18475:7;18471:23;18467:32;18464:119;;;18502:79;;:::i;:::-;18464:119;18622:1;18647:53;18692:7;18683:6;18672:9;18668:22;18647:53;:::i;:::-;18637:63;;18593:117;18749:2;18775:50;18817:7;18808:6;18797:9;18793:22;18775:50;:::i;:::-;18765:60;;18720:115;18374:468;;;;;:::o;18848:117::-;18957:1;18954;18947:12;18971:180;19019:77;19016:1;19009:88;19116:4;19113:1;19106:15;19140:4;19137:1;19130:15;19157:281;19240:27;19262:4;19240:27;:::i;:::-;19232:6;19228:40;19370:6;19358:10;19355:22;19334:18;19322:10;19319:34;19316:62;19313:88;;;19381:18;;:::i;:::-;19313:88;19421:10;19417:2;19410:22;19200:238;19157:281;;:::o;19444:129::-;19478:6;19505:20;;:::i;:::-;19495:30;;19534:33;19562:4;19554:6;19534:33;:::i;:::-;19444:129;;;:::o;19579:307::-;19640:4;19730:18;19722:6;19719:30;19716:56;;;19752:18;;:::i;:::-;19716:56;19790:29;19812:6;19790:29;:::i;:::-;19782:37;;19874:4;19868;19864:15;19856:23;;19579:307;;;:::o;19892:146::-;19989:6;19984:3;19979;19966:30;20030:1;20021:6;20016:3;20012:16;20005:27;19892:146;;;:::o;20044:423::-;20121:5;20146:65;20162:48;20203:6;20162:48;:::i;:::-;20146:65;:::i;:::-;20137:74;;20234:6;20227:5;20220:21;20272:4;20265:5;20261:16;20310:3;20301:6;20296:3;20292:16;20289:25;20286:112;;;20317:79;;:::i;:::-;20286:112;20407:54;20454:6;20449:3;20444;20407:54;:::i;:::-;20127:340;20044:423;;;;;:::o;20486:338::-;20541:5;20590:3;20583:4;20575:6;20571:17;20567:27;20557:122;;20598:79;;:::i;:::-;20557:122;20715:6;20702:20;20740:78;20814:3;20806:6;20799:4;20791:6;20787:17;20740:78;:::i;:::-;20731:87;;20547:277;20486:338;;;;:::o;20830:943::-;20925:6;20933;20941;20949;20998:3;20986:9;20977:7;20973:23;20969:33;20966:120;;;21005:79;;:::i;:::-;20966:120;21125:1;21150:53;21195:7;21186:6;21175:9;21171:22;21150:53;:::i;:::-;21140:63;;21096:117;21252:2;21278:53;21323:7;21314:6;21303:9;21299:22;21278:53;:::i;:::-;21268:63;;21223:118;21380:2;21406:53;21451:7;21442:6;21431:9;21427:22;21406:53;:::i;:::-;21396:63;;21351:118;21536:2;21525:9;21521:18;21508:32;21567:18;21559:6;21556:30;21553:117;;;21589:79;;:::i;:::-;21553:117;21694:62;21748:7;21739:6;21728:9;21724:22;21694:62;:::i;:::-;21684:72;;21479:287;20830:943;;;;;;;:::o;21851:876::-;22012:4;22007:3;22003:14;22099:4;22092:5;22088:16;22082:23;22118:63;22175:4;22170:3;22166:14;22152:12;22118:63;:::i;:::-;22027:164;22283:4;22276:5;22272:16;22266:23;22302:61;22357:4;22352:3;22348:14;22334:12;22302:61;:::i;:::-;22201:172;22457:4;22450:5;22446:16;22440:23;22476:57;22527:4;22522:3;22518:14;22504:12;22476:57;:::i;:::-;22383:160;22630:4;22623:5;22619:16;22613:23;22649:61;22704:4;22699:3;22695:14;22681:12;22649:61;:::i;:::-;22553:167;21981:746;21851:876;;:::o;22733:351::-;22890:4;22928:3;22917:9;22913:19;22905:27;;22942:135;23074:1;23063:9;23059:17;23050:6;22942:135;:::i;:::-;22733:351;;;;:::o;23090:474::-;23158:6;23166;23215:2;23203:9;23194:7;23190:23;23186:32;23183:119;;;23221:79;;:::i;:::-;23183:119;23341:1;23366:53;23411:7;23402:6;23391:9;23387:22;23366:53;:::i;:::-;23356:63;;23312:117;23468:2;23494:53;23539:7;23530:6;23519:9;23515:22;23494:53;:::i;:::-;23484:63;;23439:118;23090:474;;;;;:::o;23570:180::-;23618:77;23615:1;23608:88;23715:4;23712:1;23705:15;23739:4;23736:1;23729:15;23756:320;23800:6;23837:1;23831:4;23827:12;23817:22;;23884:1;23878:4;23874:12;23905:18;23895:81;;23961:4;23953:6;23949:17;23939:27;;23895:81;24023:2;24015:6;24012:14;23992:18;23989:38;23986:84;;24042:18;;:::i;:::-;23986:84;23807:269;23756:320;;;:::o;24082:180::-;24130:77;24127:1;24120:88;24227:4;24224:1;24217:15;24251:4;24248:1;24241:15;24268:191;24308:3;24327:20;24345:1;24327:20;:::i;:::-;24322:25;;24361:20;24379:1;24361:20;:::i;:::-;24356:25;;24404:1;24401;24397:9;24390:16;;24425:3;24422:1;24419:10;24416:36;;;24432:18;;:::i;:::-;24416:36;24268:191;;;;:::o;24465:97::-;24524:6;24552:3;24542:13;;24465:97;;;;:::o;24568:141::-;24617:4;24640:3;24632:11;;24663:3;24660:1;24653:14;24697:4;24694:1;24684:18;24676:26;;24568:141;;;:::o;24715:93::-;24752:6;24799:2;24794;24787:5;24783:14;24779:23;24769:33;;24715:93;;;:::o;24814:107::-;24858:8;24908:5;24902:4;24898:16;24877:37;;24814:107;;;;:::o;24927:393::-;24996:6;25046:1;25034:10;25030:18;25069:97;25099:66;25088:9;25069:97;:::i;:::-;25187:39;25217:8;25206:9;25187:39;:::i;:::-;25175:51;;25259:4;25255:9;25248:5;25244:21;25235:30;;25308:4;25298:8;25294:19;25287:5;25284:30;25274:40;;25003:317;;24927:393;;;;;:::o;25326:60::-;25354:3;25375:5;25368:12;;25326:60;;;:::o;25392:142::-;25442:9;25475:53;25493:34;25502:24;25520:5;25502:24;:::i;:::-;25493:34;:::i;:::-;25475:53;:::i;:::-;25462:66;;25392:142;;;:::o;25540:75::-;25583:3;25604:5;25597:12;;25540:75;;;:::o;25621:269::-;25731:39;25762:7;25731:39;:::i;:::-;25792:91;25841:41;25865:16;25841:41;:::i;:::-;25833:6;25826:4;25820:11;25792:91;:::i;:::-;25786:4;25779:105;25697:193;25621:269;;;:::o;25896:73::-;25941:3;25896:73;:::o;25975:189::-;26052:32;;:::i;:::-;26093:65;26151:6;26143;26137:4;26093:65;:::i;:::-;26028:136;25975:189;;:::o;26170:186::-;26230:120;26247:3;26240:5;26237:14;26230:120;;;26301:39;26338:1;26331:5;26301:39;:::i;:::-;26274:1;26267:5;26263:13;26254:22;;26230:120;;;26170:186;;:::o;26362:543::-;26463:2;26458:3;26455:11;26452:446;;;26497:38;26529:5;26497:38;:::i;:::-;26581:29;26599:10;26581:29;:::i;:::-;26571:8;26567:44;26764:2;26752:10;26749:18;26746:49;;;26785:8;26770:23;;26746:49;26808:80;26864:22;26882:3;26864:22;:::i;:::-;26854:8;26850:37;26837:11;26808:80;:::i;:::-;26467:431;;26452:446;26362:543;;;:::o;26911:117::-;26965:8;27015:5;27009:4;27005:16;26984:37;;26911:117;;;;:::o;27034:169::-;27078:6;27111:51;27159:1;27155:6;27147:5;27144:1;27140:13;27111:51;:::i;:::-;27107:56;27192:4;27186;27182:15;27172:25;;27085:118;27034:169;;;;:::o;27208:295::-;27284:4;27430:29;27455:3;27449:4;27430:29;:::i;:::-;27422:37;;27492:3;27489:1;27485:11;27479:4;27476:21;27468:29;;27208:295;;;;:::o;27508:1403::-;27632:44;27672:3;27667;27632:44;:::i;:::-;27741:18;27733:6;27730:30;27727:56;;;27763:18;;:::i;:::-;27727:56;27807:38;27839:4;27833:11;27807:38;:::i;:::-;27892:67;27952:6;27944;27938:4;27892:67;:::i;:::-;27986:1;28015:2;28007:6;28004:14;28032:1;28027:632;;;;28703:1;28720:6;28717:84;;;28776:9;28771:3;28767:19;28754:33;28745:42;;28717:84;28827:67;28887:6;28880:5;28827:67;:::i;:::-;28821:4;28814:81;28676:229;27997:908;;28027:632;28079:4;28075:9;28067:6;28063:22;28113:37;28145:4;28113:37;:::i;:::-;28172:1;28186:215;28200:7;28197:1;28194:14;28186:215;;;28286:9;28281:3;28277:19;28264:33;28256:6;28249:49;28337:1;28329:6;28325:14;28315:24;;28384:2;28373:9;28369:18;28356:31;;28223:4;28220:1;28216:12;28211:17;;28186:215;;;28429:6;28420:7;28417:19;28414:186;;;28494:9;28489:3;28485:19;28472:33;28537:48;28579:4;28571:6;28567:17;28556:9;28537:48;:::i;:::-;28529:6;28522:64;28437:163;28414:186;28646:1;28642;28634:6;28630:14;28626:22;28620:4;28613:36;28034:625;;;27997:908;;27607:1304;;;27508:1403;;;:::o;28917:180::-;28965:77;28962:1;28955:88;29062:4;29059:1;29052:15;29086:4;29083:1;29076:15;29103:148;29205:11;29242:3;29227:18;;29103:148;;;;:::o;29257:390::-;29363:3;29391:39;29424:5;29391:39;:::i;:::-;29446:89;29528:6;29523:3;29446:89;:::i;:::-;29439:96;;29544:65;29602:6;29597:3;29590:4;29583:5;29579:16;29544:65;:::i;:::-;29634:6;29629:3;29625:16;29618:23;;29367:280;29257:390;;;;:::o;29653:435::-;29833:3;29855:95;29946:3;29937:6;29855:95;:::i;:::-;29848:102;;29967:95;30058:3;30049:6;29967:95;:::i;:::-;29960:102;;30079:3;30072:10;;29653:435;;;;;:::o;30094:225::-;30234:34;30230:1;30222:6;30218:14;30211:58;30303:8;30298:2;30290:6;30286:15;30279:33;30094:225;:::o;30325:366::-;30467:3;30488:67;30552:2;30547:3;30488:67;:::i;:::-;30481:74;;30564:93;30653:3;30564:93;:::i;:::-;30682:2;30677:3;30673:12;30666:19;;30325:366;;;:::o;30697:419::-;30863:4;30901:2;30890:9;30886:18;30878:26;;30950:9;30944:4;30940:20;30936:1;30925:9;30921:17;30914:47;30978:131;31104:4;30978:131;:::i;:::-;30970:139;;30697:419;;;:::o;31122:182::-;31262:34;31258:1;31250:6;31246:14;31239:58;31122:182;:::o;31310:366::-;31452:3;31473:67;31537:2;31532:3;31473:67;:::i;:::-;31466:74;;31549:93;31638:3;31549:93;:::i;:::-;31667:2;31662:3;31658:12;31651:19;;31310:366;;;:::o;31682:419::-;31848:4;31886:2;31875:9;31871:18;31863:26;;31935:9;31929:4;31925:20;31921:1;31910:9;31906:17;31899:47;31963:131;32089:4;31963:131;:::i;:::-;31955:139;;31682:419;;;:::o;32107:166::-;32247:18;32243:1;32235:6;32231:14;32224:42;32107:166;:::o;32279:366::-;32421:3;32442:67;32506:2;32501:3;32442:67;:::i;:::-;32435:74;;32518:93;32607:3;32518:93;:::i;:::-;32636:2;32631:3;32627:12;32620:19;;32279:366;;;:::o;32651:419::-;32817:4;32855:2;32844:9;32840:18;32832:26;;32904:9;32898:4;32894:20;32890:1;32879:9;32875:17;32868:47;32932:131;33058:4;32932:131;:::i;:::-;32924:139;;32651:419;;;:::o;33076:94::-;33109:8;33157:5;33153:2;33149:14;33128:35;;33076:94;;;:::o;33176:::-;33215:7;33244:20;33258:5;33244:20;:::i;:::-;33233:31;;33176:94;;;:::o;33276:100::-;33315:7;33344:26;33364:5;33344:26;:::i;:::-;33333:37;;33276:100;;;:::o;33382:157::-;33487:45;33507:24;33525:5;33507:24;:::i;:::-;33487:45;:::i;:::-;33482:3;33475:58;33382:157;;:::o;33545:256::-;33657:3;33672:75;33743:3;33734:6;33672:75;:::i;:::-;33772:2;33767:3;33763:12;33756:19;;33792:3;33785:10;;33545:256;;;;:::o;33807:98::-;33858:6;33892:5;33886:12;33876:22;;33807:98;;;:::o;33911:168::-;33994:11;34028:6;34023:3;34016:19;34068:4;34063:3;34059:14;34044:29;;33911:168;;;;:::o;34085:373::-;34171:3;34199:38;34231:5;34199:38;:::i;:::-;34253:70;34316:6;34311:3;34253:70;:::i;:::-;34246:77;;34332:65;34390:6;34385:3;34378:4;34371:5;34367:16;34332:65;:::i;:::-;34422:29;34444:6;34422:29;:::i;:::-;34417:3;34413:39;34406:46;;34175:283;34085:373;;;;:::o;34464:640::-;34659:4;34697:3;34686:9;34682:19;34674:27;;34711:71;34779:1;34768:9;34764:17;34755:6;34711:71;:::i;:::-;34792:72;34860:2;34849:9;34845:18;34836:6;34792:72;:::i;:::-;34874;34942:2;34931:9;34927:18;34918:6;34874:72;:::i;:::-;34993:9;34987:4;34983:20;34978:2;34967:9;34963:18;34956:48;35021:76;35092:4;35083:6;35021:76;:::i;:::-;35013:84;;34464:640;;;;;;;:::o;35110:141::-;35166:5;35197:6;35191:13;35182:22;;35213:32;35239:5;35213:32;:::i;:::-;35110:141;;;;:::o;35257:349::-;35326:6;35375:2;35363:9;35354:7;35350:23;35346:32;35343:119;;;35381:79;;:::i;:::-;35343:119;35501:1;35526:63;35581:7;35572:6;35561:9;35557:22;35526:63;:::i;:::-;35516:73;;35472:127;35257:349;;;;:::o;35612:170::-;35752:22;35748:1;35740:6;35736:14;35729:46;35612:170;:::o;35788:366::-;35930:3;35951:67;36015:2;36010:3;35951:67;:::i;:::-;35944:74;;36027:93;36116:3;36027:93;:::i;:::-;36145:2;36140:3;36136:12;36129:19;;35788:366;;;:::o;36160:419::-;36326:4;36364:2;36353:9;36349:18;36341:26;;36413:9;36407:4;36403:20;36399:1;36388:9;36384:17;36377:47;36441:131;36567:4;36441:131;:::i;:::-;36433:139;;36160:419;;;:::o;36585:233::-;36624:3;36647:24;36665:5;36647:24;:::i;:::-;36638:33;;36693:66;36686:5;36683:77;36680:103;;36763:18;;:::i;:::-;36680:103;36810:1;36803:5;36799:13;36792:20;;36585:233;;;:::o

Swarm Source

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