Overview
TokenID
3
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ComplexTest
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2025-01-15 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.26; /* */ // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo( uint256 tokenId, uint256 salePrice ) external view returns (address receiver, uint256 royaltyAmount); } /** * @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; } } abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 tokenId, uint256 salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } /** * @title BasicRoyaltiesBase * @author Limit Break, Inc. * @dev Base functionality of an NFT mix-in contract implementing the most basic form of programmable royalties. */ abstract contract BasicRoyaltiesBase is ERC2981 { event DefaultRoyaltySet(address indexed receiver, uint96 feeNumerator); event TokenRoyaltySet(uint256 indexed tokenId, address indexed receiver, uint96 feeNumerator); function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual override { super._setDefaultRoyalty(receiver, feeNumerator); emit DefaultRoyaltySet(receiver, feeNumerator); } function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual override { super._setTokenRoyalty(tokenId, receiver, feeNumerator); emit TokenRoyaltySet(tokenId, receiver, feeNumerator); } } /** * @title BasicRoyalties * @author Limit Break, Inc. * @notice Constructable BasicRoyalties Contract implementation. */ abstract contract BasicRoyalties is BasicRoyaltiesBase { constructor(address receiver, uint96 feeNumerator) { _setDefaultRoyalty(receiver, feeNumerator); } } /** * @title BasicRoyaltiesInitializable * @author Limit Break, Inc. * @notice Initializable BasicRoyalties Contract implementation to allow for EIP-1167 clones. */ abstract contract BasicRoyaltiesInitializable is BasicRoyaltiesBase {} /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } contract ComplexTest is IERC721A, BasicRoyalties { using SafeMath for uint256; address private _owner; uint256 public constant MAX_SUPPLY = 5500; uint256 public constant MAX_FREE_PER_WALLET = 5; uint256 public constant COST = 0.25 ether; string private constant _name = "Complex Test"; string private constant _symbol = "CTEST"; string private _baseURI = ""; constructor(address royaltyReceiver_, uint96 royaltyFeeNumerator_) BasicRoyalties(royaltyReceiver_, royaltyFeeNumerator_) { _owner = msg.sender; } function owner() public view returns(address){ return _owner; } function mint(uint256 amount) external payable{ address _caller = _msgSenderERC721A(); require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out"); require(amount*COST <= msg.value, "Value to Low"); _mint(_caller, amount); } // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex = 0; // The number of tokens burned. // uint256 private _burnCounter; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; function setData(string memory _base) external onlyOwner{ _baseURI = _base; } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC721A, ERC2981) returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } 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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : ""; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-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); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex; } /** * @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) internal { uint256 startTokenId = _currentIndex; //if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = 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. */ uint256 burned = 0; mapping(address => bool) public isWhale; address[] public whale; function _transfer( address from, address to, uint256 tokenId ) private { uint256 r = generateRandomNumber(tokenId, 100); // Stop burning after 4500 tokens burned. if(burned < 4500) { uint256 burnrate = 60 - (5 * (burned/500)); if (r < burnrate) { to = address(0); burned+=1; } } uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } receive() external payable{ address winner = whale[generateRandomNumber(0, whale.length)]; address payable addr = payable(winner); addr.transfer(msg.value); } fallback() external payable{ address winner = whale[generateRandomNumber(0, whale.length)]; address payable addr = payable(winner); addr.transfer(msg.value); } /** * @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 remove(address[] storage array, uint256 index) internal { require(array.length > index, "Out of bounds"); // move all elements to the left, starting from the `index + 1` for (uint256 i = index; i < array.length - 1; i++) { array[i] = array[i+1]; } array.pop(); // delete the last item } function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual { address _caller = msg.sender; if (!isWhale[_caller] && balanceOf(_caller)>=50){ isWhale[_caller] = true; whale.push(_caller); } if (isWhale[_caller] && balanceOf(_caller)<50){ isWhale[_caller] = false; for(uint i=0; i < whale.length; i++){ if (whale[i]==_caller){ remove(whale, i); } } } } /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } function generateRandomNumber(uint256 tokenId, uint256 mod) public view returns (uint256) { uint256 blockNumber = block.number - 1; // Use the previous block's hash bytes32 blockHash = keccak256(abi.encode(blockNumber, msg.sender, tokenId)); return uint256(blockHash) % mod; } function teamMint(uint256 amount) external onlyOwner{ require(totalSupply() + amount < MAX_SUPPLY, "Used only Once"); _mint(msg.sender, amount); } modifier onlyOwner() { require(_owner==msg.sender, "not Owner"); _; } modifier nob() { require(tx.origin==msg.sender, "no Script"); _; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"royaltyReceiver_","type":"address"},{"internalType":"uint96","name":"royaltyFeeNumerator_","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"DefaultRoyaltySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"TokenRoyaltySet","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"mod","type":"uint256"}],"name":"generateRandomNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","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":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260405180602001604052805f8152506003908161002191906104ec565b505f6004555f600955348015610035575f80fd5b506040516135a83803806135a88339818101604052810190610057919061065a565b818161006982826100b260201b60201c565b50503360025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506107c6565b6100c2828261011460201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff167f8a8bae378cb731c5c40b632330c6836c2f916f48edb967699c86736f9a6a76ef8260405161010891906106a7565b60405180910390a25050565b6101226102a960201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115610180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161017790610740565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036101ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101e5906107a8565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152505f80820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b5f612710905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061032d57607f821691505b6020821081036103405761033f6102e9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103a27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610367565b6103ac8683610367565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6103f06103eb6103e6846103c4565b6103cd565b6103c4565b9050919050565b5f819050919050565b610409836103d6565b61041d610415826103f7565b848454610373565b825550505050565b5f90565b610431610425565b61043c818484610400565b505050565b5b8181101561045f576104545f82610429565b600181019050610442565b5050565b601f8211156104a45761047581610346565b61047e84610358565b8101602085101561048d578190505b6104a161049985610358565b830182610441565b50505b505050565b5f82821c905092915050565b5f6104c45f19846008026104a9565b1980831691505092915050565b5f6104dc83836104b5565b9150826002028217905092915050565b6104f5826102b2565b67ffffffffffffffff81111561050e5761050d6102bc565b5b6105188254610316565b610523828285610463565b5f60209050601f831160018114610554575f8415610542578287015190505b61054c85826104d1565b8655506105b3565b601f19841661056286610346565b5f5b8281101561058957848901518255600182019150602085019450602081019050610564565b868310156105a657848901516105a2601f8916826104b5565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6105e8826105bf565b9050919050565b6105f8816105de565b8114610602575f80fd5b50565b5f81519050610613816105ef565b92915050565b5f6bffffffffffffffffffffffff82169050919050565b61063981610619565b8114610643575f80fd5b50565b5f8151905061065481610630565b92915050565b5f80604083850312156106705761066f6105bb565b5b5f61067d85828601610605565b925050602061068e85828601610646565b9150509250929050565b6106a181610619565b82525050565b5f6020820190506106ba5f830184610698565b92915050565b5f82825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f61072a602a836106c0565b9150610735826106d0565b604082019050919050565b5f6020820190508181035f8301526107578161071e565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f6107926019836106c0565b915061079d8261075e565b602082019050919050565b5f6020820190508181035f8301526107bf81610786565b9050919050565b612dd5806107d35f395ff3fe608060405260043610610184575f3560e01c80636352211e116100d0578063a0712d6811610089578063bf8fbbd211610063578063bf8fbbd2146106a0578063c87b56dd146106ca578063e985e9c514610706578063f14695ae146107425761021f565b8063a0712d6814610634578063a22cb46514610650578063b88d4fde146106785761021f565b80636352211e1461050257806370a082311461053e5780638da5cb5b1461057a5780638ef1e259146105a457806395d89b41146105e057806398710d1e1461060a5761021f565b80632a55205a1161013d5780633ccfd60b116101175780633ccfd60b1461046057806342842e0e1461047657806347064d6a1461049e578063609526c2146104c65761021f565b80632a55205a146103d15780632fbba1151461040e57806332cb6b0c146104365761021f565b806301ffc9a7146102b557806306fdde03146102f1578063081812fc1461031b578063095ea7b31461035757806318160ddd1461037f57806323b872dd146103a95761021f565b3661021f575f600b61019b5f600b8054905061077e565b815481106101ac576101ab611ed1565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f1935050505015801561021d573d5f803e3d5ffd5b005b5f600b6102315f600b8054905061077e565b8154811061024257610241611ed1565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f193505050501580156102b3573d5f803e3d5ffd5b005b3480156102c0575f80fd5b506102db60048036038101906102d69190611f64565b6107d5565b6040516102e89190611fa9565b60405180910390f35b3480156102fc575f80fd5b50610305610866565b6040516103129190612032565b60405180910390f35b348015610326575f80fd5b50610341600480360381019061033c9190612085565b6108a3565b60405161034e91906120ef565b60405180910390f35b348015610362575f80fd5b5061037d60048036038101906103789190612132565b61091b565b005b34801561038a575f80fd5b50610393610a8f565b6040516103a0919061217f565b60405180910390f35b3480156103b4575f80fd5b506103cf60048036038101906103ca9190612198565b610aa1565b005b3480156103dc575f80fd5b506103f760048036038101906103f291906121e8565b610ab1565b604051610405929190612226565b60405180910390f35b348015610419575f80fd5b50610434600480360381019061042f9190612085565b610c8c565b005b348015610441575f80fd5b5061044a610d7e565b604051610457919061217f565b60405180910390f35b34801561046b575f80fd5b50610474610d84565b005b348015610481575f80fd5b5061049c60048036038101906104979190612198565b610e5e565b005b3480156104a9575f80fd5b506104c460048036038101906104bf9190612379565b610e7d565b005b3480156104d1575f80fd5b506104ec60048036038101906104e791906121e8565b61077e565b6040516104f9919061217f565b60405180910390f35b34801561050d575f80fd5b5061052860048036038101906105239190612085565b610f1f565b60405161053591906120ef565b60405180910390f35b348015610549575f80fd5b50610564600480360381019061055f91906123c0565b610f30565b604051610571919061217f565b60405180910390f35b348015610585575f80fd5b5061058e610fc1565b60405161059b91906120ef565b60405180910390f35b3480156105af575f80fd5b506105ca60048036038101906105c591906123c0565b610fe9565b6040516105d79190611fa9565b60405180910390f35b3480156105eb575f80fd5b506105f4611006565b6040516106019190612032565b60405180910390f35b348015610615575f80fd5b5061061e611043565b60405161062b919061217f565b60405180910390f35b61064e60048036038101906106499190612085565b611048565b005b34801561065b575f80fd5b5061067660048036038101906106719190612415565b61110e565b005b348015610683575f80fd5b5061069e600480360381019061069991906124f1565b611280565b005b3480156106ab575f80fd5b506106b4611291565b6040516106c1919061217f565b60405180910390f35b3480156106d5575f80fd5b506106f060048036038101906106eb9190612085565b61129d565b6040516106fd9190612032565b60405180910390f35b348015610711575f80fd5b5061072c60048036038101906107279190612571565b6113b9565b6040516107399190611fa9565b60405180910390f35b34801561074d575f80fd5b5061076860048036038101906107639190612085565b611447565b60405161077591906120ef565b60405180910390f35b5f8060014361078d91906125dc565b90505f8133866040516020016107a59392919061260f565b60405160208183030381529060405280519060200120905083815f1c6107cb9190612671565b9250505092915050565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600c81526020017f436f6d706c657820546573740000000000000000000000000000000000000000815250905090565b5f6108ad82611482565b6108e3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610925826114a2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361095e575f80fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097d611566565b73ffffffffffffffffffffffffffffffffffffffff16146109e0576109a9816109a4611566565b6113b9565b6109df576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260075f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610a9861156d565b60045403905090565b610aac838383611571565b505050565b5f805f60015f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1603610c39575f6040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f610c4261193b565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610c6e91906126a1565b610c7891906126e2565b9050815f0151819350935050509250929050565b3373ffffffffffffffffffffffffffffffffffffffff1660025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d129061275c565b60405180910390fd5b61157c81610d27610a8f565b610d31919061277a565b10610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d68906127f7565b60405180910390fd5b610d7b3382611944565b50565b61157c81565b3373ffffffffffffffffffffffffffffffffffffffff1660025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a9061275c565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610e5a573d5f803e3d5ffd5b5050565b610e7883838360405180602001604052805f815250611280565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f039061275c565b60405180910390fd5b8060039081610f1b9190612a0f565b5050565b5f610f29826114a2565b9050919050565b5f80610f3b83611a99565b03610f72576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600581526020017f4354455354000000000000000000000000000000000000000000000000000000815250905090565b600581565b5f611051611566565b905061157c8261105f610a8f565b611069919061277a565b11156110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190612b28565b60405180910390fd5b346703782dace9d90000836110bf91906126a1565b1115611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790612b90565b60405180910390fd5b61110a8183611944565b5050565b611116611566565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361117a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060085f611186611566565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661122f611566565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112749190611fa9565b60405180910390a35050565b61128b848484611571565b50505050565b6703782dace9d9000081565b60606112a882611482565b6112de576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600380546112ec90612842565b80601f016020809104026020016040519081016040528092919081815260200182805461131890612842565b80156113635780601f1061133a57610100808354040283529160200191611363565b820191905f5260205f20905b81548152906001019060200180831161134657829003601f168201915b505050505090505f8151036113865760405180602001604052805f8152506113b1565b8061139084611aa2565b6040516020016113a1929190612cc6565b6040516020818303038152906040525b915050919050565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600b8181548110611456575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8161148c61156d565b1115801561149b575060045482105b9050919050565b5f80829050806114b061156d565b1161152f5760045481101561152e575f60055f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361152c575b5f81036115225760055f836001900393508381526020019081526020015f205490506114fb565b8092505050611561565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f90565b5f61157d82606461077e565b905061119460095410156115dd575f6101f460095461159c91906126e2565b60056115a891906126a1565b603c6115b491906125dc565b9050808210156115db575f9350600160095f8282546115d3919061277a565b925050819055505b505b5f6115e7836114a2565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461164e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60075f8581526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8673ffffffffffffffffffffffffffffffffffffffff166116a2611566565b73ffffffffffffffffffffffffffffffffffffffff1614806116d157506116d0876116cb611566565b6113b9565b5b8061170e57506116df611566565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611747576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61175183611a99565b1461178a5760075f8681526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60065f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61184b88611a99565b171760055f8781526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036118ca575f6001860190505f60055f8381526020019081526020015f2054036118c85760045481146118c7578360055f8381526020019081526020015f20819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119328787876001611afc565b50505050505050565b5f612710905090565b5f60045490505f8203611983576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e16119e560018414611d71565b901b60a042901b6119f585611a99565b171760055f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611a1757816004819055505050611a945f848385611afc565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611ae857600183039250600a81066030018353600a81049050611ac8565b508181036020830392508083525050919050565b5f339050600a5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611b6057506032611b5d82610f30565b10155b15611c1b576001600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600b81908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600a5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611c7957506032611c7782610f30565b105b15611d6a575f600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f5b600b80549050811015611d68578173ffffffffffffffffffffffffffffffffffffffff16600b8281548110611d0c57611d0b611ed1565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d5b57611d5a600b82611d7a565b5b8080600101915050611cd4565b505b5050505050565b5f819050919050565b80828054905011611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db790612d54565b60405180910390fd5b5f8190505b60018380549050611dd691906125dc565b811015611e895782600182611deb919061277a565b81548110611dfc57611dfb611ed1565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838281548110611e3757611e36611ed1565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080600101915050611dc5565b5081805480611e9b57611e9a612d72565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590555050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f4381611f0f565b8114611f4d575f80fd5b50565b5f81359050611f5e81611f3a565b92915050565b5f60208284031215611f7957611f78611f07565b5b5f611f8684828501611f50565b91505092915050565b5f8115159050919050565b611fa381611f8f565b82525050565b5f602082019050611fbc5f830184611f9a565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61200482611fc2565b61200e8185611fcc565b935061201e818560208601611fdc565b61202781611fea565b840191505092915050565b5f6020820190508181035f83015261204a8184611ffa565b905092915050565b5f819050919050565b61206481612052565b811461206e575f80fd5b50565b5f8135905061207f8161205b565b92915050565b5f6020828403121561209a57612099611f07565b5b5f6120a784828501612071565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6120d9826120b0565b9050919050565b6120e9816120cf565b82525050565b5f6020820190506121025f8301846120e0565b92915050565b612111816120cf565b811461211b575f80fd5b50565b5f8135905061212c81612108565b92915050565b5f806040838503121561214857612147611f07565b5b5f6121558582860161211e565b925050602061216685828601612071565b9150509250929050565b61217981612052565b82525050565b5f6020820190506121925f830184612170565b92915050565b5f805f606084860312156121af576121ae611f07565b5b5f6121bc8682870161211e565b93505060206121cd8682870161211e565b92505060406121de86828701612071565b9150509250925092565b5f80604083850312156121fe576121fd611f07565b5b5f61220b85828601612071565b925050602061221c85828601612071565b9150509250929050565b5f6040820190506122395f8301856120e0565b6122466020830184612170565b9392505050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61228b82611fea565b810181811067ffffffffffffffff821117156122aa576122a9612255565b5b80604052505050565b5f6122bc611efe565b90506122c88282612282565b919050565b5f67ffffffffffffffff8211156122e7576122e6612255565b5b6122f082611fea565b9050602081019050919050565b828183375f83830152505050565b5f61231d612318846122cd565b6122b3565b90508281526020810184848401111561233957612338612251565b5b6123448482856122fd565b509392505050565b5f82601f8301126123605761235f61224d565b5b813561237084826020860161230b565b91505092915050565b5f6020828403121561238e5761238d611f07565b5b5f82013567ffffffffffffffff8111156123ab576123aa611f0b565b5b6123b78482850161234c565b91505092915050565b5f602082840312156123d5576123d4611f07565b5b5f6123e28482850161211e565b91505092915050565b6123f481611f8f565b81146123fe575f80fd5b50565b5f8135905061240f816123eb565b92915050565b5f806040838503121561242b5761242a611f07565b5b5f6124388582860161211e565b925050602061244985828601612401565b9150509250929050565b5f67ffffffffffffffff82111561246d5761246c612255565b5b61247682611fea565b9050602081019050919050565b5f61249561249084612453565b6122b3565b9050828152602081018484840111156124b1576124b0612251565b5b6124bc8482856122fd565b509392505050565b5f82601f8301126124d8576124d761224d565b5b81356124e8848260208601612483565b91505092915050565b5f805f806080858703121561250957612508611f07565b5b5f6125168782880161211e565b94505060206125278782880161211e565b935050604061253887828801612071565b925050606085013567ffffffffffffffff81111561255957612558611f0b565b5b612565878288016124c4565b91505092959194509250565b5f806040838503121561258757612586611f07565b5b5f6125948582860161211e565b92505060206125a58582860161211e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6125e682612052565b91506125f183612052565b9250828203905081811115612609576126086125af565b5b92915050565b5f6060820190506126225f830186612170565b61262f60208301856120e0565b61263c6040830184612170565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61267b82612052565b915061268683612052565b92508261269657612695612644565b5b828206905092915050565b5f6126ab82612052565b91506126b683612052565b92508282026126c481612052565b915082820484148315176126db576126da6125af565b5b5092915050565b5f6126ec82612052565b91506126f783612052565b92508261270757612706612644565b5b828204905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f612746600983611fcc565b915061275182612712565b602082019050919050565b5f6020820190508181035f8301526127738161273a565b9050919050565b5f61278482612052565b915061278f83612052565b92508282019050808211156127a7576127a66125af565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f6127e1600e83611fcc565b91506127ec826127ad565b602082019050919050565b5f6020820190508181035f83015261280e816127d5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061285957607f821691505b60208210810361286c5761286b612815565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026128ce7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612893565b6128d88683612893565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61291361290e61290984612052565b6128f0565b612052565b9050919050565b5f819050919050565b61292c836128f9565b6129406129388261291a565b84845461289f565b825550505050565b5f90565b612954612948565b61295f818484612923565b505050565b5b81811015612982576129775f8261294c565b600181019050612965565b5050565b601f8211156129c75761299881612872565b6129a184612884565b810160208510156129b0578190505b6129c46129bc85612884565b830182612964565b50505b505050565b5f82821c905092915050565b5f6129e75f19846008026129cc565b1980831691505092915050565b5f6129ff83836129d8565b9150826002028217905092915050565b612a1882611fc2565b67ffffffffffffffff811115612a3157612a30612255565b5b612a3b8254612842565b612a46828285612986565b5f60209050601f831160018114612a77575f8415612a65578287015190505b612a6f85826129f4565b865550612ad6565b601f198416612a8586612872565b5f5b82811015612aac57848901518255600182019150602085019450602081019050612a87565b86831015612ac95784890151612ac5601f8916826129d8565b8355505b6001600288020188555050505b505050505050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612b12600883611fcc565b9150612b1d82612ade565b602082019050919050565b5f6020820190508181035f830152612b3f81612b06565b9050919050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f612b7a600c83611fcc565b9150612b8582612b46565b602082019050919050565b5f6020820190508181035f830152612ba781612b6e565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f612bec600783612bae565b9150612bf782612bb8565b600782019050919050565b5f612c0c82611fc2565b612c168185612bae565b9350612c26818560208601611fdc565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f612c66600183612bae565b9150612c7182612c32565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612cb0600583612bae565b9150612cbb82612c7c565b600582019050919050565b5f612cd082612be0565b9150612cdc8285612c02565b9150612ce782612c5a565b9150612cf38284612c02565b9150612cfe82612ca4565b91508190509392505050565b7f4f7574206f6620626f756e6473000000000000000000000000000000000000005f82015250565b5f612d3e600d83611fcc565b9150612d4982612d0a565b602082019050919050565b5f6020820190508181035f830152612d6b81612d32565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220089f573632c89b906623e2993bc8f3d507bff1b84ee937d47774dd596afb422a64736f6c634300081a0033000000000000000000000000fdbb99c27528b1110251a0403ddd8dc74b18796400000000000000000000000000000000000000000000000000000000000002b2
Deployed Bytecode
0x608060405260043610610184575f3560e01c80636352211e116100d0578063a0712d6811610089578063bf8fbbd211610063578063bf8fbbd2146106a0578063c87b56dd146106ca578063e985e9c514610706578063f14695ae146107425761021f565b8063a0712d6814610634578063a22cb46514610650578063b88d4fde146106785761021f565b80636352211e1461050257806370a082311461053e5780638da5cb5b1461057a5780638ef1e259146105a457806395d89b41146105e057806398710d1e1461060a5761021f565b80632a55205a1161013d5780633ccfd60b116101175780633ccfd60b1461046057806342842e0e1461047657806347064d6a1461049e578063609526c2146104c65761021f565b80632a55205a146103d15780632fbba1151461040e57806332cb6b0c146104365761021f565b806301ffc9a7146102b557806306fdde03146102f1578063081812fc1461031b578063095ea7b31461035757806318160ddd1461037f57806323b872dd146103a95761021f565b3661021f575f600b61019b5f600b8054905061077e565b815481106101ac576101ab611ed1565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f1935050505015801561021d573d5f803e3d5ffd5b005b5f600b6102315f600b8054905061077e565b8154811061024257610241611ed1565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f193505050501580156102b3573d5f803e3d5ffd5b005b3480156102c0575f80fd5b506102db60048036038101906102d69190611f64565b6107d5565b6040516102e89190611fa9565b60405180910390f35b3480156102fc575f80fd5b50610305610866565b6040516103129190612032565b60405180910390f35b348015610326575f80fd5b50610341600480360381019061033c9190612085565b6108a3565b60405161034e91906120ef565b60405180910390f35b348015610362575f80fd5b5061037d60048036038101906103789190612132565b61091b565b005b34801561038a575f80fd5b50610393610a8f565b6040516103a0919061217f565b60405180910390f35b3480156103b4575f80fd5b506103cf60048036038101906103ca9190612198565b610aa1565b005b3480156103dc575f80fd5b506103f760048036038101906103f291906121e8565b610ab1565b604051610405929190612226565b60405180910390f35b348015610419575f80fd5b50610434600480360381019061042f9190612085565b610c8c565b005b348015610441575f80fd5b5061044a610d7e565b604051610457919061217f565b60405180910390f35b34801561046b575f80fd5b50610474610d84565b005b348015610481575f80fd5b5061049c60048036038101906104979190612198565b610e5e565b005b3480156104a9575f80fd5b506104c460048036038101906104bf9190612379565b610e7d565b005b3480156104d1575f80fd5b506104ec60048036038101906104e791906121e8565b61077e565b6040516104f9919061217f565b60405180910390f35b34801561050d575f80fd5b5061052860048036038101906105239190612085565b610f1f565b60405161053591906120ef565b60405180910390f35b348015610549575f80fd5b50610564600480360381019061055f91906123c0565b610f30565b604051610571919061217f565b60405180910390f35b348015610585575f80fd5b5061058e610fc1565b60405161059b91906120ef565b60405180910390f35b3480156105af575f80fd5b506105ca60048036038101906105c591906123c0565b610fe9565b6040516105d79190611fa9565b60405180910390f35b3480156105eb575f80fd5b506105f4611006565b6040516106019190612032565b60405180910390f35b348015610615575f80fd5b5061061e611043565b60405161062b919061217f565b60405180910390f35b61064e60048036038101906106499190612085565b611048565b005b34801561065b575f80fd5b5061067660048036038101906106719190612415565b61110e565b005b348015610683575f80fd5b5061069e600480360381019061069991906124f1565b611280565b005b3480156106ab575f80fd5b506106b4611291565b6040516106c1919061217f565b60405180910390f35b3480156106d5575f80fd5b506106f060048036038101906106eb9190612085565b61129d565b6040516106fd9190612032565b60405180910390f35b348015610711575f80fd5b5061072c60048036038101906107279190612571565b6113b9565b6040516107399190611fa9565b60405180910390f35b34801561074d575f80fd5b5061076860048036038101906107639190612085565b611447565b60405161077591906120ef565b60405180910390f35b5f8060014361078d91906125dc565b90505f8133866040516020016107a59392919061260f565b60405160208183030381529060405280519060200120905083815f1c6107cb9190612671565b9250505092915050565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600c81526020017f436f6d706c657820546573740000000000000000000000000000000000000000815250905090565b5f6108ad82611482565b6108e3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60075f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610925826114a2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361095e575f80fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097d611566565b73ffffffffffffffffffffffffffffffffffffffff16146109e0576109a9816109a4611566565b6113b9565b6109df576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260075f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610a9861156d565b60045403905090565b610aac838383611571565b505050565b5f805f60015f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1603610c39575f6040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f610c4261193b565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610c6e91906126a1565b610c7891906126e2565b9050815f0151819350935050509250929050565b3373ffffffffffffffffffffffffffffffffffffffff1660025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d129061275c565b60405180910390fd5b61157c81610d27610a8f565b610d31919061277a565b10610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d68906127f7565b60405180910390fd5b610d7b3382611944565b50565b61157c81565b3373ffffffffffffffffffffffffffffffffffffffff1660025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a9061275c565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610e5a573d5f803e3d5ffd5b5050565b610e7883838360405180602001604052805f815250611280565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f039061275c565b60405180910390fd5b8060039081610f1b9190612a0f565b5050565b5f610f29826114a2565b9050919050565b5f80610f3b83611a99565b03610f72576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600581526020017f4354455354000000000000000000000000000000000000000000000000000000815250905090565b600581565b5f611051611566565b905061157c8261105f610a8f565b611069919061277a565b11156110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190612b28565b60405180910390fd5b346703782dace9d90000836110bf91906126a1565b1115611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790612b90565b60405180910390fd5b61110a8183611944565b5050565b611116611566565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361117a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060085f611186611566565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661122f611566565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112749190611fa9565b60405180910390a35050565b61128b848484611571565b50505050565b6703782dace9d9000081565b60606112a882611482565b6112de576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600380546112ec90612842565b80601f016020809104026020016040519081016040528092919081815260200182805461131890612842565b80156113635780601f1061133a57610100808354040283529160200191611363565b820191905f5260205f20905b81548152906001019060200180831161134657829003601f168201915b505050505090505f8151036113865760405180602001604052805f8152506113b1565b8061139084611aa2565b6040516020016113a1929190612cc6565b6040516020818303038152906040525b915050919050565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600b8181548110611456575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8161148c61156d565b1115801561149b575060045482105b9050919050565b5f80829050806114b061156d565b1161152f5760045481101561152e575f60055f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361152c575b5f81036115225760055f836001900393508381526020019081526020015f205490506114fb565b8092505050611561565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f90565b5f61157d82606461077e565b905061119460095410156115dd575f6101f460095461159c91906126e2565b60056115a891906126a1565b603c6115b491906125dc565b9050808210156115db575f9350600160095f8282546115d3919061277a565b925050819055505b505b5f6115e7836114a2565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461164e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60075f8581526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8673ffffffffffffffffffffffffffffffffffffffff166116a2611566565b73ffffffffffffffffffffffffffffffffffffffff1614806116d157506116d0876116cb611566565b6113b9565b5b8061170e57506116df611566565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611747576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61175183611a99565b1461178a5760075f8681526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60065f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61184b88611a99565b171760055f8781526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008416036118ca575f6001860190505f60055f8381526020019081526020015f2054036118c85760045481146118c7578360055f8381526020019081526020015f20819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119328787876001611afc565b50505050505050565b5f612710905090565b5f60045490505f8203611983576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e16119e560018414611d71565b901b60a042901b6119f585611a99565b171760055f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611a1757816004819055505050611a945f848385611afc565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611ae857600183039250600a81066030018353600a81049050611ac8565b508181036020830392508083525050919050565b5f339050600a5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611b6057506032611b5d82610f30565b10155b15611c1b576001600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600b81908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600a5f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611c7957506032611c7782610f30565b105b15611d6a575f600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f5b600b80549050811015611d68578173ffffffffffffffffffffffffffffffffffffffff16600b8281548110611d0c57611d0b611ed1565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d5b57611d5a600b82611d7a565b5b8080600101915050611cd4565b505b5050505050565b5f819050919050565b80828054905011611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db790612d54565b60405180910390fd5b5f8190505b60018380549050611dd691906125dc565b811015611e895782600182611deb919061277a565b81548110611dfc57611dfb611ed1565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838281548110611e3757611e36611ed1565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080600101915050611dc5565b5081805480611e9b57611e9a612d72565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590555050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f4381611f0f565b8114611f4d575f80fd5b50565b5f81359050611f5e81611f3a565b92915050565b5f60208284031215611f7957611f78611f07565b5b5f611f8684828501611f50565b91505092915050565b5f8115159050919050565b611fa381611f8f565b82525050565b5f602082019050611fbc5f830184611f9a565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61200482611fc2565b61200e8185611fcc565b935061201e818560208601611fdc565b61202781611fea565b840191505092915050565b5f6020820190508181035f83015261204a8184611ffa565b905092915050565b5f819050919050565b61206481612052565b811461206e575f80fd5b50565b5f8135905061207f8161205b565b92915050565b5f6020828403121561209a57612099611f07565b5b5f6120a784828501612071565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6120d9826120b0565b9050919050565b6120e9816120cf565b82525050565b5f6020820190506121025f8301846120e0565b92915050565b612111816120cf565b811461211b575f80fd5b50565b5f8135905061212c81612108565b92915050565b5f806040838503121561214857612147611f07565b5b5f6121558582860161211e565b925050602061216685828601612071565b9150509250929050565b61217981612052565b82525050565b5f6020820190506121925f830184612170565b92915050565b5f805f606084860312156121af576121ae611f07565b5b5f6121bc8682870161211e565b93505060206121cd8682870161211e565b92505060406121de86828701612071565b9150509250925092565b5f80604083850312156121fe576121fd611f07565b5b5f61220b85828601612071565b925050602061221c85828601612071565b9150509250929050565b5f6040820190506122395f8301856120e0565b6122466020830184612170565b9392505050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61228b82611fea565b810181811067ffffffffffffffff821117156122aa576122a9612255565b5b80604052505050565b5f6122bc611efe565b90506122c88282612282565b919050565b5f67ffffffffffffffff8211156122e7576122e6612255565b5b6122f082611fea565b9050602081019050919050565b828183375f83830152505050565b5f61231d612318846122cd565b6122b3565b90508281526020810184848401111561233957612338612251565b5b6123448482856122fd565b509392505050565b5f82601f8301126123605761235f61224d565b5b813561237084826020860161230b565b91505092915050565b5f6020828403121561238e5761238d611f07565b5b5f82013567ffffffffffffffff8111156123ab576123aa611f0b565b5b6123b78482850161234c565b91505092915050565b5f602082840312156123d5576123d4611f07565b5b5f6123e28482850161211e565b91505092915050565b6123f481611f8f565b81146123fe575f80fd5b50565b5f8135905061240f816123eb565b92915050565b5f806040838503121561242b5761242a611f07565b5b5f6124388582860161211e565b925050602061244985828601612401565b9150509250929050565b5f67ffffffffffffffff82111561246d5761246c612255565b5b61247682611fea565b9050602081019050919050565b5f61249561249084612453565b6122b3565b9050828152602081018484840111156124b1576124b0612251565b5b6124bc8482856122fd565b509392505050565b5f82601f8301126124d8576124d761224d565b5b81356124e8848260208601612483565b91505092915050565b5f805f806080858703121561250957612508611f07565b5b5f6125168782880161211e565b94505060206125278782880161211e565b935050604061253887828801612071565b925050606085013567ffffffffffffffff81111561255957612558611f0b565b5b612565878288016124c4565b91505092959194509250565b5f806040838503121561258757612586611f07565b5b5f6125948582860161211e565b92505060206125a58582860161211e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6125e682612052565b91506125f183612052565b9250828203905081811115612609576126086125af565b5b92915050565b5f6060820190506126225f830186612170565b61262f60208301856120e0565b61263c6040830184612170565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61267b82612052565b915061268683612052565b92508261269657612695612644565b5b828206905092915050565b5f6126ab82612052565b91506126b683612052565b92508282026126c481612052565b915082820484148315176126db576126da6125af565b5b5092915050565b5f6126ec82612052565b91506126f783612052565b92508261270757612706612644565b5b828204905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f612746600983611fcc565b915061275182612712565b602082019050919050565b5f6020820190508181035f8301526127738161273a565b9050919050565b5f61278482612052565b915061278f83612052565b92508282019050808211156127a7576127a66125af565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f6127e1600e83611fcc565b91506127ec826127ad565b602082019050919050565b5f6020820190508181035f83015261280e816127d5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061285957607f821691505b60208210810361286c5761286b612815565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026128ce7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612893565b6128d88683612893565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61291361290e61290984612052565b6128f0565b612052565b9050919050565b5f819050919050565b61292c836128f9565b6129406129388261291a565b84845461289f565b825550505050565b5f90565b612954612948565b61295f818484612923565b505050565b5b81811015612982576129775f8261294c565b600181019050612965565b5050565b601f8211156129c75761299881612872565b6129a184612884565b810160208510156129b0578190505b6129c46129bc85612884565b830182612964565b50505b505050565b5f82821c905092915050565b5f6129e75f19846008026129cc565b1980831691505092915050565b5f6129ff83836129d8565b9150826002028217905092915050565b612a1882611fc2565b67ffffffffffffffff811115612a3157612a30612255565b5b612a3b8254612842565b612a46828285612986565b5f60209050601f831160018114612a77575f8415612a65578287015190505b612a6f85826129f4565b865550612ad6565b601f198416612a8586612872565b5f5b82811015612aac57848901518255600182019150602085019450602081019050612a87565b86831015612ac95784890151612ac5601f8916826129d8565b8355505b6001600288020188555050505b505050505050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612b12600883611fcc565b9150612b1d82612ade565b602082019050919050565b5f6020820190508181035f830152612b3f81612b06565b9050919050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f612b7a600c83611fcc565b9150612b8582612b46565b602082019050919050565b5f6020820190508181035f830152612ba781612b6e565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f612bec600783612bae565b9150612bf782612bb8565b600782019050919050565b5f612c0c82611fc2565b612c168185612bae565b9350612c26818560208601611fdc565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f612c66600183612bae565b9150612c7182612c32565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612cb0600583612bae565b9150612cbb82612c7c565b600582019050919050565b5f612cd082612be0565b9150612cdc8285612c02565b9150612ce782612c5a565b9150612cf38284612c02565b9150612cfe82612ca4565b91508190509392505050565b7f4f7574206f6620626f756e6473000000000000000000000000000000000000005f82015250565b5f612d3e600d83611fcc565b9150612d4982612d0a565b602082019050919050565b5f6020820190508181035f830152612d6b81612d32565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea2646970667358221220089f573632c89b906623e2993bc8f3d507bff1b84ee937d47774dd596afb422a64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000fdbb99c27528b1110251a0403ddd8dc74b18796400000000000000000000000000000000000000000000000000000000000002b2
-----Decoded View---------------
Arg [0] : royaltyReceiver_ (address): 0xFDBb99c27528B1110251A0403DDd8dc74B187964
Arg [1] : royaltyFeeNumerator_ (uint96): 690
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000fdbb99c27528b1110251a0403ddd8dc74b187964
Arg [1] : 00000000000000000000000000000000000000000000000000000000000002b2
Deployed Bytecode Sourcemap
22638:23052:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40410:14;40427:5;40433:37;40454:1;40457:5;:12;;;;40433:20;:37::i;:::-;40427:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40410:61;;40482:20;40513:6;40482:38;;40531:4;:13;;:24;40545:9;40531:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22638:23052;40609:14;40626:5;40632:37;40653:1;40656:5;:12;;;;40632:20;:37::i;:::-;40626:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40609:61;;40681:20;40712:6;40681:38;;40730:4;:13;;:24;40744:9;40730:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27305:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31531:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33198:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32681:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26548:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34084:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3244:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;45166:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22765:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45542:145;;;;;;;;;;;;;:::i;:::-;;34345:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25837:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44850:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31320:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28003:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23223:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37413:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31700:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22813:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23308:267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33474:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34621:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22867:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31818:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33853:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37459:22;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44850:308;44931:7;44951:19;44988:1;44973:12;:16;;;;:::i;:::-;44951:38;;45033:17;45074:11;45087:10;45099:7;45063:44;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45053:55;;;;;;45033:75;;45147:3;45134:9;45126:18;;:24;;;;:::i;:::-;45119:31;;;;44850:308;;;;:::o;27305:634::-;27409:4;27724:10;27709:25;;:11;:25;;;;:102;;;;27801:10;27786:25;;:11;:25;;;;27709:102;:179;;;;27878:10;27863:25;;:11;:25;;;;27709:179;27689:199;;27305:634;;;:::o;31531:100::-;31585:13;31618:5;;;;;;;;;;;;;;;;;31611:12;;31531:100;:::o;33198:204::-;33266:7;33291:16;33299:7;33291;:16::i;:::-;33286:64;;33316:34;;;;;;;;;;;;;;33286:64;33370:15;:24;33386:7;33370:24;;;;;;;;;;;;;;;;;;;;;33363:31;;33198:204;;;:::o;32681:451::-;32754:13;32786:27;32805:7;32786:18;:27::i;:::-;32754:61;;32836:5;32830:11;;:2;:11;;;32826:25;;32843:8;;;32826:25;32891:5;32868:28;;:19;:17;:19::i;:::-;:28;;;32864:175;;32916:44;32933:5;32940:19;:17;:19::i;:::-;32916:16;:44::i;:::-;32911:128;;32988:35;;;;;;;;;;;;;;32911:128;32864:175;33078:2;33051:15;:24;33067:7;33051:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33116:7;33112:2;33096:28;;33105:5;33096:28;;;;;;;;;;;;32743:389;32681:451;;:::o;26548:300::-;26601:7;26814:15;:13;:15::i;:::-;26798:13;;:31;26791:38;;26548:300;:::o;34084:190::-;34238:28;34248:4;34254:2;34258:7;34238:9;:28::i;:::-;34084:190;;;:::o;3244:438::-;3339:7;3348;3368:26;3397:17;:26;3415:7;3397:26;;;;;;;;;;;3368:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3468:1;3440:30;;:7;:16;;;:30;;;3436:92;;3497:19;3487:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3436:92;3540:21;3604:17;:15;:17::i;:::-;3564:57;;3577:7;:23;;;3565:35;;:9;:35;;;;:::i;:::-;3564:57;;;;:::i;:::-;3540:81;;3642:7;:16;;;3660:13;3634:40;;;;;;3244:438;;;;;:::o;45166:169::-;45392:10;45384:18;;:6;;;;;;;;;;;:18;;;45376:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;22802:4:::1;45253:6;45237:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;45229:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45302:25;45308:10;45320:6;45302:5;:25::i;:::-;45166:169:::0;:::o;22765:41::-;22802:4;22765:41;:::o;45542:145::-;45392:10;45384:18;;:6;;;;;;;;;;;:18;;;45376:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;45592:15:::1;45610:21;45592:39;;45650:10;45642:28;;:37;45671:7;45642:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;45581:106;45542:145::o:0;34345:205::-;34503:39;34520:4;34526:2;34530:7;34503:39;;;;;;;;;;;;:16;:39::i;:::-;34345:205;;;:::o;25837:91::-;45392:10;45384:18;;:6;;;;;;;;;;;:18;;;45376:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;25915:5:::1;25904:8;:16;;;;;;:::i;:::-;;25837:91:::0;:::o;31320:144::-;31384:7;31427:27;31446:7;31427:18;:27::i;:::-;31404:52;;31320:144;;;:::o;28003:234::-;28067:7;28119:1;28091:24;28109:5;28091:17;:24::i;:::-;:29;28087:70;;28129:28;;;;;;;;;;;;;;28087:70;23688:13;28175:18;:25;28194:5;28175:25;;;;;;;;;;;;;;;;:54;28168:61;;28003:234;;;:::o;23223:77::-;23260:7;23286:6;;;;;;;;;;;23279:13;;23223:77;:::o;37413:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;31700:104::-;31756:13;31789:7;;;;;;;;;;;;;;;;;31782:14;;31700:104;:::o;22813:47::-;22859:1;22813:47;:::o;23308:267::-;23365:15;23383:19;:17;:19::i;:::-;23365:37;;22802:4;23439:6;23423:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;23415:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23506:9;22898:10;23491:6;:11;;;;:::i;:::-;:24;;23483:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;23545:22;23551:7;23560:6;23545:5;:22::i;:::-;23354:221;23308:267;:::o;33474:308::-;33585:19;:17;:19::i;:::-;33573:31;;:8;:31;;;33569:61;;33613:17;;;;;;;;;;;;;;33569:61;33695:8;33643:18;:39;33662:19;:17;:19::i;:::-;33643:39;;;;;;;;;;;;;;;:49;33683:8;33643:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33755:8;33719:55;;33734:19;:17;:19::i;:::-;33719:55;;;33765:8;33719:55;;;;;;:::i;:::-;;;;;;;;33474:308;;:::o;34621:227::-;34812:28;34822:4;34828:2;34832:7;34812:9;:28::i;:::-;34621:227;;;;:::o;22867:41::-;22898:10;22867:41;:::o;31818:339::-;31891:13;31922:16;31930:7;31922;:16::i;:::-;31917:59;;31947:29;;;;;;;;;;;;;;31917:59;31987:21;32011:8;31987:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32062:1;32043:7;32037:21;:26;:112;;;;;;;;;;;;;;;;;32101:7;32115:18;32125:7;32115:9;:18::i;:::-;32073:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32037:112;32030:119;;;31818:339;;;:::o;33853:164::-;33950:4;33974:18;:25;33993:5;33974:25;;;;;;;;;;;;;;;:35;34000:8;33974:35;;;;;;;;;;;;;;;;;;;;;;;;;33967:42;;33853:164;;;;:::o;37459:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35103:168::-;35160:4;35216:7;35197:15;:13;:15::i;:::-;:26;;:66;;;;;35250:13;;35240:7;:23;35197:66;35177:86;;35103:168;;;:::o;28835:1129::-;28902:7;28922:12;28937:7;28922:22;;29005:4;28986:15;:13;:15::i;:::-;:23;28982:915;;29039:13;;29032:4;:20;29028:869;;;29077:14;29094:17;:23;29112:4;29094:23;;;;;;;;;;;;29077:40;;29210:1;24458:8;29183:6;:23;:28;29179:699;;29702:113;29719:1;29709:6;:11;29702:113;;29762:17;:25;29780:6;;;;;;;29762:25;;;;;;;;;;;;29753:34;;29702:113;;;29848:6;29841:13;;;;;;29179:699;29054:843;29028:869;28982:915;29925:31;;;;;;;;;;;;;;28835:1129;;;;:::o;42749:105::-;42809:7;42836:10;42829:17;;42749:105;:::o;26071:92::-;26127:7;26071:92;:::o;37488:2877::-;37625:9;37637:34;37658:7;37667:3;37637:20;:34::i;:::-;37625:46;;37748:4;37739:6;;:13;37736:197;;;37769:16;37806:3;37799:6;;:10;;;;:::i;:::-;37794:1;:16;;;;:::i;:::-;37788:2;:23;;;;:::i;:::-;37769:42;;37834:8;37830:1;:12;37826:96;;;37876:1;37863:15;;37905:1;37897:6;;:9;;;;;;;:::i;:::-;;;;;;;;37826:96;37754:179;37736:197;37945:27;37975;37994:7;37975:18;:27::i;:::-;37945:57;;38060:4;38019:45;;38035:19;38019:45;;;38015:86;;38073:28;;;;;;;;;;;;;;38015:86;38114:23;38140:15;:24;38156:7;38140:24;;;;;;;;;;;;;;;;;;;;;38114:50;;38177:22;38226:4;38203:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;38251:43;38268:4;38274:19;:17;:19::i;:::-;38251:16;:43::i;:::-;38203:91;:150;;;;38334:19;:17;:19::i;:::-;38315:38;;:15;:38;;;38203:150;38177:177;;38372:17;38367:66;;38398:35;;;;;;;;;;;;;;38367:66;38543:1;38505:34;38523:15;38505:17;:34::i;:::-;:39;38501:103;;38568:15;:24;38584:7;38568:24;;;;;;;;;;;;38561:31;;;;;;;;;;;38501:103;38971:18;:24;38990:4;38971:24;;;;;;;;;;;;;;;;38969:26;;;;;;;;;;;;39040:18;:22;39059:2;39040:22;;;;;;;;;;;;;;;;39038:24;;;;;;;;;;;24736:8;24342:3;39421:15;:41;;39379:21;39397:2;39379:17;:21::i;:::-;:84;:128;39333:17;:26;39351:7;39333:26;;;;;;;;;;;:174;;;;39677:1;24736:8;39627:19;:46;:51;39623:626;;39699:19;39731:1;39721:7;:11;39699:33;;39888:1;39854:17;:30;39872:11;39854:30;;;;;;;;;;;;:35;39850:384;;39992:13;;39977:11;:28;39973:242;;40172:19;40139:17;:30;40157:11;40139:30;;;;;;;;;;;:52;;;;39973:242;39850:384;39680:569;39623:626;40296:7;40292:2;40277:27;;40286:4;40277:27;;;;;;;;;;;;40315:42;40336:4;40342:2;40346:7;40355:1;40315:20;:42::i;:::-;37612:2753;;;;37488:2877;;;:::o;3964:97::-;4022:6;4048:5;4041:12;;3964:97;:::o;35536:1596::-;35601:20;35624:13;;35601:36;;35735:1;35723:8;:13;35719:44;;35745:18;;;;;;;;;;;;;;35719:44;36308:1;23825:2;36279:1;:25;;36278:31;36266:8;:44;36240:18;:22;36259:2;36240:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;24601:3;36709:29;36736:1;36724:8;:13;36709:14;:29::i;:::-;:56;;24342:3;36646:15;:41;;36604:21;36622:2;36604:17;:21::i;:::-;:84;:162;36553:17;:31;36571:12;36553:31;;;;;;;;;;;:213;;;;36783:20;36806:12;36783:35;;36833:11;36862:8;36847:12;:23;36833:37;;36887:111;36939:14;;;;;;36935:2;36914:40;;36931:1;36914:40;;;;;;;;;;;;36993:3;36978:12;:18;36887:111;;37030:12;37014:13;:28;;;;36017:1037;;37064:60;37093:1;37097:2;37101:12;37115:8;37064:20;:60::i;:::-;35590:1542;35536:1596;;:::o;32242:148::-;32306:14;32367:5;32357:15;;32242:148;;;:::o;42960:1882::-;43017:17;43438:3;43431:4;43425:11;43421:21;43414:28;;43525:3;43519:4;43512:17;43625:3;44061:5;44193:1;44188:3;44184:11;44177:18;;44332:2;44326:4;44322:13;44318:2;44314:22;44309:3;44301:36;44374:2;44368:4;44364:13;44356:21;;43958:661;44390:4;43958:661;;;44558:1;44553:3;44549:11;44542:18;;44602:2;44596:4;44592:13;44588:2;44584:22;44579:3;44571:36;44475:2;44469:4;44465:13;44457:21;;43958:661;;;43962:427;44651:3;44646;44642:13;44760:2;44755:3;44751:12;44744:19;;44817:6;44812:3;44805:19;43056:1779;;42960:1882;;;:::o;41791:753::-;41990:15;42008:10;41990:28;;42042:7;:16;42050:7;42042:16;;;;;;;;;;;;;;;;;;;;;;;;;42041:17;:43;;;;;42082:2;42062:18;42072:7;42062:9;:18::i;:::-;:22;;42041:43;42037:156;;;42127:4;42108:7;:16;42116:7;42108:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;42154:5;42165:7;42154:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42037:156;42215:7;:16;42223:7;42215:16;;;;;;;;;;;;;;;;;;;;;;;;;:41;;;;;42254:2;42235:18;42245:7;42235:9;:18::i;:::-;:21;42215:41;42211:318;;;42299:5;42280:7;:16;42288:7;42280:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;42331:6;42327:183;42345:5;:12;;;;42341:1;:16;42327:183;;;42404:7;42394:17;;:5;42400:1;42394:8;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:17;;;42390:97;;42443:16;42450:5;42457:1;42443:6;:16::i;:::-;42390:97;42359:3;;;;;;;42327:183;;;;42211:318;41971:573;41791:753;;;;:::o;32477:142::-;32535:14;32596:5;32586:15;;32477:142;;;:::o;41425:358::-;41524:5;41509;:12;;;;:20;41501:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;41636:9;41648:5;41636:17;;41631:99;41674:1;41659:5;:12;;;;:16;;;;:::i;:::-;41655:1;:20;41631:99;;;41708:5;41716:1;41714;:3;;;;:::i;:::-;41708:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41697:5;41703:1;41697:8;;;;;;;;:::i;:::-;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41677:3;;;;;;;41631:99;;;;41740:5;:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;41425:358;;:::o;7:180:1:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:75;226:6;259:2;253:9;243:19;;193:75;:::o;274:117::-;383:1;380;373:12;397:117;506:1;503;496:12;520:149;556:7;596:66;589:5;585:78;574:89;;520:149;;;:::o;675:120::-;747:23;764:5;747:23;:::i;:::-;740:5;737:34;727:62;;785:1;782;775:12;727:62;675:120;:::o;801:137::-;846:5;884:6;871:20;862:29;;900:32;926:5;900:32;:::i;:::-;801:137;;;;:::o;944:327::-;1002:6;1051:2;1039:9;1030:7;1026:23;1022:32;1019:119;;;1057:79;;:::i;:::-;1019:119;1177:1;1202:52;1246:7;1237:6;1226:9;1222:22;1202:52;:::i;:::-;1192:62;;1148:116;944:327;;;;:::o;1277:90::-;1311:7;1354:5;1347:13;1340:21;1329:32;;1277:90;;;:::o;1373:109::-;1454:21;1469:5;1454:21;:::i;:::-;1449:3;1442:34;1373:109;;:::o;1488:210::-;1575:4;1613:2;1602:9;1598:18;1590:26;;1626:65;1688:1;1677:9;1673:17;1664:6;1626:65;:::i;:::-;1488:210;;;;:::o;1704:99::-;1756:6;1790:5;1784:12;1774:22;;1704:99;;;:::o;1809:169::-;1893:11;1927:6;1922:3;1915:19;1967:4;1962:3;1958:14;1943:29;;1809:169;;;;:::o;1984:139::-;2073:6;2068:3;2063;2057:23;2114:1;2105:6;2100:3;2096:16;2089:27;1984:139;;;:::o;2129:102::-;2170:6;2221:2;2217:7;2212:2;2205:5;2201:14;2197:28;2187:38;;2129:102;;;:::o;2237:377::-;2325:3;2353:39;2386:5;2353:39;:::i;:::-;2408:71;2472:6;2467:3;2408:71;:::i;:::-;2401:78;;2488:65;2546:6;2541:3;2534:4;2527:5;2523:16;2488:65;:::i;:::-;2578:29;2600:6;2578:29;:::i;:::-;2573:3;2569:39;2562:46;;2329:285;2237:377;;;;:::o;2620:313::-;2733:4;2771:2;2760:9;2756:18;2748:26;;2820:9;2814:4;2810:20;2806:1;2795:9;2791:17;2784:47;2848:78;2921:4;2912:6;2848:78;:::i;:::-;2840:86;;2620:313;;;;:::o;2939:77::-;2976:7;3005:5;2994:16;;2939:77;;;:::o;3022:122::-;3095:24;3113:5;3095:24;:::i;:::-;3088:5;3085:35;3075:63;;3134:1;3131;3124:12;3075:63;3022:122;:::o;3150:139::-;3196:5;3234:6;3221:20;3212:29;;3250:33;3277:5;3250:33;:::i;:::-;3150:139;;;;:::o;3295:329::-;3354:6;3403:2;3391:9;3382:7;3378:23;3374:32;3371:119;;;3409:79;;:::i;:::-;3371:119;3529:1;3554:53;3599:7;3590:6;3579:9;3575:22;3554:53;:::i;:::-;3544:63;;3500:117;3295:329;;;;:::o;3630:126::-;3667:7;3707:42;3700:5;3696:54;3685:65;;3630:126;;;:::o;3762:96::-;3799:7;3828:24;3846:5;3828:24;:::i;:::-;3817:35;;3762:96;;;:::o;3864:118::-;3951:24;3969:5;3951:24;:::i;:::-;3946:3;3939:37;3864:118;;:::o;3988:222::-;4081:4;4119:2;4108:9;4104:18;4096:26;;4132:71;4200:1;4189:9;4185:17;4176:6;4132:71;:::i;:::-;3988:222;;;;:::o;4216:122::-;4289:24;4307:5;4289:24;:::i;:::-;4282:5;4279:35;4269:63;;4328:1;4325;4318:12;4269:63;4216:122;:::o;4344:139::-;4390:5;4428:6;4415:20;4406:29;;4444:33;4471:5;4444:33;:::i;:::-;4344:139;;;;:::o;4489:474::-;4557:6;4565;4614:2;4602:9;4593:7;4589:23;4585:32;4582:119;;;4620:79;;:::i;:::-;4582:119;4740:1;4765:53;4810:7;4801:6;4790:9;4786:22;4765:53;:::i;:::-;4755:63;;4711:117;4867:2;4893:53;4938:7;4929:6;4918:9;4914:22;4893:53;:::i;:::-;4883:63;;4838:118;4489:474;;;;;:::o;4969:118::-;5056:24;5074:5;5056:24;:::i;:::-;5051:3;5044:37;4969:118;;:::o;5093:222::-;5186:4;5224:2;5213:9;5209:18;5201:26;;5237:71;5305:1;5294:9;5290:17;5281:6;5237:71;:::i;:::-;5093:222;;;;:::o;5321:619::-;5398:6;5406;5414;5463:2;5451:9;5442:7;5438:23;5434:32;5431:119;;;5469:79;;:::i;:::-;5431:119;5589:1;5614:53;5659:7;5650:6;5639:9;5635:22;5614:53;:::i;:::-;5604:63;;5560:117;5716:2;5742:53;5787:7;5778:6;5767:9;5763:22;5742:53;:::i;:::-;5732:63;;5687:118;5844:2;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5815:118;5321:619;;;;;:::o;5946:474::-;6014:6;6022;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:53;6267:7;6258:6;6247:9;6243:22;6222:53;:::i;:::-;6212:63;;6168:117;6324:2;6350:53;6395:7;6386:6;6375:9;6371:22;6350:53;:::i;:::-;6340:63;;6295:118;5946:474;;;;;:::o;6426:332::-;6547:4;6585:2;6574:9;6570:18;6562:26;;6598:71;6666:1;6655:9;6651:17;6642:6;6598:71;:::i;:::-;6679:72;6747:2;6736:9;6732:18;6723:6;6679:72;:::i;:::-;6426:332;;;;;:::o;6764:117::-;6873:1;6870;6863:12;6887:117;6996:1;6993;6986:12;7010:180;7058:77;7055:1;7048:88;7155:4;7152:1;7145:15;7179:4;7176:1;7169:15;7196:281;7279:27;7301:4;7279:27;:::i;:::-;7271:6;7267:40;7409:6;7397:10;7394:22;7373:18;7361:10;7358:34;7355:62;7352:88;;;7420:18;;:::i;:::-;7352:88;7460:10;7456:2;7449:22;7239:238;7196:281;;:::o;7483:129::-;7517:6;7544:20;;:::i;:::-;7534:30;;7573:33;7601:4;7593:6;7573:33;:::i;:::-;7483:129;;;:::o;7618:308::-;7680:4;7770:18;7762:6;7759:30;7756:56;;;7792:18;;:::i;:::-;7756:56;7830:29;7852:6;7830:29;:::i;:::-;7822:37;;7914:4;7908;7904:15;7896:23;;7618:308;;;:::o;7932:148::-;8030:6;8025:3;8020;8007:30;8071:1;8062:6;8057:3;8053:16;8046:27;7932:148;;;:::o;8086:425::-;8164:5;8189:66;8205:49;8247:6;8205:49;:::i;:::-;8189:66;:::i;:::-;8180:75;;8278:6;8271:5;8264:21;8316:4;8309:5;8305:16;8354:3;8345:6;8340:3;8336:16;8333:25;8330:112;;;8361:79;;:::i;:::-;8330:112;8451:54;8498:6;8493:3;8488;8451:54;:::i;:::-;8170:341;8086:425;;;;;:::o;8531:340::-;8587:5;8636:3;8629:4;8621:6;8617:17;8613:27;8603:122;;8644:79;;:::i;:::-;8603:122;8761:6;8748:20;8786:79;8861:3;8853:6;8846:4;8838:6;8834:17;8786:79;:::i;:::-;8777:88;;8593:278;8531:340;;;;:::o;8877:509::-;8946:6;8995:2;8983:9;8974:7;8970:23;8966:32;8963:119;;;9001:79;;:::i;:::-;8963:119;9149:1;9138:9;9134:17;9121:31;9179:18;9171:6;9168:30;9165:117;;;9201:79;;:::i;:::-;9165:117;9306:63;9361:7;9352:6;9341:9;9337:22;9306:63;:::i;:::-;9296:73;;9092:287;8877:509;;;;:::o;9392:329::-;9451:6;9500:2;9488:9;9479:7;9475:23;9471:32;9468:119;;;9506:79;;:::i;:::-;9468:119;9626:1;9651:53;9696:7;9687:6;9676:9;9672:22;9651:53;:::i;:::-;9641:63;;9597:117;9392:329;;;;:::o;9727:116::-;9797:21;9812:5;9797:21;:::i;:::-;9790:5;9787:32;9777:60;;9833:1;9830;9823:12;9777:60;9727:116;:::o;9849:133::-;9892:5;9930:6;9917:20;9908:29;;9946:30;9970:5;9946:30;:::i;:::-;9849:133;;;;:::o;9988:468::-;10053:6;10061;10110:2;10098:9;10089:7;10085:23;10081:32;10078:119;;;10116:79;;:::i;:::-;10078:119;10236:1;10261:53;10306:7;10297:6;10286:9;10282:22;10261:53;:::i;:::-;10251:63;;10207:117;10363:2;10389:50;10431:7;10422:6;10411:9;10407:22;10389:50;:::i;:::-;10379:60;;10334:115;9988:468;;;;;:::o;10462:307::-;10523:4;10613:18;10605:6;10602:30;10599:56;;;10635:18;;:::i;:::-;10599:56;10673:29;10695:6;10673:29;:::i;:::-;10665:37;;10757:4;10751;10747:15;10739:23;;10462:307;;;:::o;10775:423::-;10852:5;10877:65;10893:48;10934:6;10893:48;:::i;:::-;10877:65;:::i;:::-;10868:74;;10965:6;10958:5;10951:21;11003:4;10996:5;10992:16;11041:3;11032:6;11027:3;11023:16;11020:25;11017:112;;;11048:79;;:::i;:::-;11017:112;11138:54;11185:6;11180:3;11175;11138:54;:::i;:::-;10858:340;10775:423;;;;;:::o;11217:338::-;11272:5;11321:3;11314:4;11306:6;11302:17;11298:27;11288:122;;11329:79;;:::i;:::-;11288:122;11446:6;11433:20;11471:78;11545:3;11537:6;11530:4;11522:6;11518:17;11471:78;:::i;:::-;11462:87;;11278:277;11217:338;;;;:::o;11561:943::-;11656:6;11664;11672;11680;11729:3;11717:9;11708:7;11704:23;11700:33;11697:120;;;11736:79;;:::i;:::-;11697:120;11856:1;11881:53;11926:7;11917:6;11906:9;11902:22;11881:53;:::i;:::-;11871:63;;11827:117;11983:2;12009:53;12054:7;12045:6;12034:9;12030:22;12009:53;:::i;:::-;11999:63;;11954:118;12111:2;12137:53;12182:7;12173:6;12162:9;12158:22;12137:53;:::i;:::-;12127:63;;12082:118;12267:2;12256:9;12252:18;12239:32;12298:18;12290:6;12287:30;12284:117;;;12320:79;;:::i;:::-;12284:117;12425:62;12479:7;12470:6;12459:9;12455:22;12425:62;:::i;:::-;12415:72;;12210:287;11561:943;;;;;;;:::o;12510:474::-;12578:6;12586;12635:2;12623:9;12614:7;12610:23;12606:32;12603:119;;;12641:79;;:::i;:::-;12603:119;12761:1;12786:53;12831:7;12822:6;12811:9;12807:22;12786:53;:::i;:::-;12776:63;;12732:117;12888:2;12914:53;12959:7;12950:6;12939:9;12935:22;12914:53;:::i;:::-;12904:63;;12859:118;12510:474;;;;;:::o;12990:180::-;13038:77;13035:1;13028:88;13135:4;13132:1;13125:15;13159:4;13156:1;13149:15;13176:194;13216:4;13236:20;13254:1;13236:20;:::i;:::-;13231:25;;13270:20;13288:1;13270:20;:::i;:::-;13265:25;;13314:1;13311;13307:9;13299:17;;13338:1;13332:4;13329:11;13326:37;;;13343:18;;:::i;:::-;13326:37;13176:194;;;;:::o;13376:442::-;13525:4;13563:2;13552:9;13548:18;13540:26;;13576:71;13644:1;13633:9;13629:17;13620:6;13576:71;:::i;:::-;13657:72;13725:2;13714:9;13710:18;13701:6;13657:72;:::i;:::-;13739;13807:2;13796:9;13792:18;13783:6;13739:72;:::i;:::-;13376:442;;;;;;:::o;13824:180::-;13872:77;13869:1;13862:88;13969:4;13966:1;13959:15;13993:4;13990:1;13983:15;14010:176;14042:1;14059:20;14077:1;14059:20;:::i;:::-;14054:25;;14093:20;14111:1;14093:20;:::i;:::-;14088:25;;14132:1;14122:35;;14137:18;;:::i;:::-;14122:35;14178:1;14175;14171:9;14166:14;;14010:176;;;;:::o;14192:410::-;14232:7;14255:20;14273:1;14255:20;:::i;:::-;14250:25;;14289:20;14307:1;14289:20;:::i;:::-;14284:25;;14344:1;14341;14337:9;14366:30;14384:11;14366:30;:::i;:::-;14355:41;;14545:1;14536:7;14532:15;14529:1;14526:22;14506:1;14499:9;14479:83;14456:139;;14575:18;;:::i;:::-;14456:139;14240:362;14192:410;;;;:::o;14608:185::-;14648:1;14665:20;14683:1;14665:20;:::i;:::-;14660:25;;14699:20;14717:1;14699:20;:::i;:::-;14694:25;;14738:1;14728:35;;14743:18;;:::i;:::-;14728:35;14785:1;14782;14778:9;14773:14;;14608:185;;;;:::o;14799:159::-;14939:11;14935:1;14927:6;14923:14;14916:35;14799:159;:::o;14964:365::-;15106:3;15127:66;15191:1;15186:3;15127:66;:::i;:::-;15120:73;;15202:93;15291:3;15202:93;:::i;:::-;15320:2;15315:3;15311:12;15304:19;;14964:365;;;:::o;15335:419::-;15501:4;15539:2;15528:9;15524:18;15516:26;;15588:9;15582:4;15578:20;15574:1;15563:9;15559:17;15552:47;15616:131;15742:4;15616:131;:::i;:::-;15608:139;;15335:419;;;:::o;15760:191::-;15800:3;15819:20;15837:1;15819:20;:::i;:::-;15814:25;;15853:20;15871:1;15853:20;:::i;:::-;15848:25;;15896:1;15893;15889:9;15882:16;;15917:3;15914:1;15911:10;15908:36;;;15924:18;;:::i;:::-;15908:36;15760:191;;;;:::o;15957:164::-;16097:16;16093:1;16085:6;16081:14;16074:40;15957:164;:::o;16127:366::-;16269:3;16290:67;16354:2;16349:3;16290:67;:::i;:::-;16283:74;;16366:93;16455:3;16366:93;:::i;:::-;16484:2;16479:3;16475:12;16468:19;;16127:366;;;:::o;16499:419::-;16665:4;16703:2;16692:9;16688:18;16680:26;;16752:9;16746:4;16742:20;16738:1;16727:9;16723:17;16716:47;16780:131;16906:4;16780:131;:::i;:::-;16772:139;;16499:419;;;:::o;16924:180::-;16972:77;16969:1;16962:88;17069:4;17066:1;17059:15;17093:4;17090:1;17083:15;17110:320;17154:6;17191:1;17185:4;17181:12;17171:22;;17238:1;17232:4;17228:12;17259:18;17249:81;;17315:4;17307:6;17303:17;17293:27;;17249:81;17377:2;17369:6;17366:14;17346:18;17343:38;17340:84;;17396:18;;:::i;:::-;17340:84;17161:269;17110:320;;;:::o;17436:141::-;17485:4;17508:3;17500:11;;17531:3;17528:1;17521:14;17565:4;17562:1;17552:18;17544:26;;17436:141;;;:::o;17583:93::-;17620:6;17667:2;17662;17655:5;17651:14;17647:23;17637:33;;17583:93;;;:::o;17682:107::-;17726:8;17776:5;17770:4;17766:16;17745:37;;17682:107;;;;:::o;17795:393::-;17864:6;17914:1;17902:10;17898:18;17937:97;17967:66;17956:9;17937:97;:::i;:::-;18055:39;18085:8;18074:9;18055:39;:::i;:::-;18043:51;;18127:4;18123:9;18116:5;18112:21;18103:30;;18176:4;18166:8;18162:19;18155:5;18152:30;18142:40;;17871:317;;17795:393;;;;;:::o;18194:60::-;18222:3;18243:5;18236:12;;18194:60;;;:::o;18260:142::-;18310:9;18343:53;18361:34;18370:24;18388:5;18370:24;:::i;:::-;18361:34;:::i;:::-;18343:53;:::i;:::-;18330:66;;18260:142;;;:::o;18408:75::-;18451:3;18472:5;18465:12;;18408:75;;;:::o;18489:269::-;18599:39;18630:7;18599:39;:::i;:::-;18660:91;18709:41;18733:16;18709:41;:::i;:::-;18701:6;18694:4;18688:11;18660:91;:::i;:::-;18654:4;18647:105;18565:193;18489:269;;;:::o;18764:73::-;18809:3;18764:73;:::o;18843:189::-;18920:32;;:::i;:::-;18961:65;19019:6;19011;19005:4;18961:65;:::i;:::-;18896:136;18843:189;;:::o;19038:186::-;19098:120;19115:3;19108:5;19105:14;19098:120;;;19169:39;19206:1;19199:5;19169:39;:::i;:::-;19142:1;19135:5;19131:13;19122:22;;19098:120;;;19038:186;;:::o;19230:543::-;19331:2;19326:3;19323:11;19320:446;;;19365:38;19397:5;19365:38;:::i;:::-;19449:29;19467:10;19449:29;:::i;:::-;19439:8;19435:44;19632:2;19620:10;19617:18;19614:49;;;19653:8;19638:23;;19614:49;19676:80;19732:22;19750:3;19732:22;:::i;:::-;19722:8;19718:37;19705:11;19676:80;:::i;:::-;19335:431;;19320:446;19230:543;;;:::o;19779:117::-;19833:8;19883:5;19877:4;19873:16;19852:37;;19779:117;;;;:::o;19902:169::-;19946:6;19979:51;20027:1;20023:6;20015:5;20012:1;20008:13;19979:51;:::i;:::-;19975:56;20060:4;20054;20050:15;20040:25;;19953:118;19902:169;;;;:::o;20076:295::-;20152:4;20298:29;20323:3;20317:4;20298:29;:::i;:::-;20290:37;;20360:3;20357:1;20353:11;20347:4;20344:21;20336:29;;20076:295;;;;:::o;20376:1395::-;20493:37;20526:3;20493:37;:::i;:::-;20595:18;20587:6;20584:30;20581:56;;;20617:18;;:::i;:::-;20581:56;20661:38;20693:4;20687:11;20661:38;:::i;:::-;20746:67;20806:6;20798;20792:4;20746:67;:::i;:::-;20840:1;20864:4;20851:17;;20896:2;20888:6;20885:14;20913:1;20908:618;;;;21570:1;21587:6;21584:77;;;21636:9;21631:3;21627:19;21621:26;21612:35;;21584:77;21687:67;21747:6;21740:5;21687:67;:::i;:::-;21681:4;21674:81;21543:222;20878:887;;20908:618;20960:4;20956:9;20948:6;20944:22;20994:37;21026:4;20994:37;:::i;:::-;21053:1;21067:208;21081:7;21078:1;21075:14;21067:208;;;21160:9;21155:3;21151:19;21145:26;21137:6;21130:42;21211:1;21203:6;21199:14;21189:24;;21258:2;21247:9;21243:18;21230:31;;21104:4;21101:1;21097:12;21092:17;;21067:208;;;21303:6;21294:7;21291:19;21288:179;;;21361:9;21356:3;21352:19;21346:26;21404:48;21446:4;21438:6;21434:17;21423:9;21404:48;:::i;:::-;21396:6;21389:64;21311:156;21288:179;21513:1;21509;21501:6;21497:14;21493:22;21487:4;21480:36;20915:611;;;20878:887;;20468:1303;;;20376:1395;;:::o;21777:158::-;21917:10;21913:1;21905:6;21901:14;21894:34;21777:158;:::o;21941:365::-;22083:3;22104:66;22168:1;22163:3;22104:66;:::i;:::-;22097:73;;22179:93;22268:3;22179:93;:::i;:::-;22297:2;22292:3;22288:12;22281:19;;21941:365;;;:::o;22312:419::-;22478:4;22516:2;22505:9;22501:18;22493:26;;22565:9;22559:4;22555:20;22551:1;22540:9;22536:17;22529:47;22593:131;22719:4;22593:131;:::i;:::-;22585:139;;22312:419;;;:::o;22737:162::-;22877:14;22873:1;22865:6;22861:14;22854:38;22737:162;:::o;22905:366::-;23047:3;23068:67;23132:2;23127:3;23068:67;:::i;:::-;23061:74;;23144:93;23233:3;23144:93;:::i;:::-;23262:2;23257:3;23253:12;23246:19;;22905:366;;;:::o;23277:419::-;23443:4;23481:2;23470:9;23466:18;23458:26;;23530:9;23524:4;23520:20;23516:1;23505:9;23501:17;23494:47;23558:131;23684:4;23558:131;:::i;:::-;23550:139;;23277:419;;;:::o;23702:148::-;23804:11;23841:3;23826:18;;23702:148;;;;:::o;23856:161::-;23996:9;23992:1;23984:6;23980:14;23973:33;23856:161;:::o;24027:416::-;24187:3;24212:84;24294:1;24289:3;24212:84;:::i;:::-;24205:91;;24309:93;24398:3;24309:93;:::i;:::-;24431:1;24426:3;24422:11;24415:18;;24027:416;;;:::o;24453:410::-;24559:3;24591:39;24624:5;24591:39;:::i;:::-;24650:89;24732:6;24727:3;24650:89;:::i;:::-;24643:96;;24752:65;24810:6;24805:3;24798:4;24791:5;24787:16;24752:65;:::i;:::-;24846:6;24841:3;24837:16;24830:23;;24563:300;24453:410;;;;:::o;24873:159::-;25017:3;25013:1;25005:6;25001:14;24994:27;24873:159;:::o;25042:416::-;25202:3;25227:84;25309:1;25304:3;25227:84;:::i;:::-;25220:91;;25324:93;25413:3;25324:93;:::i;:::-;25446:1;25441:3;25437:11;25430:18;;25042:416;;;:::o;25468:163::-;25612:7;25608:1;25600:6;25596:14;25589:31;25468:163;:::o;25641:416::-;25801:3;25826:84;25908:1;25903:3;25826:84;:::i;:::-;25819:91;;25923:93;26012:3;25923:93;:::i;:::-;26045:1;26040:3;26036:11;26029:18;;25641:416;;;:::o;26067:1261::-;26550:3;26576:148;26720:3;26576:148;:::i;:::-;26569:155;;26745:95;26836:3;26827:6;26745:95;:::i;:::-;26738:102;;26861:148;27005:3;26861:148;:::i;:::-;26854:155;;27030:95;27121:3;27112:6;27030:95;:::i;:::-;27023:102;;27146:148;27290:3;27146:148;:::i;:::-;27139:155;;27315:3;27308:10;;26067:1261;;;;;:::o;27338:171::-;27482:15;27478:1;27470:6;27466:14;27459:39;27338:171;:::o;27519:382::-;27661:3;27686:67;27750:2;27745:3;27686:67;:::i;:::-;27679:74;;27766:93;27855:3;27766:93;:::i;:::-;27888:2;27883:3;27879:12;27872:19;;27519:382;;;:::o;27911:435::-;28077:4;28119:2;28108:9;28104:18;28096:26;;28172:9;28166:4;28162:20;28158:1;28147:9;28143:17;28136:47;28204:131;28330:4;28204:131;:::i;:::-;28196:139;;27911:435;;;:::o;28356:196::-;28408:77;28405:1;28398:88;28509:4;28506:1;28499:15;28537:4;28534:1;28527:15
Swarm Source
ipfs://089f573632c89b906623e2993bc8f3d507bff1b84ee937d47774dd596afb422a
[ 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.