ERC-721
Overview
Max Total Supply
1,111 naka
Holders
177
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 nakaLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
xmigos
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity Multiple files format)
//&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&&&&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&&&&&&&&&&&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&&&&&&@@@@@*****************************@@@@@&&&&&&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&@@@@@***************************************@@@@@&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&@@@@@***************************************@@@@@&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&@@@@@#######################################@@@@@&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&@@@@@#######################################@@@@@&&&&&&&&&&&&&& //&&&&&&&&&&&&&%%%%@@@@@*****#####%%%%%////#####%%%%%/////#####@@@@@%%%%&&&&&&&&&& //&&&&&&&&&&&&&%%%%@@@@@*****#####%%%%%////#####%%%%%/////#####@@@@@%%%%&&&&&&&&&& //&&&&&&&&&&&&&%%%%@@@@@*****#####/////%%%%#####/////%%%%%#####@@@@@%%%%&&&&&&&&&& //&&&&&&&&&&&&&%%%%@@@@@*****#####/////%%%%#####/////%%%%%#####@@@@@%%%%&&&&&&&&&& //&&&&&&&&&&&&&%%%%@@@@@*****##################################@@@@@%%%%&&&&&&&&&& //&&&&&&&&&&&&&%%%%@@@@@*****##################################@@@@@%%%%&&&&&&&&&& //&&&&&&&&&&&&&%%%%@@@@@***************************************@@@@@%%%%&&&&&&&&&& //&&&&&&&&&&&&&%%%%@@@@@***************************************@@@@@%%%%&&&&&&&&&& //&&&&&&&&&&&&&&&&&@@@@@***************@@@@@@@@@@@@@@**********@@@@@&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&@@@@@***************@@@@@@@@@@@@@@**********@@@@@&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&&&&&&@@@@@*****************************@@@@@&&&&&&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&&&&&&@@@@@*****************************@@@@@&&&&&&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@*********((((((((((@@@@@&&&&&&&&&&&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@*********((((((((((@@@@@&&&&&&&&&&&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@**************/////@@@@@@@@@@&&&&&&&&&&&&&&&&&&& //&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@**************/////@@@@@@@@@@&&&&&&&&&&&&&&&&&&& //&&&&&&&&&&&&@@@@@@@@@@%%%%%%%%%%@@@@@**************@@@@@#####@@@@@&&&&&&&&&&&&&& //&&&&&&&&&&&&@@@@@@@@@@%%%%%%%%%%@@@@@**************@@@@@#####@@@@@&&&&&&&&&&&&&& //&&&&&&&&@@@@&%%%%%%%%%###############@@@@@@@@@@@@@@##############&@@@@&&&&&&&&&& //&&&@@@@@%%%%%############################@@@@@########################@@@@@&&&&& //&&&@@@@@%%%%%############################@@@@@########################@@@@@&&&&& //&&&@@@@@%%%%%############################@@@@@###############%%%%%####@@@@@&&&&& //&&&@@@@@%%%%%############################@@@@@###############%%%%%####@@@@@&&&&& //&&&@@@@@%%%%%####@@@@@###################@@@@@##########%%%%%@@@@&####@@@@@&&&&& //&&&@@@@@%%%%%####@@@@@###################@@@@@##########%%%%%@@@@&####@@@@@&&&&& //&&&@@@@@%%%%%####@@@@@###################@@@@@##########%%%%%@@@@&####@@@@@&&&&& //&&&@@@@@%%%%%####@@@@@###################@@@@@##########%%%%%@@@@&####@@@@@&&&&& //&&&@@@@@%%%%%####@@@@@###################@@@@@##########%%%%%@@@@&####@@@@@&&&&& //&&&@@@@@%%%%%####@@@@@###################@@@@@##########%%%%%@@@@&####@@@@@&&&&& // SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import {Ownable} from "Ownable.sol"; import {ERC721A} from "ERC721A.sol"; import {OperatorFilterer} from "OperatorFilterer.sol"; error MintingNotLive(); error MintExceedsMaxSupply(); error FreeMintLimitReached(); error PaidMintLimitReached(); error FreeLimitReached(); error InsufficientPayment(); contract xmigos is ERC721A, OperatorFilterer, Ownable { // Variables bool public MintingLive = false; uint256 public MAX_SUPPLY = 1111; uint256 public free_max_supply = 50; uint256 public MAX_PER_TX_FREE = 1; uint256 public PAID_Mint_PRICE = 0.002 ether; uint256 public PAID_Mint_LIMIT = 10; string public baseURI; bool public operatorFilteringEnabled; // Constructor constructor(string memory baseURI_) ERC721A("XMigos", "naka") { _registerForOperatorFiltering(); operatorFilteringEnabled = true; baseURI = baseURI_; } function setApprovalForAll( address operator, bool approved ) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve( address operator, uint256 tokenId ) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function setOperatorFilteringEnabled(bool value) public onlyOwner { operatorFilteringEnabled = value; } function _operatorFilteringEnabled() internal view override returns (bool) { return operatorFilteringEnabled; } // Modifiers modifier nonContract() { require(tx.origin == msg.sender, "Sorry Contract Mintors"); _; } // Mint function paused() public onlyOwner { MintingLive = !MintingLive; } function MINT(uint256 qty) external payable nonContract { if (!MintingLive) revert MintingNotLive(); if (_totalMinted() + qty > MAX_SUPPLY) revert MintExceedsMaxSupply(); if (qty > PAID_Mint_LIMIT) revert PaidMintLimitReached(); if(free_max_supply >= totalSupply()){ require(MAX_PER_TX_FREE >= qty , "Excess max per free tx"); }else{ require(PAID_Mint_LIMIT >= qty , "Excess max per paid tx"); require(qty * PAID_Mint_PRICE == msg.value, "Invalid funds provided"); } _mint(msg.sender, qty); } function MAXMINT() external payable nonContract { if (!MintingLive) revert MintingNotLive(); if (_totalMinted() + 10 > MAX_SUPPLY) revert MintExceedsMaxSupply(); if (10 > PAID_Mint_LIMIT) revert PaidMintLimitReached(); _mint(msg.sender, 10); } function collectreserves() external onlyOwner { _mint(msg.sender, 50); } function airdrop(address addr, uint256 amount) public onlyOwner { require(totalSupply() + amount <= MAX_SUPPLY); _safeMint(addr, amount); } function configPAID_Mint_PRICE(uint256 newPAID_Mint_PRICE) public onlyOwner { PAID_Mint_PRICE = newPAID_Mint_PRICE; } function configfree_max_supply(uint256 newfree_max_supply) public onlyOwner { free_max_supply = newfree_max_supply; } // Token URI function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory uri) external onlyOwner { baseURI = uri; } // Withdraw function withdraw() external onlyOwner { require( payable(owner()).send(address(this).balance), "Not Happening" ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import 'IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @notice Optimized and flexible operator filterer to abide to OpenSea's /// mandatory on-chain royalty enforcement in order for new collections to /// receive royalties. /// For more information, see: /// See: https://github.com/ProjectOpenSea/operator-filter-registry abstract contract OperatorFilterer { /// @dev The default OpenSea operator blocklist subscription. address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; /// @dev The OpenSea operator filter registry. address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E; /// @dev Registers the current contract to OpenSea's operator filter, /// and subscribe to the default OpenSea operator blocklist. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering() internal virtual { _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true); } /// @dev Registers the current contract to OpenSea's operator filter. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe) internal virtual { /// @solidity memory-safe-assembly assembly { let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`. // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty. subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy)) for {} iszero(subscribe) {} { if iszero(subscriptionOrRegistrantToCopy) { functionSelector := 0x4420e486 // `register(address)`. break } functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`. break } // Store the function selector. mstore(0x00, shl(224, functionSelector)) // Store the `address(this)`. mstore(0x04, address()) // Store the `subscriptionOrRegistrantToCopy`. mstore(0x24, subscriptionOrRegistrantToCopy) // Register into the registry. if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) { // If the function selector has not been overwritten, // it is an out-of-gas error. if eq(shr(224, mload(0x00)), functionSelector) { // To prevent gas under-estimation. revert(0, 0) } } // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, because of Solidity's memory size limits. mstore(0x24, 0) } } /// @dev Modifier to guard a function and revert if the caller is a blocked operator. modifier onlyAllowedOperator(address from) virtual { if (from != msg.sender) { if (!_isPriorityOperator(msg.sender)) { if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender); } } _; } /// @dev Modifier to guard a function from approving a blocked operator.. modifier onlyAllowedOperatorApproval(address operator) virtual { if (!_isPriorityOperator(operator)) { if (_operatorFilteringEnabled()) _revertIfBlocked(operator); } _; } /// @dev Helper function that reverts if the `operator` is blocked by the registry. function _revertIfBlocked(address operator) private view { /// @solidity memory-safe-assembly assembly { // Store the function selector of `isOperatorAllowed(address,address)`, // shifted left by 6 bytes, which is enough for 8tb of memory. // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL). mstore(0x00, 0xc6171134001122334455) // Store the `address(this)`. mstore(0x1a, address()) // Store the `operator`. mstore(0x3a, operator) // `isOperatorAllowed` always returns true if it does not revert. if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) { // Bubble up the revert if the staticcall reverts. returndatacopy(0x00, 0x00, returndatasize()) revert(0x00, returndatasize()) } // We'll skip checking if `from` is inside the blacklist. // Even though that can block transferring out of wrapper contracts, // we don't want tokens to be stuck. // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, if less than 8tb of memory is used. mstore(0x3a, 0) } } /// @dev For deriving contracts to override, so that operator filtering /// can be turned on / off. /// Returns true by default. function _operatorFilteringEnabled() internal view virtual returns (bool) { return true; } /// @dev For deriving contracts to override, so that preferred marketplaces can /// skip operator filtering, helping users save gas. /// Returns false for all inputs by default. function _isPriorityOperator(address) internal view virtual returns (bool) { return false; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintExceedsMaxSupply","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintingNotLive","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"PaidMintLimitReached","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAXMINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","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":"uint256","name":"qty","type":"uint256"}],"name":"MINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MintingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_Mint_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_Mint_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectreserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPAID_Mint_PRICE","type":"uint256"}],"name":"configPAID_Mint_PRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newfree_max_supply","type":"uint256"}],"name":"configfree_max_supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"free_max_supply","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600860146101000a81548160ff0219169083151502179055506104576009556032600a556001600b5566071afd498d0000600c55600a600d553480156200004c57600080fd5b506040516200398d3803806200398d833981810160405281019062000072919062000487565b6040518060400160405280600681526020017f584d69676f7300000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f6e616b61000000000000000000000000000000000000000000000000000000008152508160029081620000ef919062000723565b50806003908162000101919062000723565b50620001126200017e60201b60201c565b60008190555050506200013a6200012e6200018360201b60201c565b6200018b60201b60201c565b6200014a6200025160201b60201c565b6001600f60006101000a81548160ff02191690831515021790555080600e908162000176919062000723565b50506200080a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000278733cc6cdda760b79bafa08df41ecfa224f810dceb660016200027a60201b60201c565b565b637d3e3dbe8260601b60601c925081620002a95782620002a157634420e4869050620002a9565b63a0af290390505b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af1620002ea578060005160e01c03620002e957600080fd5b5b6000602452505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200035d8262000312565b810181811067ffffffffffffffff821117156200037f576200037e62000323565b5b80604052505050565b600062000394620002f4565b9050620003a2828262000352565b919050565b600067ffffffffffffffff821115620003c557620003c462000323565b5b620003d08262000312565b9050602081019050919050565b60005b83811015620003fd578082015181840152602081019050620003e0565b60008484015250505050565b6000620004206200041a84620003a7565b62000388565b9050828152602081018484840111156200043f576200043e6200030d565b5b6200044c848285620003dd565b509392505050565b600082601f8301126200046c576200046b62000308565b5b81516200047e84826020860162000409565b91505092915050565b600060208284031215620004a0576200049f620002fe565b5b600082015167ffffffffffffffff811115620004c157620004c062000303565b5b620004cf8482850162000454565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052b57607f821691505b602082108103620005415762000540620004e3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005ab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200056c565b620005b786836200056c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000604620005fe620005f884620005cf565b620005d9565b620005cf565b9050919050565b6000819050919050565b6200062083620005e3565b620006386200062f826200060b565b84845462000579565b825550505050565b600090565b6200064f62000640565b6200065c81848462000615565b505050565b5b8181101562000684576200067860008262000645565b60018101905062000662565b5050565b601f821115620006d3576200069d8162000547565b620006a8846200055c565b81016020851015620006b8578190505b620006d0620006c7856200055c565b83018262000661565b50505b505050565b600082821c905092915050565b6000620006f860001984600802620006d8565b1980831691505092915050565b6000620007138383620006e5565b9150826002028217905092915050565b6200072e82620004d8565b67ffffffffffffffff8111156200074a576200074962000323565b5b62000756825462000512565b6200076382828562000688565b600060209050601f8311600181146200079b576000841562000786578287015190505b62000792858262000705565b86555062000802565b601f198416620007ab8662000547565b60005b82811015620007d557848901518255600182019150602085019450602081019050620007ae565b86831015620007f55784890151620007f1601f891682620006e5565b8355505b6001600288020188555050505b505050505050565b613173806200081a6000396000f3fe6080604052600436106102045760003560e01c80636c0360eb11610118578063b7c0b8e8116100a0578063d60fba9d1161006f578063d60fba9d146106a7578063e985e9c5146106d2578063ea63f5891461070f578063f2fde38b14610738578063fb796e6c1461076157610204565b8063b7c0b8e8146105fc578063b88d4fde14610625578063c87b56dd14610641578063d476de1b1461067e57610204565b80638da5cb5b116100e75780638da5cb5b1461053b578063952ed1e61461056657806395d89b411461057d578063a22cb465146105a8578063aff1f573146105d157610204565b80636c0360eb1461049357806370a08231146104be578063715018a6146104fb5780638ba4cc3c1461051257610204565b806332cb6b0c1161019b578063463fff791161016a578063463fff79146103cf57806355f804b3146103fa5780635c975abb146104235780636352211e1461043a578063655433201461047757610204565b806332cb6b0c146103675780633ccfd60b146103925780633d8a5660146103a957806342842e0e146103b357610204565b806318160ddd116101d757806318160ddd146102ca57806323b872dd146102f557806326e987d7146103115780632b2b632a1461033c57610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906122f8565b61078c565b60405161023d9190612340565b60405180910390f35b34801561025257600080fd5b5061025b61081e565b60405161026891906123eb565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612443565b6108b0565b6040516102a591906124b1565b60405180910390f35b6102c860048036038101906102c391906124f8565b61092f565b005b3480156102d657600080fd5b506102df610964565b6040516102ec9190612547565b60405180910390f35b61030f600480360381019061030a9190612562565b61097b565b005b34801561031d57600080fd5b506103266109e6565b6040516103339190612547565b60405180910390f35b34801561034857600080fd5b506103516109ec565b60405161035e9190612547565b60405180910390f35b34801561037357600080fd5b5061037c6109f2565b6040516103899190612547565b60405180910390f35b34801561039e57600080fd5b506103a76109f8565b005b6103b1610a7d565b005b6103cd60048036038101906103c89190612562565b610bca565b005b3480156103db57600080fd5b506103e4610c35565b6040516103f19190612547565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c91906126ea565b610c3b565b005b34801561042f57600080fd5b50610438610c56565b005b34801561044657600080fd5b50610461600480360381019061045c9190612443565b610c8a565b60405161046e91906124b1565b60405180910390f35b610491600480360381019061048c9190612443565b610c9c565b005b34801561049f57600080fd5b506104a8610ed6565b6040516104b591906123eb565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190612733565b610f64565b6040516104f29190612547565b60405180910390f35b34801561050757600080fd5b5061051061101c565b005b34801561051e57600080fd5b50610539600480360381019061053491906124f8565b611030565b005b34801561054757600080fd5b50610550611067565b60405161055d91906124b1565b60405180910390f35b34801561057257600080fd5b5061057b611091565b005b34801561058957600080fd5b506105926110a6565b60405161059f91906123eb565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca919061278c565b611138565b005b3480156105dd57600080fd5b506105e661116d565b6040516105f39190612340565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e91906127cc565b611180565b005b61063f600480360381019061063a919061289a565b6111a5565b005b34801561064d57600080fd5b5061066860048036038101906106639190612443565b611212565b60405161067591906123eb565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190612443565b6112b0565b005b3480156106b357600080fd5b506106bc6112c2565b6040516106c99190612547565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f4919061291d565b6112c8565b6040516107069190612340565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190612443565b61135c565b005b34801561074457600080fd5b5061075f600480360381019061075a9190612733565b61136e565b005b34801561076d57600080fd5b506107766113f1565b6040516107839190612340565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108175750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461082d9061298c565b80601f01602080910402602001604051908101604052809291908181526020018280546108599061298c565b80156108a65780601f1061087b576101008083540402835291602001916108a6565b820191906000526020600020905b81548152906001019060200180831161088957829003601f168201915b5050505050905090565b60006108bb82611404565b6108f1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161093981611463565b6109555761094561146a565b156109545761095381611481565b5b5b61095f83836114c5565b505050565b600061096e611609565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109d5576109b833611463565b6109d4576109c461146a565b156109d3576109d233611481565b5b5b5b6109e084848461160e565b50505050565b600a5481565b600d5481565b60095481565b610a00611930565b610a08611067565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290612a09565b60405180910390fd5b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae290612a75565b60405180910390fd5b600860149054906101000a900460ff16610b31576040517ff28e00cd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600954600a610b3e6119ae565b610b489190612ac4565b1115610b80576040517f3e0866c700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d54600a1115610bbd576040517f35a9ba0a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bc833600a6119c1565b565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c2457610c0733611463565b610c2357610c1361146a565b15610c2257610c2133611481565b5b5b5b610c2f848484611b7c565b50505050565b600b5481565b610c43611930565b80600e9081610c529190612ca4565b5050565b610c5e611930565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6000610c9582611b9c565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190612a75565b60405180910390fd5b600860149054906101000a900460ff16610d50576040517ff28e00cd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60095481610d5c6119ae565b610d669190612ac4565b1115610d9e576040517f3e0866c700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d54811115610dda576040517f35a9ba0a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610de2610964565b600a5410610e345780600b541015610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690612dc2565b60405180910390fd5b610ec9565b80600d541015610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090612e2e565b60405180910390fd5b34600c5482610e889190612e4e565b14610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90612edc565b60405180910390fd5b5b610ed333826119c1565b50565b600e8054610ee39061298c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0f9061298c565b8015610f5c5780601f10610f3157610100808354040283529160200191610f5c565b820191906000526020600020905b815481529060010190602001808311610f3f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fcb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611024611930565b61102e6000611c68565b565b611038611930565b60095481611044610964565b61104e9190612ac4565b111561105957600080fd5b6110638282611d2e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611099611930565b6110a43360326119c1565b565b6060600380546110b59061298c565b80601f01602080910402602001604051908101604052809291908181526020018280546110e19061298c565b801561112e5780601f106111035761010080835404028352916020019161112e565b820191906000526020600020905b81548152906001019060200180831161111157829003601f168201915b5050505050905090565b8161114281611463565b61115e5761114e61146a565b1561115d5761115c81611481565b5b5b6111688383611d4c565b505050565b600860149054906101000a900460ff1681565b611188611930565b80600f60006101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111ff576111e233611463565b6111fe576111ee61146a565b156111fd576111fc33611481565b5b5b5b61120b85858585611e57565b5050505050565b606061121d82611404565b611253576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061125d611eca565b9050600081510361127d57604051806020016040528060008152506112a8565b8061128784611f5c565b604051602001611298929190612f38565b6040516020818303038152906040525b915050919050565b6112b8611930565b80600a8190555050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611364611930565b80600c8190555050565b611376611930565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90612fce565b60405180910390fd5b6113ee81611c68565b50565b600f60009054906101000a900460ff1681565b60008161140f611609565b1115801561141e575060005482105b801561145c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000919050565b6000600f60009054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6114bd573d6000803e3d6000fd5b6000603a5250565b60006114d082610c8a565b90508073ffffffffffffffffffffffffffffffffffffffff166114f1611fac565b73ffffffffffffffffffffffffffffffffffffffff16146115545761151d81611518611fac565b6112c8565b611553576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061161982611b9c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611680576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061168c84611fb4565b915091506116a2818761169d611fac565b611fdb565b6116ee576116b7866116b2611fac565b6112c8565b6116ed576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611754576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611761868686600161201f565b801561176c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061183a85611816888887612025565b7c02000000000000000000000000000000000000000000000000000000001761204d565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118c057600060018501905060006004600083815260200190815260200160002054036118be5760005481146118bd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119288686866001612078565b505050505050565b61193861207e565b73ffffffffffffffffffffffffffffffffffffffff16611956611067565b73ffffffffffffffffffffffffffffffffffffffff16146119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a39061303a565b60405180910390fd5b565b60006119b8611609565b60005403905090565b60008054905060008203611a01576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a0e600084838561201f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a8583611a766000866000612025565b611a7f85612086565b1761204d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611b2657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611aeb565b5060008203611b61576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611b776000848385612078565b505050565b611b97838383604051806020016040528060008152506111a5565b505050565b60008082905080611bab611609565b11611c3157600054811015611c305760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c2e575b60008103611c24576004600083600190039350838152602001908152602001600020549050611bfa565b8092505050611c63565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d48828260405180602001604052806000815250612096565b5050565b8060076000611d59611fac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e06611fac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e4b9190612340565b60405180910390a35050565b611e6284848461097b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ec457611e8d84848484612133565b611ec3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600e8054611ed99061298c565b80601f0160208091040260200160405190810160405280929190818152602001828054611f059061298c565b8015611f525780601f10611f2757610100808354040283529160200191611f52565b820191906000526020600020905b815481529060010190602001808311611f3557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f9757600184039350600a81066030018453600a8104905080611f75575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861203c868684612283565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60006001821460e11b9050919050565b6120a083836119c1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461212e57600080549050600083820390505b6120e06000868380600101945086612133565b612116576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120cd57816000541461212b57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612159611fac565b8786866040518563ffffffff1660e01b815260040161217b94939291906130af565b6020604051808303816000875af19250505080156121b757506040513d601f19601f820116820180604052508101906121b49190613110565b60015b612230573d80600081146121e7576040519150601f19603f3d011682016040523d82523d6000602084013e6121ec565b606091505b506000815103612228576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122d5816122a0565b81146122e057600080fd5b50565b6000813590506122f2816122cc565b92915050565b60006020828403121561230e5761230d612296565b5b600061231c848285016122e3565b91505092915050565b60008115159050919050565b61233a81612325565b82525050565b60006020820190506123556000830184612331565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561239557808201518184015260208101905061237a565b60008484015250505050565b6000601f19601f8301169050919050565b60006123bd8261235b565b6123c78185612366565b93506123d7818560208601612377565b6123e0816123a1565b840191505092915050565b6000602082019050818103600083015261240581846123b2565b905092915050565b6000819050919050565b6124208161240d565b811461242b57600080fd5b50565b60008135905061243d81612417565b92915050565b60006020828403121561245957612458612296565b5b60006124678482850161242e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061249b82612470565b9050919050565b6124ab81612490565b82525050565b60006020820190506124c660008301846124a2565b92915050565b6124d581612490565b81146124e057600080fd5b50565b6000813590506124f2816124cc565b92915050565b6000806040838503121561250f5761250e612296565b5b600061251d858286016124e3565b925050602061252e8582860161242e565b9150509250929050565b6125418161240d565b82525050565b600060208201905061255c6000830184612538565b92915050565b60008060006060848603121561257b5761257a612296565b5b6000612589868287016124e3565b935050602061259a868287016124e3565b92505060406125ab8682870161242e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125f7826123a1565b810181811067ffffffffffffffff82111715612616576126156125bf565b5b80604052505050565b600061262961228c565b905061263582826125ee565b919050565b600067ffffffffffffffff821115612655576126546125bf565b5b61265e826123a1565b9050602081019050919050565b82818337600083830152505050565b600061268d6126888461263a565b61261f565b9050828152602081018484840111156126a9576126a86125ba565b5b6126b484828561266b565b509392505050565b600082601f8301126126d1576126d06125b5565b5b81356126e184826020860161267a565b91505092915050565b600060208284031215612700576126ff612296565b5b600082013567ffffffffffffffff81111561271e5761271d61229b565b5b61272a848285016126bc565b91505092915050565b60006020828403121561274957612748612296565b5b6000612757848285016124e3565b91505092915050565b61276981612325565b811461277457600080fd5b50565b60008135905061278681612760565b92915050565b600080604083850312156127a3576127a2612296565b5b60006127b1858286016124e3565b92505060206127c285828601612777565b9150509250929050565b6000602082840312156127e2576127e1612296565b5b60006127f084828501612777565b91505092915050565b600067ffffffffffffffff821115612814576128136125bf565b5b61281d826123a1565b9050602081019050919050565b600061283d612838846127f9565b61261f565b905082815260208101848484011115612859576128586125ba565b5b61286484828561266b565b509392505050565b600082601f830112612881576128806125b5565b5b813561289184826020860161282a565b91505092915050565b600080600080608085870312156128b4576128b3612296565b5b60006128c2878288016124e3565b94505060206128d3878288016124e3565b93505060406128e48782880161242e565b925050606085013567ffffffffffffffff8111156129055761290461229b565b5b6129118782880161286c565b91505092959194509250565b6000806040838503121561293457612933612296565b5b6000612942858286016124e3565b9250506020612953858286016124e3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129a457607f821691505b6020821081036129b7576129b661295d565b5b50919050565b7f4e6f742048617070656e696e6700000000000000000000000000000000000000600082015250565b60006129f3600d83612366565b91506129fe826129bd565b602082019050919050565b60006020820190508181036000830152612a22816129e6565b9050919050565b7f536f72727920436f6e7472616374204d696e746f727300000000000000000000600082015250565b6000612a5f601683612366565b9150612a6a82612a29565b602082019050919050565b60006020820190508181036000830152612a8e81612a52565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612acf8261240d565b9150612ada8361240d565b9250828201905080821115612af257612af1612a95565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612b5a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612b1d565b612b648683612b1d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612ba1612b9c612b978461240d565b612b7c565b61240d565b9050919050565b6000819050919050565b612bbb83612b86565b612bcf612bc782612ba8565b848454612b2a565b825550505050565b600090565b612be4612bd7565b612bef818484612bb2565b505050565b5b81811015612c1357612c08600082612bdc565b600181019050612bf5565b5050565b601f821115612c5857612c2981612af8565b612c3284612b0d565b81016020851015612c41578190505b612c55612c4d85612b0d565b830182612bf4565b50505b505050565b600082821c905092915050565b6000612c7b60001984600802612c5d565b1980831691505092915050565b6000612c948383612c6a565b9150826002028217905092915050565b612cad8261235b565b67ffffffffffffffff811115612cc657612cc56125bf565b5b612cd0825461298c565b612cdb828285612c17565b600060209050601f831160018114612d0e5760008415612cfc578287015190505b612d068582612c88565b865550612d6e565b601f198416612d1c86612af8565b60005b82811015612d4457848901518255600182019150602085019450602081019050612d1f565b86831015612d615784890151612d5d601f891682612c6a565b8355505b6001600288020188555050505b505050505050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000612dac601683612366565b9150612db782612d76565b602082019050919050565b60006020820190508181036000830152612ddb81612d9f565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000612e18601683612366565b9150612e2382612de2565b602082019050919050565b60006020820190508181036000830152612e4781612e0b565b9050919050565b6000612e598261240d565b9150612e648361240d565b9250828202612e728161240d565b91508282048414831517612e8957612e88612a95565b5b5092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000612ec6601683612366565b9150612ed182612e90565b602082019050919050565b60006020820190508181036000830152612ef581612eb9565b9050919050565b600081905092915050565b6000612f128261235b565b612f1c8185612efc565b9350612f2c818560208601612377565b80840191505092915050565b6000612f448285612f07565b9150612f508284612f07565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fb8602683612366565b9150612fc382612f5c565b604082019050919050565b60006020820190508181036000830152612fe781612fab565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613024602083612366565b915061302f82612fee565b602082019050919050565b6000602082019050818103600083015261305381613017565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130818261305a565b61308b8185613065565b935061309b818560208601612377565b6130a4816123a1565b840191505092915050565b60006080820190506130c460008301876124a2565b6130d160208301866124a2565b6130de6040830185612538565b81810360608301526130f08184613076565b905095945050505050565b60008151905061310a816122cc565b92915050565b60006020828403121561312657613125612296565b5b6000613134848285016130fb565b9150509291505056fea2646970667358221220685414ca73c666c9b6bb0582f8b0e35c09ab970ce36bb9140a5ee3cba8356aed64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000013100000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c80636c0360eb11610118578063b7c0b8e8116100a0578063d60fba9d1161006f578063d60fba9d146106a7578063e985e9c5146106d2578063ea63f5891461070f578063f2fde38b14610738578063fb796e6c1461076157610204565b8063b7c0b8e8146105fc578063b88d4fde14610625578063c87b56dd14610641578063d476de1b1461067e57610204565b80638da5cb5b116100e75780638da5cb5b1461053b578063952ed1e61461056657806395d89b411461057d578063a22cb465146105a8578063aff1f573146105d157610204565b80636c0360eb1461049357806370a08231146104be578063715018a6146104fb5780638ba4cc3c1461051257610204565b806332cb6b0c1161019b578063463fff791161016a578063463fff79146103cf57806355f804b3146103fa5780635c975abb146104235780636352211e1461043a578063655433201461047757610204565b806332cb6b0c146103675780633ccfd60b146103925780633d8a5660146103a957806342842e0e146103b357610204565b806318160ddd116101d757806318160ddd146102ca57806323b872dd146102f557806326e987d7146103115780632b2b632a1461033c57610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906122f8565b61078c565b60405161023d9190612340565b60405180910390f35b34801561025257600080fd5b5061025b61081e565b60405161026891906123eb565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612443565b6108b0565b6040516102a591906124b1565b60405180910390f35b6102c860048036038101906102c391906124f8565b61092f565b005b3480156102d657600080fd5b506102df610964565b6040516102ec9190612547565b60405180910390f35b61030f600480360381019061030a9190612562565b61097b565b005b34801561031d57600080fd5b506103266109e6565b6040516103339190612547565b60405180910390f35b34801561034857600080fd5b506103516109ec565b60405161035e9190612547565b60405180910390f35b34801561037357600080fd5b5061037c6109f2565b6040516103899190612547565b60405180910390f35b34801561039e57600080fd5b506103a76109f8565b005b6103b1610a7d565b005b6103cd60048036038101906103c89190612562565b610bca565b005b3480156103db57600080fd5b506103e4610c35565b6040516103f19190612547565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c91906126ea565b610c3b565b005b34801561042f57600080fd5b50610438610c56565b005b34801561044657600080fd5b50610461600480360381019061045c9190612443565b610c8a565b60405161046e91906124b1565b60405180910390f35b610491600480360381019061048c9190612443565b610c9c565b005b34801561049f57600080fd5b506104a8610ed6565b6040516104b591906123eb565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190612733565b610f64565b6040516104f29190612547565b60405180910390f35b34801561050757600080fd5b5061051061101c565b005b34801561051e57600080fd5b50610539600480360381019061053491906124f8565b611030565b005b34801561054757600080fd5b50610550611067565b60405161055d91906124b1565b60405180910390f35b34801561057257600080fd5b5061057b611091565b005b34801561058957600080fd5b506105926110a6565b60405161059f91906123eb565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca919061278c565b611138565b005b3480156105dd57600080fd5b506105e661116d565b6040516105f39190612340565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e91906127cc565b611180565b005b61063f600480360381019061063a919061289a565b6111a5565b005b34801561064d57600080fd5b5061066860048036038101906106639190612443565b611212565b60405161067591906123eb565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190612443565b6112b0565b005b3480156106b357600080fd5b506106bc6112c2565b6040516106c99190612547565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f4919061291d565b6112c8565b6040516107069190612340565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190612443565b61135c565b005b34801561074457600080fd5b5061075f600480360381019061075a9190612733565b61136e565b005b34801561076d57600080fd5b506107766113f1565b6040516107839190612340565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108175750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461082d9061298c565b80601f01602080910402602001604051908101604052809291908181526020018280546108599061298c565b80156108a65780601f1061087b576101008083540402835291602001916108a6565b820191906000526020600020905b81548152906001019060200180831161088957829003601f168201915b5050505050905090565b60006108bb82611404565b6108f1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161093981611463565b6109555761094561146a565b156109545761095381611481565b5b5b61095f83836114c5565b505050565b600061096e611609565b6001546000540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109d5576109b833611463565b6109d4576109c461146a565b156109d3576109d233611481565b5b5b5b6109e084848461160e565b50505050565b600a5481565b600d5481565b60095481565b610a00611930565b610a08611067565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290612a09565b60405180910390fd5b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae290612a75565b60405180910390fd5b600860149054906101000a900460ff16610b31576040517ff28e00cd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600954600a610b3e6119ae565b610b489190612ac4565b1115610b80576040517f3e0866c700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d54600a1115610bbd576040517f35a9ba0a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bc833600a6119c1565b565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c2457610c0733611463565b610c2357610c1361146a565b15610c2257610c2133611481565b5b5b5b610c2f848484611b7c565b50505050565b600b5481565b610c43611930565b80600e9081610c529190612ca4565b5050565b610c5e611930565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6000610c9582611b9c565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190612a75565b60405180910390fd5b600860149054906101000a900460ff16610d50576040517ff28e00cd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60095481610d5c6119ae565b610d669190612ac4565b1115610d9e576040517f3e0866c700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d54811115610dda576040517f35a9ba0a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610de2610964565b600a5410610e345780600b541015610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2690612dc2565b60405180910390fd5b610ec9565b80600d541015610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090612e2e565b60405180910390fd5b34600c5482610e889190612e4e565b14610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90612edc565b60405180910390fd5b5b610ed333826119c1565b50565b600e8054610ee39061298c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0f9061298c565b8015610f5c5780601f10610f3157610100808354040283529160200191610f5c565b820191906000526020600020905b815481529060010190602001808311610f3f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fcb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611024611930565b61102e6000611c68565b565b611038611930565b60095481611044610964565b61104e9190612ac4565b111561105957600080fd5b6110638282611d2e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611099611930565b6110a43360326119c1565b565b6060600380546110b59061298c565b80601f01602080910402602001604051908101604052809291908181526020018280546110e19061298c565b801561112e5780601f106111035761010080835404028352916020019161112e565b820191906000526020600020905b81548152906001019060200180831161111157829003601f168201915b5050505050905090565b8161114281611463565b61115e5761114e61146a565b1561115d5761115c81611481565b5b5b6111688383611d4c565b505050565b600860149054906101000a900460ff1681565b611188611930565b80600f60006101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111ff576111e233611463565b6111fe576111ee61146a565b156111fd576111fc33611481565b5b5b5b61120b85858585611e57565b5050505050565b606061121d82611404565b611253576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061125d611eca565b9050600081510361127d57604051806020016040528060008152506112a8565b8061128784611f5c565b604051602001611298929190612f38565b6040516020818303038152906040525b915050919050565b6112b8611930565b80600a8190555050565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611364611930565b80600c8190555050565b611376611930565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90612fce565b60405180910390fd5b6113ee81611c68565b50565b600f60009054906101000a900460ff1681565b60008161140f611609565b1115801561141e575060005482105b801561145c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000919050565b6000600f60009054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6114bd573d6000803e3d6000fd5b6000603a5250565b60006114d082610c8a565b90508073ffffffffffffffffffffffffffffffffffffffff166114f1611fac565b73ffffffffffffffffffffffffffffffffffffffff16146115545761151d81611518611fac565b6112c8565b611553576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061161982611b9c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611680576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061168c84611fb4565b915091506116a2818761169d611fac565b611fdb565b6116ee576116b7866116b2611fac565b6112c8565b6116ed576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611754576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611761868686600161201f565b801561176c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061183a85611816888887612025565b7c02000000000000000000000000000000000000000000000000000000001761204d565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036118c057600060018501905060006004600083815260200190815260200160002054036118be5760005481146118bd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119288686866001612078565b505050505050565b61193861207e565b73ffffffffffffffffffffffffffffffffffffffff16611956611067565b73ffffffffffffffffffffffffffffffffffffffff16146119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a39061303a565b60405180910390fd5b565b60006119b8611609565b60005403905090565b60008054905060008203611a01576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a0e600084838561201f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a8583611a766000866000612025565b611a7f85612086565b1761204d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611b2657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611aeb565b5060008203611b61576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611b776000848385612078565b505050565b611b97838383604051806020016040528060008152506111a5565b505050565b60008082905080611bab611609565b11611c3157600054811015611c305760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c2e575b60008103611c24576004600083600190039350838152602001908152602001600020549050611bfa565b8092505050611c63565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d48828260405180602001604052806000815250612096565b5050565b8060076000611d59611fac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e06611fac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e4b9190612340565b60405180910390a35050565b611e6284848461097b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ec457611e8d84848484612133565b611ec3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600e8054611ed99061298c565b80601f0160208091040260200160405190810160405280929190818152602001828054611f059061298c565b8015611f525780601f10611f2757610100808354040283529160200191611f52565b820191906000526020600020905b815481529060010190602001808311611f3557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611f9757600184039350600a81066030018453600a8104905080611f75575b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861203c868684612283565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60006001821460e11b9050919050565b6120a083836119c1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461212e57600080549050600083820390505b6120e06000868380600101945086612133565b612116576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120cd57816000541461212b57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612159611fac565b8786866040518563ffffffff1660e01b815260040161217b94939291906130af565b6020604051808303816000875af19250505080156121b757506040513d601f19601f820116820180604052508101906121b49190613110565b60015b612230573d80600081146121e7576040519150601f19603f3d011682016040523d82523d6000602084013e6121ec565b606091505b506000815103612228576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122d5816122a0565b81146122e057600080fd5b50565b6000813590506122f2816122cc565b92915050565b60006020828403121561230e5761230d612296565b5b600061231c848285016122e3565b91505092915050565b60008115159050919050565b61233a81612325565b82525050565b60006020820190506123556000830184612331565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561239557808201518184015260208101905061237a565b60008484015250505050565b6000601f19601f8301169050919050565b60006123bd8261235b565b6123c78185612366565b93506123d7818560208601612377565b6123e0816123a1565b840191505092915050565b6000602082019050818103600083015261240581846123b2565b905092915050565b6000819050919050565b6124208161240d565b811461242b57600080fd5b50565b60008135905061243d81612417565b92915050565b60006020828403121561245957612458612296565b5b60006124678482850161242e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061249b82612470565b9050919050565b6124ab81612490565b82525050565b60006020820190506124c660008301846124a2565b92915050565b6124d581612490565b81146124e057600080fd5b50565b6000813590506124f2816124cc565b92915050565b6000806040838503121561250f5761250e612296565b5b600061251d858286016124e3565b925050602061252e8582860161242e565b9150509250929050565b6125418161240d565b82525050565b600060208201905061255c6000830184612538565b92915050565b60008060006060848603121561257b5761257a612296565b5b6000612589868287016124e3565b935050602061259a868287016124e3565b92505060406125ab8682870161242e565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125f7826123a1565b810181811067ffffffffffffffff82111715612616576126156125bf565b5b80604052505050565b600061262961228c565b905061263582826125ee565b919050565b600067ffffffffffffffff821115612655576126546125bf565b5b61265e826123a1565b9050602081019050919050565b82818337600083830152505050565b600061268d6126888461263a565b61261f565b9050828152602081018484840111156126a9576126a86125ba565b5b6126b484828561266b565b509392505050565b600082601f8301126126d1576126d06125b5565b5b81356126e184826020860161267a565b91505092915050565b600060208284031215612700576126ff612296565b5b600082013567ffffffffffffffff81111561271e5761271d61229b565b5b61272a848285016126bc565b91505092915050565b60006020828403121561274957612748612296565b5b6000612757848285016124e3565b91505092915050565b61276981612325565b811461277457600080fd5b50565b60008135905061278681612760565b92915050565b600080604083850312156127a3576127a2612296565b5b60006127b1858286016124e3565b92505060206127c285828601612777565b9150509250929050565b6000602082840312156127e2576127e1612296565b5b60006127f084828501612777565b91505092915050565b600067ffffffffffffffff821115612814576128136125bf565b5b61281d826123a1565b9050602081019050919050565b600061283d612838846127f9565b61261f565b905082815260208101848484011115612859576128586125ba565b5b61286484828561266b565b509392505050565b600082601f830112612881576128806125b5565b5b813561289184826020860161282a565b91505092915050565b600080600080608085870312156128b4576128b3612296565b5b60006128c2878288016124e3565b94505060206128d3878288016124e3565b93505060406128e48782880161242e565b925050606085013567ffffffffffffffff8111156129055761290461229b565b5b6129118782880161286c565b91505092959194509250565b6000806040838503121561293457612933612296565b5b6000612942858286016124e3565b9250506020612953858286016124e3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129a457607f821691505b6020821081036129b7576129b661295d565b5b50919050565b7f4e6f742048617070656e696e6700000000000000000000000000000000000000600082015250565b60006129f3600d83612366565b91506129fe826129bd565b602082019050919050565b60006020820190508181036000830152612a22816129e6565b9050919050565b7f536f72727920436f6e7472616374204d696e746f727300000000000000000000600082015250565b6000612a5f601683612366565b9150612a6a82612a29565b602082019050919050565b60006020820190508181036000830152612a8e81612a52565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612acf8261240d565b9150612ada8361240d565b9250828201905080821115612af257612af1612a95565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612b5a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612b1d565b612b648683612b1d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612ba1612b9c612b978461240d565b612b7c565b61240d565b9050919050565b6000819050919050565b612bbb83612b86565b612bcf612bc782612ba8565b848454612b2a565b825550505050565b600090565b612be4612bd7565b612bef818484612bb2565b505050565b5b81811015612c1357612c08600082612bdc565b600181019050612bf5565b5050565b601f821115612c5857612c2981612af8565b612c3284612b0d565b81016020851015612c41578190505b612c55612c4d85612b0d565b830182612bf4565b50505b505050565b600082821c905092915050565b6000612c7b60001984600802612c5d565b1980831691505092915050565b6000612c948383612c6a565b9150826002028217905092915050565b612cad8261235b565b67ffffffffffffffff811115612cc657612cc56125bf565b5b612cd0825461298c565b612cdb828285612c17565b600060209050601f831160018114612d0e5760008415612cfc578287015190505b612d068582612c88565b865550612d6e565b601f198416612d1c86612af8565b60005b82811015612d4457848901518255600182019150602085019450602081019050612d1f565b86831015612d615784890151612d5d601f891682612c6a565b8355505b6001600288020188555050505b505050505050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000612dac601683612366565b9150612db782612d76565b602082019050919050565b60006020820190508181036000830152612ddb81612d9f565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000612e18601683612366565b9150612e2382612de2565b602082019050919050565b60006020820190508181036000830152612e4781612e0b565b9050919050565b6000612e598261240d565b9150612e648361240d565b9250828202612e728161240d565b91508282048414831517612e8957612e88612a95565b5b5092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000612ec6601683612366565b9150612ed182612e90565b602082019050919050565b60006020820190508181036000830152612ef581612eb9565b9050919050565b600081905092915050565b6000612f128261235b565b612f1c8185612efc565b9350612f2c818560208601612377565b80840191505092915050565b6000612f448285612f07565b9150612f508284612f07565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fb8602683612366565b9150612fc382612f5c565b604082019050919050565b60006020820190508181036000830152612fe781612fab565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613024602083612366565b915061302f82612fee565b602082019050919050565b6000602082019050818103600083015261305381613017565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130818261305a565b61308b8185613065565b935061309b818560208601612377565b6130a4816123a1565b840191505092915050565b60006080820190506130c460008301876124a2565b6130d160208301866124a2565b6130de6040830185612538565b81810360608301526130f08184613076565b905095945050505050565b60008151905061310a816122cc565b92915050565b60006020828403121561312657613125612296565b5b6000613134848285016130fb565b9150509291505056fea2646970667358221220685414ca73c666c9b6bb0582f8b0e35c09ab970ce36bb9140a5ee3cba8356aed64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000013100000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI_ (string): 1
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 3100000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
3902:4095:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9408:639:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10310:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16801:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4743:190:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6061:323:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4941:205:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4060:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4198;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4021:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7847:143;;;;;;;;;;;;;:::i;:::-;;6760:290;;;:::i;:::-;;5154:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4102:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7732:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6047:80;;;;;;;;;;;;;:::i;:::-;;11703:152:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6141:607:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4242:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7245:233:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1882:103:4;;;;;;;;;;;;;:::i;:::-;;7146:162:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1234:87:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7058:80:5;;;;;;;;;;;;;:::i;:::-;;10486:104:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4534:201:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3983:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5630:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5375:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10696:318:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7457:131:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4143:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17750:164:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7318:131:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2140:201:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4272:36:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9408:639:1;9493:4;9832:10;9817:25;;:11;:25;;;;:102;;;;9909:10;9894:25;;:11;:25;;;;9817:102;:179;;;;9986:10;9971:25;;:11;:25;;;;9817:179;9797:199;;9408:639;;;:::o;10310:100::-;10364:13;10397:5;10390:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10310:100;:::o;16801:218::-;16877:7;16902:16;16910:7;16902;:16::i;:::-;16897:64;;16927:34;;;;;;;;;;;;;;16897:64;16981:15;:24;16997:7;16981:24;;;;;;;;;;;:30;;;;;;;;;;;;16974:37;;16801:218;;;:::o;4743:190:5:-;4872:8;3578:29:3;3598:8;3578:19;:29::i;:::-;3573:122;;3628:27;:25;:27::i;:::-;3624:59;;;3657:26;3674:8;3657:16;:26::i;:::-;3624:59;3573:122;4893:32:5::1;4907:8;4917:7;4893:13;:32::i;:::-;4743:190:::0;;;:::o;6061:323:1:-;6122:7;6350:15;:13;:15::i;:::-;6335:12;;6319:13;;:28;:46;6312:53;;6061:323;:::o;4941:205:5:-;5084:4;3221:10:3;3213:18;;:4;:18;;;3209:184;;3253:31;3273:10;3253:19;:31::i;:::-;3248:134;;3309:27;:25;:27::i;:::-;3305:61;;;3338:28;3355:10;3338:16;:28::i;:::-;3305:61;3248:134;3209:184;5101:37:5::1;5120:4;5126:2;5130:7;5101:18;:37::i;:::-;4941:205:::0;;;;:::o;4060:35::-;;;;:::o;4198:::-;;;;:::o;4021:32::-;;;;:::o;7847:143::-;1120:13:4;:11;:13::i;:::-;7917:7:5::1;:5;:7::i;:::-;7909:21;;:44;7931:21;7909:44;;;;;;;;;;;;;;;;;;;;;;;7893:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;7847:143::o:0;6760:290::-;5967:10;5954:23;;:9;:23;;;5946:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;6824:11:::1;;;;;;;;;;;6819:41;;6844:16;;;;;;;;;;;;;;6819:41;6897:10;;6892:2;6875:14;:12;:14::i;:::-;:19;;;;:::i;:::-;:32;6871:67;;;6916:22;;;;;;;;;;;;;;6871:67;6958:15;;6953:2;:20;6949:55;;;6982:22;;;;;;;;;;;;;;6949:55;7021:21;7027:10;7039:2;7021:5;:21::i;:::-;6760:290::o:0;5154:213::-;5301:4;3221:10:3;3213:18;;:4;:18;;;3209:184;;3253:31;3273:10;3253:19;:31::i;:::-;3248:134;;3309:27;:25;:27::i;:::-;3305:61;;;3338:28;3355:10;3338:16;:28::i;:::-;3305:61;3248:134;3209:184;5318:41:5::1;5341:4;5347:2;5351:7;5318:22;:41::i;:::-;5154:213:::0;;;;:::o;4102:34::-;;;;:::o;7732:90::-;1120:13:4;:11;:13::i;:::-;7811:3:5::1;7801:7;:13;;;;;;:::i;:::-;;7732:90:::0;:::o;6047:80::-;1120:13:4;:11;:13::i;:::-;6108:11:5::1;;;;;;;;;;;6107:12;6093:11;;:26;;;;;;;;;;;;;;;;;;6047:80::o:0;11703:152:1:-;11775:7;11818:27;11837:7;11818:18;:27::i;:::-;11795:52;;11703:152;;;:::o;6141:607:5:-;5967:10;5954:23;;:9;:23;;;5946:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;6213:11:::1;;;;;;;;;;;6208:41;;6233:16;;;;;;;;;;;;;;6208:41;6287:10;;6281:3;6264:14;:12;:14::i;:::-;:20;;;;:::i;:::-;:33;6260:68;;;6306:22;;;;;;;;;;;;;;6260:68;6349:15;;6343:3;:21;6339:56;;;6373:22;;;;;;;;;;;;;;6339:56;6429:13;:11;:13::i;:::-;6410:15;;:32;6407:295;;6485:3;6466:15;;:22;;6458:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;6407:295;;;6574:3;6555:15;;:22;;6547:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;6654:9;6634:15;;6628:3;:21;;;;:::i;:::-;:35;6620:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6407:295;6718:22;6724:10;6736:3;6718:5;:22::i;:::-;6141:607:::0;:::o;4242:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7245:233:1:-;7317:7;7358:1;7341:19;;:5;:19;;;7337:60;;7369:28;;;;;;;;;;;;;;7337:60;1404:13;7415:18;:25;7434:5;7415:25;;;;;;;;;;;;;;;;:55;7408:62;;7245:233;;;:::o;1882:103:4:-;1120:13;:11;:13::i;:::-;1947:30:::1;1974:1;1947:18;:30::i;:::-;1882:103::o:0;7146:162:5:-;1120:13:4;:11;:13::i;:::-;7255:10:5::1;;7245:6;7229:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;7221:45;;;::::0;::::1;;7277:23;7287:4;7293:6;7277:9;:23::i;:::-;7146:162:::0;;:::o;1234:87:4:-;1280:7;1307:6;;;;;;;;;;;1300:13;;1234:87;:::o;7058:80:5:-;1120:13:4;:11;:13::i;:::-;7111:21:5::1;7117:10;7129:2;7111:5;:21::i;:::-;7058:80::o:0;10486:104:1:-;10542:13;10575:7;10568:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10486:104;:::o;4534:201:5:-;4663:8;3578:29:3;3598:8;3578:19;:29::i;:::-;3573:122;;3628:27;:25;:27::i;:::-;3624:59;;;3657:26;3674:8;3657:16;:26::i;:::-;3624:59;3573:122;4684:43:5::1;4708:8;4718;4684:23;:43::i;:::-;4534:201:::0;;;:::o;3983:31::-;;;;;;;;;;;;;:::o;5630:117::-;1120:13:4;:11;:13::i;:::-;5734:5:5::1;5707:24;;:32;;;;;;;;;;;;;;;;;;5630:117:::0;:::o;5375:247::-;5550:4;3221:10:3;3213:18;;:4;:18;;;3209:184;;3253:31;3273:10;3253:19;:31::i;:::-;3248:134;;3309:27;:25;:27::i;:::-;3305:61;;;3338:28;3355:10;3338:16;:28::i;:::-;3305:61;3248:134;3209:184;5567:47:5::1;5590:4;5596:2;5600:7;5609:4;5567:22;:47::i;:::-;5375:247:::0;;;;;:::o;10696:318:1:-;10769:13;10800:16;10808:7;10800;:16::i;:::-;10795:59;;10825:29;;;;;;;;;;;;;;10795:59;10867:21;10891:10;:8;:10::i;:::-;10867:34;;10944:1;10925:7;10919:21;:26;:87;;;;;;;;;;;;;;;;;10972:7;10981:18;10991:7;10981:9;:18::i;:::-;10955:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10919:87;10912:94;;;10696:318;;;:::o;7457:131:5:-;1120:13:4;:11;:13::i;:::-;7562:18:5::1;7544:15;:36;;;;7457:131:::0;:::o;4143:44::-;;;;:::o;17750:164:1:-;17847:4;17871:18;:25;17890:5;17871:25;;;;;;;;;;;;;;;:35;17897:8;17871:35;;;;;;;;;;;;;;;;;;;;;;;;;17864:42;;17750:164;;;;:::o;7318:131:5:-;1120:13:4;:11;:13::i;:::-;7423:18:5::1;7405:15;:36;;;;7318:131:::0;:::o;2140:201:4:-;1120:13;:11;:13::i;:::-;2249:1:::1;2229:22;;:8;:22;;::::0;2221:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2305:28;2324:8;2305:18;:28::i;:::-;2140:201:::0;:::o;4272:36:5:-;;;;;;;;;;;;;:::o;18172:282:1:-;18237:4;18293:7;18274:15;:13;:15::i;:::-;:26;;:66;;;;;18327:13;;18317:7;:23;18274:66;:153;;;;;18426:1;2180:8;18378:17;:26;18396:7;18378:26;;;;;;;;;;;;:44;:49;18274:153;18254:173;;18172:282;;;:::o;5627:106:3:-;5696:4;5627:106;;;:::o;5755:125:5:-;5824:4;5848:24;;;;;;;;;;;5841:31;;5755:125;:::o;3811:1359:3:-;4204:22;4198:4;4191:36;4297:9;4291:4;4284:23;4372:8;4366:4;4359:22;4549:4;4543;4537;4531;4504:25;4497:5;4486:68;4476:274;;4670:16;4664:4;4658;4643:44;4718:16;4712:4;4705:30;4476:274;5150:1;5144:4;5137:15;3811:1359;:::o;16234:408:1:-;16323:13;16339:16;16347:7;16339;:16::i;:::-;16323:32;;16395:5;16372:28;;:19;:17;:19::i;:::-;:28;;;16368:175;;16420:44;16437:5;16444:19;:17;:19::i;:::-;16420:16;:44::i;:::-;16415:128;;16492:35;;;;;;;;;;;;;;16415:128;16368:175;16588:2;16555:15;:24;16571:7;16555:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16626:7;16622:2;16606:28;;16615:5;16606:28;;;;;;;;;;;;16312:330;16234:408;;:::o;5577:92::-;5633:7;5577:92;:::o;20440:2825::-;20582:27;20612;20631:7;20612:18;:27::i;:::-;20582:57;;20697:4;20656:45;;20672:19;20656:45;;;20652:86;;20710:28;;;;;;;;;;;;;;20652:86;20752:27;20781:23;20808:35;20835:7;20808:26;:35::i;:::-;20751:92;;;;20943:68;20968:15;20985:4;20991:19;:17;:19::i;:::-;20943:24;:68::i;:::-;20938:180;;21031:43;21048:4;21054:19;:17;:19::i;:::-;21031:16;:43::i;:::-;21026:92;;21083:35;;;;;;;;;;;;;;21026:92;20938:180;21149:1;21135:16;;:2;:16;;;21131:52;;21160:23;;;;;;;;;;;;;;21131:52;21196:43;21218:4;21224:2;21228:7;21237:1;21196:21;:43::i;:::-;21332:15;21329:160;;;21472:1;21451:19;21444:30;21329:160;21869:18;:24;21888:4;21869:24;;;;;;;;;;;;;;;;21867:26;;;;;;;;;;;;21938:18;:22;21957:2;21938:22;;;;;;;;;;;;;;;;21936:24;;;;;;;;;;;22260:146;22297:2;22346:45;22361:4;22367:2;22371:19;22346:14;:45::i;:::-;2460:8;22318:73;22260:18;:146::i;:::-;22231:17;:26;22249:7;22231:26;;;;;;;;;;;:175;;;;22577:1;2460:8;22526:19;:47;:52;22522:627;;22599:19;22631:1;22621:7;:11;22599:33;;22788:1;22754:17;:30;22772:11;22754:30;;;;;;;;;;;;:35;22750:384;;22892:13;;22877:11;:28;22873:242;;23072:19;23039:17;:30;23057:11;23039:30;;;;;;;;;;;:52;;;;22873:242;22750:384;22580:569;22522:627;23196:7;23192:2;23177:27;;23186:4;23177:27;;;;;;;;;;;;23215:42;23236:4;23242:2;23246:7;23255:1;23215:20;:42::i;:::-;20571:2694;;;20440:2825;;;:::o;1399:132:4:-;1474:12;:10;:12::i;:::-;1463:23;;:7;:5;:7::i;:::-;:23;;;1455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1399:132::o;6482:296:1:-;6537:7;6744:15;:13;:15::i;:::-;6728:13;;:31;6721:38;;6482:296;:::o;27821:2966::-;27894:20;27917:13;;27894:36;;27957:1;27945:8;:13;27941:44;;27967:18;;;;;;;;;;;;;;27941:44;27998:61;28028:1;28032:2;28036:12;28050:8;27998:21;:61::i;:::-;28542:1;1542:2;28512:1;:26;;28511:32;28499:8;:45;28473:18;:22;28492:2;28473:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28821:139;28858:2;28912:33;28935:1;28939:2;28943:1;28912:14;:33::i;:::-;28879:30;28900:8;28879:20;:30::i;:::-;:66;28821:18;:139::i;:::-;28787:17;:31;28805:12;28787:31;;;;;;;;;;;:173;;;;28977:16;29008:11;29037:8;29022:12;:23;29008:37;;29558:16;29554:2;29550:25;29538:37;;29930:12;29890:8;29849:1;29787:25;29728:1;29667;29640:335;30301:1;30287:12;30283:20;30241:346;30342:3;30333:7;30330:16;30241:346;;30560:7;30550:8;30547:1;30520:25;30517:1;30514;30509:59;30395:1;30386:7;30382:15;30371:26;;30241:346;;;30245:77;30632:1;30620:8;:13;30616:45;;30642:19;;;;;;;;;;;;;;30616:45;30694:3;30678:13;:19;;;;28247:2462;;30719:60;30748:1;30752:2;30756:12;30770:8;30719:20;:60::i;:::-;27883:2904;27821:2966;;:::o;23361:193::-;23507:39;23524:4;23530:2;23534:7;23507:39;;;;;;;;;;;;:16;:39::i;:::-;23361:193;;;:::o;12858:1275::-;12925:7;12945:12;12960:7;12945:22;;13028:4;13009:15;:13;:15::i;:::-;:23;13005:1061;;13062:13;;13055:4;:20;13051:1015;;;13100:14;13117:17;:23;13135:4;13117:23;;;;;;;;;;;;13100:40;;13234:1;2180:8;13206:6;:24;:29;13202:845;;13871:113;13888:1;13878:6;:11;13871:113;;13931:17;:25;13949:6;;;;;;;13931:25;;;;;;;;;;;;13922:34;;13871:113;;;14017:6;14010:13;;;;;;13202:845;13077:989;13051:1015;13005:1061;14094:31;;;;;;;;;;;;;;12858:1275;;;;:::o;2501:191:4:-;2575:16;2594:6;;;;;;;;;;;2575:25;;2620:8;2611:6;;:17;;;;;;;;;;;;;;;;;;2675:8;2644:40;;2665:8;2644:40;;;;;;;;;;;;2564:128;2501:191;:::o;34312:112:1:-;34389:27;34399:2;34403:8;34389:27;;;;;;;;;;;;:9;:27::i;:::-;34312:112;;:::o;17359:234::-;17506:8;17454:18;:39;17473:19;:17;:19::i;:::-;17454:39;;;;;;;;;;;;;;;:49;17494:8;17454:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17566:8;17530:55;;17545:19;:17;:19::i;:::-;17530:55;;;17576:8;17530:55;;;;;;:::i;:::-;;;;;;;;17359:234;;:::o;24152:407::-;24327:31;24340:4;24346:2;24350:7;24327:12;:31::i;:::-;24391:1;24373:2;:14;;;:19;24369:183;;24412:56;24443:4;24449:2;24453:7;24462:5;24412:30;:56::i;:::-;24407:145;;24496:40;;;;;;;;;;;;;;24407:145;24369:183;24152:407;;;;:::o;7616:108:5:-;7676:13;7709:7;7702:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7616:108;:::o;40687:1745:1:-;40752:17;41186:4;41179;41173:11;41169:22;41278:1;41272:4;41265:15;41353:4;41350:1;41346:12;41339:19;;41435:1;41430:3;41423:14;41539:3;41778:5;41760:428;41786:1;41760:428;;;41826:1;41821:3;41817:11;41810:18;;41997:2;41991:4;41987:13;41983:2;41979:22;41974:3;41966:36;42091:2;42085:4;42081:13;42073:21;;42158:4;41760:428;42148:25;41760:428;41764:21;42227:3;42222;42218:13;42342:4;42337:3;42333:14;42326:21;;42407:6;42402:3;42395:19;40791:1634;;;40687:1745;;;:::o;40480:105::-;40540:7;40567:10;40560:17;;40480:105;:::o;19335:485::-;19437:27;19466:23;19507:38;19548:15;:24;19564:7;19548:24;;;;;;;;;;;19507:65;;19725:18;19702:41;;19782:19;19776:26;19757:45;;19687:126;19335:485;;;:::o;18563:659::-;18712:11;18877:16;18870:5;18866:28;18857:37;;19037:16;19026:9;19022:32;19009:45;;19187:15;19176:9;19173:30;19165:5;19154:9;19151:20;19148:56;19138:66;;18563:659;;;;;:::o;25221:159::-;;;;;:::o;39789:311::-;39924:7;39944:16;2584:3;39970:19;:41;;39944:68;;2584:3;40038:31;40049:4;40055:2;40059:9;40038:10;:31::i;:::-;40030:40;;:62;;40023:69;;;39789:311;;;;;:::o;14681:450::-;14761:14;14929:16;14922:5;14918:28;14909:37;;15106:5;15092:11;15067:23;15063:41;15060:52;15053:5;15050:63;15040:73;;14681:450;;;;:::o;26045:158::-;;;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;15233:324:1:-;15303:14;15536:1;15526:8;15523:15;15497:24;15493:46;15483:56;;15233:324;;;:::o;33539:689::-;33670:19;33676:2;33680:8;33670:5;:19::i;:::-;33749:1;33731:2;:14;;;:19;33727:483;;33771:11;33785:13;;33771:27;;33817:13;33839:8;33833:3;:14;33817:30;;33866:233;33897:62;33936:1;33940:2;33944:7;;;;;;33953:5;33897:30;:62::i;:::-;33892:167;;33995:40;;;;;;;;;;;;;;33892:167;34094:3;34086:5;:11;33866:233;;34181:3;34164:13;;:20;34160:34;;34186:8;;;34160:34;33752:458;;33727:483;33539:689;;;:::o;26643:716::-;26806:4;26852:2;26827:45;;;26873:19;:17;:19::i;:::-;26894:4;26900:7;26909:5;26827:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26823:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27127:1;27110:6;:13;:18;27106:235;;27156:40;;;;;;;;;;;;;;27106:235;27299:6;27293:13;27284:6;27280:2;27276:15;27269:38;26823:529;26996:54;;;26986:64;;;:6;:64;;;;26979:71;;;26643:716;;;;;;:::o;39490:147::-;39627:6;39490:147;;;;;:::o;7:75:6:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:323::-;9619:6;9668:2;9656:9;9647:7;9643:23;9639:32;9636:119;;;9674:79;;:::i;:::-;9636:119;9794:1;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9765:114;9563:323;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:180::-;12468:77;12465:1;12458:88;12565:4;12562:1;12555:15;12589:4;12586:1;12579:15;12606:320;12650:6;12687:1;12681:4;12677:12;12667:22;;12734:1;12728:4;12724:12;12755:18;12745:81;;12811:4;12803:6;12799:17;12789:27;;12745:81;12873:2;12865:6;12862:14;12842:18;12839:38;12836:84;;12892:18;;:::i;:::-;12836:84;12657:269;12606:320;;;:::o;12932:163::-;13072:15;13068:1;13060:6;13056:14;13049:39;12932:163;:::o;13101:366::-;13243:3;13264:67;13328:2;13323:3;13264:67;:::i;:::-;13257:74;;13340:93;13429:3;13340:93;:::i;:::-;13458:2;13453:3;13449:12;13442:19;;13101:366;;;:::o;13473:419::-;13639:4;13677:2;13666:9;13662:18;13654:26;;13726:9;13720:4;13716:20;13712:1;13701:9;13697:17;13690:47;13754:131;13880:4;13754:131;:::i;:::-;13746:139;;13473:419;;;:::o;13898:172::-;14038:24;14034:1;14026:6;14022:14;14015:48;13898:172;:::o;14076:366::-;14218:3;14239:67;14303:2;14298:3;14239:67;:::i;:::-;14232:74;;14315:93;14404:3;14315:93;:::i;:::-;14433:2;14428:3;14424:12;14417:19;;14076:366;;;:::o;14448:419::-;14614:4;14652:2;14641:9;14637:18;14629:26;;14701:9;14695:4;14691:20;14687:1;14676:9;14672:17;14665:47;14729:131;14855:4;14729:131;:::i;:::-;14721:139;;14448:419;;;:::o;14873:180::-;14921:77;14918:1;14911:88;15018:4;15015:1;15008:15;15042:4;15039:1;15032:15;15059:191;15099:3;15118:20;15136:1;15118:20;:::i;:::-;15113:25;;15152:20;15170:1;15152:20;:::i;:::-;15147:25;;15195:1;15192;15188:9;15181:16;;15216:3;15213:1;15210:10;15207:36;;;15223:18;;:::i;:::-;15207:36;15059:191;;;;:::o;15256:141::-;15305:4;15328:3;15320:11;;15351:3;15348:1;15341:14;15385:4;15382:1;15372:18;15364:26;;15256:141;;;:::o;15403:93::-;15440:6;15487:2;15482;15475:5;15471:14;15467:23;15457:33;;15403:93;;;:::o;15502:107::-;15546:8;15596:5;15590:4;15586:16;15565:37;;15502:107;;;;:::o;15615:393::-;15684:6;15734:1;15722:10;15718:18;15757:97;15787:66;15776:9;15757:97;:::i;:::-;15875:39;15905:8;15894:9;15875:39;:::i;:::-;15863:51;;15947:4;15943:9;15936:5;15932:21;15923:30;;15996:4;15986:8;15982:19;15975:5;15972:30;15962:40;;15691:317;;15615:393;;;;;:::o;16014:60::-;16042:3;16063:5;16056:12;;16014:60;;;:::o;16080:142::-;16130:9;16163:53;16181:34;16190:24;16208:5;16190:24;:::i;:::-;16181:34;:::i;:::-;16163:53;:::i;:::-;16150:66;;16080:142;;;:::o;16228:75::-;16271:3;16292:5;16285:12;;16228:75;;;:::o;16309:269::-;16419:39;16450:7;16419:39;:::i;:::-;16480:91;16529:41;16553:16;16529:41;:::i;:::-;16521:6;16514:4;16508:11;16480:91;:::i;:::-;16474:4;16467:105;16385:193;16309:269;;;:::o;16584:73::-;16629:3;16584:73;:::o;16663:189::-;16740:32;;:::i;:::-;16781:65;16839:6;16831;16825:4;16781:65;:::i;:::-;16716:136;16663:189;;:::o;16858:186::-;16918:120;16935:3;16928:5;16925:14;16918:120;;;16989:39;17026:1;17019:5;16989:39;:::i;:::-;16962:1;16955:5;16951:13;16942:22;;16918:120;;;16858:186;;:::o;17050:543::-;17151:2;17146:3;17143:11;17140:446;;;17185:38;17217:5;17185:38;:::i;:::-;17269:29;17287:10;17269:29;:::i;:::-;17259:8;17255:44;17452:2;17440:10;17437:18;17434:49;;;17473:8;17458:23;;17434:49;17496:80;17552:22;17570:3;17552:22;:::i;:::-;17542:8;17538:37;17525:11;17496:80;:::i;:::-;17155:431;;17140:446;17050:543;;;:::o;17599:117::-;17653:8;17703:5;17697:4;17693:16;17672:37;;17599:117;;;;:::o;17722:169::-;17766:6;17799:51;17847:1;17843:6;17835:5;17832:1;17828:13;17799:51;:::i;:::-;17795:56;17880:4;17874;17870:15;17860:25;;17773:118;17722:169;;;;:::o;17896:295::-;17972:4;18118:29;18143:3;18137:4;18118:29;:::i;:::-;18110:37;;18180:3;18177:1;18173:11;18167:4;18164:21;18156:29;;17896:295;;;;:::o;18196:1395::-;18313:37;18346:3;18313:37;:::i;:::-;18415:18;18407:6;18404:30;18401:56;;;18437:18;;:::i;:::-;18401:56;18481:38;18513:4;18507:11;18481:38;:::i;:::-;18566:67;18626:6;18618;18612:4;18566:67;:::i;:::-;18660:1;18684:4;18671:17;;18716:2;18708:6;18705:14;18733:1;18728:618;;;;19390:1;19407:6;19404:77;;;19456:9;19451:3;19447:19;19441:26;19432:35;;19404:77;19507:67;19567:6;19560:5;19507:67;:::i;:::-;19501:4;19494:81;19363:222;18698:887;;18728:618;18780:4;18776:9;18768:6;18764:22;18814:37;18846:4;18814:37;:::i;:::-;18873:1;18887:208;18901:7;18898:1;18895:14;18887:208;;;18980:9;18975:3;18971:19;18965:26;18957:6;18950:42;19031:1;19023:6;19019:14;19009:24;;19078:2;19067:9;19063:18;19050:31;;18924:4;18921:1;18917:12;18912:17;;18887:208;;;19123:6;19114:7;19111:19;19108:179;;;19181:9;19176:3;19172:19;19166:26;19224:48;19266:4;19258:6;19254:17;19243:9;19224:48;:::i;:::-;19216:6;19209:64;19131:156;19108:179;19333:1;19329;19321:6;19317:14;19313:22;19307:4;19300:36;18735:611;;;18698:887;;18288:1303;;;18196:1395;;:::o;19597:172::-;19737:24;19733:1;19725:6;19721:14;19714:48;19597:172;:::o;19775:366::-;19917:3;19938:67;20002:2;19997:3;19938:67;:::i;:::-;19931:74;;20014:93;20103:3;20014:93;:::i;:::-;20132:2;20127:3;20123:12;20116:19;;19775:366;;;:::o;20147:419::-;20313:4;20351:2;20340:9;20336:18;20328:26;;20400:9;20394:4;20390:20;20386:1;20375:9;20371:17;20364:47;20428:131;20554:4;20428:131;:::i;:::-;20420:139;;20147:419;;;:::o;20572:172::-;20712:24;20708:1;20700:6;20696:14;20689:48;20572:172;:::o;20750:366::-;20892:3;20913:67;20977:2;20972:3;20913:67;:::i;:::-;20906:74;;20989:93;21078:3;20989:93;:::i;:::-;21107:2;21102:3;21098:12;21091:19;;20750:366;;;:::o;21122:419::-;21288:4;21326:2;21315:9;21311:18;21303:26;;21375:9;21369:4;21365:20;21361:1;21350:9;21346:17;21339:47;21403:131;21529:4;21403:131;:::i;:::-;21395:139;;21122:419;;;:::o;21547:410::-;21587:7;21610:20;21628:1;21610:20;:::i;:::-;21605:25;;21644:20;21662:1;21644:20;:::i;:::-;21639:25;;21699:1;21696;21692:9;21721:30;21739:11;21721:30;:::i;:::-;21710:41;;21900:1;21891:7;21887:15;21884:1;21881:22;21861:1;21854:9;21834:83;21811:139;;21930:18;;:::i;:::-;21811:139;21595:362;21547:410;;;;:::o;21963:172::-;22103:24;22099:1;22091:6;22087:14;22080:48;21963:172;:::o;22141:366::-;22283:3;22304:67;22368:2;22363:3;22304:67;:::i;:::-;22297:74;;22380:93;22469:3;22380:93;:::i;:::-;22498:2;22493:3;22489:12;22482:19;;22141:366;;;:::o;22513:419::-;22679:4;22717:2;22706:9;22702:18;22694:26;;22766:9;22760:4;22756:20;22752:1;22741:9;22737:17;22730:47;22794:131;22920:4;22794:131;:::i;:::-;22786:139;;22513:419;;;:::o;22938:148::-;23040:11;23077:3;23062:18;;22938:148;;;;:::o;23092:390::-;23198:3;23226:39;23259:5;23226:39;:::i;:::-;23281:89;23363:6;23358:3;23281:89;:::i;:::-;23274:96;;23379:65;23437:6;23432:3;23425:4;23418:5;23414:16;23379:65;:::i;:::-;23469:6;23464:3;23460:16;23453:23;;23202:280;23092:390;;;;:::o;23488:435::-;23668:3;23690:95;23781:3;23772:6;23690:95;:::i;:::-;23683:102;;23802:95;23893:3;23884:6;23802:95;:::i;:::-;23795:102;;23914:3;23907:10;;23488:435;;;;;:::o;23929:225::-;24069:34;24065:1;24057:6;24053:14;24046:58;24138:8;24133:2;24125:6;24121:15;24114:33;23929:225;:::o;24160:366::-;24302:3;24323:67;24387:2;24382:3;24323:67;:::i;:::-;24316:74;;24399:93;24488:3;24399:93;:::i;:::-;24517:2;24512:3;24508:12;24501:19;;24160:366;;;:::o;24532:419::-;24698:4;24736:2;24725:9;24721:18;24713:26;;24785:9;24779:4;24775:20;24771:1;24760:9;24756:17;24749:47;24813:131;24939:4;24813:131;:::i;:::-;24805:139;;24532:419;;;:::o;24957:182::-;25097:34;25093:1;25085:6;25081:14;25074:58;24957:182;:::o;25145:366::-;25287:3;25308:67;25372:2;25367:3;25308:67;:::i;:::-;25301:74;;25384:93;25473:3;25384:93;:::i;:::-;25502:2;25497:3;25493:12;25486:19;;25145:366;;;:::o;25517:419::-;25683:4;25721:2;25710:9;25706:18;25698:26;;25770:9;25764:4;25760:20;25756:1;25745:9;25741:17;25734:47;25798:131;25924:4;25798:131;:::i;:::-;25790:139;;25517:419;;;:::o;25942:98::-;25993:6;26027:5;26021:12;26011:22;;25942:98;;;:::o;26046:168::-;26129:11;26163:6;26158:3;26151:19;26203:4;26198:3;26194:14;26179:29;;26046:168;;;;:::o;26220:373::-;26306:3;26334:38;26366:5;26334:38;:::i;:::-;26388:70;26451:6;26446:3;26388:70;:::i;:::-;26381:77;;26467:65;26525:6;26520:3;26513:4;26506:5;26502:16;26467:65;:::i;:::-;26557:29;26579:6;26557:29;:::i;:::-;26552:3;26548:39;26541:46;;26310:283;26220:373;;;;:::o;26599:640::-;26794:4;26832:3;26821:9;26817:19;26809:27;;26846:71;26914:1;26903:9;26899:17;26890:6;26846:71;:::i;:::-;26927:72;26995:2;26984:9;26980:18;26971:6;26927:72;:::i;:::-;27009;27077:2;27066:9;27062:18;27053:6;27009:72;:::i;:::-;27128:9;27122:4;27118:20;27113:2;27102:9;27098:18;27091:48;27156:76;27227:4;27218:6;27156:76;:::i;:::-;27148:84;;26599:640;;;;;;;:::o;27245:141::-;27301:5;27332:6;27326:13;27317:22;;27348:32;27374:5;27348:32;:::i;:::-;27245:141;;;;:::o;27392:349::-;27461:6;27510:2;27498:9;27489:7;27485:23;27481:32;27478:119;;;27516:79;;:::i;:::-;27478:119;27636:1;27661:63;27716:7;27707:6;27696:9;27692:22;27661:63;:::i;:::-;27651:73;;27607:127;27392:349;;;;:::o
Swarm Source
ipfs://685414ca73c666c9b6bb0582f8b0e35c09ab970ce36bb9140a5ee3cba8356aed
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.