ETH Price: $3,518.70 (+0.36%)
Gas: 2 Gwei

0xLady (0xLady)
 

Overview

TokenID

482

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

0xLady is a collection of 10000 NFTs focused on women's communities in the Web3 world. Independence, Fortitude, Wisdom & Freedom is the title of us. After Sold Out, NFT Staking will be started on the StarBlock immediately, the goal of 0xLady is to be held by 10,000 outstanding women.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
StarBlockCollection

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 15 of 15: StarBlockCollection.sol
// ░██████╗████████╗░█████╗░██████╗░██████╗░██╗░░░░░░█████╗░░█████╗░██╗░░██╗
// ██╔════╝╚══██╔══╝██╔══██╗██╔══██╗██╔══██╗██║░░░░░██╔══██╗██╔══██╗██║░██╔╝
// ╚█████╗░░░░██║░░░███████║██████╔╝██████╦╝██║░░░░░██║░░██║██║░░╚═╝█████═╝░
// ░╚═══██╗░░░██║░░░██╔══██║██╔══██╗██╔══██╗██║░░░░░██║░░██║██║░░██╗██╔═██╗░
// ██████╔╝░░░██║░░░██║░░██║██║░░██║██████╦╝███████╗╚█████╔╝╚█████╔╝██║░╚██╗
// ╚═════╝░░░░╚═╝░░░╚═╝░░╚═╝╚═╝░░╚═╝╚═════╝░╚══════╝░╚════╝░░╚════╝░╚═╝░░╚═╝

// SPDX-License-Identifier: MIT
// StarBlock Contracts, more: https://www.starblock.io/

pragma solidity ^0.8.10;

//import "erc721a/contracts/extensions/ERC721AQueryable.sol";
//import "@openzeppelin/contracts/token/common/ERC2981.sol";
//import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
//import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
//import "@openzeppelin/contracts/access/Ownable.sol";
//import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

import "./ERC721AQueryable.sol";
import "./ERC2981.sol";
import "./IERC20.sol";
import "./SafeERC20.sol";
import "./Ownable.sol";
import "./ReentrancyGuard.sol";

interface IStarBlockCollection is IERC721AQueryable, IERC2981 {
    struct SaleConfig {
        uint256 startTime;// 0 for not set
        uint256 endTime;// 0 for will not end
        uint256 price;
        uint256 maxAmountPerAddress;// 0 for not limit the amount per address
    }

    event UpdateWhitelistSaleConfig(SaleConfig _whitelistSaleConfig);
    event UpdateWhitelistSaleEndTime(uint256 _oldEndTime, uint256 _newEndTime);
    event UpdatePublicSaleConfig(SaleConfig _publicSaleConfig);
    event UpdatePublicSaleEndTime(uint256 _oldEndTime, uint256 _newEndTime);
    event UpdateChargeToken(IERC20 _chargeToken);

    function supportsInterface(bytes4 _interfaceId) external view override(IERC165, IERC721A) returns (bool);
    
    function maxSupply() external view returns (uint256);
    function exists(uint256 _tokenId) external view returns (bool);
    
    function maxAmountForArtist() external view returns (uint256);
    function artistMinted() external view returns (uint256);

    function chargeToken() external view returns (IERC20);

    // function whitelistSaleConfig() external view returns (SaleConfig memory);
    function whitelistSaleConfig() external view 
            returns (uint256 _startTime, uint256 _endTime, uint256 _price, uint256 _maxAmountPerAddress);
    function whitelist(address _user) external view returns (bool);
    function whitelistAmount() external view returns (uint256);
    function whitelistSaleMinted(address _user) external view returns (uint256);

    // function publicSaleConfig() external view returns (SaleConfig memory);
    function publicSaleConfig() external view 
            returns (uint256 _startTime, uint256 _endTime, uint256 _price, uint256 _maxAmountPerAddress);
    function publicSaleMinted(address _user) external view returns (uint256);

    function userCanMintTotalAmount() external view returns (uint256);

    function whitelistMint(uint256 _amount) external payable;
    function publicMint(uint256 _amount) external payable;
}

//The ERC721 collection for Artist on StarBlock NFT Marketplace, the owner is Artist and the protocol fee is for StarBlock.
contract StarBlockCollection is IStarBlockCollection, ERC721AQueryable, ERC2981, Ownable, ReentrancyGuard {
    using SafeERC20 for IERC20;
    
    uint256 public immutable maxSupply;
    string private baseTokenURI;

    uint256 public immutable maxAmountForArtist;
    uint256 public artistMinted;// the total minted amount for artist by artistMint method

    IERC20 public chargeToken;// the charge token for mint, zero for ETH

    address payable public protocolFeeReceiver;// fee receiver address for protocol
    uint256 public protocolFeeNumerator; // div _feeDenominator()(is 10000) is the real ratio

    SaleConfig public whitelistSaleConfig;
    mapping(address => bool) public whitelist;
    uint256 public whitelistAmount;
    mapping(address => uint256) public whitelistSaleMinted;

    //public mint config
    SaleConfig public publicSaleConfig;
    mapping(address => uint256) public publicSaleMinted;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "StarBlockCollection: The caller is another contract");
        _;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _maxSupply,
        IERC20 _chargeToken,
        string memory _baseTokenURI,
        uint256 _maxAmountForArtist,
        address payable _protocolFeeReceiver, 
        uint256 _protocolFeeNumerator, 
        address _royaltyReceiver,
        uint96 _royaltyFeeNumerator
    ) ERC721A(_name, _symbol) {
        require(_maxSupply > 0 && _maxAmountForArtist <= _maxSupply && _protocolFeeReceiver != address(0)
                 && _protocolFeeNumerator <= _feeDenominator() && _royaltyFeeNumerator <= _feeDenominator(), "StarBlockCollection: invalid parameters!");
        maxSupply = _maxSupply;
        chargeToken = _chargeToken;
        baseTokenURI = _baseTokenURI;
        maxAmountForArtist = _maxAmountForArtist;
        protocolFeeReceiver = _protocolFeeReceiver;
        protocolFeeNumerator = _protocolFeeNumerator;
        if(_royaltyReceiver != address(0)){
            _setDefaultRoyalty(_royaltyReceiver, _royaltyFeeNumerator);
        }
    }

    function whitelistMint(uint256 _amount) external payable callerIsUser {
        require(whitelist[msg.sender], "StarBlockCollection: not in whitelist!");
        _checkUserCanMint(whitelistSaleConfig, _amount, whitelistSaleMinted[msg.sender]);
        
        whitelistSaleMinted[msg.sender] += _amount;
        if(whitelistSaleConfig.price > 0 || (whitelistSaleConfig.price == 0 && msg.value > 0)){
            _charge(whitelistSaleConfig.price * _amount);
        }
        _safeMint(msg.sender, _amount);
    }

    function publicMint(uint256 _amount) external payable callerIsUser {
        _checkUserCanMint(publicSaleConfig, _amount, publicSaleMinted[msg.sender]);

        publicSaleMinted[msg.sender] += _amount;
        if(publicSaleConfig.price > 0 || (publicSaleConfig.price == 0 && msg.value > 0)){
            _charge(publicSaleConfig.price * _amount);
        }
        _safeMint(msg.sender, _amount);
    }

    function artistMint(uint256 _amount) external onlyOwner nonReentrant {
        require(_amount > 0, "StarBlockCollection: amount should be greater than 0!");
        require((artistMinted + _amount) <= maxAmountForArtist, "StarBlockCollection: reached max amount for artist!");
        require((totalSupply() + _amount) <= maxSupply, "StarBlockCollection: reached max supply!");
        artistMinted += _amount;
        _safeMint(msg.sender, _amount);
    }

    function userCanMintTotalAmount() public view returns (uint256) {
        return maxSupply - (totalSupply() + maxAmountForArtist - artistMinted);
    }
    
    function _checkUserCanMint(SaleConfig memory _saleConfig, uint256 _amount, uint256 _mintedAmount) internal view {
        require(_amount > 0, "StarBlockCollection: amount should be greater than 0!");
        require(userCanMintTotalAmount() >= _amount, "StarBlockCollection: reached max supply!");
        require(_saleConfig.startTime > 0, "StarBlockCollection: sale has not set!");
        require(_saleConfig.startTime <= block.timestamp, "StarBlockCollection: sale has not started yet!");
        require(_saleConfig.endTime == 0 || _saleConfig.endTime >= block.timestamp, "StarBlockCollection: sale has ended!");
        require(_saleConfig.maxAmountPerAddress == 0 || (_mintedAmount + _amount) <= _saleConfig.maxAmountPerAddress, 
                "StarBlockCollection: reached max amount per address!");
    }

    function _charge(uint256 _amount) internal nonReentrant {
        bool success = true;
        uint256 shouldChargedETH;
        if(address(chargeToken) != address(0)){
            uint256 balance = chargeToken.balanceOf(msg.sender);
            require(balance >= _amount, "StarBlockCollection: not enough token!");
            chargeToken.safeTransferFrom(msg.sender, address(this), _amount);
        }else{
            require(msg.value >= _amount, "StarBlockCollection: not enough ETH!");
            shouldChargedETH = _amount;
        }
        if (msg.value > shouldChargedETH) {//return if over
            success = _transferETH(payable(msg.sender), msg.value - shouldChargedETH);
        }
        require(success, "StarBlockCollection: charge failed!");
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 _interfaceId) public view virtual override(IStarBlockCollection, ERC2981, ERC721A) returns (bool) {
        return _interfaceId == type(IStarBlockCollection).interfaceId 
                || _interfaceId == type(IERC721AQueryable).interfaceId 
                || ERC2981.supportsInterface(_interfaceId) 
                || ERC721A.supportsInterface(_interfaceId);
    }

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

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

    function addWhitelists(address[] memory addresses) external onlyOwner nonReentrant {
        require(addresses.length > 0, "StarBlockCollection: addresses can not be empty!");
        for (uint256 i = 0; i < addresses.length; i++) {
            if(!whitelist[addresses[i]]){
                whitelist[addresses[i]] = true;
                whitelistAmount ++;
            }
        }
    }

    function removeWhitelists(address[] memory addresses) external onlyOwner nonReentrant {
        require(addresses.length > 0, "StarBlockCollection: addresses can not be empty!");
        for (uint256 i = 0; i < addresses.length; i++) {
            if(whitelist[addresses[i]]){
                whitelist[addresses[i]] = false;
                whitelistAmount --;
            }
        }
    }

    function _checkSaleConfig(SaleConfig memory _saleConfig) internal pure returns (bool) {
        return (_saleConfig.startTime == 0 || (_saleConfig.endTime == 0 || (_saleConfig.startTime < _saleConfig.endTime)));
    }

    function updateWhitelistSaleConfig(SaleConfig memory _whitelistSaleConfig) external onlyOwner nonReentrant {
        require(whitelistSaleConfig.startTime == 0 || whitelistSaleConfig.startTime > block.timestamp, "StarBlockCollection: can only change the unstarted sale config!");
        require(_whitelistSaleConfig.startTime == 0 || _whitelistSaleConfig.startTime > block.timestamp, "StarBlockCollection: the new config should not be started!");
        require(_whitelistSaleConfig.startTime < (block.timestamp + 180 days), "StarBlockCollection: start time should be within 180 days!");
        require(_whitelistSaleConfig.endTime < (block.timestamp + 900 days), "StarBlockCollection: end time should be within 900 days!");
        require(_checkSaleConfig(_whitelistSaleConfig), "StarBlockCollection: invalid parameters!");
        
        whitelistSaleConfig.startTime = _whitelistSaleConfig.startTime;
        whitelistSaleConfig.endTime = _whitelistSaleConfig.endTime;
        whitelistSaleConfig.price = _whitelistSaleConfig.price;
        whitelistSaleConfig.maxAmountPerAddress = _whitelistSaleConfig.maxAmountPerAddress;

        emit UpdateWhitelistSaleConfig(_whitelistSaleConfig);
    }

    function updateWhitelistSaleEndTime(uint256 _newEndTime) external onlyOwner nonReentrant {
        require(whitelistSaleConfig.startTime > 0 && whitelistSaleConfig.startTime < _newEndTime, "StarBlockCollection: the new end time should be greater than start time!");
        whitelistSaleConfig.endTime = _newEndTime;
        emit UpdateWhitelistSaleEndTime(whitelistSaleConfig.endTime, _newEndTime);
    }

    function updatePublicSaleConfig(SaleConfig memory _publicSaleConfig) external onlyOwner nonReentrant {
        require(publicSaleConfig.startTime == 0 || publicSaleConfig.startTime > block.timestamp, "StarBlockCollection: can only change the unstarted sale config!");
        require(_publicSaleConfig.startTime == 0 || _publicSaleConfig.startTime > block.timestamp, "StarBlockCollection: the new config should not be started!");
        require(_publicSaleConfig.startTime < (block.timestamp + 180 days), "StarBlockCollection: start time should be within 180 days!");
        require(_publicSaleConfig.endTime < (block.timestamp + 900 days), "StarBlockCollection: end time should be within 900 days!");
        require(_checkSaleConfig(_publicSaleConfig), "StarBlockCollection: invalid parameters!");

        publicSaleConfig.startTime = _publicSaleConfig.startTime;
        publicSaleConfig.endTime = _publicSaleConfig.endTime;
        publicSaleConfig.price = _publicSaleConfig.price;
        publicSaleConfig.maxAmountPerAddress = _publicSaleConfig.maxAmountPerAddress;

        emit UpdatePublicSaleConfig(_publicSaleConfig);
    }

    function updatePublicSaleEndTime(uint256 _newEndTime) external onlyOwner nonReentrant {
        require(publicSaleConfig.startTime > 0 && publicSaleConfig.startTime < _newEndTime, "StarBlockCollection: the new end time should be greater than start time!");
        publicSaleConfig.endTime = _newEndTime;
        emit UpdatePublicSaleEndTime(publicSaleConfig.endTime, _newEndTime);
    }

    function updateChargeToken(IERC20 _chargeToken) external onlyOwner nonReentrant {
        require(whitelistSaleConfig.startTime == 0 || whitelistSaleConfig.startTime > block.timestamp, "StarBlockCollection: whitelist sale has started!");
        require(publicSaleConfig.startTime == 0 || publicSaleConfig.startTime > block.timestamp, "StarBlockCollection: public sale has started!");
        chargeToken = _chargeToken;
        emit UpdateChargeToken(_chargeToken);
    }

    function updateProtocolFeeReceiverAndNumerator(address payable _protocolFeeReceiver, uint256 _protocolFeeNumerator) external nonReentrant {
        require(msg.sender == protocolFeeReceiver, "StarBlockCollection: only protocolFeeReceiver can set!");
        require(_protocolFeeReceiver != address(0), "StarBlockCollection: _protocolFeeReceiver can not be zero!");
        require(_protocolFeeNumerator <= protocolFeeNumerator, "StarBlockCollection: can only set lower protocol fee numerator!");
        protocolFeeReceiver = _protocolFeeReceiver;
        protocolFeeNumerator = _protocolFeeNumerator;
    }

    function withdrawMoney() external onlyOwner {
        uint256 revenue = _getRevenueAmount();
        uint256 artistRevenue = revenue;
        uint256 protocolFee = 0;
        if(protocolFeeNumerator > 0 && revenue > 0){
            protocolFee = revenue * protocolFeeNumerator / _feeDenominator();
            artistRevenue = revenue - protocolFee;
        }
        bool success = false;
        if(artistRevenue > 0){
            success = _transferRevenue(payable(owner()), artistRevenue);
        }
        if(success && protocolFee > 0){
            success = _transferRevenue(protocolFeeReceiver, protocolFee);
        }
        require(success, "StarBlockCollection: withdrawMoney failed!");
    }

    function _getRevenueAmount() internal view returns (uint256 _amount){
        if(address(chargeToken) != address(0)){
            _amount = chargeToken.balanceOf(address(this));
        }else{
            _amount = address(this).balance;
        }
    }

    function _transferRevenue(address payable _user, uint256 _amount) internal nonReentrant returns (bool _success) {
        if(address(chargeToken) != address(0)){
            chargeToken.safeTransfer(_user, _amount);
            _success = true;
        }else{
            _success = _transferETH(_user, _amount);
        }
    }

    function _transferETH(address payable _user, uint256 _amount) internal returns (bool _success) {
        (_success, ) = _user.call{value: _amount}("");
    }

    function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) external onlyOwner nonReentrant {
        _setDefaultRoyalty(_receiver, _feeNumerator);
    }

    function deleteDefaultRoyalty() external onlyOwner nonReentrant {
        _deleteDefaultRoyalty();
    }

    function exists(uint256 _tokenId) external view returns (bool) {
        return _exists(_tokenId);
    }
}

interface IStarBlockCollectionFactory {
    event CollectionDeployed(IStarBlockCollection _collection, address _user, string _uuid);

    function collections(IStarBlockCollection _collection) external view returns (address);
    function collectionsAmount() external view returns (uint256);

    function collectionProtocolFeeReceiver() external view returns (address payable);
    function collectionProtocolFeeNumerator() external view returns (uint256);

    function deployCollection(
            string memory _uuid,
            string memory _name,
            string memory _symbol,
            uint256 _maxSupply,
            IERC20 _chargeToken,
            string memory _baseTokenURI,
            uint256 _maxAmountForArtist,
            address _royaltyReceiver,
            uint96 _royaltyFeeNumerator
    ) external returns (IStarBlockCollection _collection);
}

contract StarBlockCollectionFactory is IStarBlockCollectionFactory, Ownable, ReentrancyGuard {
    uint256 public constant FEE_DENOMINATOR = 10000;

    mapping(IStarBlockCollection => address) public collections;
    uint256 public collectionsAmount;

    address payable public collectionProtocolFeeReceiver; 
    uint256 public collectionProtocolFeeNumerator; //should less than FEE_DENOMINATOR

    constructor(
        address payable _collectionProtocolFeeReceiver, 
        uint256 _collectionProtocolFeeNumerator
    ) {
        require(_collectionProtocolFeeReceiver != address(0) && _collectionProtocolFeeNumerator <= FEE_DENOMINATOR, 
                "StarBlockCollectionFactory: invalid parameters!");
        collectionProtocolFeeReceiver = _collectionProtocolFeeReceiver;
        collectionProtocolFeeNumerator = _collectionProtocolFeeNumerator;
    }

    function deployCollection(
            string memory _uuid,
            string memory _name,
            string memory _symbol,
            uint256 _maxSupply,
            IERC20 _chargeToken,
            string memory _baseTokenURI,
            uint256 _maxAmountForArtist,
            address _royaltyReceiver,
            uint96 _royaltyFeeNumerator
    ) external nonReentrant returns (IStarBlockCollection _collection) {
        _collection = new StarBlockCollection(_name, _symbol, _maxSupply, _chargeToken, _baseTokenURI, 
                        _maxAmountForArtist, collectionProtocolFeeReceiver, collectionProtocolFeeNumerator, 
                        _royaltyReceiver, _royaltyFeeNumerator);
        Ownable(address(_collection)).transferOwnership(msg.sender);
        collections[_collection] = msg.sender;
        collectionsAmount ++;
        emit CollectionDeployed(_collection, msg.sender, _uuid);
    }
    
    function updateCollectionProtocolFeeReceiverAndNumerator(address payable _collectionProtocolFeeReceiver, 
            uint256 _collectionProtocolFeeNumerator) external onlyOwner nonReentrant {
        require(_collectionProtocolFeeReceiver != address(0), "StarBlockCollectionFactory: _collectionProtocolFeeReceiver can not be zero!");
        require(_collectionProtocolFeeNumerator <= FEE_DENOMINATOR, "StarBlockCollectionFactory: _collectionProtocolFeeNumerator should not be greater than 10000!");
        collectionProtocolFeeReceiver = _collectionProtocolFeeReceiver;
        collectionProtocolFeeNumerator = _collectionProtocolFeeNumerator;
    }
}

File 1 of 15: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

File 3 of 15: 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 4 of 15: ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC2981.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 5 of 15: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * 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);
    }

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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 '';
    }

    /**
     * @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))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev 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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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 {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

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

File 6 of 15: ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

File 7 of 15: 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 8 of 15: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 9 of 15: IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of 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 through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            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`.
     *
     * 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 calldata data
    ) external;

    /**
     * @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
    ) external;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 11 of 15: IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

File 12 of 15: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 13 of 15: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 14 of 15: SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"contract IERC20","name":"_chargeToken","type":"address"},{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"uint256","name":"_maxAmountForArtist","type":"uint256"},{"internalType":"address payable","name":"_protocolFeeReceiver","type":"address"},{"internalType":"uint256","name":"_protocolFeeNumerator","type":"uint256"},{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeeNumerator","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IERC20","name":"_chargeToken","type":"address"}],"name":"UpdateChargeToken","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxAmountPerAddress","type":"uint256"}],"indexed":false,"internalType":"struct IStarBlockCollection.SaleConfig","name":"_publicSaleConfig","type":"tuple"}],"name":"UpdatePublicSaleConfig","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_oldEndTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_newEndTime","type":"uint256"}],"name":"UpdatePublicSaleEndTime","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxAmountPerAddress","type":"uint256"}],"indexed":false,"internalType":"struct IStarBlockCollection.SaleConfig","name":"_whitelistSaleConfig","type":"tuple"}],"name":"UpdateWhitelistSaleConfig","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_oldEndTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_newEndTime","type":"uint256"}],"name":"UpdateWhitelistSaleEndTime","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addWhitelists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"artistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"artistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chargeToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountForArtist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"protocolFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolFeeReceiver","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleConfig","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxAmountPerAddress","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeWhitelists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_chargeToken","type":"address"}],"name":"updateChargeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_protocolFeeReceiver","type":"address"},{"internalType":"uint256","name":"_protocolFeeNumerator","type":"uint256"}],"name":"updateProtocolFeeReceiverAndNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxAmountPerAddress","type":"uint256"}],"internalType":"struct IStarBlockCollection.SaleConfig","name":"_publicSaleConfig","type":"tuple"}],"name":"updatePublicSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newEndTime","type":"uint256"}],"name":"updatePublicSaleEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxAmountPerAddress","type":"uint256"}],"internalType":"struct IStarBlockCollection.SaleConfig","name":"_whitelistSaleConfig","type":"tuple"}],"name":"updateWhitelistSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newEndTime","type":"uint256"}],"name":"updateWhitelistSaleEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"userCanMintTotalAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleConfig","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxAmountPerAddress","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040523480156200001157600080fd5b5060405162004647380380620046478339810160408190526200003491620004a8565b89518a908a906200004d90600290602085019062000300565b5080516200006390600390602084019062000300565b505060008055506200007533620001ad565b6001600b5587158015906200008a5750878511155b80156200009f57506001600160a01b03841615155b8015620000ae57506127108311155b8015620000c657506127106001600160601b03821611155b620001295760405162461bcd60e51b815260206004820152602860248201527f53746172426c6f636b436f6c6c656374696f6e3a20696e76616c696420706172604482015267616d65746572732160c01b60648201526084015b60405180910390fd5b6080889052600e80546001600160a01b0319166001600160a01b03891617905585516200015e90600c90602089019062000300565b5060a0859052600f80546001600160a01b0319166001600160a01b038681169190911790915560108490558216156200019d576200019d8282620001ff565b50505050505050505050620005e0565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b03821611156200026f5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840162000120565b6001600160a01b038216620002c75760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000120565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b8280546200030e90620005a3565b90600052602060002090601f0160209004810192826200033257600085556200037d565b82601f106200034d57805160ff19168380011785556200037d565b828001600101855582156200037d579182015b828111156200037d57825182559160200191906001019062000360565b506200038b9291506200038f565b5090565b5b808211156200038b576000815560010162000390565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003ce57600080fd5b81516001600160401b0380821115620003eb57620003eb620003a6565b604051601f8301601f19908116603f01168101908282118183101715620004165762000416620003a6565b816040528381526020925086838588010111156200043357600080fd5b600091505b8382101562000457578582018301518183018401529082019062000438565b83821115620004695760008385830101525b9695505050505050565b80516001600160a01b03811681146200048b57600080fd5b919050565b80516001600160601b03811681146200048b57600080fd5b6000806000806000806000806000806101408b8d031215620004c957600080fd5b8a516001600160401b0380821115620004e157600080fd5b620004ef8e838f01620003bc565b9b5060208d01519150808211156200050657600080fd5b620005148e838f01620003bc565b9a5060408d015199506200052b60608e0162000473565b985060808d01519150808211156200054257600080fd5b50620005518d828e01620003bc565b96505060a08b015194506200056960c08c0162000473565b935060e08b01519250620005816101008c0162000473565b9150620005926101208c0162000490565b90509295989b9194979a5092959850565b600181811c90821680620005b857607f821691505b60208210811415620005da57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516140256200062260003960008181610872015281816116ba0152611fa20152600081816108e601528181611700015261203b01526140256000f3fe6080604052600436106102e45760003560e01c80638da5cb5b11610190578063bf113baf116100dc578063d756ae7011610095578063ed329fa81161006f578063ed329fa814610968578063f2fde38b1461097e578063f5197d581461099e578063fb26a0c9146109b457600080fd5b8063d756ae7014610908578063de61474614610928578063e985e9c51461094857600080fd5b8063bf113baf14610813578063c23dc68f14610833578063c5be767a14610860578063c87b56dd14610894578063c8eaf28f146108b4578063d5abeb01146108d457600080fd5b8063a22cb46511610149578063aa1b103f11610123578063aa1b103f146107a9578063ac446002146107be578063b88d4fde146107d3578063ba141075146107f357600080fd5b8063a22cb46514610746578063a343b62014610766578063a3fd2c441461078657600080fd5b80638da5cb5b1461068e5780638dde3c4b146106ac5780639224abb2146106c157806395d89b41146106e157806399a2557a146106f65780639b19251a1461071657600080fd5b80633bf583821161024f5780636352211e11610208578063715018a6116101e2578063715018a6146106195780637984f6791461062e5780638462151c1461064e578063868ff4a21461067b57600080fd5b80636352211e14610596578063656cf918146105b657806370a08231146105f957600080fd5b80633bf58382146104bc57806342842e0e146104dc5780634f558e79146104fc5780634fd201371461051c57806355f804b3146105495780635bbb21771461056957600080fd5b806323b872dd116102a157806323b872dd146103dd578063244b7e93146103fd578063281bd7981461042a5780632a55205a1461044a5780632db115441461048957806339a51be51461049c57600080fd5b806301ffc9a7146102e957806304634d8d1461031e57806306fdde0314610340578063081812fc14610362578063095ea7b31461039a57806318160ddd146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004613411565b6109ca565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004613443565b610a1f565b005b34801561034c57600080fd5b50610355610a8d565b60405161031591906134e0565b34801561036e57600080fd5b5061038261037d3660046134f3565b610b1f565b6040516001600160a01b039091168152602001610315565b3480156103a657600080fd5b5061033e6103b536600461350c565b610b63565b3480156103c657600080fd5b50600154600054035b604051908152602001610315565b3480156103e957600080fd5b5061033e6103f8366004613538565b610c03565b34801561040957600080fd5b506103cf610418366004613579565b601c6020526000908152604090205481565b34801561043657600080fd5b5061033e6104453660046135ff565b610d94565b34801561045657600080fd5b5061046a610465366004613692565b610ec5565b604080516001600160a01b039093168352602083019190915201610315565b61033e6104973660046134f3565b610f71565b3480156104a857600080fd5b50600f54610382906001600160a01b031681565b3480156104c857600080fd5b5061033e6104d73660046134f3565b61103e565b3480156104e857600080fd5b5061033e6104f7366004613538565b611105565b34801561050857600080fd5b506103096105173660046134f3565b611125565b34801561052857600080fd5b506103cf610537366004613579565b60176020526000908152604090205481565b34801561055557600080fd5b5061033e6105643660046136b4565b611130565b34801561057557600080fd5b50610589610584366004613725565b611198565b60405161031591906137e6565b3480156105a257600080fd5b506103826105b13660046134f3565b611265565b3480156105c257600080fd5b506011546012546013546014546105d99392919084565b604080519485526020850193909352918301526060820152608001610315565b34801561060557600080fd5b506103cf610614366004613579565b611270565b34801561062557600080fd5b5061033e6112be565b34801561063a57600080fd5b5061033e610649366004613579565b6112f4565b34801561065a57600080fd5b5061066e610669366004613579565b61147b565b6040516103159190613828565b61033e6106893660046134f3565b61158a565b34801561069a57600080fd5b50600a546001600160a01b0316610382565b3480156106b857600080fd5b506103cf6116b3565b3480156106cd57600080fd5b5061033e6106dc3660046134f3565b611729565b3480156106ed57600080fd5b506103556117e4565b34801561070257600080fd5b5061066e610711366004613860565b6117f3565b34801561072257600080fd5b50610309610731366004613579565b60156020526000908152604090205460ff1681565b34801561075257600080fd5b5061033e6107613660046138a3565b611970565b34801561077257600080fd5b5061033e61078136600461350c565b611a06565b34801561079257600080fd5b50601854601954601a54601b546105d99392919084565b3480156107b557600080fd5b5061033e611bc6565b3480156107ca57600080fd5b5061033e611c29565b3480156107df57600080fd5b5061033e6107ee3660046138d1565b611d5d565b3480156107ff57600080fd5b5061033e61080e366004613994565b611da1565b34801561081f57600080fd5b5061033e61082e3660046134f3565b611f31565b34801561083f57600080fd5b5061085361084e3660046134f3565b6120ba565b60405161031591906139f9565b34801561086c57600080fd5b506103cf7f000000000000000000000000000000000000000000000000000000000000000081565b3480156108a057600080fd5b506103556108af3660046134f3565b612132565b3480156108c057600080fd5b5061033e6108cf3660046135ff565b6121b6565b3480156108e057600080fd5b506103cf7f000000000000000000000000000000000000000000000000000000000000000081565b34801561091457600080fd5b50600e54610382906001600160a01b031681565b34801561093457600080fd5b5061033e610943366004613994565b6122e6565b34801561095457600080fd5b50610309610963366004613a07565b612476565b34801561097457600080fd5b506103cf600d5481565b34801561098a57600080fd5b5061033e610999366004613579565b6124a4565b3480156109aa57600080fd5b506103cf60105481565b3480156109c057600080fd5b506103cf60165481565b60006001600160e01b03198216638f0c19fb60e01b14806109fb57506001600160e01b0319821663422353cf60e11b145b80610a0a5750610a0a8261253c565b80610a195750610a1982612571565b92915050565b600a546001600160a01b03163314610a525760405162461bcd60e51b8152600401610a4990613a35565b60405180910390fd5b6002600b541415610a755760405162461bcd60e51b8152600401610a4990613a6a565b6002600b55610a8482826125bf565b50506001600b55565b606060028054610a9c90613aa1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac890613aa1565b8015610b155780601f10610aea57610100808354040283529160200191610b15565b820191906000526020600020905b815481529060010190602001808311610af857829003601f168201915b5050505050905090565b6000610b2a826126bc565b610b47576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b6e82611265565b9050336001600160a01b03821614610ba757610b8a8133612476565b610ba7576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610c0e826126e3565b9050836001600160a01b0316816001600160a01b031614610c415760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610c8e57610c718633612476565b610c8e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610cb557604051633a954ecd60e21b815260040160405180910390fd5b8015610cc057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610d4b5760018401600081815260046020526040902054610d49576000548114610d495760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600a546001600160a01b03163314610dbe5760405162461bcd60e51b8152600401610a4990613a35565b6002600b541415610de15760405162461bcd60e51b8152600401610a4990613a6a565b6002600b558051610e045760405162461bcd60e51b8152600401610a4990613adc565b60005b8151811015610a845760156000838381518110610e2657610e26613b2c565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff1615610eb357600060156000848481518110610e6a57610e6a613b2c565b6020908102919091018101516001600160a01b031682528101919091526040016000908120805460ff1916921515929092179091556016805491610ead83613b58565b91905055505b80610ebd81613b6f565b915050610e07565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610f3a5750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610f59906001600160601b031687613b8a565b610f639190613ba9565b915196919550909350505050565b323314610f905760405162461bcd60e51b8152600401610a4990613bcb565b604080516080810182526018548152601954602080830191909152601a5482840152601b546060830152336000908152601c9091529190912054610fd691908390612744565b336000908152601c602052604081208054839290610ff5908490613c1e565b9091555050601a541515806110155750601a541580156110155750600034115b1561103157601a546110319061102c908390613b8a565b612944565b61103b3382612b45565b50565b600a546001600160a01b031633146110685760405162461bcd60e51b8152600401610a4990613a35565b6002600b54141561108b5760405162461bcd60e51b8152600401610a4990613a6a565b6002600b55601854158015906110a2575060185481115b6110be5760405162461bcd60e51b8152600401610a4990613c36565b601981905560408051828152602081018390527fa0f93c463cff1d72335b2b6316e7b4bba938d9331afb9468df671a322ed1cefe91015b60405180910390a1506001600b55565b61112083838360405180602001604052806000815250611d5d565b505050565b6000610a19826126bc565b600a546001600160a01b0316331461115a5760405162461bcd60e51b8152600401610a4990613a35565b6002600b54141561117d5760405162461bcd60e51b8152600401610a4990613a6a565b6002600b5561118e600c8383613362565b50506001600b5550565b80516060906000816001600160401b038111156111b7576111b7613596565b60405190808252806020026020018201604052801561120957816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816111d55790505b50905060005b82811461125d5761123885828151811061122b5761122b613b2c565b60200260200101516120ba565b82828151811061124a5761124a613b2c565b602090810291909101015260010161120f565b509392505050565b6000610a19826126e3565b60006001600160a01b038216611299576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b600a546001600160a01b031633146112e85760405162461bcd60e51b8152600401610a4990613a35565b6112f26000612b63565b565b600a546001600160a01b0316331461131e5760405162461bcd60e51b8152600401610a4990613a35565b6002600b5414156113415760405162461bcd60e51b8152600401610a4990613a6a565b6002600b556011541580611356575060115442105b6113bb5760405162461bcd60e51b815260206004820152603060248201527f53746172426c6f636b436f6c6c656374696f6e3a2077686974656c697374207360448201526f616c652068617320737461727465642160801b6064820152608401610a49565b60185415806113cb575060185442105b61142d5760405162461bcd60e51b815260206004820152602d60248201527f53746172426c6f636b436f6c6c656374696f6e3a207075626c69632073616c6560448201526c2068617320737461727465642160981b6064820152608401610a49565b600e80546001600160a01b0319166001600160a01b0383169081179091556040519081527fe0a413e7aedf234615d1ccebc9ea233dd62e470f100af095f071a03d3f252a90906020016110f5565b6060600080600061148b85611270565b90506000816001600160401b038111156114a7576114a7613596565b6040519080825280602002602001820160405280156114d0578160200160208202803683370190505b5090506114fd60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b83861461157e5761151081612bb5565b915081604001511561152157611576565b81516001600160a01b03161561153657815194505b876001600160a01b0316856001600160a01b03161415611576578083878060010198508151811061156957611569613b2c565b6020026020010181815250505b600101611500565b50909695505050505050565b3233146115a95760405162461bcd60e51b8152600401610a4990613bcb565b3360009081526015602052604090205460ff166116175760405162461bcd60e51b815260206004820152602660248201527f53746172426c6f636b436f6c6c656374696f6e3a206e6f7420696e2077686974604482015265656c6973742160d01b6064820152608401610a49565b6040805160808101825260115481526012546020808301919091526013548284015260145460608301523360009081526017909152919091205461165d91908390612744565b336000908152601760205260408120805483929061167c908490613c1e565b909155505060135415158061169c575060135415801561169c5750600034115b15611031576013546110319061102c908390613b8a565b6000600d547f00000000000000000000000000000000000000000000000000000000000000006116e66001546000540390565b6116f09190613c1e565b6116fa9190613ca4565b611724907f0000000000000000000000000000000000000000000000000000000000000000613ca4565b905090565b600a546001600160a01b031633146117535760405162461bcd60e51b8152600401610a4990613a35565b6002600b5414156117765760405162461bcd60e51b8152600401610a4990613a6a565b6002600b556011541580159061178d575060115481115b6117a95760405162461bcd60e51b8152600401610a4990613c36565b601281905560408051828152602081018390527f4fc9d20e1e480ba626cd47884005a55db11ebacbb1d7cc61bd0b4718ff19fc4891016110f5565b606060038054610a9c90613aa1565b606081831061181557604051631960ccad60e11b815260040160405180910390fd5b60008061182160005490565b90508084111561182f578093505b600061183a87611270565b9050848610156118595785850381811015611853578091505b5061185d565b5060005b6000816001600160401b0381111561187757611877613596565b6040519080825280602002602001820160405280156118a0578160200160208202803683370190505b509050816118b357935061196992505050565b60006118be886120ba565b9050600081604001516118cf575080515b885b8881141580156118e15750848714155b1561195d576118ef81612bb5565b925082604001511561190057611955565b82516001600160a01b03161561191557825191505b8a6001600160a01b0316826001600160a01b03161415611955578084888060010199508151811061194857611948613b2c565b6020026020010181815250505b6001016118d1565b50505092835250909150505b9392505050565b6001600160a01b03821633141561199a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600b541415611a295760405162461bcd60e51b8152600401610a4990613a6a565b6002600b55600f546001600160a01b03163314611aa75760405162461bcd60e51b815260206004820152603660248201527f53746172426c6f636b436f6c6c656374696f6e3a206f6e6c792070726f746f636044820152756f6c46656552656365697665722063616e207365742160501b6064820152608401610a49565b6001600160a01b038216611b235760405162461bcd60e51b815260206004820152603a60248201527f53746172426c6f636b436f6c6c656374696f6e3a205f70726f746f636f6c466560448201527f6552656365697665722063616e206e6f74206265207a65726f210000000000006064820152608401610a49565b601054811115611b9b5760405162461bcd60e51b815260206004820152603f60248201527f53746172426c6f636b436f6c6c656374696f6e3a2063616e206f6e6c7920736560448201527f74206c6f7765722070726f746f636f6c20666565206e756d657261746f7221006064820152608401610a49565b600f80546001600160a01b0319166001600160a01b0393909316929092179091556010556001600b55565b600a546001600160a01b03163314611bf05760405162461bcd60e51b8152600401610a4990613a35565b6002600b541415611c135760405162461bcd60e51b8152600401610a4990613a6a565b6002600b55611c226000600855565b6001600b55565b600a546001600160a01b03163314611c535760405162461bcd60e51b8152600401610a4990613a35565b6000611c5d612bf1565b90506000819050600080601054118015611c775750600083115b15611ca65760105461271090611c8d9085613b8a565b611c979190613ba9565b9050611ca38184613ca4565b91505b60008215611ccc57611cc9611cc3600a546001600160a01b031690565b84612c76565b90505b808015611cd95750600082115b15611cf757600f54611cf4906001600160a01b031683612c76565b90505b80611d575760405162461bcd60e51b815260206004820152602a60248201527f53746172426c6f636b436f6c6c656374696f6e3a2077697468647261774d6f6e6044820152696579206661696c65642160b01b6064820152608401610a49565b50505050565b611d68848484610c03565b6001600160a01b0383163b15611d5757611d8484848484612ce8565b611d57576040516368d2bf6b60e11b815260040160405180910390fd5b600a546001600160a01b03163314611dcb5760405162461bcd60e51b8152600401610a4990613a35565b6002600b541415611dee5760405162461bcd60e51b8152600401610a4990613a6a565b6002600b556011541580611e03575060115442105b611e1f5760405162461bcd60e51b8152600401610a4990613cbb565b80511580611e2d5750805142105b611e495760405162461bcd60e51b8152600401610a4990613d18565b611e564262ed4e00613c1e565b815110611e755760405162461bcd60e51b8152600401610a4990613d75565b611e83426304a28600613c1e565b816020015110611ea55760405162461bcd60e51b8152600401610a4990613dd2565b611eae81612dd0565b611eca5760405162461bcd60e51b8152600401610a4990613e2f565b805160118190556020808301805160125560408085018051601355606080870180516014558351968752935194860194909452519084015251908201527fb70d34e17a11eb825953259eaf178e59ee5b22e112160173c7ef35ca7cec1717906080016110f5565b600a546001600160a01b03163314611f5b5760405162461bcd60e51b8152600401610a4990613a35565b6002600b541415611f7e5760405162461bcd60e51b8152600401610a4990613a6a565b6002600b5580611fa05760405162461bcd60e51b8152600401610a4990613e77565b7f000000000000000000000000000000000000000000000000000000000000000081600d54611fcf9190613c1e565b11156120395760405162461bcd60e51b815260206004820152603360248201527f53746172426c6f636b436f6c6c656374696f6e3a2072656163686564206d617860448201527220616d6f756e7420666f72206172746973742160681b6064820152608401610a49565b7f0000000000000000000000000000000000000000000000000000000000000000816120686001546000540390565b6120729190613c1e565b11156120905760405162461bcd60e51b8152600401610a4990613ecc565b80600d60008282546120a29190613c1e565b909155506120b290503382612b45565b506001600b55565b604080516080808201835260008083526020808401829052838501829052606080850183905285519384018652828452908301829052938201819052928101839052909150600054831061210e5792915050565b61211783612bb5565b90508060400151156121295792915050565b61196983612df4565b606061213d826126bc565b61215a57604051630a14c4b560e41b815260040160405180910390fd5b6000612164612e29565b90508051600014156121855760405180602001604052806000815250611969565b8061218f84612e38565b6040516020016121a0929190613f14565b6040516020818303038152906040529392505050565b600a546001600160a01b031633146121e05760405162461bcd60e51b8152600401610a4990613a35565b6002600b5414156122035760405162461bcd60e51b8152600401610a4990613a6a565b6002600b5580516122265760405162461bcd60e51b8152600401610a4990613adc565b60005b8151811015610a84576015600083838151811061224857612248613b2c565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff166122d45760016015600084848151811061228b5761228b613b2c565b6020908102919091018101516001600160a01b031682528101919091526040016000908120805460ff19169215159290921790915560168054916122ce83613b6f565b91905055505b806122de81613b6f565b915050612229565b600a546001600160a01b031633146123105760405162461bcd60e51b8152600401610a4990613a35565b6002600b5414156123335760405162461bcd60e51b8152600401610a4990613a6a565b6002600b556018541580612348575060185442105b6123645760405162461bcd60e51b8152600401610a4990613cbb565b805115806123725750805142105b61238e5760405162461bcd60e51b8152600401610a4990613d18565b61239b4262ed4e00613c1e565b8151106123ba5760405162461bcd60e51b8152600401610a4990613d75565b6123c8426304a28600613c1e565b8160200151106123ea5760405162461bcd60e51b8152600401610a4990613dd2565b6123f381612dd0565b61240f5760405162461bcd60e51b8152600401610a4990613e2f565b805160188190556020808301805160195560408085018051601a5560608087018051601b558351968752935194860194909452519084015251908201527fe45e8a559f8cf5559a3dc85a487abc9ef56c3cdfb5dc791399bfbb9ecd259a13906080016110f5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146124ce5760405162461bcd60e51b8152600401610a4990613a35565b6001600160a01b0381166125335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a49565b61103b81612b63565b60006001600160e01b0319821663152a902d60e11b1480610a1957506301ffc9a760e01b6001600160e01b0319831614610a19565b60006301ffc9a760e01b6001600160e01b0319831614806125a257506380ac58cd60e01b6001600160e01b03198316145b80610a195750506001600160e01b031916635b5e139f60e01b1490565b6127106001600160601b038216111561262d5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610a49565b6001600160a01b0382166126835760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a49565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6000805482108015610a19575050600090815260046020526040902054600160e01b161590565b60008160005481101561272b57600081815260046020526040902054600160e01b8116612729575b8061196957506000190160008181526004602052604090205461270b565b505b604051636f96cda160e11b815260040160405180910390fd5b600082116127645760405162461bcd60e51b8152600401610a4990613e77565b8161276d6116b3565b101561278b5760405162461bcd60e51b8152600401610a4990613ecc565b82516127e85760405162461bcd60e51b815260206004820152602660248201527f53746172426c6f636b436f6c6c656374696f6e3a2073616c6520686173206e6f60448201526574207365742160d01b6064820152608401610a49565b82514210156128505760405162461bcd60e51b815260206004820152602e60248201527f53746172426c6f636b436f6c6c656374696f6e3a2073616c6520686173206e6f60448201526d742073746172746564207965742160901b6064820152608401610a49565b60208301511580612865575042836020015110155b6128bd5760405162461bcd60e51b8152602060048201526024808201527f53746172426c6f636b436f6c6c656374696f6e3a2073616c652068617320656e6044820152636465642160e01b6064820152608401610a49565b606083015115806128db575060608301516128d88383613c1e565b11155b6111205760405162461bcd60e51b815260206004820152603460248201527f53746172426c6f636b436f6c6c656374696f6e3a2072656163686564206d617860448201527320616d6f756e742070657220616464726573732160601b6064820152608401610a49565b6002600b5414156129675760405162461bcd60e51b8152600401610a4990613a6a565b6002600b55600e546001906000906001600160a01b031615612a6f57600e546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156129cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129f09190613f43565b905083811015612a515760405162461bcd60e51b815260206004820152602660248201527f53746172426c6f636b436f6c6c656374696f6e3a206e6f7420656e6f75676820604482015265746f6b656e2160d01b6064820152608401610a49565b600e54612a69906001600160a01b0316333087612e87565b50612ace565b82341015612acb5760405162461bcd60e51b8152602060048201526024808201527f53746172426c6f636b436f6c6c656374696f6e3a206e6f7420656e6f756768206044820152634554482160e01b6064820152608401610a49565b50815b80341115612aec57612ae933612ae48334613ca4565b612ef2565b91505b8161118e5760405162461bcd60e51b815260206004820152602360248201527f53746172426c6f636b436f6c6c656374696f6e3a20636861726765206661696c60448201526265642160e81b6064820152608401610a49565b612b5f828260405180602001604052806000815250612f4e565b5050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610a1990612fbb565b600e546000906001600160a01b031615612c7157600e546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015612c4d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117249190613f43565b504790565b60006002600b541415612c9b5760405162461bcd60e51b8152600401610a4990613a6a565b6002600b55600e546001600160a01b031615612cd057600e54612cc8906001600160a01b03168484613002565b506001612cdd565b612cda8383612ef2565b90505b6001600b5592915050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612d1d903390899088908890600401613f5c565b6020604051808303816000875af1925050508015612d58575060408051601f3d908101601f19168201909252612d5591810190613f99565b60015b612db3573d808015612d86576040519150601f19603f3d011682016040523d82523d6000602084013e612d8b565b606091505b508051612dab576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b80516000901580610a19575060208201511580610a19575050602081015190511090565b604080516080810182526000808252602082018190529181018290526060810191909152610a19612e24836126e3565b612fbb565b6060600c8054610a9c90613aa1565b604080516080810191829052607f0190826030600a8206018353600a90045b8015612e7557600183039250600a81066030018353600a9004612e57565b50819003601f19909101908152919050565b6040516001600160a01b0380851660248301528316604482015260648101829052611d579085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152613032565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612f3f576040519150601f19603f3d011682016040523d82523d6000602084013e612f44565b606091505b5090949350505050565b612f588383613104565b6001600160a01b0383163b15611120576000548281035b612f826000868380600101945086612ce8565b612f9f576040516368d2bf6b60e11b815260040160405180910390fd5b818110612f6f578160005414612fb457600080fd5b5050505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b6040516001600160a01b03831660248201526044810182905261112090849063a9059cbb60e01b90606401612ebb565b6000613087826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166131e19092919063ffffffff16565b80519091501561112057808060200190518101906130a59190613fb6565b6111205760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a49565b6000546001600160a01b03831661312d57604051622e076360e81b815260040160405180910390fd5b8161314b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106131955760005550505050565b60606131f084846000856131f8565b949350505050565b6060824710156132595760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a49565b6001600160a01b0385163b6132b05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a49565b600080866001600160a01b031685876040516132cc9190613fd3565b60006040518083038185875af1925050503d8060008114613309576040519150601f19603f3d011682016040523d82523d6000602084013e61330e565b606091505b509150915061331e828286613329565b979650505050505050565b60608315613338575081611969565b8251156133485782518084602001fd5b8160405162461bcd60e51b8152600401610a4991906134e0565b82805461336e90613aa1565b90600052602060002090601f01602090048101928261339057600085556133d6565b82601f106133a95782800160ff198235161785556133d6565b828001600101855582156133d6579182015b828111156133d65782358255916020019190600101906133bb565b506133e29291506133e6565b5090565b5b808211156133e257600081556001016133e7565b6001600160e01b03198116811461103b57600080fd5b60006020828403121561342357600080fd5b8135611969816133fb565b6001600160a01b038116811461103b57600080fd5b6000806040838503121561345657600080fd5b82356134618161342e565b915060208301356001600160601b038116811461347d57600080fd5b809150509250929050565b60005b838110156134a357818101518382015260200161348b565b83811115611d575750506000910152565b600081518084526134cc816020860160208601613488565b601f01601f19169290920160200192915050565b60208152600061196960208301846134b4565b60006020828403121561350557600080fd5b5035919050565b6000806040838503121561351f57600080fd5b823561352a8161342e565b946020939093013593505050565b60008060006060848603121561354d57600080fd5b83356135588161342e565b925060208401356135688161342e565b929592945050506040919091013590565b60006020828403121561358b57600080fd5b81356119698161342e565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156135d4576135d4613596565b604052919050565b60006001600160401b038211156135f5576135f5613596565b5060051b60200190565b6000602080838503121561361257600080fd5b82356001600160401b0381111561362857600080fd5b8301601f8101851361363957600080fd5b803561364c613647826135dc565b6135ac565b81815260059190911b8201830190838101908783111561366b57600080fd5b928401925b8284101561331e5783356136838161342e565b82529284019290840190613670565b600080604083850312156136a557600080fd5b50508035926020909101359150565b600080602083850312156136c757600080fd5b82356001600160401b03808211156136de57600080fd5b818501915085601f8301126136f257600080fd5b81358181111561370157600080fd5b86602082850101111561371357600080fd5b60209290920196919550909350505050565b6000602080838503121561373857600080fd5b82356001600160401b0381111561374e57600080fd5b8301601f8101851361375f57600080fd5b803561376d613647826135dc565b81815260059190911b8201830190838101908783111561378c57600080fd5b928401925b8284101561331e57833582529284019290840190613791565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b8181101561157e576138158385516137aa565b9284019260809290920191600101613802565b6020808252825182820181905260009190848201906040850190845b8181101561157e57835183529284019291840191600101613844565b60008060006060848603121561387557600080fd5b83356138808161342e565b95602085013595506040909401359392505050565b801515811461103b57600080fd5b600080604083850312156138b657600080fd5b82356138c18161342e565b9150602083013561347d81613895565b600080600080608085870312156138e757600080fd5b84356138f28161342e565b93506020858101356139038161342e565b93506040860135925060608601356001600160401b038082111561392657600080fd5b818801915088601f83011261393a57600080fd5b81358181111561394c5761394c613596565b61395e601f8201601f191685016135ac565b9150808252898482850101111561397457600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000608082840312156139a657600080fd5b604051608081018181106001600160401b03821117156139c8576139c8613596565b8060405250823581526020830135602082015260408301356040820152606083013560608201528091505092915050565b60808101610a1982846137aa565b60008060408385031215613a1a57600080fd5b8235613a258161342e565b9150602083013561347d8161342e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600181811c90821680613ab557607f821691505b60208210811415613ad657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526030908201527f53746172426c6f636b436f6c6c656374696f6e3a20616464726573736573206360408201526f616e206e6f7420626520656d7074792160801b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600081613b6757613b67613b42565b506000190190565b6000600019821415613b8357613b83613b42565b5060010190565b6000816000190483118215151615613ba457613ba4613b42565b500290565b600082613bc657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526033908201527f53746172426c6f636b436f6c6c656374696f6e3a205468652063616c6c6572206040820152721a5cc8185b9bdd1a195c8818dbdb9d1c9858dd606a1b606082015260800190565b60008219821115613c3157613c31613b42565b500190565b60208082526048908201527f53746172426c6f636b436f6c6c656374696f6e3a20746865206e657720656e6460408201527f2074696d652073686f756c642062652067726561746572207468616e2073746160608201526772742074696d652160c01b608082015260a00190565b600082821015613cb657613cb6613b42565b500390565b6020808252603f908201527f53746172426c6f636b436f6c6c656374696f6e3a2063616e206f6e6c7920636860408201527f616e67652074686520756e737461727465642073616c6520636f6e6669672100606082015260800190565b6020808252603a908201527f53746172426c6f636b436f6c6c656374696f6e3a20746865206e657720636f6e60408201527f6669672073686f756c64206e6f74206265207374617274656421000000000000606082015260800190565b6020808252603a908201527f53746172426c6f636b436f6c6c656374696f6e3a2073746172742074696d652060408201527f73686f756c642062652077697468696e20313830206461797321000000000000606082015260800190565b60208082526038908201527f53746172426c6f636b436f6c6c656374696f6e3a20656e642074696d6520736860408201527f6f756c642062652077697468696e203930302064617973210000000000000000606082015260800190565b60208082526028908201527f53746172426c6f636b436f6c6c656374696f6e3a20696e76616c696420706172604082015267616d65746572732160c01b606082015260800190565b60208082526035908201527f53746172426c6f636b436f6c6c656374696f6e3a20616d6f756e742073686f756040820152746c642062652067726561746572207468616e20302160581b606082015260800190565b60208082526028908201527f53746172426c6f636b436f6c6c656374696f6e3a2072656163686564206d617860408201526720737570706c792160c01b606082015260800190565b60008351613f26818460208801613488565b835190830190613f3a818360208801613488565b01949350505050565b600060208284031215613f5557600080fd5b5051919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613f8f908301846134b4565b9695505050505050565b600060208284031215613fab57600080fd5b8151611969816133fb565b600060208284031215613fc857600080fd5b815161196981613895565b60008251613fe5818460208701613488565b919091019291505056fea2646970667358221220dfecd71555b2c5facd1782cea888bac621e26e141b441eb137c39ccdfb0f79de64736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000c44a46ae2eceef2e6f2fd35ab84f38f0032b2d6c00000000000000000000000000000000000000000000000000000000000007d000000000000000000000000003d8c18655473bf155768c8d9fd1f10a022b345f00000000000000000000000000000000000000000000000000000000000002ee000000000000000000000000000000000000000000000000000000000000000630784c6164790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000630784c6164790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e73746172626c6f636b2e696f2f6173736574732f3430342f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c80638da5cb5b11610190578063bf113baf116100dc578063d756ae7011610095578063ed329fa81161006f578063ed329fa814610968578063f2fde38b1461097e578063f5197d581461099e578063fb26a0c9146109b457600080fd5b8063d756ae7014610908578063de61474614610928578063e985e9c51461094857600080fd5b8063bf113baf14610813578063c23dc68f14610833578063c5be767a14610860578063c87b56dd14610894578063c8eaf28f146108b4578063d5abeb01146108d457600080fd5b8063a22cb46511610149578063aa1b103f11610123578063aa1b103f146107a9578063ac446002146107be578063b88d4fde146107d3578063ba141075146107f357600080fd5b8063a22cb46514610746578063a343b62014610766578063a3fd2c441461078657600080fd5b80638da5cb5b1461068e5780638dde3c4b146106ac5780639224abb2146106c157806395d89b41146106e157806399a2557a146106f65780639b19251a1461071657600080fd5b80633bf583821161024f5780636352211e11610208578063715018a6116101e2578063715018a6146106195780637984f6791461062e5780638462151c1461064e578063868ff4a21461067b57600080fd5b80636352211e14610596578063656cf918146105b657806370a08231146105f957600080fd5b80633bf58382146104bc57806342842e0e146104dc5780634f558e79146104fc5780634fd201371461051c57806355f804b3146105495780635bbb21771461056957600080fd5b806323b872dd116102a157806323b872dd146103dd578063244b7e93146103fd578063281bd7981461042a5780632a55205a1461044a5780632db115441461048957806339a51be51461049c57600080fd5b806301ffc9a7146102e957806304634d8d1461031e57806306fdde0314610340578063081812fc14610362578063095ea7b31461039a57806318160ddd146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004613411565b6109ca565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004613443565b610a1f565b005b34801561034c57600080fd5b50610355610a8d565b60405161031591906134e0565b34801561036e57600080fd5b5061038261037d3660046134f3565b610b1f565b6040516001600160a01b039091168152602001610315565b3480156103a657600080fd5b5061033e6103b536600461350c565b610b63565b3480156103c657600080fd5b50600154600054035b604051908152602001610315565b3480156103e957600080fd5b5061033e6103f8366004613538565b610c03565b34801561040957600080fd5b506103cf610418366004613579565b601c6020526000908152604090205481565b34801561043657600080fd5b5061033e6104453660046135ff565b610d94565b34801561045657600080fd5b5061046a610465366004613692565b610ec5565b604080516001600160a01b039093168352602083019190915201610315565b61033e6104973660046134f3565b610f71565b3480156104a857600080fd5b50600f54610382906001600160a01b031681565b3480156104c857600080fd5b5061033e6104d73660046134f3565b61103e565b3480156104e857600080fd5b5061033e6104f7366004613538565b611105565b34801561050857600080fd5b506103096105173660046134f3565b611125565b34801561052857600080fd5b506103cf610537366004613579565b60176020526000908152604090205481565b34801561055557600080fd5b5061033e6105643660046136b4565b611130565b34801561057557600080fd5b50610589610584366004613725565b611198565b60405161031591906137e6565b3480156105a257600080fd5b506103826105b13660046134f3565b611265565b3480156105c257600080fd5b506011546012546013546014546105d99392919084565b604080519485526020850193909352918301526060820152608001610315565b34801561060557600080fd5b506103cf610614366004613579565b611270565b34801561062557600080fd5b5061033e6112be565b34801561063a57600080fd5b5061033e610649366004613579565b6112f4565b34801561065a57600080fd5b5061066e610669366004613579565b61147b565b6040516103159190613828565b61033e6106893660046134f3565b61158a565b34801561069a57600080fd5b50600a546001600160a01b0316610382565b3480156106b857600080fd5b506103cf6116b3565b3480156106cd57600080fd5b5061033e6106dc3660046134f3565b611729565b3480156106ed57600080fd5b506103556117e4565b34801561070257600080fd5b5061066e610711366004613860565b6117f3565b34801561072257600080fd5b50610309610731366004613579565b60156020526000908152604090205460ff1681565b34801561075257600080fd5b5061033e6107613660046138a3565b611970565b34801561077257600080fd5b5061033e61078136600461350c565b611a06565b34801561079257600080fd5b50601854601954601a54601b546105d99392919084565b3480156107b557600080fd5b5061033e611bc6565b3480156107ca57600080fd5b5061033e611c29565b3480156107df57600080fd5b5061033e6107ee3660046138d1565b611d5d565b3480156107ff57600080fd5b5061033e61080e366004613994565b611da1565b34801561081f57600080fd5b5061033e61082e3660046134f3565b611f31565b34801561083f57600080fd5b5061085361084e3660046134f3565b6120ba565b60405161031591906139f9565b34801561086c57600080fd5b506103cf7f0000000000000000000000000000000000000000000000000000000000000bb881565b3480156108a057600080fd5b506103556108af3660046134f3565b612132565b3480156108c057600080fd5b5061033e6108cf3660046135ff565b6121b6565b3480156108e057600080fd5b506103cf7f000000000000000000000000000000000000000000000000000000000000271081565b34801561091457600080fd5b50600e54610382906001600160a01b031681565b34801561093457600080fd5b5061033e610943366004613994565b6122e6565b34801561095457600080fd5b50610309610963366004613a07565b612476565b34801561097457600080fd5b506103cf600d5481565b34801561098a57600080fd5b5061033e610999366004613579565b6124a4565b3480156109aa57600080fd5b506103cf60105481565b3480156109c057600080fd5b506103cf60165481565b60006001600160e01b03198216638f0c19fb60e01b14806109fb57506001600160e01b0319821663422353cf60e11b145b80610a0a5750610a0a8261253c565b80610a195750610a1982612571565b92915050565b600a546001600160a01b03163314610a525760405162461bcd60e51b8152600401610a4990613a35565b60405180910390fd5b6002600b541415610a755760405162461bcd60e51b8152600401610a4990613a6a565b6002600b55610a8482826125bf565b50506001600b55565b606060028054610a9c90613aa1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac890613aa1565b8015610b155780601f10610aea57610100808354040283529160200191610b15565b820191906000526020600020905b815481529060010190602001808311610af857829003601f168201915b5050505050905090565b6000610b2a826126bc565b610b47576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b6e82611265565b9050336001600160a01b03821614610ba757610b8a8133612476565b610ba7576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610c0e826126e3565b9050836001600160a01b0316816001600160a01b031614610c415760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610c8e57610c718633612476565b610c8e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610cb557604051633a954ecd60e21b815260040160405180910390fd5b8015610cc057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610d4b5760018401600081815260046020526040902054610d49576000548114610d495760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600a546001600160a01b03163314610dbe5760405162461bcd60e51b8152600401610a4990613a35565b6002600b541415610de15760405162461bcd60e51b8152600401610a4990613a6a565b6002600b558051610e045760405162461bcd60e51b8152600401610a4990613adc565b60005b8151811015610a845760156000838381518110610e2657610e26613b2c565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff1615610eb357600060156000848481518110610e6a57610e6a613b2c565b6020908102919091018101516001600160a01b031682528101919091526040016000908120805460ff1916921515929092179091556016805491610ead83613b58565b91905055505b80610ebd81613b6f565b915050610e07565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610f3a5750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610f59906001600160601b031687613b8a565b610f639190613ba9565b915196919550909350505050565b323314610f905760405162461bcd60e51b8152600401610a4990613bcb565b604080516080810182526018548152601954602080830191909152601a5482840152601b546060830152336000908152601c9091529190912054610fd691908390612744565b336000908152601c602052604081208054839290610ff5908490613c1e565b9091555050601a541515806110155750601a541580156110155750600034115b1561103157601a546110319061102c908390613b8a565b612944565b61103b3382612b45565b50565b600a546001600160a01b031633146110685760405162461bcd60e51b8152600401610a4990613a35565b6002600b54141561108b5760405162461bcd60e51b8152600401610a4990613a6a565b6002600b55601854158015906110a2575060185481115b6110be5760405162461bcd60e51b8152600401610a4990613c36565b601981905560408051828152602081018390527fa0f93c463cff1d72335b2b6316e7b4bba938d9331afb9468df671a322ed1cefe91015b60405180910390a1506001600b55565b61112083838360405180602001604052806000815250611d5d565b505050565b6000610a19826126bc565b600a546001600160a01b0316331461115a5760405162461bcd60e51b8152600401610a4990613a35565b6002600b54141561117d5760405162461bcd60e51b8152600401610a4990613a6a565b6002600b5561118e600c8383613362565b50506001600b5550565b80516060906000816001600160401b038111156111b7576111b7613596565b60405190808252806020026020018201604052801561120957816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816111d55790505b50905060005b82811461125d5761123885828151811061122b5761122b613b2c565b60200260200101516120ba565b82828151811061124a5761124a613b2c565b602090810291909101015260010161120f565b509392505050565b6000610a19826126e3565b60006001600160a01b038216611299576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b600a546001600160a01b031633146112e85760405162461bcd60e51b8152600401610a4990613a35565b6112f26000612b63565b565b600a546001600160a01b0316331461131e5760405162461bcd60e51b8152600401610a4990613a35565b6002600b5414156113415760405162461bcd60e51b8152600401610a4990613a6a565b6002600b556011541580611356575060115442105b6113bb5760405162461bcd60e51b815260206004820152603060248201527f53746172426c6f636b436f6c6c656374696f6e3a2077686974656c697374207360448201526f616c652068617320737461727465642160801b6064820152608401610a49565b60185415806113cb575060185442105b61142d5760405162461bcd60e51b815260206004820152602d60248201527f53746172426c6f636b436f6c6c656374696f6e3a207075626c69632073616c6560448201526c2068617320737461727465642160981b6064820152608401610a49565b600e80546001600160a01b0319166001600160a01b0383169081179091556040519081527fe0a413e7aedf234615d1ccebc9ea233dd62e470f100af095f071a03d3f252a90906020016110f5565b6060600080600061148b85611270565b90506000816001600160401b038111156114a7576114a7613596565b6040519080825280602002602001820160405280156114d0578160200160208202803683370190505b5090506114fd60408051608081018252600080825260208201819052918101829052606081019190915290565b60005b83861461157e5761151081612bb5565b915081604001511561152157611576565b81516001600160a01b03161561153657815194505b876001600160a01b0316856001600160a01b03161415611576578083878060010198508151811061156957611569613b2c565b6020026020010181815250505b600101611500565b50909695505050505050565b3233146115a95760405162461bcd60e51b8152600401610a4990613bcb565b3360009081526015602052604090205460ff166116175760405162461bcd60e51b815260206004820152602660248201527f53746172426c6f636b436f6c6c656374696f6e3a206e6f7420696e2077686974604482015265656c6973742160d01b6064820152608401610a49565b6040805160808101825260115481526012546020808301919091526013548284015260145460608301523360009081526017909152919091205461165d91908390612744565b336000908152601760205260408120805483929061167c908490613c1e565b909155505060135415158061169c575060135415801561169c5750600034115b15611031576013546110319061102c908390613b8a565b6000600d547f0000000000000000000000000000000000000000000000000000000000000bb86116e66001546000540390565b6116f09190613c1e565b6116fa9190613ca4565b611724907f0000000000000000000000000000000000000000000000000000000000002710613ca4565b905090565b600a546001600160a01b031633146117535760405162461bcd60e51b8152600401610a4990613a35565b6002600b5414156117765760405162461bcd60e51b8152600401610a4990613a6a565b6002600b556011541580159061178d575060115481115b6117a95760405162461bcd60e51b8152600401610a4990613c36565b601281905560408051828152602081018390527f4fc9d20e1e480ba626cd47884005a55db11ebacbb1d7cc61bd0b4718ff19fc4891016110f5565b606060038054610a9c90613aa1565b606081831061181557604051631960ccad60e11b815260040160405180910390fd5b60008061182160005490565b90508084111561182f578093505b600061183a87611270565b9050848610156118595785850381811015611853578091505b5061185d565b5060005b6000816001600160401b0381111561187757611877613596565b6040519080825280602002602001820160405280156118a0578160200160208202803683370190505b509050816118b357935061196992505050565b60006118be886120ba565b9050600081604001516118cf575080515b885b8881141580156118e15750848714155b1561195d576118ef81612bb5565b925082604001511561190057611955565b82516001600160a01b03161561191557825191505b8a6001600160a01b0316826001600160a01b03161415611955578084888060010199508151811061194857611948613b2c565b6020026020010181815250505b6001016118d1565b50505092835250909150505b9392505050565b6001600160a01b03821633141561199a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6002600b541415611a295760405162461bcd60e51b8152600401610a4990613a6a565b6002600b55600f546001600160a01b03163314611aa75760405162461bcd60e51b815260206004820152603660248201527f53746172426c6f636b436f6c6c656374696f6e3a206f6e6c792070726f746f636044820152756f6c46656552656365697665722063616e207365742160501b6064820152608401610a49565b6001600160a01b038216611b235760405162461bcd60e51b815260206004820152603a60248201527f53746172426c6f636b436f6c6c656374696f6e3a205f70726f746f636f6c466560448201527f6552656365697665722063616e206e6f74206265207a65726f210000000000006064820152608401610a49565b601054811115611b9b5760405162461bcd60e51b815260206004820152603f60248201527f53746172426c6f636b436f6c6c656374696f6e3a2063616e206f6e6c7920736560448201527f74206c6f7765722070726f746f636f6c20666565206e756d657261746f7221006064820152608401610a49565b600f80546001600160a01b0319166001600160a01b0393909316929092179091556010556001600b55565b600a546001600160a01b03163314611bf05760405162461bcd60e51b8152600401610a4990613a35565b6002600b541415611c135760405162461bcd60e51b8152600401610a4990613a6a565b6002600b55611c226000600855565b6001600b55565b600a546001600160a01b03163314611c535760405162461bcd60e51b8152600401610a4990613a35565b6000611c5d612bf1565b90506000819050600080601054118015611c775750600083115b15611ca65760105461271090611c8d9085613b8a565b611c979190613ba9565b9050611ca38184613ca4565b91505b60008215611ccc57611cc9611cc3600a546001600160a01b031690565b84612c76565b90505b808015611cd95750600082115b15611cf757600f54611cf4906001600160a01b031683612c76565b90505b80611d575760405162461bcd60e51b815260206004820152602a60248201527f53746172426c6f636b436f6c6c656374696f6e3a2077697468647261774d6f6e6044820152696579206661696c65642160b01b6064820152608401610a49565b50505050565b611d68848484610c03565b6001600160a01b0383163b15611d5757611d8484848484612ce8565b611d57576040516368d2bf6b60e11b815260040160405180910390fd5b600a546001600160a01b03163314611dcb5760405162461bcd60e51b8152600401610a4990613a35565b6002600b541415611dee5760405162461bcd60e51b8152600401610a4990613a6a565b6002600b556011541580611e03575060115442105b611e1f5760405162461bcd60e51b8152600401610a4990613cbb565b80511580611e2d5750805142105b611e495760405162461bcd60e51b8152600401610a4990613d18565b611e564262ed4e00613c1e565b815110611e755760405162461bcd60e51b8152600401610a4990613d75565b611e83426304a28600613c1e565b816020015110611ea55760405162461bcd60e51b8152600401610a4990613dd2565b611eae81612dd0565b611eca5760405162461bcd60e51b8152600401610a4990613e2f565b805160118190556020808301805160125560408085018051601355606080870180516014558351968752935194860194909452519084015251908201527fb70d34e17a11eb825953259eaf178e59ee5b22e112160173c7ef35ca7cec1717906080016110f5565b600a546001600160a01b03163314611f5b5760405162461bcd60e51b8152600401610a4990613a35565b6002600b541415611f7e5760405162461bcd60e51b8152600401610a4990613a6a565b6002600b5580611fa05760405162461bcd60e51b8152600401610a4990613e77565b7f0000000000000000000000000000000000000000000000000000000000000bb881600d54611fcf9190613c1e565b11156120395760405162461bcd60e51b815260206004820152603360248201527f53746172426c6f636b436f6c6c656374696f6e3a2072656163686564206d617860448201527220616d6f756e7420666f72206172746973742160681b6064820152608401610a49565b7f0000000000000000000000000000000000000000000000000000000000002710816120686001546000540390565b6120729190613c1e565b11156120905760405162461bcd60e51b8152600401610a4990613ecc565b80600d60008282546120a29190613c1e565b909155506120b290503382612b45565b506001600b55565b604080516080808201835260008083526020808401829052838501829052606080850183905285519384018652828452908301829052938201819052928101839052909150600054831061210e5792915050565b61211783612bb5565b90508060400151156121295792915050565b61196983612df4565b606061213d826126bc565b61215a57604051630a14c4b560e41b815260040160405180910390fd5b6000612164612e29565b90508051600014156121855760405180602001604052806000815250611969565b8061218f84612e38565b6040516020016121a0929190613f14565b6040516020818303038152906040529392505050565b600a546001600160a01b031633146121e05760405162461bcd60e51b8152600401610a4990613a35565b6002600b5414156122035760405162461bcd60e51b8152600401610a4990613a6a565b6002600b5580516122265760405162461bcd60e51b8152600401610a4990613adc565b60005b8151811015610a84576015600083838151811061224857612248613b2c565b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff166122d45760016015600084848151811061228b5761228b613b2c565b6020908102919091018101516001600160a01b031682528101919091526040016000908120805460ff19169215159290921790915560168054916122ce83613b6f565b91905055505b806122de81613b6f565b915050612229565b600a546001600160a01b031633146123105760405162461bcd60e51b8152600401610a4990613a35565b6002600b5414156123335760405162461bcd60e51b8152600401610a4990613a6a565b6002600b556018541580612348575060185442105b6123645760405162461bcd60e51b8152600401610a4990613cbb565b805115806123725750805142105b61238e5760405162461bcd60e51b8152600401610a4990613d18565b61239b4262ed4e00613c1e565b8151106123ba5760405162461bcd60e51b8152600401610a4990613d75565b6123c8426304a28600613c1e565b8160200151106123ea5760405162461bcd60e51b8152600401610a4990613dd2565b6123f381612dd0565b61240f5760405162461bcd60e51b8152600401610a4990613e2f565b805160188190556020808301805160195560408085018051601a5560608087018051601b558351968752935194860194909452519084015251908201527fe45e8a559f8cf5559a3dc85a487abc9ef56c3cdfb5dc791399bfbb9ecd259a13906080016110f5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146124ce5760405162461bcd60e51b8152600401610a4990613a35565b6001600160a01b0381166125335760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a49565b61103b81612b63565b60006001600160e01b0319821663152a902d60e11b1480610a1957506301ffc9a760e01b6001600160e01b0319831614610a19565b60006301ffc9a760e01b6001600160e01b0319831614806125a257506380ac58cd60e01b6001600160e01b03198316145b80610a195750506001600160e01b031916635b5e139f60e01b1490565b6127106001600160601b038216111561262d5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610a49565b6001600160a01b0382166126835760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610a49565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6000805482108015610a19575050600090815260046020526040902054600160e01b161590565b60008160005481101561272b57600081815260046020526040902054600160e01b8116612729575b8061196957506000190160008181526004602052604090205461270b565b505b604051636f96cda160e11b815260040160405180910390fd5b600082116127645760405162461bcd60e51b8152600401610a4990613e77565b8161276d6116b3565b101561278b5760405162461bcd60e51b8152600401610a4990613ecc565b82516127e85760405162461bcd60e51b815260206004820152602660248201527f53746172426c6f636b436f6c6c656374696f6e3a2073616c6520686173206e6f60448201526574207365742160d01b6064820152608401610a49565b82514210156128505760405162461bcd60e51b815260206004820152602e60248201527f53746172426c6f636b436f6c6c656374696f6e3a2073616c6520686173206e6f60448201526d742073746172746564207965742160901b6064820152608401610a49565b60208301511580612865575042836020015110155b6128bd5760405162461bcd60e51b8152602060048201526024808201527f53746172426c6f636b436f6c6c656374696f6e3a2073616c652068617320656e6044820152636465642160e01b6064820152608401610a49565b606083015115806128db575060608301516128d88383613c1e565b11155b6111205760405162461bcd60e51b815260206004820152603460248201527f53746172426c6f636b436f6c6c656374696f6e3a2072656163686564206d617860448201527320616d6f756e742070657220616464726573732160601b6064820152608401610a49565b6002600b5414156129675760405162461bcd60e51b8152600401610a4990613a6a565b6002600b55600e546001906000906001600160a01b031615612a6f57600e546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156129cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129f09190613f43565b905083811015612a515760405162461bcd60e51b815260206004820152602660248201527f53746172426c6f636b436f6c6c656374696f6e3a206e6f7420656e6f75676820604482015265746f6b656e2160d01b6064820152608401610a49565b600e54612a69906001600160a01b0316333087612e87565b50612ace565b82341015612acb5760405162461bcd60e51b8152602060048201526024808201527f53746172426c6f636b436f6c6c656374696f6e3a206e6f7420656e6f756768206044820152634554482160e01b6064820152608401610a49565b50815b80341115612aec57612ae933612ae48334613ca4565b612ef2565b91505b8161118e5760405162461bcd60e51b815260206004820152602360248201527f53746172426c6f636b436f6c6c656374696f6e3a20636861726765206661696c60448201526265642160e81b6064820152608401610a49565b612b5f828260405180602001604052806000815250612f4e565b5050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610a1990612fbb565b600e546000906001600160a01b031615612c7157600e546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015612c4d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117249190613f43565b504790565b60006002600b541415612c9b5760405162461bcd60e51b8152600401610a4990613a6a565b6002600b55600e546001600160a01b031615612cd057600e54612cc8906001600160a01b03168484613002565b506001612cdd565b612cda8383612ef2565b90505b6001600b5592915050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612d1d903390899088908890600401613f5c565b6020604051808303816000875af1925050508015612d58575060408051601f3d908101601f19168201909252612d5591810190613f99565b60015b612db3573d808015612d86576040519150601f19603f3d011682016040523d82523d6000602084013e612d8b565b606091505b508051612dab576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b80516000901580610a19575060208201511580610a19575050602081015190511090565b604080516080810182526000808252602082018190529181018290526060810191909152610a19612e24836126e3565b612fbb565b6060600c8054610a9c90613aa1565b604080516080810191829052607f0190826030600a8206018353600a90045b8015612e7557600183039250600a81066030018353600a9004612e57565b50819003601f19909101908152919050565b6040516001600160a01b0380851660248301528316604482015260648101829052611d579085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152613032565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612f3f576040519150601f19603f3d011682016040523d82523d6000602084013e612f44565b606091505b5090949350505050565b612f588383613104565b6001600160a01b0383163b15611120576000548281035b612f826000868380600101945086612ce8565b612f9f576040516368d2bf6b60e11b815260040160405180910390fd5b818110612f6f578160005414612fb457600080fd5b5050505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b6040516001600160a01b03831660248201526044810182905261112090849063a9059cbb60e01b90606401612ebb565b6000613087826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166131e19092919063ffffffff16565b80519091501561112057808060200190518101906130a59190613fb6565b6111205760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a49565b6000546001600160a01b03831661312d57604051622e076360e81b815260040160405180910390fd5b8161314b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106131955760005550505050565b60606131f084846000856131f8565b949350505050565b6060824710156132595760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a49565b6001600160a01b0385163b6132b05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a49565b600080866001600160a01b031685876040516132cc9190613fd3565b60006040518083038185875af1925050503d8060008114613309576040519150601f19603f3d011682016040523d82523d6000602084013e61330e565b606091505b509150915061331e828286613329565b979650505050505050565b60608315613338575081611969565b8251156133485782518084602001fd5b8160405162461bcd60e51b8152600401610a4991906134e0565b82805461336e90613aa1565b90600052602060002090601f01602090048101928261339057600085556133d6565b82601f106133a95782800160ff198235161785556133d6565b828001600101855582156133d6579182015b828111156133d65782358255916020019190600101906133bb565b506133e29291506133e6565b5090565b5b808211156133e257600081556001016133e7565b6001600160e01b03198116811461103b57600080fd5b60006020828403121561342357600080fd5b8135611969816133fb565b6001600160a01b038116811461103b57600080fd5b6000806040838503121561345657600080fd5b82356134618161342e565b915060208301356001600160601b038116811461347d57600080fd5b809150509250929050565b60005b838110156134a357818101518382015260200161348b565b83811115611d575750506000910152565b600081518084526134cc816020860160208601613488565b601f01601f19169290920160200192915050565b60208152600061196960208301846134b4565b60006020828403121561350557600080fd5b5035919050565b6000806040838503121561351f57600080fd5b823561352a8161342e565b946020939093013593505050565b60008060006060848603121561354d57600080fd5b83356135588161342e565b925060208401356135688161342e565b929592945050506040919091013590565b60006020828403121561358b57600080fd5b81356119698161342e565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156135d4576135d4613596565b604052919050565b60006001600160401b038211156135f5576135f5613596565b5060051b60200190565b6000602080838503121561361257600080fd5b82356001600160401b0381111561362857600080fd5b8301601f8101851361363957600080fd5b803561364c613647826135dc565b6135ac565b81815260059190911b8201830190838101908783111561366b57600080fd5b928401925b8284101561331e5783356136838161342e565b82529284019290840190613670565b600080604083850312156136a557600080fd5b50508035926020909101359150565b600080602083850312156136c757600080fd5b82356001600160401b03808211156136de57600080fd5b818501915085601f8301126136f257600080fd5b81358181111561370157600080fd5b86602082850101111561371357600080fd5b60209290920196919550909350505050565b6000602080838503121561373857600080fd5b82356001600160401b0381111561374e57600080fd5b8301601f8101851361375f57600080fd5b803561376d613647826135dc565b81815260059190911b8201830190838101908783111561378c57600080fd5b928401925b8284101561331e57833582529284019290840190613791565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b8181101561157e576138158385516137aa565b9284019260809290920191600101613802565b6020808252825182820181905260009190848201906040850190845b8181101561157e57835183529284019291840191600101613844565b60008060006060848603121561387557600080fd5b83356138808161342e565b95602085013595506040909401359392505050565b801515811461103b57600080fd5b600080604083850312156138b657600080fd5b82356138c18161342e565b9150602083013561347d81613895565b600080600080608085870312156138e757600080fd5b84356138f28161342e565b93506020858101356139038161342e565b93506040860135925060608601356001600160401b038082111561392657600080fd5b818801915088601f83011261393a57600080fd5b81358181111561394c5761394c613596565b61395e601f8201601f191685016135ac565b9150808252898482850101111561397457600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000608082840312156139a657600080fd5b604051608081018181106001600160401b03821117156139c8576139c8613596565b8060405250823581526020830135602082015260408301356040820152606083013560608201528091505092915050565b60808101610a1982846137aa565b60008060408385031215613a1a57600080fd5b8235613a258161342e565b9150602083013561347d8161342e565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600181811c90821680613ab557607f821691505b60208210811415613ad657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526030908201527f53746172426c6f636b436f6c6c656374696f6e3a20616464726573736573206360408201526f616e206e6f7420626520656d7074792160801b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600081613b6757613b67613b42565b506000190190565b6000600019821415613b8357613b83613b42565b5060010190565b6000816000190483118215151615613ba457613ba4613b42565b500290565b600082613bc657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526033908201527f53746172426c6f636b436f6c6c656374696f6e3a205468652063616c6c6572206040820152721a5cc8185b9bdd1a195c8818dbdb9d1c9858dd606a1b606082015260800190565b60008219821115613c3157613c31613b42565b500190565b60208082526048908201527f53746172426c6f636b436f6c6c656374696f6e3a20746865206e657720656e6460408201527f2074696d652073686f756c642062652067726561746572207468616e2073746160608201526772742074696d652160c01b608082015260a00190565b600082821015613cb657613cb6613b42565b500390565b6020808252603f908201527f53746172426c6f636b436f6c6c656374696f6e3a2063616e206f6e6c7920636860408201527f616e67652074686520756e737461727465642073616c6520636f6e6669672100606082015260800190565b6020808252603a908201527f53746172426c6f636b436f6c6c656374696f6e3a20746865206e657720636f6e60408201527f6669672073686f756c64206e6f74206265207374617274656421000000000000606082015260800190565b6020808252603a908201527f53746172426c6f636b436f6c6c656374696f6e3a2073746172742074696d652060408201527f73686f756c642062652077697468696e20313830206461797321000000000000606082015260800190565b60208082526038908201527f53746172426c6f636b436f6c6c656374696f6e3a20656e642074696d6520736860408201527f6f756c642062652077697468696e203930302064617973210000000000000000606082015260800190565b60208082526028908201527f53746172426c6f636b436f6c6c656374696f6e3a20696e76616c696420706172604082015267616d65746572732160c01b606082015260800190565b60208082526035908201527f53746172426c6f636b436f6c6c656374696f6e3a20616d6f756e742073686f756040820152746c642062652067726561746572207468616e20302160581b606082015260800190565b60208082526028908201527f53746172426c6f636b436f6c6c656374696f6e3a2072656163686564206d617860408201526720737570706c792160c01b606082015260800190565b60008351613f26818460208801613488565b835190830190613f3a818360208801613488565b01949350505050565b600060208284031215613f5557600080fd5b5051919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613f8f908301846134b4565b9695505050505050565b600060208284031215613fab57600080fd5b8151611969816133fb565b600060208284031215613fc857600080fd5b815161196981613895565b60008251613fe5818460208701613488565b919091019291505056fea2646970667358221220dfecd71555b2c5facd1782cea888bac621e26e141b441eb137c39ccdfb0f79de64736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000bb8000000000000000000000000c44a46ae2eceef2e6f2fd35ab84f38f0032b2d6c00000000000000000000000000000000000000000000000000000000000007d000000000000000000000000003d8c18655473bf155768c8d9fd1f10a022b345f00000000000000000000000000000000000000000000000000000000000002ee000000000000000000000000000000000000000000000000000000000000000630784c6164790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000630784c6164790000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e73746172626c6f636b2e696f2f6173736574732f3430342f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): 0xLady
Arg [1] : _symbol (string): 0xLady
Arg [2] : _maxSupply (uint256): 10000
Arg [3] : _chargeToken (address): 0x0000000000000000000000000000000000000000
Arg [4] : _baseTokenURI (string): https://api.starblock.io/assets/404/
Arg [5] : _maxAmountForArtist (uint256): 3000
Arg [6] : _protocolFeeReceiver (address): 0xC44A46ae2eCEef2e6F2fD35aB84F38F0032B2d6C
Arg [7] : _protocolFeeNumerator (uint256): 2000
Arg [8] : _royaltyReceiver (address): 0x03d8C18655473bf155768c8d9FD1f10A022B345F
Arg [9] : _royaltyFeeNumerator (uint96): 750

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [6] : 000000000000000000000000c44a46ae2eceef2e6f2fd35ab84f38f0032b2d6c
Arg [7] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [8] : 00000000000000000000000003d8c18655473bf155768c8d9fd1f10a022b345f
Arg [9] : 00000000000000000000000000000000000000000000000000000000000002ee
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [11] : 30784c6164790000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [13] : 30784c6164790000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [15] : 68747470733a2f2f6170692e73746172626c6f636b2e696f2f6173736574732f
Arg [16] : 3430342f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

4131:13104:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9467:402;;;;;;;;;;-1:-1:-1;9467:402:14;;;;;:::i;:::-;;:::i;:::-;;;565:14:15;;558:22;540:41;;528:2;513:18;9467:402:14;;;;;;;;16852:161;;;;;;;;;;-1:-1:-1;16852:161:14;;;;;:::i;:::-;;:::i;:::-;;11161:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;13048:200::-;;;;;;;;;;-1:-1:-1;13048:200:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2268:32:15;;;2250:51;;2238:2;2223:18;13048:200:4;2104:203:15;12611:376:4;;;;;;;;;;-1:-1:-1;12611:376:4;;;;;:::i;:::-;;:::i;4736:309::-;;;;;;;;;;-1:-1:-1;4998:12:4;;4789:7;4982:13;:28;4736:309;;;2778:25:15;;;2766:2;2751:18;4736:309:4;2632:177:15;22055:2739:4;;;;;;;;;;-1:-1:-1;22055:2739:4;;;;;:::i;:::-;;:::i;5000:51:14:-;;;;;;;;;;-1:-1:-1;5000:51:14;;;;;:::i;:::-;;;;;;;;;;;;;;10520:391;;;;;;;;;;-1:-1:-1;10520:391:14;;;;;:::i;:::-;;:::i;1632:432:3:-;;;;;;;;;;-1:-1:-1;1632:432:3;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5543:32:15;;;5525:51;;5607:2;5592:18;;5585:34;;;;5498:18;1632:432:3;5351:274:15;6775:403:14;;;;;;:::i;:::-;;:::i;4569:42::-;;;;;;;;;;-1:-1:-1;4569:42:14;;;;-1:-1:-1;;;;;4569:42:14;;;13902:387;;;;;;;;;;-1:-1:-1;13902:387:14;;;;;:::i;:::-;;:::i;13912:179:4:-;;;;;;;;;;-1:-1:-1;13912:179:4;;;;;:::i;:::-;;:::i;17129:104:14:-;;;;;;;;;;-1:-1:-1;17129:104:14;;;;;:::i;:::-;;:::i;4874:54::-;;;;;;;;;;-1:-1:-1;4874:54:14;;;;;:::i;:::-;;;;;;;;;;;;;;9992:128;;;;;;;;;;-1:-1:-1;9992:128:14;;;;;:::i;:::-;;:::i;1654:459:5:-;;;;;;;;;;-1:-1:-1;1654:459:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10957:142:4:-;;;;;;;;;;-1:-1:-1;10957:142:4;;;;;:::i;:::-;;:::i;4748:37:14:-;;;;;;;;;;-1:-1:-1;4748:37:14;;;;;;;;;;;;;;;;;;;8661:25:15;;;8717:2;8702:18;;8695:34;;;;8745:18;;;8738:34;8803:2;8788:18;;8781:34;8648:3;8633:19;4748:37:14;8430:391:15;6319:221:4;;;;;;;;;;-1:-1:-1;6319:221:4;;;;;:::i;:::-;;:::i;1661:101:11:-;;;;;;;;;;;;;:::i;14295:472:14:-;;;;;;;;;;-1:-1:-1;14295:472:14;;;;;:::i;:::-;;:::i;5372:871:5:-;;;;;;;;;;-1:-1:-1;5372:871:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6255:514:14:-;;;;;;:::i;:::-;;:::i;1029:85:11:-;;;;;;;;;;-1:-1:-1;1101:6:11;;-1:-1:-1;;;;;1101:6:11;1029:85;;7647:151:14;;;;;;;;;;;;;:::i;12348:405::-;;;;;;;;;;-1:-1:-1;12348:405:14;;;;;:::i;:::-;;:::i;11323:102:4:-;;;;;;;;;;;;;:::i;2489:2446:5:-;;;;;;;;;;-1:-1:-1;2489:2446:5;;;;;:::i;:::-;;:::i;4791:41:14:-;;;;;;;;;;-1:-1:-1;4791:41:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;13315:303:4;;;;;;;;;;-1:-1:-1;13315:303:4;;;;;:::i;:::-;;:::i;14773:607:14:-;;;;;;;;;;-1:-1:-1;14773:607:14;;;;;:::i;:::-;;:::i;4960:34::-;;;;;;;;;;-1:-1:-1;4960:34:14;;;;;;;;;;;;;;;17019:104;;;;;;;;;;;;;:::i;15386:704::-;;;;;;;;;;;;;:::i;14157:388:4:-;;;;;;;;;;-1:-1:-1;14157:388:4;;;;;:::i;:::-;;:::i;11140:1202:14:-;;;;;;;;;;-1:-1:-1;11140:1202:14;;;;;:::i;:::-;;:::i;7184:457::-;;;;;;;;;;-1:-1:-1;7184:457:14;;;;;:::i;:::-;;:::i;1091:410:5:-;;;;;;;;;;-1:-1:-1;1091:410:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4354:43:14:-;;;;;;;;;;;;;;;11491:313:4;;;;;;;;;;-1:-1:-1;11491:313:4;;;;;:::i;:::-;;:::i;10126:388:14:-;;;;;;;;;;-1:-1:-1;10126:388:14;;;;;:::i;:::-;;:::i;4280:34::-;;;;;;;;;;;;;;;4495:25;;;;;;;;;;-1:-1:-1;4495:25:14;;;;-1:-1:-1;;;;;4495:25:14;;;12759:1137;;;;;;;;;;-1:-1:-1;12759:1137:14;;;;;:::i;:::-;;:::i;13684:162:4:-;;;;;;;;;;-1:-1:-1;13684:162:4;;;;;:::i;:::-;;:::i;4403:27:14:-;;;;;;;;;;;;;;;;1911:198:11;;;;;;;;;;-1:-1:-1;1911:198:11;;;;;:::i;:::-;;:::i;4653:35:14:-;;;;;;;;;;;;;;;;4838:30;;;;;;;;;;;;;;;;9467:402;9593:4;-1:-1:-1;;;;;;9616:54:14;;-1:-1:-1;;;9616:54:14;;:126;;-1:-1:-1;;;;;;;9691:51:14;;-1:-1:-1;;;9691:51:14;9616:126;:186;;;;9763:39;9789:12;9763:25;:39::i;:::-;9616:246;;;;9823:39;9849:12;9823:25;:39::i;:::-;9609:253;9467:402;-1:-1:-1;;9467:402:14:o;16852:161::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;;;;;;;;;1744:1:12::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:12::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;16962:44:14::2;16981:9:::0;16992:13;16962:18:::2;:44::i;:::-;-1:-1:-1::0;;1701:1:12::1;2628:7;:22:::0;16852:161:14:o;11161:98:4:-;11215:13;11247:5;11240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11161:98;:::o;13048:200::-;13116:7;13140:16;13148:7;13140;:16::i;:::-;13135:64;;13165:34;;-1:-1:-1;;;13165:34:4;;;;;;;;;;;13135:64;-1:-1:-1;13217:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;13217:24:4;;13048:200::o;12611:376::-;12683:13;12699:16;12707:7;12699;:16::i;:::-;12683:32;-1:-1:-1;719:10:1;-1:-1:-1;;;;;12730:28:4;;;12726:172;;12777:44;12794:5;719:10:1;13684:162:4;:::i;12777:44::-;12772:126;;12848:35;;-1:-1:-1;;;12848:35:4;;;;;;;;;;;12772:126;12908:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12908:29:4;-1:-1:-1;;;;;12908:29:4;;;;;;;;;12952:28;;12908:24;;12952:28;;;;;;;12673:314;12611:376;;:::o;22055:2739::-;22184:27;22214;22233:7;22214:18;:27::i;:::-;22184:57;;22297:4;-1:-1:-1;;;;;22256:45:4;22272:19;-1:-1:-1;;;;;22256:45:4;;22252:86;;22310:28;;-1:-1:-1;;;22310:28:4;;;;;;;;;;;22252:86;22350:27;20821:21;;;20652:15;20862:4;20855:36;20943:4;20927:21;;21031:26;;719:10:1;21766:30:4;;;-1:-1:-1;;;;;21468:26:4;;21745:19;;;21742:55;22526:173;;22612:43;22629:4;719:10:1;13684:162:4;:::i;22612:43::-;22607:92;;22664:35;;-1:-1:-1;;;22664:35:4;;;;;;;;;;;22607:92;-1:-1:-1;;;;;22714:16:4;;22710:52;;22739:23;;-1:-1:-1;;;22739:23:4;;;;;;;;;;;22710:52;22905:15;22902:157;;;23043:1;23022:19;23015:30;22902:157;-1:-1:-1;;;;;23429:24:4;;;;;;;:18;:24;;;;;;23427:26;;-1:-1:-1;;23427:26:4;;;23497:22;;;;;;;;;23495:24;;-1:-1:-1;23495:24:4;;;10863:11;10839:22;10835:40;10822:62;-1:-1:-1;;;10822:62:4;23783:26;;;;:17;:26;;;;;:171;-1:-1:-1;;;24071:46:4;;24067:616;;24174:1;24164:11;;24142:19;24295:30;;;:17;:30;;;;;;24291:378;;24431:13;;24416:11;:28;24412:239;;24576:30;;;;:17;:30;;;;;:52;;;24412:239;24124:559;24067:616;24727:7;24723:2;-1:-1:-1;;;;;24708:27:4;24717:4;-1:-1:-1;;;;;24708:27:4;;;;;;;;;;;22174:2620;;;22055:2739;;;:::o;10520:391:14:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1744:1:12::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:12::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;10624:16:14;;10616:81:::2;;;;-1:-1:-1::0;;;10616:81:14::2;;;;;;;:::i;:::-;10712:9;10707:198;10731:9;:16;10727:1;:20;10707:198;;;10771:9;:23;10781:9;10791:1;10781:12;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;;;-1:-1:-1;;;;;10771:23:14::2;::::0;;;::::2;::::0;;;;;;-1:-1:-1;10771:23:14;;::::2;;10768:127;;;10839:5;10813:9;:23;10823:9;10833:1;10823:12;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;;;-1:-1:-1;;;;;10813:23:14::2;::::0;;;::::2;::::0;;;;;;-1:-1:-1;10813:23:14;;;:31;;-1:-1:-1;;10813:31:14::2;::::0;::::2;;::::0;;;::::2;::::0;;;10862:15:::2;:18:::0;;;::::2;::::0;::::2;:::i;:::-;;;;;;10768:127;10749:3:::0;::::2;::::0;::::2;:::i;:::-;;;;10707:198;;1632:432:3::0;1729:7;1786:27;;;:17;:27;;;;;;;;1757:56;;;;;;;;;-1:-1:-1;;;;;1757:56:3;;;;;-1:-1:-1;;;1757:56:3;;;-1:-1:-1;;;;;1757:56:3;;;;;;;;1729:7;;1824:90;;-1:-1:-1;1874:29:3;;;;;;;;;1884:19;1874:29;-1:-1:-1;;;;;1874:29:3;;;;-1:-1:-1;;;1874:29:3;;-1:-1:-1;;;;;1874:29:3;;;;;1824:90;1962:23;;;;1924:21;;2422:5;;1949:36;;-1:-1:-1;;;;;1949:36:3;:10;:36;:::i;:::-;1948:58;;;;:::i;:::-;2025:16;;;;;-1:-1:-1;1632:432:3;;-1:-1:-1;;;;1632:432:3:o;6775:403:14:-;5100:9;5113:10;5100:23;5092:87;;;;-1:-1:-1;;;5092:87:14;;;;;;;:::i;:::-;6852:74:::1;::::0;;::::1;::::0;::::1;::::0;;6870:16:::1;6852:74:::0;;;;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;;6914:10:::1;-1:-1:-1::0;6897:28:14;;;:16:::1;:28:::0;;;;;;;;6852:74:::1;::::0;;6888:7;;6852:17:::1;:74::i;:::-;6954:10;6937:28;::::0;;;:16:::1;:28;::::0;;;;:39;;6969:7;;6937:28;:39:::1;::::0;6969:7;;6937:39:::1;:::i;:::-;::::0;;;-1:-1:-1;;6989:22:14;;:26;;;:76:::1;;-1:-1:-1::0;7020:22:14;;:27;:44;::::1;;;;7063:1;7051:9;:13;7020:44;6986:146;;;7088:22:::0;;7080:41:::1;::::0;7088:32:::1;::::0;7113:7;;7088:32:::1;:::i;:::-;7080:7;:41::i;:::-;7141:30;7151:10;7163:7;7141:9;:30::i;:::-;6775:403:::0;:::o;13902:387::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1744:1:12::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:12::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;14006:16:14::2;:26:::0;:30;;;;:74:::2;;-1:-1:-1::0;14040:16:14::2;:26:::0;:40;-1:-1:-1;14006:74:14::2;13998:159;;;;-1:-1:-1::0;;;13998:159:14::2;;;;;;;:::i;:::-;14167:24:::0;:38;;;14220:62:::2;::::0;;17275:25:15;;;17331:2;17316:18;;17309:34;;;14220:62:14::2;::::0;17248:18:15;14220:62:14::2;;;;;;;;-1:-1:-1::0;1701:1:12::1;2628:7;:22:::0;13902:387:14:o;13912:179:4:-;14045:39;14062:4;14068:2;14072:7;14045:39;;;;;;;;;;;;:16;:39::i;:::-;13912:179;;;:::o;17129:104:14:-;17186:4;17209:17;17217:8;17209:7;:17::i;9992:128::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1744:1:12::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:12::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;10085:28:14::2;:12;10100:13:::0;;10085:28:::2;:::i;:::-;-1:-1:-1::0;;1701:1:12::1;2628:7;:22:::0;-1:-1:-1;9992:128:14:o;1654:459:5:-;1827:15;;1743:23;;1802:22;1827:15;-1:-1:-1;;;;;1893:36:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1893:36:5;;-1:-1:-1;;1893:36:5;;;;;;;;;;;;1856:73;;1948:9;1943:123;1964:14;1959:1;:19;1943:123;;2019:32;2039:8;2048:1;2039:11;;;;;;;;:::i;:::-;;;;;;;2019:19;:32::i;:::-;2003:10;2014:1;2003:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;1980:3;;1943:123;;;-1:-1:-1;2086:10:5;1654:459;-1:-1:-1;;;1654:459:5:o;10957:142:4:-;11021:7;11063:27;11082:7;11063:18;:27::i;6319:221::-;6383:7;-1:-1:-1;;;;;6406:19:4;;6402:60;;6434:28;;-1:-1:-1;;;6434:28:4;;;;;;;;;;;6402:60;-1:-1:-1;;;;;;6479:25:4;;;;;:18;:25;;;;;;-1:-1:-1;;;;;6479:54:4;;6319:221::o;1661:101:11:-;1101:6;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;14295:472:14:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1744:1:12::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:12::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;14393:19:14::2;:29:::0;:34;;:85:::2;;-1:-1:-1::0;14431:19:14::2;:29:::0;14463:15:::2;-1:-1:-1::0;14393:85:14::2;14385:146;;;::::0;-1:-1:-1;;;14385:146:14;;17556:2:15;14385:146:14::2;::::0;::::2;17538:21:15::0;17595:2;17575:18;;;17568:30;17634:34;17614:18;;;17607:62;-1:-1:-1;;;17685:18:15;;;17678:46;17741:19;;14385:146:14::2;17354:412:15::0;14385:146:14::2;14549:16;:26:::0;:31;;:79:::2;;-1:-1:-1::0;14584:16:14::2;:26:::0;14613:15:::2;-1:-1:-1::0;14549:79:14::2;14541:137;;;::::0;-1:-1:-1;;;14541:137:14;;17973:2:15;14541:137:14::2;::::0;::::2;17955:21:15::0;18012:2;17992:18;;;17985:30;18051:34;18031:18;;;18024:62;-1:-1:-1;;;18102:18:15;;;18095:43;18155:19;;14541:137:14::2;17771:409:15::0;14541:137:14::2;14688:11;:26:::0;;-1:-1:-1;;;;;;14688:26:14::2;-1:-1:-1::0;;;;;14688:26:14;::::2;::::0;;::::2;::::0;;;14729:31:::2;::::0;2250:51:15;;;14729:31:14::2;::::0;2238:2:15;2223:18;14729:31:14::2;2104:203:15::0;5372:871:5;5442:16;5494:19;5527:25;5566:22;5591:16;5601:5;5591:9;:16::i;:::-;5566:41;;5621:25;5663:14;-1:-1:-1;;;;;5649:29:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5649:29:5;;5621:57;;5692:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5692:31:5;5742:9;5737:461;5786:14;5771:11;:29;5737:461;;5837:15;5850:1;5837:12;:15::i;:::-;5825:27;;5874:9;:16;;;5870:71;;;5914:8;;5870:71;5962:14;;-1:-1:-1;;;;;5962:28:5;;5958:109;;6034:14;;;-1:-1:-1;5958:109:5;6109:5;-1:-1:-1;;;;;6088:26:5;:17;-1:-1:-1;;;;;6088:26:5;;6084:100;;;6164:1;6138:8;6147:13;;;;;;6138:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;6084:100;5802:3;;5737:461;;;-1:-1:-1;6218:8:5;;5372:871;-1:-1:-1;;;;;;5372:871:5:o;6255:514:14:-;5100:9;5113:10;5100:23;5092:87;;;;-1:-1:-1;;;5092:87:14;;;;;;;:::i;:::-;6353:10:::1;6343:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;6335:72;;;::::0;-1:-1:-1;;;6335:72:14;;18387:2:15;6335:72:14::1;::::0;::::1;18369:21:15::0;18426:2;18406:18;;;18399:30;18465:34;18445:18;;;18438:62;-1:-1:-1;;;18516:18:15;;;18509:36;18562:19;;6335:72:14::1;18185:402:15::0;6335:72:14::1;6417:80;::::0;;::::1;::::0;::::1;::::0;;6435:19:::1;6417:80:::0;;;;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;;;;6485:10:::1;-1:-1:-1::0;6465:31:14;;;:19:::1;:31:::0;;;;;;;;6417:80:::1;::::0;;6456:7;;6417:17:::1;:80::i;:::-;6536:10;6516:31;::::0;;;:19:::1;:31;::::0;;;;:42;;6551:7;;6516:31;:42:::1;::::0;6551:7;;6516:42:::1;:::i;:::-;::::0;;;-1:-1:-1;;6571:25:14;;:29;;;:82:::1;;-1:-1:-1::0;6605:25:14;;:30;:47;::::1;;;;6651:1;6639:9;:13;6605:47;6568:155;;;6676:25:::0;;6668:44:::1;::::0;6676:35:::1;::::0;6704:7;;6676:35:::1;:::i;7647:151::-:0;7702:7;7778:12;;7757:18;7741:13;4998:12:4;;4789:7;4982:13;:28;;4736:309;7741:13:14;:34;;;;:::i;:::-;:49;;;;:::i;:::-;7728:63;;:9;:63;:::i;:::-;7721:70;;7647:151;:::o;12348:405::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1744:1:12::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:12::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;12455:19:14::2;:29:::0;:33;;;;:80:::2;;-1:-1:-1::0;12492:19:14::2;:29:::0;:43;-1:-1:-1;12455:80:14::2;12447:165;;;;-1:-1:-1::0;;;12447:165:14::2;;;;;;;:::i;:::-;12622:27:::0;:41;;;12678:68:::2;::::0;;17275:25:15;;;17331:2;17316:18;;17309:34;;;12678:68:14::2;::::0;17248:18:15;12678:68:14::2;17101:248:15::0;11323:102:4;11379:13;11411:7;11404:14;;;;;:::i;2489:2446:5:-;2620:16;2685:4;2676:5;:13;2672:45;;2698:19;;-1:-1:-1;;;2698:19:5;;;;;;;;;;;2672:45;2731:19;2764:17;2784:14;4487:7:4;4513:13;;4440:93;2784:14:5;2764:34;-1:-1:-1;3029:9:5;3022:4;:16;3018:71;;;3065:9;3058:16;;3018:71;3102:25;3130:16;3140:5;3130:9;:16::i;:::-;3102:44;;3321:4;3313:5;:12;3309:271;;;3367:12;;;3401:31;;;3397:109;;;3476:11;3456:31;;3397:109;3327:193;3309:271;;;-1:-1:-1;3564:1:5;3309:271;3593:25;3635:17;-1:-1:-1;;;;;3621:32:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3621:32:5;-1:-1:-1;3593:60:5;-1:-1:-1;3671:22:5;3667:76;;3720:8;-1:-1:-1;3713:15:5;;-1:-1:-1;;;3713:15:5;3667:76;3884:31;3918:26;3938:5;3918:19;:26::i;:::-;3884:60;;3958:25;4200:9;:16;;;4195:90;;-1:-1:-1;4256:14:5;;4195:90;4315:5;4298:467;4327:4;4322:1;:9;;:45;;;;;4350:17;4335:11;:32;;4322:45;4298:467;;;4404:15;4417:1;4404:12;:15::i;:::-;4392:27;;4441:9;:16;;;4437:71;;;4481:8;;4437:71;4529:14;;-1:-1:-1;;;;;4529:28:5;;4525:109;;4601:14;;;-1:-1:-1;4525:109:5;4676:5;-1:-1:-1;;;;;4655:26:5;:17;-1:-1:-1;;;;;4655:26:5;;4651:100;;;4731:1;4705:8;4714:13;;;;;;4705:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;4651:100;4369:3;;4298:467;;;-1:-1:-1;;;4847:29:5;;;-1:-1:-1;4854:8:5;;-1:-1:-1;;2489:2446:5;;;;;;:::o;13315:303:4:-;-1:-1:-1;;;;;13413:31:4;;719:10:1;13413:31:4;13409:61;;;13453:17;;-1:-1:-1;;;13453:17:4;;;;;;;;;;;13409:61;719:10:1;13481:39:4;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;13481:49:4;;;;;;;;;;;;:60;;-1:-1:-1;;13481:60:4;;;;;;;;;;13556:55;;540:41:15;;;13481:49:4;;719:10:1;13556:55:4;;513:18:15;13556:55:4;;;;;;;13315:303;;:::o;14773:607:14:-;1744:1:12;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:12;;;;;;;:::i;:::-;1744:1;2455:7;:18;14943:19:14::1;::::0;-1:-1:-1;;;;;14943:19:14::1;14929:10;:33;14921:100;;;::::0;-1:-1:-1;;;14921:100:14;;18924:2:15;14921:100:14::1;::::0;::::1;18906:21:15::0;18963:2;18943:18;;;18936:30;19002:34;18982:18;;;18975:62;-1:-1:-1;;;19053:18:15;;;19046:52;19115:19;;14921:100:14::1;18722:418:15::0;14921:100:14::1;-1:-1:-1::0;;;;;15039:34:14;::::1;15031:105;;;::::0;-1:-1:-1;;;15031:105:14;;19347:2:15;15031:105:14::1;::::0;::::1;19329:21:15::0;19386:2;19366:18;;;19359:30;19425:34;19405:18;;;19398:62;19496:28;19476:18;;;19469:56;19542:19;;15031:105:14::1;19145:422:15::0;15031:105:14::1;15179:20;;15154:21;:45;;15146:121;;;::::0;-1:-1:-1;;;15146:121:14;;19774:2:15;15146:121:14::1;::::0;::::1;19756:21:15::0;19813:2;19793:18;;;19786:30;19852:34;19832:18;;;19825:62;19923:33;19903:18;;;19896:61;19974:19;;15146:121:14::1;19572:427:15::0;15146:121:14::1;15277:19;:42:::0;;-1:-1:-1;;;;;;15277:42:14::1;-1:-1:-1::0;;;;;15277:42:14;;;::::1;::::0;;;::::1;::::0;;;15329:20:::1;:44:::0;-1:-1:-1;2628:7:12;:22;14773:607:14:o;17019:104::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1744:1:12::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:12::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;17093:23:14::2;3160:19:3::0;;3153:26;3093:93;17093:23:14::2;1701:1:12::1;2628:7;:22:::0;17019:104:14:o;15386:704::-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;15440:15:14::1;15458:19;:17;:19::i;:::-;15440:37;;15487:21;15511:7;15487:31;;15528:19;15587:1:::0;15564:20:::1;;:24;:39;;;;;15602:1;15592:7;:11;15564:39;15561:183;;;15642:20;::::0;2422:5:3;;15632:30:14::1;::::0;:7;:30:::1;:::i;:::-;:50;;;;:::i;:::-;15618:64:::0;-1:-1:-1;15712:21:14::1;15618:64:::0;15712:7;:21:::1;:::i;:::-;15696:37;;15561:183;15753:12;15786:17:::0;;15783:105:::1;;15828:49;15853:7;1101:6:11::0;;-1:-1:-1;;;;;1101:6:11;;1029:85;15853:7:14::1;15863:13;15828:16;:49::i;:::-;15818:59;;15783:105;15900:7;:26;;;;;15925:1;15911:11;:15;15900:26;15897:115;;;15968:19;::::0;15951:50:::1;::::0;-1:-1:-1;;;;;15968:19:14::1;15989:11:::0;15951:16:::1;:50::i;:::-;15941:60;;15897:115;16029:7;16021:62;;;::::0;-1:-1:-1;;;16021:62:14;;20206:2:15;16021:62:14::1;::::0;::::1;20188:21:15::0;20245:2;20225:18;;;20218:30;20284:34;20264:18;;;20257:62;-1:-1:-1;;;20335:18:15;;;20328:40;20385:19;;16021:62:14::1;20004:406:15::0;16021:62:14::1;15430:660;;;;15386:704::o:0;14157:388:4:-;14318:31;14331:4;14337:2;14341:7;14318:12;:31::i;:::-;-1:-1:-1;;;;;14363:14:4;;;:19;14359:180;;14401:56;14432:4;14438:2;14442:7;14451:5;14401:30;:56::i;:::-;14396:143;;14484:40;;-1:-1:-1;;;14484:40:4;;;;;;;;;;;11140:1202:14;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1744:1:12::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:12::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;11265:19:14::2;:29:::0;:34;;:85:::2;;-1:-1:-1::0;11303:19:14::2;:29:::0;11335:15:::2;-1:-1:-1::0;11265:85:14::2;11257:161;;;;-1:-1:-1::0;;;11257:161:14::2;;;;;;;:::i;:::-;11436:30:::0;;:35;;:87:::2;;-1:-1:-1::0;11475:30:14;;11508:15:::2;-1:-1:-1::0;11436:87:14::2;11428:158;;;;-1:-1:-1::0;;;11428:158:14::2;;;;;;;:::i;:::-;11638:26;:15;11656:8;11638:26;:::i;:::-;11604:30:::0;;:61:::2;11596:132;;;;-1:-1:-1::0;;;11596:132:14::2;;;;;;;:::i;:::-;11778:26;:15;11796:8;11778:26;:::i;:::-;11746:20;:28;;;:59;11738:128;;;;-1:-1:-1::0;;;11738:128:14::2;;;;;;;:::i;:::-;11884:38;11901:20;11884:16;:38::i;:::-;11876:91;;;;-1:-1:-1::0;;;11876:91:14::2;;;;;;;:::i;:::-;12018:30:::0;;11986:19:::2;:62:::0;;;12088:28:::2;::::0;;::::2;::::0;;12058:27;:58;12154:26:::2;::::0;;::::2;::::0;;12126:25;:54;12232:40:::2;::::0;;::::2;::::0;;12190:39;:82;12288:47;;22738:32:15;;;22808:24;;22786:20;;;22779:54;;;;22871:24;22849:20;;;22842:54;22934:24;22912:20;;;22905:54;12288:47:14::2;::::0;22725:3:15;22710:19;12288:47:14::2;22535:430:15::0;7184:457:14;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1744:1:12::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:12::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;7271:11:14;7263:77:::2;;;;-1:-1:-1::0;;;7263:77:14::2;;;;;;;:::i;:::-;7386:18;7374:7;7359:12;;:22;;;;:::i;:::-;7358:46;;7350:110;;;::::0;-1:-1:-1;;;7350:110:14;;23594:2:15;7350:110:14::2;::::0;::::2;23576:21:15::0;23633:2;23613:18;;;23606:30;23672:34;23652:18;;;23645:62;-1:-1:-1;;;23723:18:15;;;23716:49;23782:19;;7350:110:14::2;23392:415:15::0;7350:110:14::2;7507:9;7495:7;7479:13;4998:12:4::0;;4789:7;4982:13;:28;;4736:309;7479:13:14::2;:23;;;;:::i;:::-;7478:38;;7470:91;;;;-1:-1:-1::0;;;7470:91:14::2;;;;;;;:::i;:::-;7587:7;7571:12;;:23;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;7604:30:14::2;::::0;-1:-1:-1;7614:10:14::2;7626:7:::0;7604:9:::2;:30::i;:::-;-1:-1:-1::0;1701:1:12::1;2628:7;:22:::0;7184:457:14:o;1091:410:5:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4487:7:4;4513:13;1274:7:5;:25;1241:101;;1322:9;1091:410;-1:-1:-1;;1091:410:5:o;1241:101::-;1363:21;1376:7;1363:12;:21::i;:::-;1351:33;;1398:9;:16;;;1394:63;;;1437:9;1091:410;-1:-1:-1;;1091:410:5:o;1394:63::-;1473:21;1486:7;1473:12;:21::i;11491:313:4:-;11564:13;11594:16;11602:7;11594;:16::i;:::-;11589:59;;11619:29;;-1:-1:-1;;;11619:29:4;;;;;;;;;;;11589:59;11659:21;11683:10;:8;:10::i;:::-;11659:34;;11716:7;11710:21;11735:1;11710:26;;:87;;;;;;;;;;;;;;;;;11763:7;11772:18;11782:7;11772:9;:18::i;:::-;11746:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11703:94;11491:313;-1:-1:-1;;;11491:313:4:o;10126:388:14:-;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1744:1:12::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:12::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;10227:16:14;;10219:81:::2;;;;-1:-1:-1::0;;;10219:81:14::2;;;;;;;:::i;:::-;10315:9;10310:198;10334:9;:16;10330:1;:20;10310:198;;;10375:9;:23;10385:9;10395:1;10385:12;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;;;-1:-1:-1;;;;;10375:23:14::2;::::0;;;::::2;::::0;;;;;;-1:-1:-1;10375:23:14;;::::2;;10371:127;;10443:4;10417:9;:23;10427:9;10437:1;10427:12;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;;;-1:-1:-1;;;;;10417:23:14::2;::::0;;;::::2;::::0;;;;;;-1:-1:-1;10417:23:14;;;:30;;-1:-1:-1;;10417:30:14::2;::::0;::::2;;::::0;;;::::2;::::0;;;10465:15:::2;:18:::0;;;::::2;::::0;::::2;:::i;:::-;;;;;;10371:127;10352:3:::0;::::2;::::0;::::2;:::i;:::-;;;;10310:198;;12759:1137:::0;1101:6:11;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1744:1:12::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:12::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;12878:16:14::2;:26:::0;:31;;:79:::2;;-1:-1:-1::0;12913:16:14::2;:26:::0;12942:15:::2;-1:-1:-1::0;12878:79:14::2;12870:155;;;;-1:-1:-1::0;;;12870:155:14::2;;;;;;;:::i;:::-;13043:27:::0;;:32;;:81:::2;;-1:-1:-1::0;13079:27:14;;13109:15:::2;-1:-1:-1::0;13043:81:14::2;13035:152;;;;-1:-1:-1::0;;;13035:152:14::2;;;;;;;:::i;:::-;13236:26;:15;13254:8;13236:26;:::i;:::-;13205:27:::0;;:58:::2;13197:129;;;;-1:-1:-1::0;;;13197:129:14::2;;;;;;;:::i;:::-;13373:26;:15;13391:8;13373:26;:::i;:::-;13344:17;:25;;;:56;13336:125;;;;-1:-1:-1::0;;;13336:125:14::2;;;;;;;:::i;:::-;13479:35;13496:17;13479:16;:35::i;:::-;13471:88;;;;-1:-1:-1::0;;;13471:88:14::2;;;;;;;:::i;:::-;13599:27:::0;;13570:16:::2;:56:::0;;;13663:25:::2;::::0;;::::2;::::0;;13636:24;:52;13723:23:::2;::::0;;::::2;::::0;;13698:22;:48;13795:37:::2;::::0;;::::2;::::0;;13756:36;:76;13848:41;;22738:32:15;;;22808:24;;22786:20;;;22779:54;;;;22871:24;22849:20;;;22842:54;22934:24;22912:20;;;22905:54;13848:41:14::2;::::0;22725:3:15;22710:19;13848:41:14::2;22535:430:15::0;13684:162:4;-1:-1:-1;;;;;13804:25:4;;;13781:4;13804:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13684:162::o;1911:198:11:-;1101:6;;-1:-1:-1;;;;;1101:6:11;719:10:1;1241:23:11;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:11;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:11;;24898:2:15;1991:73:11::1;::::0;::::1;24880:21:15::0;24937:2;24917:18;;;24910:30;24976:34;24956:18;;;24949:62;-1:-1:-1;;;25027:18:15;;;25020:36;25073:19;;1991:73:11::1;24696:402:15::0;1991:73:11::1;2074:28;2093:8;2074:18;:28::i;1369:213:3:-:0;1471:4;-1:-1:-1;;;;;;1494:41:3;;-1:-1:-1;;;1494:41:3;;:81;;-1:-1:-1;;;;;;;;;;937:40:2;;;1539:36:3;829:155:2;5653:607:4;5738:4;-1:-1:-1;;;;;;;;;6033:25:4;;;;:101;;-1:-1:-1;;;;;;;;;;6109:25:4;;;6033:101;:177;;;-1:-1:-1;;;;;;;;6185:25:4;-1:-1:-1;;;6185:25:4;;5653:607::o;2695:327:3:-;2422:5;-1:-1:-1;;;;;2797:33:3;;;;2789:88;;;;-1:-1:-1;;;2789:88:3;;25305:2:15;2789:88:3;;;25287:21:15;25344:2;25324:18;;;25317:30;25383:34;25363:18;;;25356:62;-1:-1:-1;;;25434:18:15;;;25427:40;25484:19;;2789:88:3;25103:406:15;2789:88:3;-1:-1:-1;;;;;2895:22:3;;2887:60;;;;-1:-1:-1;;;2887:60:3;;25716:2:15;2887:60:3;;;25698:21:15;25755:2;25735:18;;;25728:30;25794:27;25774:18;;;25767:55;25839:18;;2887:60:3;25514:349:15;2887:60:3;2980:35;;;;;;;;;-1:-1:-1;;;;;2980:35:3;;;;;;-1:-1:-1;;;;;2980:35:3;;;;;;;;;;-1:-1:-1;;;2958:57:3;;;;:19;:57;2695:327::o;14791:268:4:-;14848:4;14935:13;;14925:7;:23;14883:150;;;;-1:-1:-1;;14985:26:4;;;;:17;:26;;;;;;-1:-1:-1;;;14985:43:4;:48;;14791:268::o;7949:1105::-;8016:7;8050;8148:13;;8141:4;:20;8137:853;;;8185:14;8202:23;;;:17;:23;;;;;;-1:-1:-1;;;8289:23:4;;8285:687;;8800:111;8807:11;8800:111;;-1:-1:-1;;;8877:6:4;8859:25;;;;:17;:25;;;;;;8800:111;;8285:687;8163:827;8137:853;9016:31;;-1:-1:-1;;;9016:31:4;;;;;;;;;;;7808:816:14;7948:1;7938:7;:11;7930:77;;;;-1:-1:-1;;;7930:77:14;;;;;;;:::i;:::-;8053:7;8025:24;:22;:24::i;:::-;:35;;8017:88;;;;-1:-1:-1;;;8017:88:14;;;;;;;:::i;:::-;8123:21;;8115:76;;;;-1:-1:-1;;;8115:76:14;;26070:2:15;8115:76:14;;;26052:21:15;26109:2;26089:18;;;26082:30;26148:34;26128:18;;;26121:62;-1:-1:-1;;;26199:18:15;;;26192:36;26245:19;;8115:76:14;25868:402:15;8115:76:14;8209:21;;8234:15;-1:-1:-1;8209:40:14;8201:99;;;;-1:-1:-1;;;8201:99:14;;26477:2:15;8201:99:14;;;26459:21:15;26516:2;26496:18;;;26489:30;26555:34;26535:18;;;26528:62;-1:-1:-1;;;26606:18:15;;;26599:44;26660:19;;8201:99:14;26275:410:15;8201:99:14;8318:19;;;;:24;;:66;;;8369:15;8346:11;:19;;;:38;;8318:66;8310:115;;;;-1:-1:-1;;;8310:115:14;;26892:2:15;8310:115:14;;;26874:21:15;26931:2;26911:18;;;26904:30;26970:34;26950:18;;;26943:62;-1:-1:-1;;;27021:18:15;;;27014:34;27065:19;;8310:115:14;26690:400:15;8310:115:14;8443:31;;;;:36;;:100;;-1:-1:-1;8512:31:14;;;;8484:23;8500:7;8484:13;:23;:::i;:::-;8483:60;;8443:100;8435:182;;;;-1:-1:-1;;;8435:182:14;;27297:2:15;8435:182:14;;;27279:21:15;27336:2;27316:18;;;27309:30;27375:34;27355:18;;;27348:62;-1:-1:-1;;;27426:18:15;;;27419:50;27486:19;;8435:182:14;27095:416:15;8630:770:14;1744:1:12;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:12;;;;;;;:::i;:::-;1744:1;2455:7;:18;8770:11:14::1;::::0;8711:4:::1;::::0;8696:12:::1;::::0;-1:-1:-1;;;;;8770:11:14::1;8762:34:::0;8759:413:::1;;8829:11;::::0;:33:::1;::::0;-1:-1:-1;;;8829:33:14;;8851:10:::1;8829:33;::::0;::::1;2250:51:15::0;8811:15:14::1;::::0;-1:-1:-1;;;;;8829:11:14::1;::::0;:21:::1;::::0;2223:18:15;;8829:33:14::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8811:51;;8895:7;8884;:18;;8876:69;;;::::0;-1:-1:-1;;;8876:69:14;;27907:2:15;8876:69:14::1;::::0;::::1;27889:21:15::0;27946:2;27926:18;;;27919:30;27985:34;27965:18;;;27958:62;-1:-1:-1;;;28036:18:15;;;28029:36;28082:19;;8876:69:14::1;27705:402:15::0;8876:69:14::1;8959:11;::::0;:64:::1;::::0;-1:-1:-1;;;;;8959:11:14::1;8988:10;9008:4;9015:7:::0;8959:28:::1;:64::i;:::-;8797:237;8759:413;;;9073:7;9060:9;:20;;9052:69;;;::::0;-1:-1:-1;;;9052:69:14;;28314:2:15;9052:69:14::1;::::0;::::1;28296:21:15::0;28353:2;28333:18;;;28326:30;28392:34;28372:18;;;28365:62;-1:-1:-1;;;28443:18:15;;;28436:34;28487:19;;9052:69:14::1;28112:400:15::0;9052:69:14::1;-1:-1:-1::0;9154:7:14;8759:413:::1;9197:16;9185:9;:28;9181:148;;;9255:63;9276:10;9289:28;9301:16:::0;9289:9:::1;:28;:::i;:::-;9255:12;:63::i;:::-;9245:73;;9181:148;9346:7;9338:55;;;::::0;-1:-1:-1;;;9338:55:14;;28719:2:15;9338:55:14::1;::::0;::::1;28701:21:15::0;28758:2;28738:18;;;28731:30;28797:34;28777:18;;;28770:62;-1:-1:-1;;;28848:18:15;;;28841:33;28891:19;;9338:55:14::1;28517:399:15::0;15138:102:4;15206:27;15216:2;15220:8;15206:27;;;;;;;;;;;;:9;:27::i;:::-;15138:102;;:::o;2263:187:11:-;2355:6;;;-1:-1:-1;;;;;2371:17:11;;;-1:-1:-1;;;;;;2371:17:11;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;9587:151:4:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9706:24:4;;;;:17;:24;;;;;;9687:44;;:18;:44::i;16096:253:14:-;16185:11;;16148:15;;-1:-1:-1;;;;;16185:11:14;16177:34;16174:169;;16236:11;;:36;;-1:-1:-1;;;16236:36:14;;16266:4;16236:36;;;2250:51:15;-1:-1:-1;;;;;16236:11:14;;;;:21;;2223:18:15;;16236:36:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;16174:169::-;-1:-1:-1;16311:21:14;16096:253;:::o;16355:328::-;16452:13;1744:1:12;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:12;;;;;;;:::i;:::-;1744:1;2455:7;:18;16488:11:14::1;::::0;-1:-1:-1;;;;;16488:11:14::1;16480:34:::0;16477:200:::1;;16529:11;::::0;:40:::1;::::0;-1:-1:-1;;;;;16529:11:14::1;16554:5:::0;16561:7;16529:24:::1;:40::i;:::-;-1:-1:-1::0;16594:4:14::1;16477:200;;;16638:28;16651:5;16658:7;16638:12;:28::i;:::-;16627:39;;16477:200;1701:1:12::0;2628:7;:22;16355:328:14;;-1:-1:-1;;16355:328:14:o;28649:697:4:-;28827:88;;-1:-1:-1;;;28827:88:4;;28807:4;;-1:-1:-1;;;;;28827:45:4;;;;;:88;;719:10:1;;28894:4:4;;28900:7;;28909:5;;28827:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28827:88:4;;;;;;;;-1:-1:-1;;28827:88:4;;;;;;;;;;;;:::i;:::-;;;28823:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29105:13:4;;29101:229;;29150:40;;-1:-1:-1;;;29150:40:4;;;;;;;;;;;29101:229;29290:6;29284:13;29275:6;29271:2;29267:15;29260:38;28823:517;-1:-1:-1;;;;;;28983:64:4;-1:-1:-1;;;28983:64:4;;-1:-1:-1;28649:697:4;;;;;;:::o;10917:217:14:-;11021:21;;10997:4;;11021:26;;:105;;-1:-1:-1;11052:19:14;;;;:24;;:73;;-1:-1:-1;;11105:19:14;;;;11081:21;;:43;;10917:217::o;10226:156:4:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10328:47:4;10347:27;10366:7;10347:18;:27::i;:::-;10328:18;:47::i;9875:111:14:-;9935:13;9967:12;9960:19;;;;;:::i;33078:1920:4:-;33541:4;33535:11;;33548:3;33531:21;;33624:17;;;;34307:11;;;34188:5;34437:2;34451;34441:13;;34433:22;34307:11;34420:36;34491:2;34481:13;;34082:682;34509:4;34082:682;;;34695:1;34690:3;34686:11;34679:18;;34745:2;34739:4;34735:13;34731:2;34727:22;34722:3;34714:36;34602:2;34592:13;;34082:682;;;-1:-1:-1;34792:13:4;;;-1:-1:-1;;34905:12:4;;;34963:19;;;34905:12;33078:1920;-1:-1:-1;33078:1920:4:o;898:241:13:-;1063:68;;-1:-1:-1;;;;;29927:15:15;;;1063:68:13;;;29909:34:15;29979:15;;29959:18;;;29952:43;30011:18;;;30004:34;;;1036:96:13;;1056:5;;-1:-1:-1;;;1086:27:13;29844:18:15;;1063:68:13;;;;-1:-1:-1;;1063:68:13;;;;;;;;;;;;;;-1:-1:-1;;;;;1063:68:13;-1:-1:-1;;;;;;1063:68:13;;;;;;;;;;1036:19;:96::i;16689:157:14:-;16769:13;16809:5;-1:-1:-1;;;;;16809:10:14;16827:7;16809:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16794:45:14;;16689:157;-1:-1:-1;;;;16689:157:14:o;15641:661:4:-;15759:19;15765:2;15769:8;15759:5;:19::i;:::-;-1:-1:-1;;;;;15817:14:4;;;:19;15813:473;;15856:11;15870:13;15917:14;;;15949:229;15979:62;16018:1;16022:2;16026:7;;;;;;16035:5;15979:30;:62::i;:::-;15974:165;;16076:40;;-1:-1:-1;;;16076:40:4;;;;;;;;;;;15974:165;16173:3;16165:5;:11;15949:229;;16258:3;16241:13;;:20;16237:34;;16263:8;;;16237:34;15838:448;;15641:661;;;:::o;9143:358::-;-1:-1:-1;;;;;;;;;;;;;9252:41:4;;;;1661:3;9337:32;;;-1:-1:-1;;;;;9303:67:4;-1:-1:-1;;;9303:67:4;-1:-1:-1;;;9399:23:4;;:28;;-1:-1:-1;;;9380:47:4;;;;2166:3;9466:27;;;;-1:-1:-1;;;9437:57:4;-1:-1:-1;9143:358:4:o;687:205:13:-;826:58;;-1:-1:-1;;;;;5543:32:15;;826:58:13;;;5525:51:15;5592:18;;;5585:34;;;799:86:13;;819:5;;-1:-1:-1;;;849:23:13;5498:18:15;;826:58:13;5351:274:15;3193:706:13;3612:23;3638:69;3666:4;3638:69;;;;;;;;;;;;;;;;;3646:5;-1:-1:-1;;;;;3638:27:13;;;:69;;;;;:::i;:::-;3721:17;;3612:95;;-1:-1:-1;3721:21:13;3717:176;;3816:10;3805:30;;;;;;;;;;;;:::i;:::-;3797:85;;;;-1:-1:-1;;;3797:85:13;;30711:2:15;3797:85:13;;;30693:21:15;30750:2;30730:18;;;30723:30;30789:34;30769:18;;;30762:62;-1:-1:-1;;;30840:18:15;;;30833:40;30890:19;;3797:85:13;30509:406:15;16563:1492:4;16627:20;16650:13;-1:-1:-1;;;;;16677:16:4;;16673:48;;16702:19;;-1:-1:-1;;;16702:19:4;;;;;;;;;;;16673:48;16735:13;16731:44;;16757:18;;-1:-1:-1;;;16757:18:4;;;;;;;;;;;16731:44;-1:-1:-1;;;;;17250:22:4;;;;;;:18;:22;;1156:2;17250:22;;:70;;17288:31;17276:44;;17250:70;;;10863:11;10839:22;10835:40;-1:-1:-1;12522:15:4;;12497:23;12493:45;10832:51;10822:62;17556:31;;;;:17;:31;;;;;:170;17574:12;17799:23;;;17836:99;17862:35;;17887:9;;;;;-1:-1:-1;;;;;17862:35:4;;;17879:1;;17862:35;;17879:1;;17862:35;17930:3;17920:7;:13;17836:99;;17949:13;:19;-1:-1:-1;13912:179:4;;;:::o;3861:223:0:-;3994:12;4025:52;4047:6;4055:4;4061:1;4064:12;4025:21;:52::i;:::-;4018:59;3861:223;-1:-1:-1;;;;3861:223:0:o;4948:499::-;5113:12;5170:5;5145:21;:30;;5137:81;;;;-1:-1:-1;;;5137:81:0;;31122:2:15;5137:81:0;;;31104:21:15;31161:2;31141:18;;;31134:30;31200:34;31180:18;;;31173:62;-1:-1:-1;;;31251:18:15;;;31244:36;31297:19;;5137:81:0;30920:402:15;5137:81:0;-1:-1:-1;;;;;1465:19:0;;;5228:60;;;;-1:-1:-1;;;5228:60:0;;31529:2:15;5228:60:0;;;31511:21:15;31568:2;31548:18;;;31541:30;31607:31;31587:18;;;31580:59;31656:18;;5228:60:0;31327:353:15;5228:60:0;5300:12;5314:23;5341:6;-1:-1:-1;;;;;5341:11:0;5360:5;5367:4;5341:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5299:73;;;;5389:51;5406:7;5415:10;5427:12;5389:16;:51::i;:::-;5382:58;4948:499;-1:-1:-1;;;;;;;4948:499:0:o;7561:692::-;7707:12;7735:7;7731:516;;;-1:-1:-1;7765:10:0;7758:17;;7731:516;7876:17;;:21;7872:365;;8070:10;8064:17;8130:15;8117:10;8113:2;8109:19;8102:44;7872:365;8209:12;8202:20;;-1:-1:-1;;;8202:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:15;-1:-1:-1;;;;;;88:32:15;;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:131::-;-1:-1:-1;;;;;667:31:15;;657:42;;647:70;;713:1;710;703:12;728:435;795:6;803;856:2;844:9;835:7;831:23;827:32;824:52;;;872:1;869;862:12;824:52;911:9;898:23;930:31;955:5;930:31;:::i;:::-;980:5;-1:-1:-1;1037:2:15;1022:18;;1009:32;-1:-1:-1;;;;;1072:40:15;;1060:53;;1050:81;;1127:1;1124;1117:12;1050:81;1150:7;1140:17;;;728:435;;;;;:::o;1168:258::-;1240:1;1250:113;1264:6;1261:1;1258:13;1250:113;;;1340:11;;;1334:18;1321:11;;;1314:39;1286:2;1279:10;1250:113;;;1381:6;1378:1;1375:13;1372:48;;;-1:-1:-1;;1416:1:15;1398:16;;1391:27;1168:258::o;1431:::-;1473:3;1511:5;1505:12;1538:6;1533:3;1526:19;1554:63;1610:6;1603:4;1598:3;1594:14;1587:4;1580:5;1576:16;1554:63;:::i;:::-;1671:2;1650:15;-1:-1:-1;;1646:29:15;1637:39;;;;1678:4;1633:50;;1431:258;-1:-1:-1;;1431:258:15:o;1694:220::-;1843:2;1832:9;1825:21;1806:4;1863:45;1904:2;1893:9;1889:18;1881:6;1863:45;:::i;1919:180::-;1978:6;2031:2;2019:9;2010:7;2006:23;2002:32;1999:52;;;2047:1;2044;2037:12;1999:52;-1:-1:-1;2070:23:15;;1919:180;-1:-1:-1;1919:180:15:o;2312:315::-;2380:6;2388;2441:2;2429:9;2420:7;2416:23;2412:32;2409:52;;;2457:1;2454;2447:12;2409:52;2496:9;2483:23;2515:31;2540:5;2515:31;:::i;:::-;2565:5;2617:2;2602:18;;;;2589:32;;-1:-1:-1;;;2312:315:15:o;2814:456::-;2891:6;2899;2907;2960:2;2948:9;2939:7;2935:23;2931:32;2928:52;;;2976:1;2973;2966:12;2928:52;3015:9;3002:23;3034:31;3059:5;3034:31;:::i;:::-;3084:5;-1:-1:-1;3141:2:15;3126:18;;3113:32;3154:33;3113:32;3154:33;:::i;:::-;2814:456;;3206:7;;-1:-1:-1;;;3260:2:15;3245:18;;;;3232:32;;2814:456::o;3275:247::-;3334:6;3387:2;3375:9;3366:7;3362:23;3358:32;3355:52;;;3403:1;3400;3393:12;3355:52;3442:9;3429:23;3461:31;3486:5;3461:31;:::i;3527:127::-;3588:10;3583:3;3579:20;3576:1;3569:31;3619:4;3616:1;3609:15;3643:4;3640:1;3633:15;3659:275;3730:2;3724:9;3795:2;3776:13;;-1:-1:-1;;3772:27:15;3760:40;;-1:-1:-1;;;;;3815:34:15;;3851:22;;;3812:62;3809:88;;;3877:18;;:::i;:::-;3913:2;3906:22;3659:275;;-1:-1:-1;3659:275:15:o;3939:183::-;3999:4;-1:-1:-1;;;;;4024:6:15;4021:30;4018:56;;;4054:18;;:::i;:::-;-1:-1:-1;4099:1:15;4095:14;4111:4;4091:25;;3939:183::o;4127:966::-;4211:6;4242:2;4285;4273:9;4264:7;4260:23;4256:32;4253:52;;;4301:1;4298;4291:12;4253:52;4341:9;4328:23;-1:-1:-1;;;;;4366:6:15;4363:30;4360:50;;;4406:1;4403;4396:12;4360:50;4429:22;;4482:4;4474:13;;4470:27;-1:-1:-1;4460:55:15;;4511:1;4508;4501:12;4460:55;4547:2;4534:16;4570:60;4586:43;4626:2;4586:43;:::i;:::-;4570:60;:::i;:::-;4664:15;;;4746:1;4742:10;;;;4734:19;;4730:28;;;4695:12;;;;4770:19;;;4767:39;;;4802:1;4799;4792:12;4767:39;4826:11;;;;4846:217;4862:6;4857:3;4854:15;4846:217;;;4942:3;4929:17;4959:31;4984:5;4959:31;:::i;:::-;5003:18;;4879:12;;;;5041;;;;4846:217;;5098:248;5166:6;5174;5227:2;5215:9;5206:7;5202:23;5198:32;5195:52;;;5243:1;5240;5233:12;5195:52;-1:-1:-1;;5266:23:15;;;5336:2;5321:18;;;5308:32;;-1:-1:-1;5098:248:15:o;5854:592::-;5925:6;5933;5986:2;5974:9;5965:7;5961:23;5957:32;5954:52;;;6002:1;5999;5992:12;5954:52;6042:9;6029:23;-1:-1:-1;;;;;6112:2:15;6104:6;6101:14;6098:34;;;6128:1;6125;6118:12;6098:34;6166:6;6155:9;6151:22;6141:32;;6211:7;6204:4;6200:2;6196:13;6192:27;6182:55;;6233:1;6230;6223:12;6182:55;6273:2;6260:16;6299:2;6291:6;6288:14;6285:34;;;6315:1;6312;6305:12;6285:34;6360:7;6355:2;6346:6;6342:2;6338:15;6334:24;6331:37;6328:57;;;6381:1;6378;6371:12;6328:57;6412:2;6404:11;;;;;6434:6;;-1:-1:-1;5854:592:15;;-1:-1:-1;;;;5854:592:15:o;6451:891::-;6535:6;6566:2;6609;6597:9;6588:7;6584:23;6580:32;6577:52;;;6625:1;6622;6615:12;6577:52;6665:9;6652:23;-1:-1:-1;;;;;6690:6:15;6687:30;6684:50;;;6730:1;6727;6720:12;6684:50;6753:22;;6806:4;6798:13;;6794:27;-1:-1:-1;6784:55:15;;6835:1;6832;6825:12;6784:55;6871:2;6858:16;6894:60;6910:43;6950:2;6910:43;:::i;6894:60::-;6988:15;;;7070:1;7066:10;;;;7058:19;;7054:28;;;7019:12;;;;7094:19;;;7091:39;;;7126:1;7123;7116:12;7091:39;7150:11;;;;7170:142;7186:6;7181:3;7178:15;7170:142;;;7252:17;;7240:30;;7203:12;;;;7290;;;;7170:142;;7347:349;7431:12;;-1:-1:-1;;;;;7427:38:15;7415:51;;7519:4;7508:16;;;7502:23;-1:-1:-1;;;;;7498:48:15;7482:14;;;7475:72;7610:4;7599:16;;;7593:23;7586:31;7579:39;7563:14;;;7556:63;7672:4;7661:16;;;7655:23;7680:8;7651:38;7635:14;;7628:62;7347:349::o;7701:724::-;7936:2;7988:21;;;8058:13;;7961:18;;;8080:22;;;7907:4;;7936:2;8159:15;;;;8133:2;8118:18;;;7907:4;8202:197;8216:6;8213:1;8210:13;8202:197;;;8265:52;8313:3;8304:6;8298:13;8265:52;:::i;:::-;8374:15;;;;8346:4;8337:14;;;;;8238:1;8231:9;8202:197;;9093:632;9264:2;9316:21;;;9386:13;;9289:18;;;9408:22;;;9235:4;;9264:2;9487:15;;;;9461:2;9446:18;;;9235:4;9530:169;9544:6;9541:1;9538:13;9530:169;;;9605:13;;9593:26;;9674:15;;;;9639:12;;;;9566:1;9559:9;9530:169;;9730:383;9807:6;9815;9823;9876:2;9864:9;9855:7;9851:23;9847:32;9844:52;;;9892:1;9889;9882:12;9844:52;9931:9;9918:23;9950:31;9975:5;9950:31;:::i;:::-;10000:5;10052:2;10037:18;;10024:32;;-1:-1:-1;10103:2:15;10088:18;;;10075:32;;9730:383;-1:-1:-1;;;9730:383:15:o;10118:118::-;10204:5;10197:13;10190:21;10183:5;10180:32;10170:60;;10226:1;10223;10216:12;10241:382;10306:6;10314;10367:2;10355:9;10346:7;10342:23;10338:32;10335:52;;;10383:1;10380;10373:12;10335:52;10422:9;10409:23;10441:31;10466:5;10441:31;:::i;:::-;10491:5;-1:-1:-1;10548:2:15;10533:18;;10520:32;10561:30;10520:32;10561:30;:::i;10956:1108::-;11051:6;11059;11067;11075;11128:3;11116:9;11107:7;11103:23;11099:33;11096:53;;;11145:1;11142;11135:12;11096:53;11184:9;11171:23;11203:31;11228:5;11203:31;:::i;:::-;11253:5;-1:-1:-1;11277:2:15;11316:18;;;11303:32;11344:33;11303:32;11344:33;:::i;:::-;11396:7;-1:-1:-1;11450:2:15;11435:18;;11422:32;;-1:-1:-1;11505:2:15;11490:18;;11477:32;-1:-1:-1;;;;;11558:14:15;;;11555:34;;;11585:1;11582;11575:12;11555:34;11623:6;11612:9;11608:22;11598:32;;11668:7;11661:4;11657:2;11653:13;11649:27;11639:55;;11690:1;11687;11680:12;11639:55;11726:2;11713:16;11748:2;11744;11741:10;11738:36;;;11754:18;;:::i;:::-;11796:53;11839:2;11820:13;;-1:-1:-1;;11816:27:15;11812:36;;11796:53;:::i;:::-;11783:66;;11872:2;11865:5;11858:17;11912:7;11907:2;11902;11898;11894:11;11890:20;11887:33;11884:53;;;11933:1;11930;11923:12;11884:53;11988:2;11983;11979;11975:11;11970:2;11963:5;11959:14;11946:45;12032:1;12027:2;12022;12015:5;12011:14;12007:23;12000:34;;12053:5;12043:15;;;;;10956:1108;;;;;;;:::o;12069:641::-;12156:6;12209:3;12197:9;12188:7;12184:23;12180:33;12177:53;;;12226:1;12223;12216:12;12177:53;12259:2;12253:9;12301:3;12293:6;12289:16;12371:6;12359:10;12356:22;-1:-1:-1;;;;;12323:10:15;12320:34;12317:62;12314:88;;;12382:18;;:::i;:::-;12422:10;12418:2;12411:22;;12470:9;12457:23;12449:6;12442:39;12542:2;12531:9;12527:18;12514:32;12509:2;12501:6;12497:15;12490:57;12608:2;12597:9;12593:18;12580:32;12575:2;12567:6;12563:15;12556:57;12674:2;12663:9;12659:18;12646:32;12641:2;12633:6;12629:15;12622:57;12698:6;12688:16;;;12069:641;;;;:::o;12715:268::-;12913:3;12898:19;;12926:51;12902:9;12959:6;12926:51;:::i;13211:388::-;13279:6;13287;13340:2;13328:9;13319:7;13315:23;13311:32;13308:52;;;13356:1;13353;13346:12;13308:52;13395:9;13382:23;13414:31;13439:5;13414:31;:::i;:::-;13464:5;-1:-1:-1;13521:2:15;13506:18;;13493:32;13534:33;13493:32;13534:33;:::i;13604:356::-;13806:2;13788:21;;;13825:18;;;13818:30;13884:34;13879:2;13864:18;;13857:62;13951:2;13936:18;;13604:356::o;13965:355::-;14167:2;14149:21;;;14206:2;14186:18;;;14179:30;14245:33;14240:2;14225:18;;14218:61;14311:2;14296:18;;13965:355::o;14325:380::-;14404:1;14400:12;;;;14447;;;14468:61;;14522:4;14514:6;14510:17;14500:27;;14468:61;14575:2;14567:6;14564:14;14544:18;14541:38;14538:161;;;14621:10;14616:3;14612:20;14609:1;14602:31;14656:4;14653:1;14646:15;14684:4;14681:1;14674:15;14538:161;;14325:380;;;:::o;14710:412::-;14912:2;14894:21;;;14951:2;14931:18;;;14924:30;14990:34;14985:2;14970:18;;14963:62;-1:-1:-1;;;15056:2:15;15041:18;;15034:46;15112:3;15097:19;;14710:412::o;15127:127::-;15188:10;15183:3;15179:20;15176:1;15169:31;15219:4;15216:1;15209:15;15243:4;15240:1;15233:15;15259:127;15320:10;15315:3;15311:20;15308:1;15301:31;15351:4;15348:1;15341:15;15375:4;15372:1;15365:15;15391:136;15430:3;15458:5;15448:39;;15467:18;;:::i;:::-;-1:-1:-1;;;15503:18:15;;15391:136::o;15532:135::-;15571:3;-1:-1:-1;;15592:17:15;;15589:43;;;15612:18;;:::i;:::-;-1:-1:-1;15659:1:15;15648:13;;15532:135::o;15672:168::-;15712:7;15778:1;15774;15770:6;15766:14;15763:1;15760:21;15755:1;15748:9;15741:17;15737:45;15734:71;;;15785:18;;:::i;:::-;-1:-1:-1;15825:9:15;;15672:168::o;15845:217::-;15885:1;15911;15901:132;;15955:10;15950:3;15946:20;15943:1;15936:31;15990:4;15987:1;15980:15;16018:4;16015:1;16008:15;15901:132;-1:-1:-1;16047:9:15;;15845:217::o;16067:415::-;16269:2;16251:21;;;16308:2;16288:18;;;16281:30;16347:34;16342:2;16327:18;;16320:62;-1:-1:-1;;;16413:2:15;16398:18;;16391:49;16472:3;16457:19;;16067:415::o;16487:128::-;16527:3;16558:1;16554:6;16551:1;16548:13;16545:39;;;16564:18;;:::i;:::-;-1:-1:-1;16600:9:15;;16487:128::o;16620:476::-;16822:2;16804:21;;;16861:2;16841:18;;;16834:30;16900:34;16895:2;16880:18;;16873:62;16971:34;16966:2;16951:18;;16944:62;-1:-1:-1;;;17037:3:15;17022:19;;17015:39;17086:3;17071:19;;16620:476::o;18592:125::-;18632:4;18660:1;18657;18654:8;18651:34;;;18665:18;;:::i;:::-;-1:-1:-1;18702:9:15;;18592:125::o;20415:427::-;20617:2;20599:21;;;20656:2;20636:18;;;20629:30;20695:34;20690:2;20675:18;;20668:62;20766:33;20761:2;20746:18;;20739:61;20832:3;20817:19;;20415:427::o;20847:422::-;21049:2;21031:21;;;21088:2;21068:18;;;21061:30;21127:34;21122:2;21107:18;;21100:62;21198:28;21193:2;21178:18;;21171:56;21259:3;21244:19;;20847:422::o;21274:::-;21476:2;21458:21;;;21515:2;21495:18;;;21488:30;21554:34;21549:2;21534:18;;21527:62;21625:28;21620:2;21605:18;;21598:56;21686:3;21671:19;;21274:422::o;21701:420::-;21903:2;21885:21;;;21942:2;21922:18;;;21915:30;21981:34;21976:2;21961:18;;21954:62;22052:26;22047:2;22032:18;;22025:54;22111:3;22096:19;;21701:420::o;22126:404::-;22328:2;22310:21;;;22367:2;22347:18;;;22340:30;22406:34;22401:2;22386:18;;22379:62;-1:-1:-1;;;22472:2:15;22457:18;;22450:38;22520:3;22505:19;;22126:404::o;22970:417::-;23172:2;23154:21;;;23211:2;23191:18;;;23184:30;23250:34;23245:2;23230:18;;23223:62;-1:-1:-1;;;23316:2:15;23301:18;;23294:51;23377:3;23362:19;;22970:417::o;23812:404::-;24014:2;23996:21;;;24053:2;24033:18;;;24026:30;24092:34;24087:2;24072:18;;24065:62;-1:-1:-1;;;24158:2:15;24143:18;;24136:38;24206:3;24191:19;;23812:404::o;24221:470::-;24400:3;24438:6;24432:13;24454:53;24500:6;24495:3;24488:4;24480:6;24476:17;24454:53;:::i;:::-;24570:13;;24529:16;;;;24592:57;24570:13;24529:16;24626:4;24614:17;;24592:57;:::i;:::-;24665:20;;24221:470;-1:-1:-1;;;;24221:470:15:o;27516:184::-;27586:6;27639:2;27627:9;27618:7;27614:23;27610:32;27607:52;;;27655:1;27652;27645:12;27607:52;-1:-1:-1;27678:16:15;;27516:184;-1:-1:-1;27516:184:15:o;28921:489::-;-1:-1:-1;;;;;29190:15:15;;;29172:34;;29242:15;;29237:2;29222:18;;29215:43;29289:2;29274:18;;29267:34;;;29337:3;29332:2;29317:18;;29310:31;;;29115:4;;29358:46;;29384:19;;29376:6;29358:46;:::i;:::-;29350:54;28921:489;-1:-1:-1;;;;;;28921:489:15:o;29415:249::-;29484:6;29537:2;29525:9;29516:7;29512:23;29508:32;29505:52;;;29553:1;29550;29543:12;29505:52;29585:9;29579:16;29604:30;29628:5;29604:30;:::i;30259:245::-;30326:6;30379:2;30367:9;30358:7;30354:23;30350:32;30347:52;;;30395:1;30392;30385:12;30347:52;30427:9;30421:16;30446:28;30468:5;30446:28;:::i;31685:274::-;31814:3;31852:6;31846:13;31868:53;31914:6;31909:3;31902:4;31894:6;31890:17;31868:53;:::i;:::-;31937:16;;;;;31685:274;-1:-1:-1;;31685:274:15:o

Swarm Source

ipfs://dfecd71555b2c5facd1782cea888bac621e26e141b441eb137c39ccdfb0f79de
Loading...
Loading
Loading...
Loading
[ 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.