ETH Price: $3,343.08 (-0.40%)
 

Overview

Max Total Supply

391 NOMORE

Holders

101

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NOMORE
0xf6ef00dcbbd37784002ddac34aa88f2ce060149e
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NOMORE

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : NOMORE.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

contract NOMORE is ERC721A, Ownable, ReentrancyGuard {
  using ECDSA for bytes32;

  uint256 public constant MAX_SUPPLY = 5000;

  uint256 public constant MAX_PER_OG = 4;
  uint256 public constant OG_PRICE = 0.09 ether;

  uint256 public constant MAX_PER_WHITELIST = 2;
  uint256 public constant WHITELIST_PRICE = 0.09 ether;

  uint256 public constant MAX_PER_PUBLIC = 2;
  uint256 public constant PUBLIC_PRICE = 0.18 ether;

  mapping(address => uint8) public publicMinted;

  string public baseURI;

  event Minted(address minter, uint256 quantity);
  event Reserved(address recipient, uint256 quantity);
  event BaseURIChanged(string newBaseURI);

  constructor(string memory initbaseURI) ERC721A("NOMORECLUB", "NOMORE") {
    baseURI = initbaseURI;
  }

  function ogMint(
    uint256 quantity, 
    string calldata salt, 
    bytes calldata signature
  ) external payable {
    require(tx.origin == msg.sender, "NOMORE: contract is not allowed");
    require(quantity > 0 && quantity <= MAX_PER_OG, "NOMORE: invalid quantity");
    require(totalSupply() + quantity <= MAX_SUPPLY, "NOMORE: reached max supply");
    require(numberMinted(msg.sender) + quantity <= MAX_PER_OG, "NOMORE: max mint exceeded");
    require(_verify(_hash(msg.sender, 1, salt), signature), "NOMORE: invalid signature");
    _safeMint(msg.sender, quantity);
    checkAndRefundIfOver(OG_PRICE * quantity);
    emit Minted(msg.sender, quantity);
  }

  function whitelistMint(
    uint256 quantity, 
    string calldata salt, 
    bytes calldata signature
  ) external payable {
    require(tx.origin == msg.sender, "NOMORE: contract is not allowed");
    require(quantity > 0 && quantity <= MAX_PER_WHITELIST, "NOMORE: invalid quantity");
    require(totalSupply() + quantity <= MAX_SUPPLY, "NOMORE: reached max supply");
    require(numberMinted(msg.sender) + quantity <= MAX_PER_WHITELIST, "NOMORE: max mint exceeded");
    require(_verify(_hash(msg.sender, 2, salt), signature), "NOMORE: invalid signature");
    _safeMint(msg.sender, quantity);
    checkAndRefundIfOver(WHITELIST_PRICE * quantity);
    emit Minted(msg.sender, quantity);
  }

  function raffleMint(
    uint256 quantity, 
    string calldata salt, 
    bytes calldata signature
  ) external payable {
    require(tx.origin == msg.sender, "NOMORE: contract is not allowed");
    require(quantity > 0 && quantity <= MAX_PER_PUBLIC, "NOMORE: invalid quantity");
    require(totalSupply() + quantity <= MAX_SUPPLY, "NOMORE: reached max supply");
    require(publicMinted[msg.sender] + quantity <= MAX_PER_PUBLIC, "NOMORE: max mint exceeded");
    require(_verify(_hash(msg.sender, 3, salt), signature), "NOMORE: invalid signature");
    publicMinted[msg.sender] += uint8(quantity);
    _safeMint(msg.sender, quantity);
    checkAndRefundIfOver(PUBLIC_PRICE * quantity);
    emit Minted(msg.sender, quantity);
  }

  function auctionMint(
    uint256 quantity, 
    uint256 price,
    string calldata salt, 
    bytes calldata signature
  ) external payable {
    require(tx.origin == msg.sender, "NOMORE: contract is not allowed");
    require(quantity > 0 && quantity <= MAX_PER_PUBLIC, "NOMORE: invalid quantity");
    require(totalSupply() + quantity <= MAX_SUPPLY, "NOMORE: reached max supply");
    require(publicMinted[msg.sender] + quantity <= MAX_PER_PUBLIC, "NOMORE: max mint exceeded");
    require(_verify(keccak256(abi.encode(address(this), msg.sender, 4, price, salt)), signature), "NOMORE: invalid signature");
    require(price > WHITELIST_PRICE && price <= PUBLIC_PRICE, "NOMORE: invalid price");
    publicMinted[msg.sender] += uint8(quantity);
    _safeMint(msg.sender, quantity);
    checkAndRefundIfOver(price * quantity);
    emit Minted(msg.sender, quantity);
  }

  function _hash(
    address recipient,
    uint8 mode,
    string calldata salt
  ) internal view returns (bytes32) {
    return keccak256(abi.encode(address(this), recipient, mode, salt));
  }

  function _verify(
    bytes32 hash, bytes memory signature
  ) internal view returns (bool) {
    return (_recover(hash, signature) == owner());
  }

  function _recover(
    bytes32 hash, bytes memory signature
  ) internal pure returns (address) {
      return hash.toEthSignedMessageHash().recover(signature);
  }

  function checkAndRefundIfOver(uint256 price) private {
    require(msg.value >= price, "NOMORE: need to send more ETH");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
  }

  function reserve(
    address recipient, uint256 quantity
  ) external onlyOwner {
    require(totalSupply() + quantity <= MAX_SUPPLY, "NOMORE: reached max supply");
    _safeMint(recipient, quantity);
    emit Reserved(recipient, quantity);
  }

  function reserveBatch(
    address[] calldata recipients, uint256 quantity
  ) external onlyOwner {
    uint256 total = recipients.length * quantity;
    require(totalSupply() + total <= MAX_SUPPLY, "NOMORE: reached max supply");
    for (uint256 i = 0; i < recipients.length; ++i) {
      _safeMint(recipients[i], quantity);
      emit Reserved(recipients[i], quantity);
    }
  }

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

  function setBaseURI(string calldata newBaseURI) external onlyOwner {
    baseURI = newBaseURI;
    emit BaseURIChanged(newBaseURI);
  }

  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

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

  function getOwnershipData(
    uint256 tokenId
  ) external view returns (TokenOwnership memory) {
    return ownershipOf(tokenId);
  }

  function tokensOfOwner(address _owner) external view returns (uint[] memory) {
    uint tokenCount = balanceOf(_owner);
    uint[] memory tokensId = new uint256[](tokenCount);
    for (uint i = 0; i < tokenCount; i++) {
        tokensId[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokensId;
  }
}

File 2 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 3 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 4 of 14 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 14 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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, tokenId.toString())) : '';
    }

    /**
     * @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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) 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 or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

    /**
     * @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 _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // 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**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

File 6 of 14 : 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 7 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 8 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

File 9 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

File 11 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 12 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 13 of 14 : 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 14 of 14 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initbaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Reserved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_OG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"string","name":"salt","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"auctionMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"string","name":"salt","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"ogMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"string","name":"salt","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"raffleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","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":"uint256","name":"quantity","type":"uint256"},{"internalType":"string","name":"salt","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162005fd038038062005fd083398181016040528101906200003791906200030f565b6040518060400160405280600a81526020017f4e4f4d4f5245434c5542000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e4f4d4f524500000000000000000000000000000000000000000000000000008152508160019080519060200190620000bb929190620001ed565b508060029080519060200190620000d4929190620001ed565b505050620000f7620000eb6200011f60201b60201c565b6200012760201b60201c565b600160088190555080600a908051906020019062000117929190620001ed565b5050620004c4565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001fb90620003e9565b90600052602060002090601f0160209004810192826200021f57600085556200026b565b82601f106200023a57805160ff19168380011785556200026b565b828001600101855582156200026b579182015b828111156200026a5782518255916020019190600101906200024d565b5b5090506200027a91906200027e565b5090565b5b80821115620002995760008160009055506001016200027f565b5090565b6000620002b4620002ae846200037d565b62000354565b905082815260208101848484011115620002cd57600080fd5b620002da848285620003b3565b509392505050565b600082601f830112620002f457600080fd5b8151620003068482602086016200029d565b91505092915050565b6000602082840312156200032257600080fd5b600082015167ffffffffffffffff8111156200033d57600080fd5b6200034b84828501620002e2565b91505092915050565b60006200036062000373565b90506200036e82826200041f565b919050565b6000604051905090565b600067ffffffffffffffff8211156200039b576200039a62000484565b5b620003a682620004b3565b9050602081019050919050565b60005b83811015620003d3578082015181840152602081019050620003b6565b83811115620003e3576000848401525b50505050565b600060028204905060018216806200040257607f821691505b6020821081141562000419576200041862000455565b5b50919050565b6200042a82620004b3565b810181811067ffffffffffffffff821117156200044c576200044b62000484565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615afc80620004d46000396000f3fe6080604052600436106102305760003560e01c80636352211e1161012e5780639231ab2a116100ab578063c87b56dd1161006f578063c87b56dd1461081b578063cc47a40b14610858578063dc33e68114610881578063e985e9c5146108be578063f2fde38b146108fb57610230565b80639231ab2a1461074557806395d89b4114610782578063a22cb465146107ad578063b88d4fde146107d6578063baa5b6c5146107ff57610230565b80637c5b43d3116100f25780637c5b43d31461065e578063807d31ee146106875780638462151c146106b25780638da5cb5b146106ef57806390069b421461071a57610230565b80636352211e146105775780636c0360eb146105b457806370a08231146105df578063715018a61461061c578063733c19d51461063357610230565b80632e036768116101bc5780634567f9d9116101805780634567f9d9146104ae5780634f6ccce7146104ca5780635105fa291461050757806355f804b314610523578063611f3f101461054c57610230565b80632e036768146103db5780632f745c591461040657806332cb6b0c146104435780633ccfd60b1461046e57806342842e0e1461048557610230565b80631015805b116102035780631015805b1461030357806317e7f2951461034057806318160ddd1461036b578063187363751461039657806323b872dd146103b257610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190614797565b610924565b6040516102699190614fbe565b60405180910390f35b34801561027e57600080fd5b50610287610a6e565b6040516102949190615042565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061482e565b610b00565b6040516102d19190614e62565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190614703565b610b7c565b005b34801561030f57600080fd5b5061032a60048036038101906103259190614598565b610c87565b604051610337919061527a565b60405180910390f35b34801561034c57600080fd5b50610355610ca7565b604051610362919061525f565b60405180910390f35b34801561037757600080fd5b50610380610cb3565b60405161038d919061525f565b60405180910390f35b6103b060048036038101906103ab91906148e0565b610d08565b005b3480156103be57600080fd5b506103d960048036038101906103d491906145fd565b6110a9565b005b3480156103e757600080fd5b506103f06110b9565b6040516103fd919061525f565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190614703565b6110be565b60405161043a919061525f565b60405180910390f35b34801561044f57600080fd5b506104586112c5565b604051610465919061525f565b60405180910390f35b34801561047a57600080fd5b506104836112cb565b005b34801561049157600080fd5b506104ac60048036038101906104a791906145fd565b61144c565b005b6104c860048036038101906104c39190614857565b61146c565b005b3480156104d657600080fd5b506104f160048036038101906104ec919061482e565b611791565b6040516104fe919061525f565b60405180910390f35b610521600480360381019061051c9190614857565b611902565b005b34801561052f57600080fd5b5061054a600480360381019061054591906147e9565b611b6d565b005b34801561055857600080fd5b50610561611c38565b60405161056e919061525f565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061482e565b611c44565b6040516105ab9190614e62565b60405180910390f35b3480156105c057600080fd5b506105c9611c5a565b6040516105d69190615042565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190614598565b611ce8565b604051610613919061525f565b60405180910390f35b34801561062857600080fd5b50610631611db8565b005b34801561063f57600080fd5b50610648611e40565b604051610655919061525f565b60405180910390f35b34801561066a57600080fd5b506106856004803603810190610680919061473f565b611e45565b005b34801561069357600080fd5b5061069c61202e565b6040516106a9919061525f565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190614598565b612033565b6040516106e69190614f9c565b60405180910390f35b3480156106fb57600080fd5b5061070461212d565b6040516107119190614e62565b60405180910390f35b34801561072657600080fd5b5061072f612157565b60405161073c919061525f565b60405180910390f35b34801561075157600080fd5b5061076c6004803603810190610767919061482e565b612163565b6040516107799190615244565b60405180910390f35b34801561078e57600080fd5b5061079761217b565b6040516107a49190615042565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf91906146c7565b61220d565b005b3480156107e257600080fd5b506107fd60048036038101906107f8919061464c565b612385565b005b61081960048036038101906108149190614857565b6123d8565b005b34801561082757600080fd5b50610842600480360381019061083d919061482e565b612643565b60405161084f9190615042565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190614703565b6126e2565b005b34801561088d57600080fd5b506108a860048036038101906108a39190614598565b6127fc565b6040516108b5919061525f565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e091906145c1565b61280e565b6040516108f29190614fbe565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d9190614598565b6128a2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a5757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a675750610a668261299a565b5b9050919050565b606060018054610a7d906155b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa9906155b1565b8015610af65780601f10610acb57610100808354040283529160200191610af6565b820191906000526020600020905b815481529060010190602001808311610ad957829003601f168201915b5050505050905090565b6000610b0b82612a04565b610b41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8782611c44565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bef576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0e612a6c565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c405750610c3e81610c39612a6c565b61280e565b155b15610c77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c82838383612a74565b505050565b60096020528060005260406000206000915054906101000a900460ff1681565b67013fbe85edc9000081565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90615124565b60405180910390fd5b600086118015610d87575060028611155b610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd906151c4565b60405180910390fd5b61138886610dd2610cb3565b610ddc9190615372565b1115610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1490615084565b60405180910390fd5b600286600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16610e7a9190615372565b1115610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290615224565b60405180910390fd5b610f3a30336004888888604051602001610eda96959493929190614e7d565b6040516020818303038152906040528051906020012083838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612b26565b610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090615164565b60405180910390fd5b67013fbe85edc9000085118015610f98575067027f7d0bdb9200008511155b610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce906150e4565b60405180910390fd5b85600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661103291906153c8565b92506101000a81548160ff021916908360ff1602179055506110543387612b6f565b61106886866110639190615430565b612b8d565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3387604051611099929190614f73565b60405180910390a1505050505050565b6110b4838383612c2e565b505050565b600281565b60006110c983611ce8565b8210611101576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b838110156112b9576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561121857506112ac565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461125857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112aa57868414156112a15781955050505050506112bf565b83806001019450505b505b808060010191505061113b565b50600080fd5b92915050565b61138881565b6112d3612a6c565b73ffffffffffffffffffffffffffffffffffffffff166112f161212d565b73ffffffffffffffffffffffffffffffffffffffff1614611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90615184565b60405180910390fd5b6002600854141561138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490615204565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516113bb90614e4d565b60006040518083038185875af1925050503d80600081146113f8576040519150601f19603f3d011682016040523d82523d6000602084013e6113fd565b606091505b5050905080611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906151e4565b60405180910390fd5b506001600881905550565b61146783838360405180602001604052806000815250612385565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190615124565b60405180910390fd5b6000851180156114eb575060028511155b61152a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611521906151c4565b60405180910390fd5b61138885611536610cb3565b6115409190615372565b1115611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890615084565b60405180910390fd5b600285600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff166115de9190615372565b111561161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690615224565b60405180910390fd5b61167961162f336003878761314b565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612b26565b6116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af90615164565b60405180910390fd5b84600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661171391906153c8565b92506101000a81548160ff021916908360ff1602179055506117353386612b6f565b6117518567027f7d0bdb92000061174c9190615430565b612b8d565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3386604051611782929190614f73565b60405180910390a15050505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156118ca576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516118bc57858314156118b357819450505050506118fd565b82806001019350505b5080806001019150506117c9565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196790615124565b60405180910390fd5b600085118015611981575060048511155b6119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b7906151c4565b60405180910390fd5b611388856119cc610cb3565b6119d69190615372565b1115611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e90615084565b60405180910390fd5b600485611a23336127fc565b611a2d9190615372565b1115611a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6590615224565b60405180910390fd5b611ac8611a7e336001878761314b565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612b26565b611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90615164565b60405180910390fd5b611b113386612b6f565b611b2d8567013fbe85edc90000611b289190615430565b612b8d565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3386604051611b5e929190614f73565b60405180910390a15050505050565b611b75612a6c565b73ffffffffffffffffffffffffffffffffffffffff16611b9361212d565b73ffffffffffffffffffffffffffffffffffffffff1614611be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be090615184565b60405180910390fd5b8181600a9190611bfa929190614303565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051611c2c92919061501e565b60405180910390a15050565b67027f7d0bdb92000081565b6000611c4f82613186565b600001519050919050565b600a8054611c67906155b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611c93906155b1565b8015611ce05780601f10611cb557610100808354040283529160200191611ce0565b820191906000526020600020905b815481529060010190602001808311611cc357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d50576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611dc0612a6c565b73ffffffffffffffffffffffffffffffffffffffff16611dde61212d565b73ffffffffffffffffffffffffffffffffffffffff1614611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90615184565b60405180910390fd5b611e3e600061342e565b565b600481565b611e4d612a6c565b73ffffffffffffffffffffffffffffffffffffffff16611e6b61212d565b73ffffffffffffffffffffffffffffffffffffffff1614611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb890615184565b60405180910390fd5b60008184849050611ed29190615430565b905061138881611ee0610cb3565b611eea9190615372565b1115611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2290615084565b60405180910390fd5b60005b8484905081101561202757611f90858583818110611f75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f8a9190614598565b84612b6f565b7f904dcdc411e931497b95b06ddf8f8184815dd3bedc3c7c7cd4aed3ccd30783d8858583818110611fea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611fff9190614598565b8460405161200e929190614f73565b60405180910390a18061202090615614565b9050611f2e565b5050505050565b600281565b6060600061204083611ce8565b905060008167ffffffffffffffff811115612084577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156120b25781602001602082028036833780820191505090505b50905060005b82811015612122576120ca85826110be565b828281518110612103577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061211a90615614565b9150506120b8565b508092505050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b67013fbe85edc9000081565b61216b614389565b61217482613186565b9050919050565b60606002805461218a906155b1565b80601f01602080910402602001604051908101604052809291908181526020018280546121b6906155b1565b80156122035780601f106121d857610100808354040283529160200191612203565b820191906000526020600020905b8154815290600101906020018083116121e657829003601f168201915b5050505050905090565b612215612a6c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561227a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000612287612a6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612334612a6c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123799190614fbe565b60405180910390a35050565b612390848484612c2e565b61239c848484846134f4565b6123d2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243d90615124565b60405180910390fd5b600085118015612457575060028511155b612496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d906151c4565b60405180910390fd5b611388856124a2610cb3565b6124ac9190615372565b11156124ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e490615084565b60405180910390fd5b6002856124f9336127fc565b6125039190615372565b1115612544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253b90615224565b60405180910390fd5b61259e612554336002878761314b565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612b26565b6125dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d490615164565b60405180910390fd5b6125e73386612b6f565b6126038567013fbe85edc900006125fe9190615430565b612b8d565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3386604051612634929190614f73565b60405180910390a15050505050565b606061264e82612a04565b612684576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061268e613682565b90506000815114156126af57604051806020016040528060008152506126da565b806126b984613714565b6040516020016126ca929190614e03565b6040516020818303038152906040525b915050919050565b6126ea612a6c565b73ffffffffffffffffffffffffffffffffffffffff1661270861212d565b73ffffffffffffffffffffffffffffffffffffffff161461275e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275590615184565b60405180910390fd5b6113888161276a610cb3565b6127749190615372565b11156127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac90615084565b60405180910390fd5b6127bf8282612b6f565b7f904dcdc411e931497b95b06ddf8f8184815dd3bedc3c7c7cd4aed3ccd30783d882826040516127f0929190614f73565b60405180910390a15050565b6000612807826138c1565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6128aa612a6c565b73ffffffffffffffffffffffffffffffffffffffff166128c861212d565b73ffffffffffffffffffffffffffffffffffffffff161461291e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291590615184565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561298e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612985906150c4565b60405180910390fd5b6129978161342e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612a65575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612b3061212d565b73ffffffffffffffffffffffffffffffffffffffff16612b508484613991565b73ffffffffffffffffffffffffffffffffffffffff1614905092915050565b612b898282604051806020016040528060008152506139b6565b5050565b80341015612bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc7906151a4565b60405180910390fd5b80341115612c2b573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612bfe919061548a565b9081150290604051600060405180830381858888f19350505050158015612c29573d6000803e3d6000fd5b505b50565b6000612c3982613186565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612c60612a6c565b73ffffffffffffffffffffffffffffffffffffffff161480612c935750612c928260000151612c8d612a6c565b61280e565b5b80612cd85750612ca1612a6c565b73ffffffffffffffffffffffffffffffffffffffff16612cc084610b00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612d11576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d7a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612de1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dee85858560016139c8565b612dfe6000848460000151612a74565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156130db5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156130da5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461314485858560016139ce565b5050505050565b60003085858585604051602001613166959493929190614f25565b604051602081830303815290604052805190602001209050949350505050565b61318e614389565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156133f7576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516133f557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132d9578092505050613429565b5b6001156133f457818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133ef578092505050613429565b6132da565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006135158473ffffffffffffffffffffffffffffffffffffffff166139d4565b15613675578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261353e612a6c565b8786866040518563ffffffff1660e01b81526004016135609493929190614ed9565b602060405180830381600087803b15801561357a57600080fd5b505af19250505080156135ab57506040513d601f19601f820116820180604052508101906135a891906147c0565b60015b613625573d80600081146135db576040519150601f19603f3d011682016040523d82523d6000602084013e6135e0565b606091505b5060008151141561361d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061367a565b600190505b949350505050565b6060600a8054613691906155b1565b80601f01602080910402602001604051908101604052809291908181526020018280546136bd906155b1565b801561370a5780601f106136df5761010080835404028352916020019161370a565b820191906000526020600020905b8154815290600101906020018083116136ed57829003601f168201915b5050505050905090565b6060600082141561375c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138bc565b600082905060005b6000821461378e57808061377790615614565b915050600a8261378791906153ff565b9150613764565b60008167ffffffffffffffff8111156137d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156138025781602001600182028036833780820191505090505b5090505b600085146138b55760018261381b919061548a565b9150600a8561382a9190615667565b60306138369190615372565b60f81b818381518110613872577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138ae91906153ff565b9450613806565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613929576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006139ae826139a0856139e7565b613a1790919063ffffffff16565b905092915050565b6139c38383836001613a3e565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b6000816040516020016139fa9190614e27565b604051602081830303815290604052805190602001209050919050565b6000806000613a268585613dd4565b91509150613a3381613e57565b819250505092915050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613ad9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613b14576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b2160008683876139c8565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613d8657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015613d3a5750613d3860008884886134f4565b155b15613d71576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613cbf565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613dcd60008683876139ce565b5050505050565b600080604183511415613e165760008060006020860151925060408601519150606086015160001a9050613e0a878285856141a8565b94509450505050613e50565b604083511415613e47576000806020850151915060408501519050613e3c8683836142b5565b935093505050613e50565b60006002915091505b9250929050565b60006004811115613e91577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613eca577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613ed5576141a5565b60016004811115613f0f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613f48577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f8090615064565b60405180910390fd5b60026004811115613fc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613ffc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561403d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614034906150a4565b60405180910390fd5b60036004811115614077577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156140b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156140f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140e890615104565b60405180910390fd5b60048081111561412a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115614163577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156141a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161419b90615144565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156141e35760006003915091506142ac565b601b8560ff16141580156141fb5750601c8560ff1614155b1561420d5760006004915091506142ac565b6000600187878787604051600081526020016040526040516142329493929190614fd9565b6020604051602081039080840390855afa158015614254573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156142a3576000600192509250506142ac565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506142f5878288856141a8565b935093505050935093915050565b82805461430f906155b1565b90600052602060002090601f0160209004810192826143315760008555614378565b82601f1061434a57803560ff1916838001178555614378565b82800160010185558215614378579182015b8281111561437757823582559160200191906001019061435c565b5b50905061438591906143cc565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156143e55760008160009055506001016143cd565b5090565b60006143fc6143f7846152ba565b615295565b90508281526020810184848401111561441457600080fd5b61441f84828561556f565b509392505050565b60008135905061443681615a6a565b92915050565b60008083601f84011261444e57600080fd5b8235905067ffffffffffffffff81111561446757600080fd5b60208301915083602082028301111561447f57600080fd5b9250929050565b60008135905061449581615a81565b92915050565b6000813590506144aa81615a98565b92915050565b6000815190506144bf81615a98565b92915050565b60008083601f8401126144d757600080fd5b8235905067ffffffffffffffff8111156144f057600080fd5b60208301915083600182028301111561450857600080fd5b9250929050565b600082601f83011261452057600080fd5b81356145308482602086016143e9565b91505092915050565b60008083601f84011261454b57600080fd5b8235905067ffffffffffffffff81111561456457600080fd5b60208301915083600182028301111561457c57600080fd5b9250929050565b60008135905061459281615aaf565b92915050565b6000602082840312156145aa57600080fd5b60006145b884828501614427565b91505092915050565b600080604083850312156145d457600080fd5b60006145e285828601614427565b92505060206145f385828601614427565b9150509250929050565b60008060006060848603121561461257600080fd5b600061462086828701614427565b935050602061463186828701614427565b925050604061464286828701614583565b9150509250925092565b6000806000806080858703121561466257600080fd5b600061467087828801614427565b945050602061468187828801614427565b935050604061469287828801614583565b925050606085013567ffffffffffffffff8111156146af57600080fd5b6146bb8782880161450f565b91505092959194509250565b600080604083850312156146da57600080fd5b60006146e885828601614427565b92505060206146f985828601614486565b9150509250929050565b6000806040838503121561471657600080fd5b600061472485828601614427565b925050602061473585828601614583565b9150509250929050565b60008060006040848603121561475457600080fd5b600084013567ffffffffffffffff81111561476e57600080fd5b61477a8682870161443c565b9350935050602061478d86828701614583565b9150509250925092565b6000602082840312156147a957600080fd5b60006147b78482850161449b565b91505092915050565b6000602082840312156147d257600080fd5b60006147e0848285016144b0565b91505092915050565b600080602083850312156147fc57600080fd5b600083013567ffffffffffffffff81111561481657600080fd5b61482285828601614539565b92509250509250929050565b60006020828403121561484057600080fd5b600061484e84828501614583565b91505092915050565b60008060008060006060868803121561486f57600080fd5b600061487d88828901614583565b955050602086013567ffffffffffffffff81111561489a57600080fd5b6148a688828901614539565b9450945050604086013567ffffffffffffffff8111156148c557600080fd5b6148d1888289016144c5565b92509250509295509295909350565b600080600080600080608087890312156148f957600080fd5b600061490789828a01614583565b965050602061491889828a01614583565b955050604087013567ffffffffffffffff81111561493557600080fd5b61494189828a01614539565b9450945050606087013567ffffffffffffffff81111561496057600080fd5b61496c89828a016144c5565b92509250509295509295509295565b60006149878383614dc7565b60208301905092915050565b61499c816154be565b82525050565b6149ab816154be565b82525050565b60006149bc826152fb565b6149c68185615329565b93506149d1836152eb565b8060005b83811015614a025781516149e9888261497b565b97506149f48361531c565b9250506001810190506149d5565b5085935050505092915050565b614a18816154d0565b82525050565b614a27816154d0565b82525050565b614a36816154dc565b82525050565b614a4d614a48826154dc565b61565d565b82525050565b6000614a5e82615306565b614a68818561533a565b9350614a7881856020860161557e565b614a8181615754565b840191505092915050565b614a958161555d565b82525050565b6000614aa78385615356565b9350614ab483858461556f565b614abd83615754565b840190509392505050565b6000614ad382615311565b614add8185615356565b9350614aed81856020860161557e565b614af681615754565b840191505092915050565b6000614b0c82615311565b614b168185615367565b9350614b2681856020860161557e565b80840191505092915050565b6000614b3f601883615356565b9150614b4a82615765565b602082019050919050565b6000614b62601a83615356565b9150614b6d8261578e565b602082019050919050565b6000614b85601f83615356565b9150614b90826157b7565b602082019050919050565b6000614ba8601c83615367565b9150614bb3826157e0565b601c82019050919050565b6000614bcb602683615356565b9150614bd682615809565b604082019050919050565b6000614bee601583615356565b9150614bf982615858565b602082019050919050565b6000614c11602283615356565b9150614c1c82615881565b604082019050919050565b6000614c34601f83615356565b9150614c3f826158d0565b602082019050919050565b6000614c57602283615356565b9150614c62826158f9565b604082019050919050565b6000614c7a601983615356565b9150614c8582615948565b602082019050919050565b6000614c9d602083615356565b9150614ca882615971565b602082019050919050565b6000614cc0601d83615356565b9150614ccb8261599a565b602082019050919050565b6000614ce3601883615356565b9150614cee826159c3565b602082019050919050565b6000614d0660008361534b565b9150614d11826159ec565b600082019050919050565b6000614d29601083615356565b9150614d34826159ef565b602082019050919050565b6000614d4c601f83615356565b9150614d5782615a18565b602082019050919050565b6000614d6f601983615356565b9150614d7a82615a41565b602082019050919050565b606082016000820151614d9b6000850182614993565b506020820151614dae6020850182614de5565b506040820151614dc16040850182614a0f565b50505050565b614dd081615532565b82525050565b614ddf81615532565b82525050565b614dee8161553c565b82525050565b614dfd81615550565b82525050565b6000614e0f8285614b01565b9150614e1b8284614b01565b91508190509392505050565b6000614e3282614b9b565b9150614e3e8284614a3c565b60208201915081905092915050565b6000614e5882614cf9565b9150819050919050565b6000602082019050614e7760008301846149a2565b92915050565b600060a082019050614e9260008301896149a2565b614e9f60208301886149a2565b614eac6040830187614a8c565b614eb96060830186614dd6565b8181036080830152614ecc818486614a9b565b9050979650505050505050565b6000608082019050614eee60008301876149a2565b614efb60208301866149a2565b614f086040830185614dd6565b8181036060830152614f1a8184614a53565b905095945050505050565b6000608082019050614f3a60008301886149a2565b614f4760208301876149a2565b614f546040830186614df4565b8181036060830152614f67818486614a9b565b90509695505050505050565b6000604082019050614f8860008301856149a2565b614f956020830184614dd6565b9392505050565b60006020820190508181036000830152614fb681846149b1565b905092915050565b6000602082019050614fd36000830184614a1e565b92915050565b6000608082019050614fee6000830187614a2d565b614ffb6020830186614df4565b6150086040830185614a2d565b6150156060830184614a2d565b95945050505050565b60006020820190508181036000830152615039818486614a9b565b90509392505050565b6000602082019050818103600083015261505c8184614ac8565b905092915050565b6000602082019050818103600083015261507d81614b32565b9050919050565b6000602082019050818103600083015261509d81614b55565b9050919050565b600060208201905081810360008301526150bd81614b78565b9050919050565b600060208201905081810360008301526150dd81614bbe565b9050919050565b600060208201905081810360008301526150fd81614be1565b9050919050565b6000602082019050818103600083015261511d81614c04565b9050919050565b6000602082019050818103600083015261513d81614c27565b9050919050565b6000602082019050818103600083015261515d81614c4a565b9050919050565b6000602082019050818103600083015261517d81614c6d565b9050919050565b6000602082019050818103600083015261519d81614c90565b9050919050565b600060208201905081810360008301526151bd81614cb3565b9050919050565b600060208201905081810360008301526151dd81614cd6565b9050919050565b600060208201905081810360008301526151fd81614d1c565b9050919050565b6000602082019050818103600083015261521d81614d3f565b9050919050565b6000602082019050818103600083015261523d81614d62565b9050919050565b60006060820190506152596000830184614d85565b92915050565b60006020820190506152746000830184614dd6565b92915050565b600060208201905061528f6000830184614df4565b92915050565b600061529f6152b0565b90506152ab82826155e3565b919050565b6000604051905090565b600067ffffffffffffffff8211156152d5576152d4615725565b5b6152de82615754565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061537d82615532565b915061538883615532565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156153bd576153bc615698565b5b828201905092915050565b60006153d382615550565b91506153de83615550565b92508260ff038211156153f4576153f3615698565b5b828201905092915050565b600061540a82615532565b915061541583615532565b925082615425576154246156c7565b5b828204905092915050565b600061543b82615532565b915061544683615532565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561547f5761547e615698565b5b828202905092915050565b600061549582615532565b91506154a083615532565b9250828210156154b3576154b2615698565b5b828203905092915050565b60006154c982615512565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b600061556882615550565b9050919050565b82818337600083830152505050565b60005b8381101561559c578082015181840152602081019050615581565b838111156155ab576000848401525b50505050565b600060028204905060018216806155c957607f821691505b602082108114156155dd576155dc6156f6565b5b50919050565b6155ec82615754565b810181811067ffffffffffffffff8211171561560b5761560a615725565b5b80604052505050565b600061561f82615532565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561565257615651615698565b5b600182019050919050565b6000819050919050565b600061567282615532565b915061567d83615532565b92508261568d5761568c6156c7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4e4f4d4f52453a2072656163686564206d617820737570706c79000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e4f4d4f52453a20696e76616c69642070726963650000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e4f4d4f52453a20636f6e7472616374206973206e6f7420616c6c6f77656400600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e4f4d4f52453a20696e76616c6964207369676e617475726500000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e4f4d4f52453a206e65656420746f2073656e64206d6f726520455448000000600082015250565b7f4e4f4d4f52453a20696e76616c6964207175616e746974790000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e4f4d4f52453a206d6178206d696e7420657863656564656400000000000000600082015250565b615a73816154be565b8114615a7e57600080fd5b50565b615a8a816154d0565b8114615a9557600080fd5b50565b615aa1816154e6565b8114615aac57600080fd5b50565b615ab881615532565b8114615ac357600080fd5b5056fea264697066735822122093be356c41b4e5dc4e968755725dda71a41eb4d0a88e39c63e7bf2275030a04764736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6e6f6d6f7265636c75622e696f2f746f6b656e732f6d657461646174612f0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636352211e1161012e5780639231ab2a116100ab578063c87b56dd1161006f578063c87b56dd1461081b578063cc47a40b14610858578063dc33e68114610881578063e985e9c5146108be578063f2fde38b146108fb57610230565b80639231ab2a1461074557806395d89b4114610782578063a22cb465146107ad578063b88d4fde146107d6578063baa5b6c5146107ff57610230565b80637c5b43d3116100f25780637c5b43d31461065e578063807d31ee146106875780638462151c146106b25780638da5cb5b146106ef57806390069b421461071a57610230565b80636352211e146105775780636c0360eb146105b457806370a08231146105df578063715018a61461061c578063733c19d51461063357610230565b80632e036768116101bc5780634567f9d9116101805780634567f9d9146104ae5780634f6ccce7146104ca5780635105fa291461050757806355f804b314610523578063611f3f101461054c57610230565b80632e036768146103db5780632f745c591461040657806332cb6b0c146104435780633ccfd60b1461046e57806342842e0e1461048557610230565b80631015805b116102035780631015805b1461030357806317e7f2951461034057806318160ddd1461036b578063187363751461039657806323b872dd146103b257610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190614797565b610924565b6040516102699190614fbe565b60405180910390f35b34801561027e57600080fd5b50610287610a6e565b6040516102949190615042565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061482e565b610b00565b6040516102d19190614e62565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190614703565b610b7c565b005b34801561030f57600080fd5b5061032a60048036038101906103259190614598565b610c87565b604051610337919061527a565b60405180910390f35b34801561034c57600080fd5b50610355610ca7565b604051610362919061525f565b60405180910390f35b34801561037757600080fd5b50610380610cb3565b60405161038d919061525f565b60405180910390f35b6103b060048036038101906103ab91906148e0565b610d08565b005b3480156103be57600080fd5b506103d960048036038101906103d491906145fd565b6110a9565b005b3480156103e757600080fd5b506103f06110b9565b6040516103fd919061525f565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190614703565b6110be565b60405161043a919061525f565b60405180910390f35b34801561044f57600080fd5b506104586112c5565b604051610465919061525f565b60405180910390f35b34801561047a57600080fd5b506104836112cb565b005b34801561049157600080fd5b506104ac60048036038101906104a791906145fd565b61144c565b005b6104c860048036038101906104c39190614857565b61146c565b005b3480156104d657600080fd5b506104f160048036038101906104ec919061482e565b611791565b6040516104fe919061525f565b60405180910390f35b610521600480360381019061051c9190614857565b611902565b005b34801561052f57600080fd5b5061054a600480360381019061054591906147e9565b611b6d565b005b34801561055857600080fd5b50610561611c38565b60405161056e919061525f565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061482e565b611c44565b6040516105ab9190614e62565b60405180910390f35b3480156105c057600080fd5b506105c9611c5a565b6040516105d69190615042565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190614598565b611ce8565b604051610613919061525f565b60405180910390f35b34801561062857600080fd5b50610631611db8565b005b34801561063f57600080fd5b50610648611e40565b604051610655919061525f565b60405180910390f35b34801561066a57600080fd5b506106856004803603810190610680919061473f565b611e45565b005b34801561069357600080fd5b5061069c61202e565b6040516106a9919061525f565b60405180910390f35b3480156106be57600080fd5b506106d960048036038101906106d49190614598565b612033565b6040516106e69190614f9c565b60405180910390f35b3480156106fb57600080fd5b5061070461212d565b6040516107119190614e62565b60405180910390f35b34801561072657600080fd5b5061072f612157565b60405161073c919061525f565b60405180910390f35b34801561075157600080fd5b5061076c6004803603810190610767919061482e565b612163565b6040516107799190615244565b60405180910390f35b34801561078e57600080fd5b5061079761217b565b6040516107a49190615042565b60405180910390f35b3480156107b957600080fd5b506107d460048036038101906107cf91906146c7565b61220d565b005b3480156107e257600080fd5b506107fd60048036038101906107f8919061464c565b612385565b005b61081960048036038101906108149190614857565b6123d8565b005b34801561082757600080fd5b50610842600480360381019061083d919061482e565b612643565b60405161084f9190615042565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190614703565b6126e2565b005b34801561088d57600080fd5b506108a860048036038101906108a39190614598565b6127fc565b6040516108b5919061525f565b60405180910390f35b3480156108ca57600080fd5b506108e560048036038101906108e091906145c1565b61280e565b6040516108f29190614fbe565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d9190614598565b6128a2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a5757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a675750610a668261299a565b5b9050919050565b606060018054610a7d906155b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa9906155b1565b8015610af65780601f10610acb57610100808354040283529160200191610af6565b820191906000526020600020905b815481529060010190602001808311610ad957829003601f168201915b5050505050905090565b6000610b0b82612a04565b610b41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b8782611c44565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bef576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0e612a6c565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c405750610c3e81610c39612a6c565b61280e565b155b15610c77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c82838383612a74565b505050565b60096020528060005260406000206000915054906101000a900460ff1681565b67013fbe85edc9000081565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90615124565b60405180910390fd5b600086118015610d87575060028611155b610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd906151c4565b60405180910390fd5b61138886610dd2610cb3565b610ddc9190615372565b1115610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1490615084565b60405180910390fd5b600286600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff16610e7a9190615372565b1115610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290615224565b60405180910390fd5b610f3a30336004888888604051602001610eda96959493929190614e7d565b6040516020818303038152906040528051906020012083838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612b26565b610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090615164565b60405180910390fd5b67013fbe85edc9000085118015610f98575067027f7d0bdb9200008511155b610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce906150e4565b60405180910390fd5b85600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661103291906153c8565b92506101000a81548160ff021916908360ff1602179055506110543387612b6f565b61106886866110639190615430565b612b8d565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3387604051611099929190614f73565b60405180910390a1505050505050565b6110b4838383612c2e565b505050565b600281565b60006110c983611ce8565b8210611101576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b838110156112b9576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561121857506112ac565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461125857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112aa57868414156112a15781955050505050506112bf565b83806001019450505b505b808060010191505061113b565b50600080fd5b92915050565b61138881565b6112d3612a6c565b73ffffffffffffffffffffffffffffffffffffffff166112f161212d565b73ffffffffffffffffffffffffffffffffffffffff1614611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90615184565b60405180910390fd5b6002600854141561138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490615204565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516113bb90614e4d565b60006040518083038185875af1925050503d80600081146113f8576040519150601f19603f3d011682016040523d82523d6000602084013e6113fd565b606091505b5050905080611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906151e4565b60405180910390fd5b506001600881905550565b61146783838360405180602001604052806000815250612385565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d190615124565b60405180910390fd5b6000851180156114eb575060028511155b61152a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611521906151c4565b60405180910390fd5b61138885611536610cb3565b6115409190615372565b1115611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890615084565b60405180910390fd5b600285600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff166115de9190615372565b111561161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690615224565b60405180910390fd5b61167961162f336003878761314b565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612b26565b6116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af90615164565b60405180910390fd5b84600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661171391906153c8565b92506101000a81548160ff021916908360ff1602179055506117353386612b6f565b6117518567027f7d0bdb92000061174c9190615430565b612b8d565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3386604051611782929190614f73565b60405180910390a15050505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b828110156118ca576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516118bc57858314156118b357819450505050506118fd565b82806001019350505b5080806001019150506117c9565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196790615124565b60405180910390fd5b600085118015611981575060048511155b6119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b7906151c4565b60405180910390fd5b611388856119cc610cb3565b6119d69190615372565b1115611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e90615084565b60405180910390fd5b600485611a23336127fc565b611a2d9190615372565b1115611a6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6590615224565b60405180910390fd5b611ac8611a7e336001878761314b565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612b26565b611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90615164565b60405180910390fd5b611b113386612b6f565b611b2d8567013fbe85edc90000611b289190615430565b612b8d565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3386604051611b5e929190614f73565b60405180910390a15050505050565b611b75612a6c565b73ffffffffffffffffffffffffffffffffffffffff16611b9361212d565b73ffffffffffffffffffffffffffffffffffffffff1614611be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be090615184565b60405180910390fd5b8181600a9190611bfa929190614303565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051611c2c92919061501e565b60405180910390a15050565b67027f7d0bdb92000081565b6000611c4f82613186565b600001519050919050565b600a8054611c67906155b1565b80601f0160208091040260200160405190810160405280929190818152602001828054611c93906155b1565b8015611ce05780601f10611cb557610100808354040283529160200191611ce0565b820191906000526020600020905b815481529060010190602001808311611cc357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d50576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611dc0612a6c565b73ffffffffffffffffffffffffffffffffffffffff16611dde61212d565b73ffffffffffffffffffffffffffffffffffffffff1614611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90615184565b60405180910390fd5b611e3e600061342e565b565b600481565b611e4d612a6c565b73ffffffffffffffffffffffffffffffffffffffff16611e6b61212d565b73ffffffffffffffffffffffffffffffffffffffff1614611ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb890615184565b60405180910390fd5b60008184849050611ed29190615430565b905061138881611ee0610cb3565b611eea9190615372565b1115611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2290615084565b60405180910390fd5b60005b8484905081101561202757611f90858583818110611f75577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611f8a9190614598565b84612b6f565b7f904dcdc411e931497b95b06ddf8f8184815dd3bedc3c7c7cd4aed3ccd30783d8858583818110611fea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611fff9190614598565b8460405161200e929190614f73565b60405180910390a18061202090615614565b9050611f2e565b5050505050565b600281565b6060600061204083611ce8565b905060008167ffffffffffffffff811115612084577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156120b25781602001602082028036833780820191505090505b50905060005b82811015612122576120ca85826110be565b828281518110612103577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061211a90615614565b9150506120b8565b508092505050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b67013fbe85edc9000081565b61216b614389565b61217482613186565b9050919050565b60606002805461218a906155b1565b80601f01602080910402602001604051908101604052809291908181526020018280546121b6906155b1565b80156122035780601f106121d857610100808354040283529160200191612203565b820191906000526020600020905b8154815290600101906020018083116121e657829003601f168201915b5050505050905090565b612215612a6c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561227a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000612287612a6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612334612a6c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123799190614fbe565b60405180910390a35050565b612390848484612c2e565b61239c848484846134f4565b6123d2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243d90615124565b60405180910390fd5b600085118015612457575060028511155b612496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248d906151c4565b60405180910390fd5b611388856124a2610cb3565b6124ac9190615372565b11156124ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e490615084565b60405180910390fd5b6002856124f9336127fc565b6125039190615372565b1115612544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253b90615224565b60405180910390fd5b61259e612554336002878761314b565b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612b26565b6125dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d490615164565b60405180910390fd5b6125e73386612b6f565b6126038567013fbe85edc900006125fe9190615430565b612b8d565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3386604051612634929190614f73565b60405180910390a15050505050565b606061264e82612a04565b612684576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061268e613682565b90506000815114156126af57604051806020016040528060008152506126da565b806126b984613714565b6040516020016126ca929190614e03565b6040516020818303038152906040525b915050919050565b6126ea612a6c565b73ffffffffffffffffffffffffffffffffffffffff1661270861212d565b73ffffffffffffffffffffffffffffffffffffffff161461275e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275590615184565b60405180910390fd5b6113888161276a610cb3565b6127749190615372565b11156127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac90615084565b60405180910390fd5b6127bf8282612b6f565b7f904dcdc411e931497b95b06ddf8f8184815dd3bedc3c7c7cd4aed3ccd30783d882826040516127f0929190614f73565b60405180910390a15050565b6000612807826138c1565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6128aa612a6c565b73ffffffffffffffffffffffffffffffffffffffff166128c861212d565b73ffffffffffffffffffffffffffffffffffffffff161461291e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291590615184565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561298e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612985906150c4565b60405180910390fd5b6129978161342e565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612a65575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612b3061212d565b73ffffffffffffffffffffffffffffffffffffffff16612b508484613991565b73ffffffffffffffffffffffffffffffffffffffff1614905092915050565b612b898282604051806020016040528060008152506139b6565b5050565b80341015612bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc7906151a4565b60405180910390fd5b80341115612c2b573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612bfe919061548a565b9081150290604051600060405180830381858888f19350505050158015612c29573d6000803e3d6000fd5b505b50565b6000612c3982613186565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612c60612a6c565b73ffffffffffffffffffffffffffffffffffffffff161480612c935750612c928260000151612c8d612a6c565b61280e565b5b80612cd85750612ca1612a6c565b73ffffffffffffffffffffffffffffffffffffffff16612cc084610b00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612d11576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d7a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612de1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dee85858560016139c8565b612dfe6000848460000151612a74565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156130db5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156130da5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461314485858560016139ce565b5050505050565b60003085858585604051602001613166959493929190614f25565b604051602081830303815290604052805190602001209050949350505050565b61318e614389565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156133f7576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516133f557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132d9578092505050613429565b5b6001156133f457818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133ef578092505050613429565b6132da565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006135158473ffffffffffffffffffffffffffffffffffffffff166139d4565b15613675578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261353e612a6c565b8786866040518563ffffffff1660e01b81526004016135609493929190614ed9565b602060405180830381600087803b15801561357a57600080fd5b505af19250505080156135ab57506040513d601f19601f820116820180604052508101906135a891906147c0565b60015b613625573d80600081146135db576040519150601f19603f3d011682016040523d82523d6000602084013e6135e0565b606091505b5060008151141561361d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061367a565b600190505b949350505050565b6060600a8054613691906155b1565b80601f01602080910402602001604051908101604052809291908181526020018280546136bd906155b1565b801561370a5780601f106136df5761010080835404028352916020019161370a565b820191906000526020600020905b8154815290600101906020018083116136ed57829003601f168201915b5050505050905090565b6060600082141561375c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138bc565b600082905060005b6000821461378e57808061377790615614565b915050600a8261378791906153ff565b9150613764565b60008167ffffffffffffffff8111156137d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156138025781602001600182028036833780820191505090505b5090505b600085146138b55760018261381b919061548a565b9150600a8561382a9190615667565b60306138369190615372565b60f81b818381518110613872577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138ae91906153ff565b9450613806565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613929576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006139ae826139a0856139e7565b613a1790919063ffffffff16565b905092915050565b6139c38383836001613a3e565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b6000816040516020016139fa9190614e27565b604051602081830303815290604052805190602001209050919050565b6000806000613a268585613dd4565b91509150613a3381613e57565b819250505092915050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613ad9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613b14576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b2160008683876139c8565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613d8657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015613d3a5750613d3860008884886134f4565b155b15613d71576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613cbf565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613dcd60008683876139ce565b5050505050565b600080604183511415613e165760008060006020860151925060408601519150606086015160001a9050613e0a878285856141a8565b94509450505050613e50565b604083511415613e47576000806020850151915060408501519050613e3c8683836142b5565b935093505050613e50565b60006002915091505b9250929050565b60006004811115613e91577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613eca577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613ed5576141a5565b60016004811115613f0f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613f48577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f8090615064565b60405180910390fd5b60026004811115613fc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613ffc577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561403d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614034906150a4565b60405180910390fd5b60036004811115614077577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156140b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156140f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140e890615104565b60405180910390fd5b60048081111561412a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115614163577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156141a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161419b90615144565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156141e35760006003915091506142ac565b601b8560ff16141580156141fb5750601c8560ff1614155b1561420d5760006004915091506142ac565b6000600187878787604051600081526020016040526040516142329493929190614fd9565b6020604051602081039080840390855afa158015614254573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156142a3576000600192509250506142ac565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506142f5878288856141a8565b935093505050935093915050565b82805461430f906155b1565b90600052602060002090601f0160209004810192826143315760008555614378565b82601f1061434a57803560ff1916838001178555614378565b82800160010185558215614378579182015b8281111561437757823582559160200191906001019061435c565b5b50905061438591906143cc565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156143e55760008160009055506001016143cd565b5090565b60006143fc6143f7846152ba565b615295565b90508281526020810184848401111561441457600080fd5b61441f84828561556f565b509392505050565b60008135905061443681615a6a565b92915050565b60008083601f84011261444e57600080fd5b8235905067ffffffffffffffff81111561446757600080fd5b60208301915083602082028301111561447f57600080fd5b9250929050565b60008135905061449581615a81565b92915050565b6000813590506144aa81615a98565b92915050565b6000815190506144bf81615a98565b92915050565b60008083601f8401126144d757600080fd5b8235905067ffffffffffffffff8111156144f057600080fd5b60208301915083600182028301111561450857600080fd5b9250929050565b600082601f83011261452057600080fd5b81356145308482602086016143e9565b91505092915050565b60008083601f84011261454b57600080fd5b8235905067ffffffffffffffff81111561456457600080fd5b60208301915083600182028301111561457c57600080fd5b9250929050565b60008135905061459281615aaf565b92915050565b6000602082840312156145aa57600080fd5b60006145b884828501614427565b91505092915050565b600080604083850312156145d457600080fd5b60006145e285828601614427565b92505060206145f385828601614427565b9150509250929050565b60008060006060848603121561461257600080fd5b600061462086828701614427565b935050602061463186828701614427565b925050604061464286828701614583565b9150509250925092565b6000806000806080858703121561466257600080fd5b600061467087828801614427565b945050602061468187828801614427565b935050604061469287828801614583565b925050606085013567ffffffffffffffff8111156146af57600080fd5b6146bb8782880161450f565b91505092959194509250565b600080604083850312156146da57600080fd5b60006146e885828601614427565b92505060206146f985828601614486565b9150509250929050565b6000806040838503121561471657600080fd5b600061472485828601614427565b925050602061473585828601614583565b9150509250929050565b60008060006040848603121561475457600080fd5b600084013567ffffffffffffffff81111561476e57600080fd5b61477a8682870161443c565b9350935050602061478d86828701614583565b9150509250925092565b6000602082840312156147a957600080fd5b60006147b78482850161449b565b91505092915050565b6000602082840312156147d257600080fd5b60006147e0848285016144b0565b91505092915050565b600080602083850312156147fc57600080fd5b600083013567ffffffffffffffff81111561481657600080fd5b61482285828601614539565b92509250509250929050565b60006020828403121561484057600080fd5b600061484e84828501614583565b91505092915050565b60008060008060006060868803121561486f57600080fd5b600061487d88828901614583565b955050602086013567ffffffffffffffff81111561489a57600080fd5b6148a688828901614539565b9450945050604086013567ffffffffffffffff8111156148c557600080fd5b6148d1888289016144c5565b92509250509295509295909350565b600080600080600080608087890312156148f957600080fd5b600061490789828a01614583565b965050602061491889828a01614583565b955050604087013567ffffffffffffffff81111561493557600080fd5b61494189828a01614539565b9450945050606087013567ffffffffffffffff81111561496057600080fd5b61496c89828a016144c5565b92509250509295509295509295565b60006149878383614dc7565b60208301905092915050565b61499c816154be565b82525050565b6149ab816154be565b82525050565b60006149bc826152fb565b6149c68185615329565b93506149d1836152eb565b8060005b83811015614a025781516149e9888261497b565b97506149f48361531c565b9250506001810190506149d5565b5085935050505092915050565b614a18816154d0565b82525050565b614a27816154d0565b82525050565b614a36816154dc565b82525050565b614a4d614a48826154dc565b61565d565b82525050565b6000614a5e82615306565b614a68818561533a565b9350614a7881856020860161557e565b614a8181615754565b840191505092915050565b614a958161555d565b82525050565b6000614aa78385615356565b9350614ab483858461556f565b614abd83615754565b840190509392505050565b6000614ad382615311565b614add8185615356565b9350614aed81856020860161557e565b614af681615754565b840191505092915050565b6000614b0c82615311565b614b168185615367565b9350614b2681856020860161557e565b80840191505092915050565b6000614b3f601883615356565b9150614b4a82615765565b602082019050919050565b6000614b62601a83615356565b9150614b6d8261578e565b602082019050919050565b6000614b85601f83615356565b9150614b90826157b7565b602082019050919050565b6000614ba8601c83615367565b9150614bb3826157e0565b601c82019050919050565b6000614bcb602683615356565b9150614bd682615809565b604082019050919050565b6000614bee601583615356565b9150614bf982615858565b602082019050919050565b6000614c11602283615356565b9150614c1c82615881565b604082019050919050565b6000614c34601f83615356565b9150614c3f826158d0565b602082019050919050565b6000614c57602283615356565b9150614c62826158f9565b604082019050919050565b6000614c7a601983615356565b9150614c8582615948565b602082019050919050565b6000614c9d602083615356565b9150614ca882615971565b602082019050919050565b6000614cc0601d83615356565b9150614ccb8261599a565b602082019050919050565b6000614ce3601883615356565b9150614cee826159c3565b602082019050919050565b6000614d0660008361534b565b9150614d11826159ec565b600082019050919050565b6000614d29601083615356565b9150614d34826159ef565b602082019050919050565b6000614d4c601f83615356565b9150614d5782615a18565b602082019050919050565b6000614d6f601983615356565b9150614d7a82615a41565b602082019050919050565b606082016000820151614d9b6000850182614993565b506020820151614dae6020850182614de5565b506040820151614dc16040850182614a0f565b50505050565b614dd081615532565b82525050565b614ddf81615532565b82525050565b614dee8161553c565b82525050565b614dfd81615550565b82525050565b6000614e0f8285614b01565b9150614e1b8284614b01565b91508190509392505050565b6000614e3282614b9b565b9150614e3e8284614a3c565b60208201915081905092915050565b6000614e5882614cf9565b9150819050919050565b6000602082019050614e7760008301846149a2565b92915050565b600060a082019050614e9260008301896149a2565b614e9f60208301886149a2565b614eac6040830187614a8c565b614eb96060830186614dd6565b8181036080830152614ecc818486614a9b565b9050979650505050505050565b6000608082019050614eee60008301876149a2565b614efb60208301866149a2565b614f086040830185614dd6565b8181036060830152614f1a8184614a53565b905095945050505050565b6000608082019050614f3a60008301886149a2565b614f4760208301876149a2565b614f546040830186614df4565b8181036060830152614f67818486614a9b565b90509695505050505050565b6000604082019050614f8860008301856149a2565b614f956020830184614dd6565b9392505050565b60006020820190508181036000830152614fb681846149b1565b905092915050565b6000602082019050614fd36000830184614a1e565b92915050565b6000608082019050614fee6000830187614a2d565b614ffb6020830186614df4565b6150086040830185614a2d565b6150156060830184614a2d565b95945050505050565b60006020820190508181036000830152615039818486614a9b565b90509392505050565b6000602082019050818103600083015261505c8184614ac8565b905092915050565b6000602082019050818103600083015261507d81614b32565b9050919050565b6000602082019050818103600083015261509d81614b55565b9050919050565b600060208201905081810360008301526150bd81614b78565b9050919050565b600060208201905081810360008301526150dd81614bbe565b9050919050565b600060208201905081810360008301526150fd81614be1565b9050919050565b6000602082019050818103600083015261511d81614c04565b9050919050565b6000602082019050818103600083015261513d81614c27565b9050919050565b6000602082019050818103600083015261515d81614c4a565b9050919050565b6000602082019050818103600083015261517d81614c6d565b9050919050565b6000602082019050818103600083015261519d81614c90565b9050919050565b600060208201905081810360008301526151bd81614cb3565b9050919050565b600060208201905081810360008301526151dd81614cd6565b9050919050565b600060208201905081810360008301526151fd81614d1c565b9050919050565b6000602082019050818103600083015261521d81614d3f565b9050919050565b6000602082019050818103600083015261523d81614d62565b9050919050565b60006060820190506152596000830184614d85565b92915050565b60006020820190506152746000830184614dd6565b92915050565b600060208201905061528f6000830184614df4565b92915050565b600061529f6152b0565b90506152ab82826155e3565b919050565b6000604051905090565b600067ffffffffffffffff8211156152d5576152d4615725565b5b6152de82615754565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061537d82615532565b915061538883615532565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156153bd576153bc615698565b5b828201905092915050565b60006153d382615550565b91506153de83615550565b92508260ff038211156153f4576153f3615698565b5b828201905092915050565b600061540a82615532565b915061541583615532565b925082615425576154246156c7565b5b828204905092915050565b600061543b82615532565b915061544683615532565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561547f5761547e615698565b5b828202905092915050565b600061549582615532565b91506154a083615532565b9250828210156154b3576154b2615698565b5b828203905092915050565b60006154c982615512565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b600061556882615550565b9050919050565b82818337600083830152505050565b60005b8381101561559c578082015181840152602081019050615581565b838111156155ab576000848401525b50505050565b600060028204905060018216806155c957607f821691505b602082108114156155dd576155dc6156f6565b5b50919050565b6155ec82615754565b810181811067ffffffffffffffff8211171561560b5761560a615725565b5b80604052505050565b600061561f82615532565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561565257615651615698565b5b600182019050919050565b6000819050919050565b600061567282615532565b915061567d83615532565b92508261568d5761568c6156c7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4e4f4d4f52453a2072656163686564206d617820737570706c79000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e4f4d4f52453a20696e76616c69642070726963650000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e4f4d4f52453a20636f6e7472616374206973206e6f7420616c6c6f77656400600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e4f4d4f52453a20696e76616c6964207369676e617475726500000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e4f4d4f52453a206e65656420746f2073656e64206d6f726520455448000000600082015250565b7f4e4f4d4f52453a20696e76616c6964207175616e746974790000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e4f4d4f52453a206d6178206d696e7420657863656564656400000000000000600082015250565b615a73816154be565b8114615a7e57600080fd5b50565b615a8a816154d0565b8114615a9557600080fd5b50565b615aa1816154e6565b8114615aac57600080fd5b50565b615ab881615532565b8114615ac357600080fd5b5056fea264697066735822122093be356c41b4e5dc4e968755725dda71a41eb4d0a88e39c63e7bf2275030a04764736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6e6f6d6f7265636c75622e696f2f746f6b656e732f6d657461646174612f0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initbaseURI (string): https://nomoreclub.io/tokens/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [2] : 68747470733a2f2f6e6f6d6f7265636c75622e696f2f746f6b656e732f6d6574
Arg [3] : 61646174612f0000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.