ETH Price: $2,457.88 (+1.57%)

Token

f-1 Anastasis - Act2 (f-1 AA2)
 

Overview

Max Total Supply

379 f-1 AA2

Holders

101

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 f-1 AA2
0x9c0031fe523e9f080b51bb18920c7be46d173046
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:
Anastasis_Act2

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 12: AnastasisAct2.sol
// SPDX-License-Identifier: MIT

pragma solidity >= 0.8.13;

import "./ERC721A.sol";
import "./IEIP2981.sol";
import "./AdminControl.sol";
import "./Strings.sol";

contract Anastasis_Act2 is ERC721A, AdminControl {
    
    address payable  private _royalties_recipient;
    uint256 private _royaltyAmount; //in % 
    uint256 public _tokenId = 0;
    string public _uri;
    
    mapping(uint256 => uint256) public _tokenURIs;

    
    constructor () ERC721A("f-1 Anastasis - Act2", "f-1 AA2") {
        _royalties_recipient = payable(msg.sender);
        _royaltyAmount = 10;
    } 

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, AdminControl)
        returns (bool)
    {
        return
        AdminControl.supportsInterface(interfaceId) ||
        ERC721A.supportsInterface(interfaceId) ||
        interfaceId == type(IEIP2981).interfaceId ||
        super.supportsInterface(interfaceId);
    }

    function mint( 
        address to,
        uint256 quantity
    ) external adminRequired{
        for(uint256 i=0; i < quantity; i++){
            uint256 rarity = getPseudoRandomNumber(100);
            uint256 uri;
            if(rarity < 5){
                uri = getPseudoRandomNumber(2) + 1;
            }else if(rarity < 22){
                uri = getPseudoRandomNumber(5) + 3;
            }else{
                uri = getPseudoRandomNumber(7) + 8;
            }
            _tokenURIs[_tokenId] = uri;
            _tokenId += 1;
        }
        _mint(to, quantity);
    }

    function getPseudoRandomNumber(uint256 length) public view returns (uint256){    
        uint256 rnd = uint256(keccak256(abi.encodePacked(block.timestamp, _tokenId)));
        return rnd % length;
    }

    function burn(uint256 tokenId) public {
        address owner = ERC721A.ownerOf(tokenId);
        require(msg.sender == owner, "Owner only");
        _burn(tokenId);
    }

    function setURI(
        string calldata updatedURI
    ) external adminRequired{
        _uri = updatedURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked(_uri, Strings.toString(_tokenURIs[tokenId]), ".json"));
    }

    function setRoyalties(address payable _recipient, uint256 _royaltyPerCent) external adminRequired {
        _royalties_recipient = _recipient;
        _royaltyAmount = _royaltyPerCent;
    }

    function royaltyInfo(uint256 salePrice) external view returns (address, uint256) {
        if(_royalties_recipient != address(0)){
            return (_royalties_recipient, (salePrice * _royaltyAmount) / 100 );
        }
        return (address(0), 0);
    }

    function withdraw(address recipient) external adminRequired {
        payable(recipient).transfer(address(this).balance);
    }

}

File 1 of 12: AdminControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/// @author: manifold.xyz

import "./ERC165.sol";
import "./EnumerableSet.sol";
import "./Ownable.sol";
import "./IAdminControl.sol";

abstract contract AdminControl is Ownable, IAdminControl, ERC165 {
    using EnumerableSet for EnumerableSet.AddressSet;

    // Track registered admins
    EnumerableSet.AddressSet private _admins;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IAdminControl).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Only allows approved admins to call the specified function
     */
    modifier adminRequired() {
        require(owner() == msg.sender || _admins.contains(msg.sender), "AdminControl: Must be owner or admin");
        _;
    }   

    /**
     * @dev See {IAdminControl-getAdmins}.
     */
    function getAdmins() external view override returns (address[] memory admins) {
        admins = new address[](_admins.length());
        for (uint i = 0; i < _admins.length(); i++) {
            admins[i] = _admins.at(i);
        }
        return admins;
    }

    /**
     * @dev See {IAdminControl-approveAdmin}.
     */
    function approveAdmin(address admin) external override onlyOwner {
        if (!_admins.contains(admin)) {
            emit AdminApproved(admin, msg.sender);
            _admins.add(admin);
        }
    }

    /**
     * @dev See {IAdminControl-revokeAdmin}.
     */
    function revokeAdmin(address admin) external override onlyOwner {
        if (_admins.contains(admin)) {
            emit AdminRevoked(admin, msg.sender);
            _admins.remove(admin);
        }
    }

    /**
     * @dev See {IAdminControl-isAdmin}.
     */
    function isAdmin(address admin) public override view returns (bool) {
        return (owner() == admin || _admins.contains(admin));
    }

}

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

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 *  Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable.
 *  See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 *  In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

File 5 of 12: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 6 of 12: 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 7 of 12: IAdminControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/// @author: manifold.xyz

import "./IERC165.sol";

/**
 * @dev Interface for admin control
 */
interface IAdminControl is IERC165 {

    event AdminApproved(address indexed account, address indexed sender);
    event AdminRevoked(address indexed account, address indexed sender);

    /**
     * @dev gets address of all admins
     */
    function getAdmins() external view returns (address[] memory);

    /**
     * @dev add an admin.  Can only be called by contract owner.
     */
    function approveAdmin(address admin) external;

    /**
     * @dev remove an admin.  Can only be called by contract owner.
     */
    function revokeAdmin(address admin) external;

    /**
     * @dev checks whether or not given address is an admin
     * Returns True if they are
     */
    function isAdmin(address admin) external view returns (bool);

}

File 8 of 12: IEIP2981.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * EIP-2981
 */
interface IEIP2981 {
    /**
     * bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
     *
     * => 0x2a55205a = 0x2a55205a
     */
    function royaltyInfo(uint256 tokenId, uint256 value) external view returns (address, uint256);
}

File 9 of 12: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

File 12 of 12: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AdminApproved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"AdminRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_tokenURIs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"admin","type":"address"}],"name":"approveAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAdmins","outputs":[{"internalType":"address[]","name":"admins","type":"address[]"}],"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":"uint256","name":"length","type":"uint256"}],"name":"getPseudoRandomNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"revokeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"address payable","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_royaltyPerCent","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"updatedURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600d553480156200001657600080fd5b506040518060400160405280601481526020017f662d3120416e61737461736973202d2041637432000000000000000000000000815250604051806040016040528060078152602001663316989020a09960c91b81525081600290816200007e9190620001b3565b5060036200008d8282620001b3565b505060008055506200009f33620000bc565b600b80546001600160a01b03191633179055600a600c556200027f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013957607f821691505b6020821081036200015a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ae57600081815260208120601f850160051c81016020861015620001895750805b601f850160051c820191505b81811015620001aa5782815560010162000195565b5050505b505050565b81516001600160401b03811115620001cf57620001cf6200010e565b620001e781620001e0845462000124565b8462000160565b602080601f8311600181146200021f5760008415620002065750858301515b600019600386901b1c1916600185901b178555620001aa565b600085815260208120601f198616915b8281101562000250578886015182559484019460019091019084016200022f565b50858210156200026f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611fe4806200028f6000396000f3fe6080604052600436106101d85760003560e01c806342842e0e116101025780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd14610523578063cef6d36814610543578063e985e9c514610582578063f2fde38b146105a257600080fd5b80638da5cb5b146104bd57806395d89b41146104db578063a22cb465146104f0578063b88d4fde1461051057600080fd5b80636d73e669116100d15780636d73e6691461044857806370a0823114610468578063715018a6146104885780638c7ea24b1461049d57600080fd5b806342842e0e146103d557806342966c68146103e857806351cff8d9146104085780636352211e1461042857600080fd5b80630dccc9ad1161017a57806324d7806c1161014957806324d7806c146103535780632d3456701461037357806331ae450b1461039357806340c10f19146103b557600080fd5b80630dccc9ad146102fc57806318160ddd1461031157806323b872dd1461032a578063248225141461033d57600080fd5b806306fdde03116101b657806306fdde0314610262578063081812fc14610284578063095ea7b3146102bc5780630bb78ec1146102cf57600080fd5b806301ffc9a7146101dd5780630283fbac1461021257806302fe530514610240575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046118e9565b6105c2565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061023261022d366004611906565b61060c565b604051908152602001610209565b34801561024c57600080fd5b5061026061025b36600461191f565b610658565b005b34801561026e57600080fd5b506102776106bd565b60405161020991906119e1565b34801561029057600080fd5b506102a461029f366004611906565b61074f565b6040516001600160a01b039091168152602001610209565b6102606102ca366004611a09565b610793565b3480156102db57600080fd5b506102326102ea366004611906565b600f6020526000908152604090205481565b34801561030857600080fd5b50610277610833565b34801561031d57600080fd5b5060015460005403610232565b610260610338366004611a35565b6108c1565b34801561034957600080fd5b50610232600d5481565b34801561035f57600080fd5b506101fd61036e366004611a76565b610a52565b34801561037f57600080fd5b5061026061038e366004611a76565b610a8b565b34801561039f57600080fd5b506103a8610ae9565b6040516102099190611a93565b3480156103c157600080fd5b506102606103d0366004611a09565b610b98565b6102606103e3366004611a35565b610ca6565b3480156103f457600080fd5b50610260610403366004611906565b610cc1565b34801561041457600080fd5b50610260610423366004611a76565b610d1c565b34801561043457600080fd5b506102a4610443366004611906565b610d9b565b34801561045457600080fd5b50610260610463366004611a76565b610da6565b34801561047457600080fd5b50610232610483366004611a76565b610dfe565b34801561049457600080fd5b50610260610e4d565b3480156104a957600080fd5b506102606104b8366004611a09565b610e61565b3480156104c957600080fd5b506008546001600160a01b03166102a4565b3480156104e757600080fd5b50610277610ed1565b3480156104fc57600080fd5b5061026061050b366004611ae0565b610ee0565b61026061051e366004611b34565b610f4c565b34801561052f57600080fd5b5061027761053e366004611906565b610f96565b34801561054f57600080fd5b5061056361055e366004611906565b611047565b604080516001600160a01b039093168352602083019190915201610209565b34801561058e57600080fd5b506101fd61059d366004611c14565b61109a565b3480156105ae57600080fd5b506102606105bd366004611a76565b6110c8565b60006105cd8261113e565b806105dc57506105dc82611173565b806105f757506001600160e01b0319821663152a902d60e11b145b8061060657506106068261113e565b92915050565b60008042600d5460405160200161062d929190918252602082015260400190565b60408051601f19818403018152919052805160209091012090506106518382611c58565b9392505050565b3361066b6008546001600160a01b031690565b6001600160a01b0316148061068657506106866009336111c1565b6106ab5760405162461bcd60e51b81526004016106a290611c6c565b60405180910390fd5b600e6106b8828483611d30565b505050565b6060600280546106cc90611cb0565b80601f01602080910402602001604051908101604052809291908181526020018280546106f890611cb0565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a826111e3565b610777576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079e82610d9b565b9050336001600160a01b038216146107d7576107ba813361109a565b6107d7576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600e805461084090611cb0565b80601f016020809104026020016040519081016040528092919081815260200182805461086c90611cb0565b80156108b95780601f1061088e576101008083540402835291602001916108b9565b820191906000526020600020905b81548152906001019060200180831161089c57829003601f168201915b505050505081565b60006108cc8261120a565b9050836001600160a01b0316816001600160a01b0316146108ff5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260409020805461092b8187335b6001600160a01b039081169116811491141790565b61095657610939863361109a565b61095657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661097d57604051633a954ecd60e21b815260040160405180910390fd5b801561098857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a1a57600184016000818152600460205260408120549003610a18576000548114610a185760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b0316600080516020611f8f83398151915260405160405180910390a45b505050505050565b6000816001600160a01b0316610a706008546001600160a01b031690565b6001600160a01b0316148061060657506106066009836111c1565b610a93611271565b610a9e6009826111c1565b15610ae65760405133906001600160a01b038316907f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d590600090a3610ae46009826112cb565b505b50565b6060610af560096112e0565b67ffffffffffffffff811115610b0d57610b0d611b1e565b604051908082528060200260200182016040528015610b36578160200160208202803683370190505b50905060005b610b4660096112e0565b811015610b9457610b586009826112ea565b828281518110610b6a57610b6a611df1565b6001600160a01b039092166020928302919091019091015280610b8c81611e1d565b915050610b3c565b5090565b33610bab6008546001600160a01b031690565b6001600160a01b03161480610bc65750610bc66009336111c1565b610be25760405162461bcd60e51b81526004016106a290611c6c565b60005b81811015610c9b576000610bf9606461060c565b905060006005821015610c2257610c10600261060c565b610c1b906001611e36565b9050610c58565b6016821015610c4057610c35600561060c565b610c1b906003611e36565b610c4a600761060c565b610c55906008611e36565b90505b600d80546000908152600f6020526040812083905581546001929190610c7f908490611e36565b9250508190555050508080610c9390611e1d565b915050610be5565b50610ae482826112f6565b6106b883838360405180602001604052806000815250610f4c565b6000610ccc82610d9b565b9050336001600160a01b03821614610d135760405162461bcd60e51b815260206004820152600a6024820152694f776e6572206f6e6c7960b01b60448201526064016106a2565b610ae4826113d0565b33610d2f6008546001600160a01b031690565b6001600160a01b03161480610d4a5750610d4a6009336111c1565b610d665760405162461bcd60e51b81526004016106a290611c6c565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610ae4573d6000803e3d6000fd5b60006106068261120a565b610dae611271565b610db96009826111c1565b610ae65760405133906001600160a01b038316907f7e1a1a08d52e4ba0e21554733d66165fd5151f99460116223d9e3a608eec5cb190600090a3610ae46009826113db565b60006001600160a01b038216610e27576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610e55611271565b610e5f60006113f0565b565b33610e746008546001600160a01b031690565b6001600160a01b03161480610e8f5750610e8f6009336111c1565b610eab5760405162461bcd60e51b81526004016106a290611c6c565b600b80546001600160a01b0319166001600160a01b039390931692909217909155600c55565b6060600380546106cc90611cb0565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f578484846108c1565b6001600160a01b0383163b15610f9057610f7384848484611442565b610f90576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fa1826111e3565b6110055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106a2565b6000828152600f6020526040902054600e906110209061152e565b604051602001611031929190611e49565b6040516020818303038152906040529050919050565b600b5460009081906001600160a01b03161561108f57600b54600c546001600160a01b039091169060649061107c9086611ee0565b6110869190611ef7565b91509150915091565b506000928392509050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6110d0611271565b6001600160a01b0381166111355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a2565b610ae6816113f0565b60006001600160e01b03198216632a9f3abf60e11b148061060657506301ffc9a760e01b6001600160e01b0319831614610606565b60006301ffc9a760e01b6001600160e01b0319831614806111a457506380ac58cd60e01b6001600160e01b03198316145b806106065750506001600160e01b031916635b5e139f60e01b1490565b6001600160a01b03811660009081526001830160205260408120541515610651565b6000805482108015610606575050600090815260046020526040902054600160e01b161590565b6000816000548110156112585760008181526004602052604081205490600160e01b82169003611256575b80600003610651575060001901600081815260046020526040902054611235565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610e5f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a2565b6000610651836001600160a01b03841661162f565b6000610606825490565b60006106518383611722565b600080549082900361131b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020611f8f8339815191528180a4600183015b8181146113a65780836000600080516020611f8f833981519152600080a4600101611380565b50816000036113c757604051622e076360e81b815260040160405180910390fd5b60005550505050565b610ae681600061174c565b6000610651836001600160a01b038416611884565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611477903390899088908890600401611f0b565b6020604051808303816000875af19250505080156114b2575060408051601f3d908101601f191682019092526114af91810190611f48565b60015b611510573d8080156114e0576040519150601f19603f3d011682016040523d82523d6000602084013e6114e5565b606091505b508051600003611508576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036115555750506040805180820190915260018152600360fc1b602082015290565b8160005b811561157f578061156981611e1d565b91506115789050600a83611ef7565b9150611559565b60008167ffffffffffffffff81111561159a5761159a611b1e565b6040519080825280601f01601f1916602001820160405280156115c4576020820181803683370190505b5090505b8415611526576115d9600183611f65565b91506115e6600a86611c58565b6115f1906030611e36565b60f81b81838151811061160657611606611df1565b60200101906001600160f81b031916908160001a905350611628600a86611ef7565b94506115c8565b60008181526001830160205260408120548015611718576000611653600183611f65565b855490915060009061166790600190611f65565b90508181146116cc57600086600001828154811061168757611687611df1565b90600052602060002001549050808760000184815481106116aa576116aa611df1565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806116dd576116dd611f78565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610606565b6000915050610606565b600082600001828154811061173957611739611df1565b9060005260206000200154905092915050565b60006117578361120a565b90508060008061177586600090815260066020526040902080549091565b9150915084156117b55761178a818433610916565b6117b557611798833361109a565b6117b557604051632ce44b5f60e11b815260040160405180910390fd5b80156117c057600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b8516900361184e5760018601600081815260046020526040812054900361184c57600054811461184c5760008181526004602052604090208590555b505b60405186906000906001600160a01b03861690600080516020611f8f833981519152908390a45050600180548101905550505050565b60008181526001830160205260408120546118cb57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610606565b506000610606565b6001600160e01b031981168114610ae657600080fd5b6000602082840312156118fb57600080fd5b8135610651816118d3565b60006020828403121561191857600080fd5b5035919050565b6000806020838503121561193257600080fd5b823567ffffffffffffffff8082111561194a57600080fd5b818501915085601f83011261195e57600080fd5b81358181111561196d57600080fd5b86602082850101111561197f57600080fd5b60209290920196919550909350505050565b60005b838110156119ac578181015183820152602001611994565b50506000910152565b600081518084526119cd816020860160208601611991565b601f01601f19169290920160200192915050565b60208152600061065160208301846119b5565b6001600160a01b0381168114610ae657600080fd5b60008060408385031215611a1c57600080fd5b8235611a27816119f4565b946020939093013593505050565b600080600060608486031215611a4a57600080fd5b8335611a55816119f4565b92506020840135611a65816119f4565b929592945050506040919091013590565b600060208284031215611a8857600080fd5b8135610651816119f4565b6020808252825182820181905260009190848201906040850190845b81811015611ad45783516001600160a01b031683529284019291840191600101611aaf565b50909695505050505050565b60008060408385031215611af357600080fd5b8235611afe816119f4565b915060208301358015158114611b1357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611b4a57600080fd5b8435611b55816119f4565b93506020850135611b65816119f4565b925060408501359150606085013567ffffffffffffffff80821115611b8957600080fd5b818701915087601f830112611b9d57600080fd5b813581811115611baf57611baf611b1e565b604051601f8201601f19908116603f01168101908382118183101715611bd757611bd7611b1e565b816040528281528a6020848701011115611bf057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c2757600080fd5b8235611c32816119f4565b91506020830135611b13816119f4565b634e487b7160e01b600052601260045260246000fd5b600082611c6757611c67611c42565b500690565b60208082526024908201527f41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f7220616040820152633236b4b760e11b606082015260800190565b600181811c90821680611cc457607f821691505b602082108103611ce457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156106b857600081815260208120601f850160051c81016020861015611d115750805b601f850160051c820191505b81811015610a4a57828155600101611d1d565b67ffffffffffffffff831115611d4857611d48611b1e565b611d5c83611d568354611cb0565b83611cea565b6000601f841160018114611d905760008515611d785750838201355b600019600387901b1c1916600186901b178355611dea565b600083815260209020601f19861690835b82811015611dc15786850135825560209485019460019092019101611da1565b5086821015611dde5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611e2f57611e2f611e07565b5060010190565b8082018082111561060657610606611e07565b6000808454611e5781611cb0565b60018281168015611e6f5760018114611e8457611eb3565b60ff1984168752821515830287019450611eb3565b8860005260208060002060005b85811015611eaa5781548a820152908401908201611e91565b50505082870194505b505050508351611ec7818360208801611991565b64173539b7b760d91b9101908152600501949350505050565b808202811582820484141761060657610606611e07565b600082611f0657611f06611c42565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3e908301846119b5565b9695505050505050565b600060208284031215611f5a57600080fd5b8151610651816118d3565b8181038181111561060657610606611e07565b634e487b7160e01b600052603160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201975ba8a367adaee37b679c827bde2a25f15481142041cb353b6120e67bd63fb64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806342842e0e116101025780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd14610523578063cef6d36814610543578063e985e9c514610582578063f2fde38b146105a257600080fd5b80638da5cb5b146104bd57806395d89b41146104db578063a22cb465146104f0578063b88d4fde1461051057600080fd5b80636d73e669116100d15780636d73e6691461044857806370a0823114610468578063715018a6146104885780638c7ea24b1461049d57600080fd5b806342842e0e146103d557806342966c68146103e857806351cff8d9146104085780636352211e1461042857600080fd5b80630dccc9ad1161017a57806324d7806c1161014957806324d7806c146103535780632d3456701461037357806331ae450b1461039357806340c10f19146103b557600080fd5b80630dccc9ad146102fc57806318160ddd1461031157806323b872dd1461032a578063248225141461033d57600080fd5b806306fdde03116101b657806306fdde0314610262578063081812fc14610284578063095ea7b3146102bc5780630bb78ec1146102cf57600080fd5b806301ffc9a7146101dd5780630283fbac1461021257806302fe530514610240575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046118e9565b6105c2565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061023261022d366004611906565b61060c565b604051908152602001610209565b34801561024c57600080fd5b5061026061025b36600461191f565b610658565b005b34801561026e57600080fd5b506102776106bd565b60405161020991906119e1565b34801561029057600080fd5b506102a461029f366004611906565b61074f565b6040516001600160a01b039091168152602001610209565b6102606102ca366004611a09565b610793565b3480156102db57600080fd5b506102326102ea366004611906565b600f6020526000908152604090205481565b34801561030857600080fd5b50610277610833565b34801561031d57600080fd5b5060015460005403610232565b610260610338366004611a35565b6108c1565b34801561034957600080fd5b50610232600d5481565b34801561035f57600080fd5b506101fd61036e366004611a76565b610a52565b34801561037f57600080fd5b5061026061038e366004611a76565b610a8b565b34801561039f57600080fd5b506103a8610ae9565b6040516102099190611a93565b3480156103c157600080fd5b506102606103d0366004611a09565b610b98565b6102606103e3366004611a35565b610ca6565b3480156103f457600080fd5b50610260610403366004611906565b610cc1565b34801561041457600080fd5b50610260610423366004611a76565b610d1c565b34801561043457600080fd5b506102a4610443366004611906565b610d9b565b34801561045457600080fd5b50610260610463366004611a76565b610da6565b34801561047457600080fd5b50610232610483366004611a76565b610dfe565b34801561049457600080fd5b50610260610e4d565b3480156104a957600080fd5b506102606104b8366004611a09565b610e61565b3480156104c957600080fd5b506008546001600160a01b03166102a4565b3480156104e757600080fd5b50610277610ed1565b3480156104fc57600080fd5b5061026061050b366004611ae0565b610ee0565b61026061051e366004611b34565b610f4c565b34801561052f57600080fd5b5061027761053e366004611906565b610f96565b34801561054f57600080fd5b5061056361055e366004611906565b611047565b604080516001600160a01b039093168352602083019190915201610209565b34801561058e57600080fd5b506101fd61059d366004611c14565b61109a565b3480156105ae57600080fd5b506102606105bd366004611a76565b6110c8565b60006105cd8261113e565b806105dc57506105dc82611173565b806105f757506001600160e01b0319821663152a902d60e11b145b8061060657506106068261113e565b92915050565b60008042600d5460405160200161062d929190918252602082015260400190565b60408051601f19818403018152919052805160209091012090506106518382611c58565b9392505050565b3361066b6008546001600160a01b031690565b6001600160a01b0316148061068657506106866009336111c1565b6106ab5760405162461bcd60e51b81526004016106a290611c6c565b60405180910390fd5b600e6106b8828483611d30565b505050565b6060600280546106cc90611cb0565b80601f01602080910402602001604051908101604052809291908181526020018280546106f890611cb0565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a826111e3565b610777576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079e82610d9b565b9050336001600160a01b038216146107d7576107ba813361109a565b6107d7576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600e805461084090611cb0565b80601f016020809104026020016040519081016040528092919081815260200182805461086c90611cb0565b80156108b95780601f1061088e576101008083540402835291602001916108b9565b820191906000526020600020905b81548152906001019060200180831161089c57829003601f168201915b505050505081565b60006108cc8261120a565b9050836001600160a01b0316816001600160a01b0316146108ff5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260409020805461092b8187335b6001600160a01b039081169116811491141790565b61095657610939863361109a565b61095657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661097d57604051633a954ecd60e21b815260040160405180910390fd5b801561098857600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a1a57600184016000818152600460205260408120549003610a18576000548114610a185760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b0316600080516020611f8f83398151915260405160405180910390a45b505050505050565b6000816001600160a01b0316610a706008546001600160a01b031690565b6001600160a01b0316148061060657506106066009836111c1565b610a93611271565b610a9e6009826111c1565b15610ae65760405133906001600160a01b038316907f7c0c3c84c67c85fcac635147348bfe374c24a1a93d0366d1cfe9d8853cbf89d590600090a3610ae46009826112cb565b505b50565b6060610af560096112e0565b67ffffffffffffffff811115610b0d57610b0d611b1e565b604051908082528060200260200182016040528015610b36578160200160208202803683370190505b50905060005b610b4660096112e0565b811015610b9457610b586009826112ea565b828281518110610b6a57610b6a611df1565b6001600160a01b039092166020928302919091019091015280610b8c81611e1d565b915050610b3c565b5090565b33610bab6008546001600160a01b031690565b6001600160a01b03161480610bc65750610bc66009336111c1565b610be25760405162461bcd60e51b81526004016106a290611c6c565b60005b81811015610c9b576000610bf9606461060c565b905060006005821015610c2257610c10600261060c565b610c1b906001611e36565b9050610c58565b6016821015610c4057610c35600561060c565b610c1b906003611e36565b610c4a600761060c565b610c55906008611e36565b90505b600d80546000908152600f6020526040812083905581546001929190610c7f908490611e36565b9250508190555050508080610c9390611e1d565b915050610be5565b50610ae482826112f6565b6106b883838360405180602001604052806000815250610f4c565b6000610ccc82610d9b565b9050336001600160a01b03821614610d135760405162461bcd60e51b815260206004820152600a6024820152694f776e6572206f6e6c7960b01b60448201526064016106a2565b610ae4826113d0565b33610d2f6008546001600160a01b031690565b6001600160a01b03161480610d4a5750610d4a6009336111c1565b610d665760405162461bcd60e51b81526004016106a290611c6c565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610ae4573d6000803e3d6000fd5b60006106068261120a565b610dae611271565b610db96009826111c1565b610ae65760405133906001600160a01b038316907f7e1a1a08d52e4ba0e21554733d66165fd5151f99460116223d9e3a608eec5cb190600090a3610ae46009826113db565b60006001600160a01b038216610e27576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610e55611271565b610e5f60006113f0565b565b33610e746008546001600160a01b031690565b6001600160a01b03161480610e8f5750610e8f6009336111c1565b610eab5760405162461bcd60e51b81526004016106a290611c6c565b600b80546001600160a01b0319166001600160a01b039390931692909217909155600c55565b6060600380546106cc90611cb0565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f578484846108c1565b6001600160a01b0383163b15610f9057610f7384848484611442565b610f90576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fa1826111e3565b6110055760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106a2565b6000828152600f6020526040902054600e906110209061152e565b604051602001611031929190611e49565b6040516020818303038152906040529050919050565b600b5460009081906001600160a01b03161561108f57600b54600c546001600160a01b039091169060649061107c9086611ee0565b6110869190611ef7565b91509150915091565b506000928392509050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6110d0611271565b6001600160a01b0381166111355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a2565b610ae6816113f0565b60006001600160e01b03198216632a9f3abf60e11b148061060657506301ffc9a760e01b6001600160e01b0319831614610606565b60006301ffc9a760e01b6001600160e01b0319831614806111a457506380ac58cd60e01b6001600160e01b03198316145b806106065750506001600160e01b031916635b5e139f60e01b1490565b6001600160a01b03811660009081526001830160205260408120541515610651565b6000805482108015610606575050600090815260046020526040902054600160e01b161590565b6000816000548110156112585760008181526004602052604081205490600160e01b82169003611256575b80600003610651575060001901600081815260046020526040902054611235565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610e5f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a2565b6000610651836001600160a01b03841661162f565b6000610606825490565b60006106518383611722565b600080549082900361131b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020611f8f8339815191528180a4600183015b8181146113a65780836000600080516020611f8f833981519152600080a4600101611380565b50816000036113c757604051622e076360e81b815260040160405180910390fd5b60005550505050565b610ae681600061174c565b6000610651836001600160a01b038416611884565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611477903390899088908890600401611f0b565b6020604051808303816000875af19250505080156114b2575060408051601f3d908101601f191682019092526114af91810190611f48565b60015b611510573d8080156114e0576040519150601f19603f3d011682016040523d82523d6000602084013e6114e5565b606091505b508051600003611508576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036115555750506040805180820190915260018152600360fc1b602082015290565b8160005b811561157f578061156981611e1d565b91506115789050600a83611ef7565b9150611559565b60008167ffffffffffffffff81111561159a5761159a611b1e565b6040519080825280601f01601f1916602001820160405280156115c4576020820181803683370190505b5090505b8415611526576115d9600183611f65565b91506115e6600a86611c58565b6115f1906030611e36565b60f81b81838151811061160657611606611df1565b60200101906001600160f81b031916908160001a905350611628600a86611ef7565b94506115c8565b60008181526001830160205260408120548015611718576000611653600183611f65565b855490915060009061166790600190611f65565b90508181146116cc57600086600001828154811061168757611687611df1565b90600052602060002001549050808760000184815481106116aa576116aa611df1565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806116dd576116dd611f78565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610606565b6000915050610606565b600082600001828154811061173957611739611df1565b9060005260206000200154905092915050565b60006117578361120a565b90508060008061177586600090815260066020526040902080549091565b9150915084156117b55761178a818433610916565b6117b557611798833361109a565b6117b557604051632ce44b5f60e11b815260040160405180910390fd5b80156117c057600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b8516900361184e5760018601600081815260046020526040812054900361184c57600054811461184c5760008181526004602052604090208590555b505b60405186906000906001600160a01b03861690600080516020611f8f833981519152908390a45050600180548101905550505050565b60008181526001830160205260408120546118cb57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610606565b506000610606565b6001600160e01b031981168114610ae657600080fd5b6000602082840312156118fb57600080fd5b8135610651816118d3565b60006020828403121561191857600080fd5b5035919050565b6000806020838503121561193257600080fd5b823567ffffffffffffffff8082111561194a57600080fd5b818501915085601f83011261195e57600080fd5b81358181111561196d57600080fd5b86602082850101111561197f57600080fd5b60209290920196919550909350505050565b60005b838110156119ac578181015183820152602001611994565b50506000910152565b600081518084526119cd816020860160208601611991565b601f01601f19169290920160200192915050565b60208152600061065160208301846119b5565b6001600160a01b0381168114610ae657600080fd5b60008060408385031215611a1c57600080fd5b8235611a27816119f4565b946020939093013593505050565b600080600060608486031215611a4a57600080fd5b8335611a55816119f4565b92506020840135611a65816119f4565b929592945050506040919091013590565b600060208284031215611a8857600080fd5b8135610651816119f4565b6020808252825182820181905260009190848201906040850190845b81811015611ad45783516001600160a01b031683529284019291840191600101611aaf565b50909695505050505050565b60008060408385031215611af357600080fd5b8235611afe816119f4565b915060208301358015158114611b1357600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611b4a57600080fd5b8435611b55816119f4565b93506020850135611b65816119f4565b925060408501359150606085013567ffffffffffffffff80821115611b8957600080fd5b818701915087601f830112611b9d57600080fd5b813581811115611baf57611baf611b1e565b604051601f8201601f19908116603f01168101908382118183101715611bd757611bd7611b1e565b816040528281528a6020848701011115611bf057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c2757600080fd5b8235611c32816119f4565b91506020830135611b13816119f4565b634e487b7160e01b600052601260045260246000fd5b600082611c6757611c67611c42565b500690565b60208082526024908201527f41646d696e436f6e74726f6c3a204d757374206265206f776e6572206f7220616040820152633236b4b760e11b606082015260800190565b600181811c90821680611cc457607f821691505b602082108103611ce457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156106b857600081815260208120601f850160051c81016020861015611d115750805b601f850160051c820191505b81811015610a4a57828155600101611d1d565b67ffffffffffffffff831115611d4857611d48611b1e565b611d5c83611d568354611cb0565b83611cea565b6000601f841160018114611d905760008515611d785750838201355b600019600387901b1c1916600186901b178355611dea565b600083815260209020601f19861690835b82811015611dc15786850135825560209485019460019092019101611da1565b5086821015611dde5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611e2f57611e2f611e07565b5060010190565b8082018082111561060657610606611e07565b6000808454611e5781611cb0565b60018281168015611e6f5760018114611e8457611eb3565b60ff1984168752821515830287019450611eb3565b8860005260208060002060005b85811015611eaa5781548a820152908401908201611e91565b50505082870194505b505050508351611ec7818360208801611991565b64173539b7b760d91b9101908152600501949350505050565b808202811582820484141761060657610606611e07565b600082611f0657611f06611c42565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3e908301846119b5565b9695505050505050565b600060208284031215611f5a57600080fd5b8151610651816118d3565b8181038181111561060657610606611e07565b634e487b7160e01b600052603160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201975ba8a367adaee37b679c827bde2a25f15481142041cb353b6120e67bd63fb64736f6c63430008110033

Deployed Bytecode Sourcemap

164:2782:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;591:384;;;;;;;;;;-1:-1:-1;591:384:1;;;;;:::i;:::-;;:::i;:::-;;;565:14:12;;558:22;540:41;;528:2;513:18;591:384:1;;;;;;;;1568:203;;;;;;;;;;-1:-1:-1;1568:203:1;;;;;:::i;:::-;;:::i;:::-;;;923:25:12;;;911:2;896:18;1568:203:1;777:177:12;1954:114:1;;;;;;;;;;-1:-1:-1;1954:114:1;;;;;:::i;:::-;;:::i;:::-;;10039:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16360:214::-;;;;;;;;;;-1:-1:-1;16360:214:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2476:32:12;;;2458:51;;2446:2;2431:18;16360:214:4;2312:203:12;15812:398:4;;;;;;:::i;:::-;;:::i;381:45:1:-;;;;;;;;;;-1:-1:-1;381:45:1;;;;;:::i;:::-;;;;;;;;;;;;;;352:18;;;;;;;;;;;;;:::i;5894:317:4:-;;;;;;;;;;-1:-1:-1;6164:12:4;;5955:7;6148:13;:28;5894:317;;19903:2764;;;;;;:::i;:::-;;:::i;319:27:1:-;;;;;;;;;;;;;;;;1873:137:0;;;;;;;;;;-1:-1:-1;1873:137:0;;;;;:::i;:::-;;:::i;1605:205::-;;;;;;;;;;-1:-1:-1;1605:205:0;;;;;:::i;:::-;;:::i;1004:261::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;981:581:1:-;;;;;;;;;;-1:-1:-1;981:581:1;;;;;:::i;:::-;;:::i;22758:187:4:-;;;;;;:::i;:::-;;:::i;1777:171:1:-;;;;;;;;;;-1:-1:-1;1777:171:1;;;;;:::i;:::-;;:::i;2816:127::-;;;;;;;;;;-1:-1:-1;2816:127:1;;;;;:::i;:::-;;:::i;11391:150:4:-;;;;;;;;;;-1:-1:-1;11391:150:4;;;;;:::i;:::-;;:::i;1333:205:0:-;;;;;;;;;;-1:-1:-1;1333:205:0;;;;;:::i;:::-;;:::i;7045:230:4:-;;;;;;;;;;-1:-1:-1;7045:230:4;;;;;:::i;:::-;;:::i;1824:101:10:-;;;;;;;;;;;;;:::i;2356:190:1:-;;;;;;;;;;-1:-1:-1;2356:190:1;;;;;:::i;:::-;;:::i;1194:85:10:-;;;;;;;;;;-1:-1:-1;1266:6:10;;-1:-1:-1;;;;;1266:6:10;1194:85;;10208:102:4;;;;;;;;;;;;;:::i;16901:231::-;;;;;;;;;;-1:-1:-1;16901:231:4;;;;;:::i;:::-;;:::i;23526:396::-;;;;;;:::i;:::-;;:::i;2074:276:1:-;;;;;;;;;;-1:-1:-1;2074:276:1;;;;;:::i;:::-;;:::i;2552:258::-;;;;;;;;;;-1:-1:-1;2552:258:1;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6696:32:12;;;6678:51;;6760:2;6745:18;;6738:34;;;;6651:18;2552:258:1;6504:274:12;17282:162:4;;;;;;;;;;-1:-1:-1;17282:162:4;;;;;:::i;:::-;;:::i;2074:198:10:-;;;;;;;;;;-1:-1:-1;2074:198:10;;;;;:::i;:::-;;:::i;591:384:1:-;739:4;774:43;805:11;774:30;:43::i;:::-;:93;;;;829:38;855:11;829:25;:38::i;:::-;774:146;;;-1:-1:-1;;;;;;;879:41:1;;-1:-1:-1;;;879:41:1;774:146;:194;;;;932:36;956:11;932:23;:36::i;:::-;759:209;591:384;-1:-1:-1;;591:384:1:o;1568:203::-;1636:7;1658:11;1707:15;1724:8;;1690:43;;;;;;;;7333:19:12;;;7377:2;7368:12;;7361:28;7414:2;7405:12;;7176:247;1690:43:1;;;;-1:-1:-1;;1690:43:1;;;;;;;;;1680:54;;1690:43;1680:54;;;;;-1:-1:-1;1752:12:1;1758:6;1680:54;1752:12;:::i;:::-;1745:19;1568:203;-1:-1:-1;;;1568:203:1:o;1954:114::-;835:10:0;824:7;1266:6:10;;-1:-1:-1;;;;;1266:6:10;;1194:85;824:7:0;-1:-1:-1;;;;;824:21:0;;:53;;;-1:-1:-1;849:28:0;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:0;;;;;;;:::i;:::-;;;;;;;;;2044:4:1::1;:17;2051:10:::0;;2044:4;:17:::1;:::i;:::-;;1954:114:::0;;:::o;10039:98:4:-;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;;-1:-1:-1;;;16485:34:4;;;;;;;;;;;16455:64;-1:-1:-1;16537:24:4;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;16537:30:4;;16360:214::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;-1:-1:-1;39523:10:4;-1:-1:-1;;;;;15947:28:4;;;15943:172;;15994:44;16011:5;39523:10;17282:162;:::i;15994:44::-;15989:126;;16065:35;;-1:-1:-1;;;16065:35:4;;;;;;;;;;;15989:126;16125:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;16125:35:4;-1:-1:-1;;;;;16125:35:4;;;;;;;;;16175:28;;16125:24;;16175:28;;;;;;;15890:320;15812:398;;:::o;352:18:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19903:2764:4:-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;-1:-1:-1;;;;;20112:45:4;20128:19;-1:-1:-1;;;;;20112:45:4;;20108:86;;20166:28;;-1:-1:-1;;;20166:28:4;;;;;;;;;;;20108:86;20206:27;19036:24;;;:15;:24;;;;;19260:26;;20394:68;19260:26;20436:4;39523:10;20442:19;-1:-1:-1;;;;;18524:32:4;;;18370:28;;18651:20;;18673:30;;18648:56;;18074:646;20394:68;20389:179;;20481:43;20498:4;39523:10;17282:162;:::i;20481:43::-;20476:92;;20533:35;;-1:-1:-1;;;20533:35:4;;;;;;;;;;;20476:92;-1:-1:-1;;;;;20583:16:4;;20579:52;;20608:23;;-1:-1:-1;;;20608:23:4;;;;;;;;;;;20579:52;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;-1:-1:-1;;;;;21300:24:4;;;;;;;:18;:24;;;;;;21298:26;;-1:-1:-1;;21298:26:4;;;21368:22;;;;;;;;;21366:24;;-1:-1:-1;21366:24:4;;;14703:11;14678:23;14674:41;14661:63;-1:-1:-1;;;14661:63:4;21654:26;;;;:17;:26;;;;;:172;;;;-1:-1:-1;;;21943:47:4;;:52;;21939:617;;22047:1;22037:11;;22015:19;22168:30;;;:17;:30;;;;;;:35;;22164:378;;22304:13;;22289:11;:28;22285:239;;22449:30;;;;:17;:30;;;;;:52;;;22285:239;21997:559;21939:617;22600:7;22596:2;-1:-1:-1;;;;;22581:27:4;22590:4;-1:-1:-1;;;;;22581:27:4;-1:-1:-1;;;;;;;;;;;22581:27:4;;;;;;;;;22618:42;20030:2637;;;19903:2764;;;:::o;1873:137:0:-;1935:4;1970:5;-1:-1:-1;;;;;1959:16:0;:7;1266:6:10;;-1:-1:-1;;;;;1266:6:10;;1194:85;1959:7:0;-1:-1:-1;;;;;1959:16:0;;:43;;;-1:-1:-1;1979:23:0;:7;1996:5;1979:16;:23::i;1605:205::-;1087:13:10;:11;:13::i;:::-;1683:23:0::1;:7;1700:5:::0;1683:16:::1;:23::i;:::-;1679:125;;;1727:31;::::0;1747:10:::1;::::0;-1:-1:-1;;;;;1727:31:0;::::1;::::0;::::1;::::0;;;::::1;1772:21;:7;1787:5:::0;1772:14:::1;:21::i;:::-;;1679:125;1605:205:::0;:::o;1004:261::-;1057:23;1115:16;:7;:14;:16::i;:::-;1101:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1101:31:0;;1092:40;;1147:6;1142:94;1163:16;:7;:14;:16::i;:::-;1159:1;:20;1142:94;;;1212:13;:7;1223:1;1212:10;:13::i;:::-;1200:6;1207:1;1200:9;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1200:25:0;;;:9;;;;;;;;;;;:25;1181:3;;;;:::i;:::-;;;;1142:94;;;;1004:261;:::o;981:581:1:-;835:10:0;824:7;1266:6:10;;-1:-1:-1;;;;;1266:6:10;;1194:85;824:7:0;-1:-1:-1;;;;;824:21:0;;:53;;;-1:-1:-1;849:28:0;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:0;;;;;;;:::i;:::-;1084:9:1::1;1080:447;1101:8;1097:1;:12;1080:447;;;1129:14;1146:26;1168:3;1146:21;:26::i;:::-;1129:43;;1186:11;1223:1;1214:6;:10;1211:239;;;1249:24;1271:1;1249:21;:24::i;:::-;:28;::::0;1276:1:::1;1249:28;:::i;:::-;1243:34;;1211:239;;;1309:2;1300:6;:11;1297:153;;;1336:24;1358:1;1336:21;:24::i;:::-;:28;::::0;1363:1:::1;1336:28;:::i;1297:153::-;1407:24;1429:1;1407:21;:24::i;:::-;:28;::::0;1434:1:::1;1407:28;:::i;:::-;1401:34;;1297:153;1474:8;::::0;;1463:20:::1;::::0;;;:10:::1;:20;::::0;;;;:26;;;1503:13;;1515:1:::1;::::0;1474:8;1463:20;1503:13:::1;::::0;1515:1;;1503:13:::1;:::i;:::-;;;;;;;;1115:412;;1111:3;;;;;:::i;:::-;;;;1080:447;;;;1536:19;1542:2;1546:8;1536:5;:19::i;22758:187:4:-:0;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;1777:171:1:-;1825:13;1841:24;1857:7;1841:15;:24::i;:::-;1825:40;-1:-1:-1;1883:10:1;-1:-1:-1;;;;;1883:19:1;;;1875:42;;;;-1:-1:-1;;;1875:42:1;;11261:2:12;1875:42:1;;;11243:21:12;11300:2;11280:18;;;11273:30;-1:-1:-1;;;11319:18:12;;;11312:40;11369:18;;1875:42:1;11059:334:12;1875:42:1;1927:14;1933:7;1927:5;:14::i;2816:127::-;835:10:0;824:7;1266:6:10;;-1:-1:-1;;;;;1266:6:10;;1194:85;824:7:0;-1:-1:-1;;;;;824:21:0;;:53;;;-1:-1:-1;849:28:0;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:0;;;;;;;:::i;:::-;2886:50:1::1;::::0;-1:-1:-1;;;;;2886:27:1;::::1;::::0;2914:21:::1;2886:50:::0;::::1;;;::::0;::::1;::::0;;;2914:21;2886:27;:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;11391:150:4::0;11463:7;11505:27;11524:7;11505:18;:27::i;1333:205:0:-;1087:13:10;:11;:13::i;:::-;1413:23:0::1;:7;1430:5:::0;1413:16:::1;:23::i;:::-;1408:124;;1457:32;::::0;1478:10:::1;::::0;-1:-1:-1;;;;;1457:32:0;::::1;::::0;::::1;::::0;;;::::1;1503:18;:7;1515:5:::0;1503:11:::1;:18::i;7045:230:4:-:0;7117:7;-1:-1:-1;;;;;7140:19:4;;7136:60;;7168:28;;-1:-1:-1;;;7168:28:4;;;;;;;;;;;7136:60;-1:-1:-1;;;;;;7213:25:4;;;;;:18;:25;;;;;;1360:13;7213:55;;7045:230::o;1824:101:10:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;2356:190:1:-;835:10:0;824:7;1266:6:10;;-1:-1:-1;;;;;1266:6:10;;1194:85;824:7:0;-1:-1:-1;;;;;824:21:0;;:53;;;-1:-1:-1;849:28:0;:7;866:10;849:16;:28::i;:::-;816:102;;;;-1:-1:-1;;;816:102:0;;;;;;;:::i;:::-;2464:20:1::1;:33:::0;;-1:-1:-1;;;;;;2464:33:1::1;-1:-1:-1::0;;;;;2464:33:1;;;::::1;::::0;;;::::1;::::0;;;2507:14:::1;:32:::0;2356:190::o;10208:102:4:-;10264:13;10296:7;10289:14;;;;;:::i;16901:231::-;39523:10;16995:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;16995:49:4;;;;;;;;;;;;:60;;-1:-1:-1;;16995:60:4;;;;;;;;;;17070:55;;540:41:12;;;16995:49:4;;39523:10;17070:55;;513:18:12;17070:55:4;;;;;;;16901:231;;:::o;23526:396::-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;-1:-1:-1;;;;;23740:14:4;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;-1:-1:-1;;;23861:40:4;;;;;;;;;;;23773:143;23526:396;;;;:::o;2074:276:1:-;2147:13;2180:16;2188:7;2180;:16::i;:::-;2172:76;;;;-1:-1:-1;;;2172:76:1;;11600:2:12;2172:76:1;;;11582:21:12;11639:2;11619:18;;;11612:30;11678:34;11658:18;;;11651:62;-1:-1:-1;;;11729:18:12;;;11722:45;11784:19;;2172:76:1;11398:411:12;2172:76:1;2312:19;;;;:10;:19;;;;;;2289:4;;2295:37;;:16;:37::i;:::-;2272:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2258:85;;2074:276;;;:::o;2552:258::-;2646:20;;2615:7;;;;-1:-1:-1;;;;;2646:20:1;:34;2643:129;;2703:20;;2738:14;;-1:-1:-1;;;;;2703:20:1;;;;2756:3;;2726:26;;:9;:26;:::i;:::-;2725:34;;;;:::i;:::-;2695:66;;;;2552:258;;;:::o;2643:129::-;-1:-1:-1;2797:1:1;;;;-1:-1:-1;2552:258:1;-1:-1:-1;2552:258:1:o;17282:162:4:-;-1:-1:-1;;;;;17402:25:4;;;17379:4;17402:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17282:162::o;2074:198:10:-;1087:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:10;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:10;;13506:2:12;2154:73:10::1;::::0;::::1;13488:21:12::0;13545:2;13525:18;;;13518:30;13584:34;13564:18;;;13557:62;-1:-1:-1;;;13635:18:12;;;13628:36;13681:19;;2154:73:10::1;13304:402:12::0;2154:73:10::1;2237:28;2256:8;2237:18;:28::i;458:230:0:-:0;560:4;-1:-1:-1;;;;;;583:46:0;;-1:-1:-1;;;583:46:0;;:98;;-1:-1:-1;;;;;;;;;;937:40:3;;;645:36:0;829:155:3;9155:630:4;9240:4;-1:-1:-1;;;;;;;;;9558:25:4;;;;:101;;-1:-1:-1;;;;;;;;;;9634:25:4;;;9558:101;:177;;;-1:-1:-1;;;;;;;;9710:25:4;-1:-1:-1;;;9710:25:4;;9155:630::o;8583:165:5:-;-1:-1:-1;;;;;8716:23:5;;8663:4;4250:19;;;:12;;;:19;;;;;;:24;;8686:55;4154:127;17693:277:4;17758:4;17845:13;;17835:7;:23;17793:151;;;;-1:-1:-1;;17895:26:4;;;;:17;:26;;;;;;-1:-1:-1;;;17895:44:4;:49;;17693:277::o;12515:1249::-;12582:7;12616;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:23;;;:17;:23;;;;;;;-1:-1:-1;;;12855:24:4;;:29;;12851:831;;13510:111;13517:6;13527:1;13517:11;13510:111;;-1:-1:-1;;;13587:6:4;13569:25;;;;:17;:25;;;;;;13510:111;;12851:831;12729:971;12703:997;13726:31;;-1:-1:-1;;;13726:31:4;;;;;;;;;;;1352:130:10;1266:6;;-1:-1:-1;;;;;1266:6:10;39523:10:4;1415:23:10;1407:68;;;;-1:-1:-1;;;1407:68:10;;13913:2:12;1407:68:10;;;13895:21:12;;;13932:18;;;13925:30;13991:34;13971:18;;;13964:62;14043:18;;1407:68:10;13711:356:12;8346:156:5;8419:4;8442:53;8450:3;-1:-1:-1;;;;;8470:23:5;;8442:7;:53::i;8829:115::-;8892:7;8918:19;8926:3;4444:18;;4362:107;9286:156;9360:7;9410:22;9414:3;9426:5;9410:3;:22::i;27091:2902:4:-;27163:20;27186:13;;;27213;;;27209:44;;27235:18;;-1:-1:-1;;;27235:18:4;;;;;;;;;;;27209:44;-1:-1:-1;;;;;27728:22:4;;;;;;:18;:22;;;;1495:2;27728:22;;;:71;;27766:32;27754:45;;27728:71;;;28035:31;;;:17;:31;;;;;-1:-1:-1;15123:15:4;;15097:24;15093:46;14703:11;14678:23;14674:41;14671:52;14661:63;;28035:170;;28264:23;;;;28035:31;;27728:22;;-1:-1:-1;;;;;;;;;;;27728:22:4;;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;-1:-1:-1;;;;;;;;;;;29731:1:4;29728;29723:59;29612:1;29599:15;29461:339;;;29465:75;29831:8;29843:1;29831:13;29827:45;;29853:19;;-1:-1:-1;;;29853:19:4;;;;;;;;;;;29827:45;29887:13;:19;-1:-1:-1;2044:17:1::1;1954:114:::0;;:::o;33791:87:4:-;33850:21;33856:7;33865:5;33850;:21::i;8028:150:5:-;8098:4;8121:50;8126:3;-1:-1:-1;;;;;8146:23:5;;8121:4;:50::i;2426:187:10:-;2518:6;;;-1:-1:-1;;;;;2534:17:10;;;-1:-1:-1;;;;;;2534:17:10;;;;;;;2566:40;;2518:6;;;2534:17;2518:6;;2566:40;;2499:16;;2566:40;2489:124;2426:187;:::o;25948:697:4:-;26126:88;;-1:-1:-1;;;26126:88:4;;26106:4;;-1:-1:-1;;;;;26126:45:4;;;;;:88;;39523:10;;26193:4;;26199:7;;26208:5;;26126:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26126:88:4;;;;;;;;-1:-1:-1;;26126:88:4;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26404:6;:13;26421:1;26404:18;26400:229;;26449:40;;-1:-1:-1;;;26449:40:4;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;-1:-1:-1;;;;;;26282:64:4;-1:-1:-1;;;26282:64:4;;-1:-1:-1;26122:517:4;25948:697;;;;;;:::o;392:703:11:-;448:13;665:5;674:1;665:10;661:51;;-1:-1:-1;;691:10:11;;;;;;;;;;;;-1:-1:-1;;;691:10:11;;;;;392:703::o;661:51::-;736:5;721:12;775:75;782:9;;775:75;;807:8;;;;:::i;:::-;;-1:-1:-1;829:10:11;;-1:-1:-1;837:2:11;829:10;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;881:17:11;;859:39;;908:150;915:10;;908:150;;941:11;951:1;941:11;;:::i;:::-;;-1:-1:-1;1009:10:11;1017:2;1009:5;:10;:::i;:::-;996:24;;:2;:24;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;966:56:11;;;;;;;;-1:-1:-1;1036:11:11;1045:2;1036:11;;:::i;:::-;;;908:150;;2685:1388:5;2751:4;2888:19;;;:12;;;:19;;;;;;2922:15;;2918:1149;;3291:21;3315:14;3328:1;3315:10;:14;:::i;:::-;3363:18;;3291:38;;-1:-1:-1;3343:17:5;;3363:22;;3384:1;;3363:22;:::i;:::-;3343:42;;3417:13;3404:9;:26;3400:398;;3450:17;3470:3;:11;;3482:9;3470:22;;;;;;;;:::i;:::-;;;;;;;;;3450:42;;3621:9;3592:3;:11;;3604:13;3592:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;3704:23;;;:12;;;:23;;;;;:36;;;3400:398;3876:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3968:3;:12;;:19;3981:5;3968:19;;;;;;;;;;;3961:26;;;4009:4;4002:11;;;;;;;2918:1149;4051:5;4044:12;;;;;4811:118;4878:7;4904:3;:11;;4916:5;4904:18;;;;;;;;:::i;:::-;;;;;;;;;4897:25;;4811:118;;;;:::o;34095:3015:4:-;34174:27;34204;34223:7;34204:18;:27::i;:::-;34174:57;-1:-1:-1;34174:57:4;34242:12;;34362:35;34389:7;18927:27;19036:24;;;:15;:24;;;;;19260:26;;19036:24;;18828:474;34362:35;34305:92;;;;34412:13;34408:312;;;34531:68;34556:15;34573:4;39523:10;34579:19;39437:103;34531:68;34526:183;;34622:43;34639:4;39523:10;17282:162;:::i;34622:43::-;34617:92;;34674:35;;-1:-1:-1;;;34674:35:4;;;;;;;;;;;34617:92;34870:15;34867:157;;;35008:1;34987:19;34980:30;34867:157;-1:-1:-1;;;;;35613:24:4;;;;;;:18;:24;;;;;:60;;35641:32;35613:60;;;14703:11;14678:23;14674:41;14661:63;-1:-1:-1;;;14661:63:4;35904:26;;;;:17;:26;;;;;:202;;;;-1:-1:-1;;;36223:47:4;;:52;;36219:617;;36327:1;36317:11;;36295:19;36448:30;;;:17;:30;;;;;;:35;;36444:378;;36584:13;;36569:11;:28;36565:239;;36729:30;;;;:17;:30;;;;;:52;;;36565:239;36277:559;36219:617;36861:35;;36888:7;;36884:1;;-1:-1:-1;;;;;36861:35:4;;;-1:-1:-1;;;;;;;;;;;36861:35:4;36884:1;;36861:35;-1:-1:-1;;37079:12:4;:14;;;;;;-1:-1:-1;;;;34095:3015:4:o;2113:404:5:-;2176:4;4250:19;;;:12;;;:19;;;;;;2192:319;;-1:-1:-1;2234:23:5;;;;;;;;:11;:23;;;;;;;;;;;;;2414:18;;2392:19;;;:12;;;:19;;;;;;:40;;;;2446:11;;2192:319;-1:-1:-1;2495:5:5;2488:12;;14:131:12;-1:-1:-1;;;;;;88:32:12;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:12;;592:180;-1:-1:-1;592:180:12:o;959:592::-;1030:6;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:52;;;1107:1;1104;1097:12;1059:52;1147:9;1134:23;1176:18;1217:2;1209:6;1206:14;1203:34;;;1233:1;1230;1223:12;1203:34;1271:6;1260:9;1256:22;1246:32;;1316:7;1309:4;1305:2;1301:13;1297:27;1287:55;;1338:1;1335;1328:12;1287:55;1378:2;1365:16;1404:2;1396:6;1393:14;1390:34;;;1420:1;1417;1410:12;1390:34;1465:7;1460:2;1451:6;1447:2;1443:15;1439:24;1436:37;1433:57;;;1486:1;1483;1476:12;1433:57;1517:2;1509:11;;;;;1539:6;;-1:-1:-1;959:592:12;;-1:-1:-1;;;;959:592:12:o;1556:250::-;1641:1;1651:113;1665:6;1662:1;1659:13;1651:113;;;1741:11;;;1735:18;1722:11;;;1715:39;1687:2;1680:10;1651:113;;;-1:-1:-1;;1798:1:12;1780:16;;1773:27;1556:250::o;1811:271::-;1853:3;1891:5;1885:12;1918:6;1913:3;1906:19;1934:76;2003:6;1996:4;1991:3;1987:14;1980:4;1973:5;1969:16;1934:76;:::i;:::-;2064:2;2043:15;-1:-1:-1;;2039:29:12;2030:39;;;;2071:4;2026:50;;1811:271;-1:-1:-1;;1811:271:12:o;2087:220::-;2236:2;2225:9;2218:21;2199:4;2256:45;2297:2;2286:9;2282:18;2274:6;2256:45;:::i;2520:131::-;-1:-1:-1;;;;;2595:31:12;;2585:42;;2575:70;;2641:1;2638;2631:12;2656:315;2724:6;2732;2785:2;2773:9;2764:7;2760:23;2756:32;2753:52;;;2801:1;2798;2791:12;2753:52;2840:9;2827:23;2859:31;2884:5;2859:31;:::i;:::-;2909:5;2961:2;2946:18;;;;2933:32;;-1:-1:-1;;;2656:315:12:o;2976:456::-;3053:6;3061;3069;3122:2;3110:9;3101:7;3097:23;3093:32;3090:52;;;3138:1;3135;3128:12;3090:52;3177:9;3164:23;3196:31;3221:5;3196:31;:::i;:::-;3246:5;-1:-1:-1;3303:2:12;3288:18;;3275:32;3316:33;3275:32;3316:33;:::i;:::-;2976:456;;3368:7;;-1:-1:-1;;;3422:2:12;3407:18;;;;3394:32;;2976:456::o;3437:247::-;3496:6;3549:2;3537:9;3528:7;3524:23;3520:32;3517:52;;;3565:1;3562;3555:12;3517:52;3604:9;3591:23;3623:31;3648:5;3623:31;:::i;3689:658::-;3860:2;3912:21;;;3982:13;;3885:18;;;4004:22;;;3831:4;;3860:2;4083:15;;;;4057:2;4042:18;;;3831:4;4126:195;4140:6;4137:1;4134:13;4126:195;;;4205:13;;-1:-1:-1;;;;;4201:39:12;4189:52;;4296:15;;;;4261:12;;;;4237:1;4155:9;4126:195;;;-1:-1:-1;4338:3:12;;3689:658;-1:-1:-1;;;;;;3689:658:12:o;4680:416::-;4745:6;4753;4806:2;4794:9;4785:7;4781:23;4777:32;4774:52;;;4822:1;4819;4812:12;4774:52;4861:9;4848:23;4880:31;4905:5;4880:31;:::i;:::-;4930:5;-1:-1:-1;4987:2:12;4972:18;;4959:32;5029:15;;5022:23;5010:36;;5000:64;;5060:1;5057;5050:12;5000:64;5083:7;5073:17;;;4680:416;;;;;:::o;5101:127::-;5162:10;5157:3;5153:20;5150:1;5143:31;5193:4;5190:1;5183:15;5217:4;5214:1;5207:15;5233:1266;5328:6;5336;5344;5352;5405:3;5393:9;5384:7;5380:23;5376:33;5373:53;;;5422:1;5419;5412:12;5373:53;5461:9;5448:23;5480:31;5505:5;5480:31;:::i;:::-;5530:5;-1:-1:-1;5587:2:12;5572:18;;5559:32;5600:33;5559:32;5600:33;:::i;:::-;5652:7;-1:-1:-1;5706:2:12;5691:18;;5678:32;;-1:-1:-1;5761:2:12;5746:18;;5733:32;5784:18;5814:14;;;5811:34;;;5841:1;5838;5831:12;5811:34;5879:6;5868:9;5864:22;5854:32;;5924:7;5917:4;5913:2;5909:13;5905:27;5895:55;;5946:1;5943;5936:12;5895:55;5982:2;5969:16;6004:2;6000;5997:10;5994:36;;;6010:18;;:::i;:::-;6085:2;6079:9;6053:2;6139:13;;-1:-1:-1;;6135:22:12;;;6159:2;6131:31;6127:40;6115:53;;;6183:18;;;6203:22;;;6180:46;6177:72;;;6229:18;;:::i;:::-;6269:10;6265:2;6258:22;6304:2;6296:6;6289:18;6344:7;6339:2;6334;6330;6326:11;6322:20;6319:33;6316:53;;;6365:1;6362;6355:12;6316:53;6421:2;6416;6412;6408:11;6403:2;6395:6;6391:15;6378:46;6466:1;6461:2;6456;6448:6;6444:15;6440:24;6433:35;6487:6;6477:16;;;;;;;5233:1266;;;;;;;:::o;6783:388::-;6851:6;6859;6912:2;6900:9;6891:7;6887:23;6883:32;6880:52;;;6928:1;6925;6918:12;6880:52;6967:9;6954:23;6986:31;7011:5;6986:31;:::i;:::-;7036:5;-1:-1:-1;7093:2:12;7078:18;;7065:32;7106:33;7065:32;7106:33;:::i;7428:127::-;7489:10;7484:3;7480:20;7477:1;7470:31;7520:4;7517:1;7510:15;7544:4;7541:1;7534:15;7560:112;7592:1;7618;7608:35;;7623:18;;:::i;:::-;-1:-1:-1;7657:9:12;;7560:112::o;7677:400::-;7879:2;7861:21;;;7918:2;7898:18;;;7891:30;7957:34;7952:2;7937:18;;7930:62;-1:-1:-1;;;8023:2:12;8008:18;;8001:34;8067:3;8052:19;;7677:400::o;8082:380::-;8161:1;8157:12;;;;8204;;;8225:61;;8279:4;8271:6;8267:17;8257:27;;8225:61;8332:2;8324:6;8321:14;8301:18;8298:38;8295:161;;8378:10;8373:3;8369:20;8366:1;8359:31;8413:4;8410:1;8403:15;8441:4;8438:1;8431:15;8295:161;;8082:380;;;:::o;8593:545::-;8695:2;8690:3;8687:11;8684:448;;;8731:1;8756:5;8752:2;8745:17;8801:4;8797:2;8787:19;8871:2;8859:10;8855:19;8852:1;8848:27;8842:4;8838:38;8907:4;8895:10;8892:20;8889:47;;;-1:-1:-1;8930:4:12;8889:47;8985:2;8980:3;8976:12;8973:1;8969:20;8963:4;8959:31;8949:41;;9040:82;9058:2;9051:5;9048:13;9040:82;;;9103:17;;;9084:1;9073:13;9040:82;;9314:1206;9438:18;9433:3;9430:27;9427:53;;;9460:18;;:::i;:::-;9489:94;9579:3;9539:38;9571:4;9565:11;9539:38;:::i;:::-;9533:4;9489:94;:::i;:::-;9609:1;9634:2;9629:3;9626:11;9651:1;9646:616;;;;10306:1;10323:3;10320:93;;;-1:-1:-1;10379:19:12;;;10366:33;10320:93;-1:-1:-1;;9271:1:12;9267:11;;;9263:24;9259:29;9249:40;9295:1;9291:11;;;9246:57;10426:78;;9619:895;;9646:616;8540:1;8533:14;;;8577:4;8564:18;;-1:-1:-1;;9682:17:12;;;9783:9;9805:229;9819:7;9816:1;9813:14;9805:229;;;9908:19;;;9895:33;9880:49;;10015:4;10000:20;;;;9968:1;9956:14;;;;9835:12;9805:229;;;9809:3;10062;10053:7;10050:16;10047:159;;;10186:1;10182:6;10176:3;10170;10167:1;10163:11;10159:21;10155:34;10151:39;10138:9;10133:3;10129:19;10116:33;10112:79;10104:6;10097:95;10047:159;;;10249:1;10243:3;10240:1;10236:11;10232:19;10226:4;10219:33;9619:895;;;9314:1206;;;:::o;10525:127::-;10586:10;10581:3;10577:20;10574:1;10567:31;10617:4;10614:1;10607:15;10641:4;10638:1;10631:15;10657:127;10718:10;10713:3;10709:20;10706:1;10699:31;10749:4;10746:1;10739:15;10773:4;10770:1;10763:15;10789:135;10828:3;10849:17;;;10846:43;;10869:18;;:::i;:::-;-1:-1:-1;10916:1:12;10905:13;;10789:135::o;10929:125::-;10994:9;;;11015:10;;;11012:36;;;11028:18;;:::i;11814:1187::-;12091:3;12120:1;12153:6;12147:13;12183:36;12209:9;12183:36;:::i;:::-;12238:1;12255:18;;;12282:133;;;;12429:1;12424:356;;;;12248:532;;12282:133;-1:-1:-1;;12315:24:12;;12303:37;;12388:14;;12381:22;12369:35;;12360:45;;;-1:-1:-1;12282:133:12;;12424:356;12455:6;12452:1;12445:17;12485:4;12530:2;12527:1;12517:16;12555:1;12569:165;12583:6;12580:1;12577:13;12569:165;;;12661:14;;12648:11;;;12641:35;12704:16;;;;12598:10;;12569:165;;;12573:3;;;12763:6;12758:3;12754:16;12747:23;;12248:532;;;;;12811:6;12805:13;12827:68;12886:8;12881:3;12874:4;12866:6;12862:17;12827:68;:::i;:::-;-1:-1:-1;;;12917:18:12;;12944:22;;;12993:1;12982:13;;11814:1187;-1:-1:-1;;;;11814:1187:12:o;13006:168::-;13079:9;;;13110;;13127:15;;;13121:22;;13107:37;13097:71;;13148:18;;:::i;13179:120::-;13219:1;13245;13235:35;;13250:18;;:::i;:::-;-1:-1:-1;13284:9:12;;13179:120::o;14072:489::-;-1:-1:-1;;;;;14341:15:12;;;14323:34;;14393:15;;14388:2;14373:18;;14366:43;14440:2;14425:18;;14418:34;;;14488:3;14483:2;14468:18;;14461:31;;;14266:4;;14509:46;;14535:19;;14527:6;14509:46;:::i;:::-;14501:54;14072:489;-1:-1:-1;;;;;;14072:489:12:o;14566:249::-;14635:6;14688:2;14676:9;14667:7;14663:23;14659:32;14656:52;;;14704:1;14701;14694:12;14656:52;14736:9;14730:16;14755:30;14779:5;14755:30;:::i;14820:128::-;14887:9;;;14908:11;;;14905:37;;;14922:18;;:::i;14953:127::-;15014:10;15009:3;15005:20;15002:1;14995:31;15045:4;15042:1;15035:15;15069:4;15066:1;15059:15

Swarm Source

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