ETH Price: $3,116.05 (+0.96%)
Gas: 3 Gwei

Token

404DOG (404DOG)
 

Overview

Max Total Supply

350 404DOG

Holders

21

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sprotogremlin945.eth
Balance
23 404DOG
0x9badae7a4a9030d094b799f13b306d2f462f9be9
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DN404Mirror

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-02-13
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

abstract contract Ownable {
	/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
	/*                       CUSTOM ERRORS                        */
	/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

	/// @dev The caller is not authorized to call the function.
	error Unauthorized();

	/// @dev The `newOwner` cannot be the zero address.
	error NewOwnerIsZeroAddress();

	/// @dev The `pendingOwner` does not have a valid handover request.
	error NoHandoverRequest();

	/// @dev Cannot double-initialize.
	error AlreadyInitialized();

	/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
	/*                           EVENTS                           */
	/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

	/// @dev The ownership is transferred from `oldOwner` to `newOwner`.
	/// This event is intentionally kept the same as OpenZeppelin's Ownable to be
	/// compatible with indexers and [EIP-173](https://eips.ethereum.org/EIPS/eip-173),
	/// despite it not being as lightweight as a single argument event.
	event OwnershipTransferred(address indexed oldOwner, address indexed newOwner);

	/// @dev An ownership handover to `pendingOwner` has been requested.
	event OwnershipHandoverRequested(address indexed pendingOwner);

	/// @dev The ownership handover to `pendingOwner` has been canceled.
	event OwnershipHandoverCanceled(address indexed pendingOwner);

	/// @dev `keccak256(bytes("OwnershipTransferred(address,address)"))`.
	uint256 private constant _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE =
		0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0;

	/// @dev `keccak256(bytes("OwnershipHandoverRequested(address)"))`.
	uint256 private constant _OWNERSHIP_HANDOVER_REQUESTED_EVENT_SIGNATURE =
		0xdbf36a107da19e49527a7176a1babf963b4b0ff8cde35ee35d6cd8f1f9ac7e1d;

	/// @dev `keccak256(bytes("OwnershipHandoverCanceled(address)"))`.
	uint256 private constant _OWNERSHIP_HANDOVER_CANCELED_EVENT_SIGNATURE =
		0xfa7b8eab7da67f412cc9575ed43464468f9bfbae89d1675917346ca6d8fe3c92;

	/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
	/*                          STORAGE                           */
	/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

	/// @dev The owner slot is given by:
	/// `bytes32(~uint256(uint32(bytes4(keccak256("_OWNER_SLOT_NOT")))))`.
	/// It is intentionally chosen to be a high value
	/// to avoid collision with lower slots.
	/// The choice of manual storage layout is to enable compatibility
	/// with both regular and upgradeable contracts.
	bytes32 internal constant _OWNER_SLOT =
		0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff74873927;

	/// The ownership handover slot of `newOwner` is given by:
	/// ```
	///     mstore(0x00, or(shl(96, user), _HANDOVER_SLOT_SEED))
	///     let handoverSlot := keccak256(0x00, 0x20)
	/// ```
	/// It stores the expiry timestamp of the two-step ownership handover.
	uint256 private constant _HANDOVER_SLOT_SEED = 0x389a75e1;

	/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
	/*                     INTERNAL FUNCTIONS                     */
	/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

	/// @dev Override to return true to make `_initializeOwner` prevent double-initialization.
	function _guardInitializeOwner() internal pure virtual returns (bool guard) {}

	/// @dev Initializes the owner directly without authorization guard.
	/// This function must be called upon initialization,
	/// regardless of whether the contract is upgradeable or not.
	/// This is to enable generalization to both regular and upgradeable contracts,
	/// and to save gas in case the initial owner is not the caller.
	/// For performance reasons, this function will not check if there
	/// is an existing owner.
	function _initializeOwner(address newOwner) internal virtual {
		if (_guardInitializeOwner()) {
			/// @solidity memory-safe-assembly
			assembly {
				let ownerSlot := _OWNER_SLOT
				if sload(ownerSlot) {
					mstore(0x00, 0x0dc149f0) // `AlreadyInitialized()`.
					revert(0x1c, 0x04)
				}
				// Clean the upper 96 bits.
				newOwner := shr(96, shl(96, newOwner))
				// Store the new value.
				sstore(ownerSlot, or(newOwner, shl(255, iszero(newOwner))))
				// Emit the {OwnershipTransferred} event.
				log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, 0, newOwner)
			}
		} else {
			/// @solidity memory-safe-assembly
			assembly {
				// Clean the upper 96 bits.
				newOwner := shr(96, shl(96, newOwner))
				// Store the new value.
				sstore(_OWNER_SLOT, newOwner)
				// Emit the {OwnershipTransferred} event.
				log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, 0, newOwner)
			}
		}
	}

	/// @dev Sets the owner directly without authorization guard.
	function _setOwner(address newOwner) internal virtual {
		if (_guardInitializeOwner()) {
			/// @solidity memory-safe-assembly
			assembly {
				let ownerSlot := _OWNER_SLOT
				// Clean the upper 96 bits.
				newOwner := shr(96, shl(96, newOwner))
				// Emit the {OwnershipTransferred} event.
				log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, sload(ownerSlot), newOwner)
				// Store the new value.
				sstore(ownerSlot, or(newOwner, shl(255, iszero(newOwner))))
			}
		} else {
			/// @solidity memory-safe-assembly
			assembly {
				let ownerSlot := _OWNER_SLOT
				// Clean the upper 96 bits.
				newOwner := shr(96, shl(96, newOwner))
				// Emit the {OwnershipTransferred} event.
				log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, sload(ownerSlot), newOwner)
				// Store the new value.
				sstore(ownerSlot, newOwner)
			}
		}
	}

	/// @dev Throws if the sender is not the owner.
	function _checkOwner() internal view virtual {
		/// @solidity memory-safe-assembly
		assembly {
			// If the caller is not the stored owner, revert.
			if iszero(eq(caller(), sload(_OWNER_SLOT))) {
				mstore(0x00, 0x82b42900) // `Unauthorized()`.
				revert(0x1c, 0x04)
			}
		}
	}

	/// @dev Returns how long a two-step ownership handover is valid for in seconds.
	/// Override to return a different value if needed.
	/// Made internal to conserve bytecode. Wrap it in a public function if needed.
	function _ownershipHandoverValidFor() internal view virtual returns (uint64) {
		return 48 * 3600;
	}

	/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
	/*                  PUBLIC UPDATE FUNCTIONS                   */
	/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

	/// @dev Allows the owner to transfer the ownership to `newOwner`.
	function transferOwnership(address newOwner) public payable virtual onlyOwner {
		/// @solidity memory-safe-assembly
		assembly {
			if iszero(shl(96, newOwner)) {
				mstore(0x00, 0x7448fbae) // `NewOwnerIsZeroAddress()`.
				revert(0x1c, 0x04)
			}
		}
		_setOwner(newOwner);
	}

	/// @dev Allows the owner to renounce their ownership.
	function renounceOwnership() public payable virtual onlyOwner {
		_setOwner(address(0));
	}

	/// @dev Request a two-step ownership handover to the caller.
	/// The request will automatically expire in 48 hours (172800 seconds) by default.
	function requestOwnershipHandover() public payable virtual {
		unchecked {
			uint256 expires = block.timestamp + _ownershipHandoverValidFor();
			/// @solidity memory-safe-assembly
			assembly {
				// Compute and set the handover slot to `expires`.
				mstore(0x0c, _HANDOVER_SLOT_SEED)
				mstore(0x00, caller())
				sstore(keccak256(0x0c, 0x20), expires)
				// Emit the {OwnershipHandoverRequested} event.
				log2(0, 0, _OWNERSHIP_HANDOVER_REQUESTED_EVENT_SIGNATURE, caller())
			}
		}
	}

	/// @dev Cancels the two-step ownership handover to the caller, if any.
	function cancelOwnershipHandover() public payable virtual {
		/// @solidity memory-safe-assembly
		assembly {
			// Compute and set the handover slot to 0.
			mstore(0x0c, _HANDOVER_SLOT_SEED)
			mstore(0x00, caller())
			sstore(keccak256(0x0c, 0x20), 0)
			// Emit the {OwnershipHandoverCanceled} event.
			log2(0, 0, _OWNERSHIP_HANDOVER_CANCELED_EVENT_SIGNATURE, caller())
		}
	}

	/// @dev Allows the owner to complete the two-step ownership handover to `pendingOwner`.
	/// Reverts if there is no existing ownership handover requested by `pendingOwner`.
	function completeOwnershipHandover(address pendingOwner) public payable virtual onlyOwner {
		/// @solidity memory-safe-assembly
		assembly {
			// Compute and set the handover slot to 0.
			mstore(0x0c, _HANDOVER_SLOT_SEED)
			mstore(0x00, pendingOwner)
			let handoverSlot := keccak256(0x0c, 0x20)
			// If the handover does not exist, or has expired.
			if gt(timestamp(), sload(handoverSlot)) {
				mstore(0x00, 0x6f5e8818) // `NoHandoverRequest()`.
				revert(0x1c, 0x04)
			}
			// Set the handover slot to 0.
			sstore(handoverSlot, 0)
		}
		_setOwner(pendingOwner);
	}

	/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
	/*                   PUBLIC READ FUNCTIONS                    */
	/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

	/// @dev Returns the owner of the contract.
	function owner() public view virtual returns (address result) {
		/// @solidity memory-safe-assembly
		assembly {
			result := sload(_OWNER_SLOT)
		}
	}

	/// @dev Returns the expiry timestamp for the two-step ownership handover to `pendingOwner`.
	function ownershipHandoverExpiresAt(address pendingOwner)
		public
		view
		virtual
		returns (uint256 result)
	{
		/// @solidity memory-safe-assembly
		assembly {
			// Compute the handover slot.
			mstore(0x0c, _HANDOVER_SLOT_SEED)
			mstore(0x00, pendingOwner)
			// Load the handover slot.
			result := sload(keccak256(0x0c, 0x20))
		}
	}

	/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
	/*                         MODIFIERS                          */
	/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

	/// @dev Marks a function as only callable by the owner.
	modifier onlyOwner() virtual {
		_checkOwner();
		_;
	}
}

contract DN404Mirror is Ownable {
	/*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
	/*                           EVENTS                           */
	/*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

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

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

	/// @dev Emitted when `owner` enables or disables `operator` to manage all of their tokens.
	event ApprovalForAll(address indexed owner, address indexed operator, bool isApproved);

	/// @dev `keccak256(bytes("Transfer(address,address,uint256)"))`.
	uint256 private constant _TRANSFER_EVENT_SIGNATURE =
		0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

	/// @dev `keccak256(bytes("Approval(address,address,uint256)"))`.
	uint256 private constant _APPROVAL_EVENT_SIGNATURE =
		0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925;

	/// @dev `keccak256(bytes("ApprovalForAll(address,address,bool)"))`.
	uint256 private constant _APPROVAL_FOR_ALL_EVENT_SIGNATURE =
		0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31;

	/*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
	/*                        CUSTOM ERRORS                       */
	/*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

	/// @dev Thrown when a call for an NFT function did not originate
	/// from the base DN404 contract.
	error SenderNotBase();

	/// @dev Thrown when a call for an NFT function did not originate from the deployer.
	error SenderNotDeployer();

	/// @dev Thrown when transferring an NFT to a contract address that
	/// does not implement ERC721Receiver.
	error TransferToNonERC721ReceiverImplementer();

	/// @dev Thrown when linking to the DN404 base contract and the
	/// DN404 supportsInterface check fails or the call reverts.
	error CannotLink();

	/// @dev Thrown when a linkMirrorContract call is received and the
	/// NFT mirror contract has already been linked to a DN404 base contract.
	error AlreadyLinked();

	/// @dev Thrown when retrieving the base DN404 address when a link has not
	/// been established.
	error NotLinked();

	/*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
	/*                          STORAGE                           */
	/*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

	/// @dev Struct contain the NFT mirror contract storage.
	struct DN404NFTStorage {
		address baseERC20;
		address deployer;
	}

	/// @dev Returns a storage pointer for DN404NFTStorage.
	function _getDN404NFTStorage() internal pure virtual returns (DN404NFTStorage storage $) {
		/// @solidity memory-safe-assembly
		assembly {
			// `uint72(bytes9(keccak256("DN404_MIRROR_STORAGE")))`.
			$.slot := 0x3602298b8c10b01230 // Truncate to 9 bytes to reduce bytecode size.
		}
	}

	/*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
	/*                        CONSTRUCTOR                         */
	/*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

	constructor(address deployer) {
		// For non-proxies, we will store the deployer so that only the deployer can
		// link the base contract.
		_getDN404NFTStorage().deployer = deployer;
		_initializeOwner(deployer);
	}

	/*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
	/*                     ERC721 OPERATIONS                      */
	/*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

	/// @dev Returns the token collection name from the base DN404 contract.
	function name() public view virtual returns (string memory result) {
		address base = baseERC20();
		/// @solidity memory-safe-assembly
		assembly {
			result := mload(0x40)
			mstore(0x00, 0x06fdde03) // `name()`.
			if iszero(staticcall(gas(), base, 0x1c, 0x04, 0x00, 0x00)) {
				returndatacopy(result, 0x00, returndatasize())
				revert(result, returndatasize())
			}
			returndatacopy(0x00, 0x00, 0x20)
			returndatacopy(result, mload(0x00), 0x20)
			returndatacopy(add(result, 0x20), add(mload(0x00), 0x20), mload(result))
			mstore(0x40, add(add(result, 0x20), mload(result)))
		}
	}

	/// @dev Returns the token collection symbol from the base DN404 contract.
	function symbol() public view virtual returns (string memory result) {
		address base = baseERC20();
		/// @solidity memory-safe-assembly
		assembly {
			result := mload(0x40)
			mstore(0x00, 0x95d89b41) // `symbol()`.
			if iszero(staticcall(gas(), base, 0x1c, 0x04, 0x00, 0x00)) {
				returndatacopy(result, 0x00, returndatasize())
				revert(result, returndatasize())
			}
			returndatacopy(0x00, 0x00, 0x20)
			returndatacopy(result, mload(0x00), 0x20)
			returndatacopy(add(result, 0x20), add(mload(0x00), 0x20), mload(result))
			mstore(0x40, add(add(result, 0x20), mload(result)))
		}
	}

	/// @dev Returns the Uniform Resource Identifier (URI) for token `id` from
	/// the base DN404 contract.
	function tokenURI(uint256 id) public view virtual returns (string memory result) {
		address base = baseERC20();
		/// @solidity memory-safe-assembly
		assembly {
			result := mload(0x40)
			mstore(0x20, id)
			mstore(0x00, 0xc87b56dd) // `tokenURI()`.
			if iszero(staticcall(gas(), base, 0x1c, 0x24, 0x00, 0x00)) {
				returndatacopy(result, 0x00, returndatasize())
				revert(result, returndatasize())
			}
			returndatacopy(0x00, 0x00, 0x20)
			returndatacopy(result, mload(0x00), 0x20)
			returndatacopy(add(result, 0x20), add(mload(0x00), 0x20), mload(result))
			mstore(0x40, add(add(result, 0x20), mload(result)))
		}
	}

	/// @dev Returns the total NFT supply from the base DN404 contract.
	function totalSupply() public view virtual returns (uint256 result) {
		address base = baseERC20();
		/// @solidity memory-safe-assembly
		assembly {
			mstore(0x00, 0xe2c79281) // `totalNFTSupply()`.
			if iszero(
				and(gt(returndatasize(), 0x1f), staticcall(gas(), base, 0x1c, 0x04, 0x00, 0x20))
			) {
				returndatacopy(mload(0x40), 0x00, returndatasize())
				revert(mload(0x40), returndatasize())
			}
			result := mload(0x00)
		}
	}

	/// @dev Returns the number of NFT tokens owned by `owner` from the base DN404 contract.
	///
	/// Requirements:
	/// - `owner` must not be the zero address.
	function balanceOf(address owner) public view virtual returns (uint256 result) {
		address base = baseERC20();
		/// @solidity memory-safe-assembly
		assembly {
			mstore(0x20, shr(96, shl(96, owner)))
			mstore(0x00, 0xf5b100ea) // `balanceOfNFT(address)`.
			if iszero(
				and(gt(returndatasize(), 0x1f), staticcall(gas(), base, 0x1c, 0x24, 0x00, 0x20))
			) {
				returndatacopy(mload(0x40), 0x00, returndatasize())
				revert(mload(0x40), returndatasize())
			}
			result := mload(0x00)
		}
	}

	/// @dev Returns the owner of token `id` from the base DN404 contract.
	///
	/// Requirements:
	/// - Token `id` must exist.
	function ownerOf(uint256 id) public view virtual returns (address result) {
		address base = baseERC20();
		/// @solidity memory-safe-assembly
		assembly {
			mstore(0x00, 0x6352211e) // `ownerOf(uint256)`.
			mstore(0x20, id)
			if iszero(
				and(gt(returndatasize(), 0x1f), staticcall(gas(), base, 0x1c, 0x24, 0x00, 0x20))
			) {
				returndatacopy(mload(0x40), 0x00, returndatasize())
				revert(mload(0x40), returndatasize())
			}
			result := shr(96, mload(0x0c))
		}
	}

	/// @dev Sets `spender` as the approved account to manage token `id` in
	/// the base DN404 contract.
	///
	/// Requirements:
	/// - Token `id` must exist.
	/// - The caller must be the owner of the token,
	///   or an approved operator for the token owner.
	///
	/// Emits an {Approval} event.
	function approve(address spender, uint256 id) public virtual {
		address base = baseERC20();
		/// @solidity memory-safe-assembly
		assembly {
			spender := shr(96, shl(96, spender))
			let m := mload(0x40)
			mstore(0x00, 0xd10b6e0c) // `approveNFT(address,uint256,address)`.
			mstore(0x20, spender)
			mstore(0x40, id)
			mstore(0x60, caller())
			if iszero(
				and(
					gt(returndatasize(), 0x1f),
					call(gas(), base, callvalue(), 0x1c, 0x64, 0x00, 0x20)
				)
			) {
				returndatacopy(m, 0x00, returndatasize())
				revert(m, returndatasize())
			}
			mstore(0x40, m) // Restore the free memory pointer.
			mstore(0x60, 0) // Restore the zero pointer.
			// Emit the {Approval} event.
			log4(codesize(), 0x00, _APPROVAL_EVENT_SIGNATURE, shr(96, mload(0x0c)), spender, id)
		}
	}

	/// @dev Returns the account approved to manage token `id` from
	/// the base DN404 contract.
	///
	/// Requirements:
	/// - Token `id` must exist.
	function getApproved(uint256 id) public view virtual returns (address result) {
		address base = baseERC20();
		/// @solidity memory-safe-assembly
		assembly {
			mstore(0x00, 0x081812fc) // `getApproved(uint256)`.
			mstore(0x20, id)
			if iszero(
				and(gt(returndatasize(), 0x1f), staticcall(gas(), base, 0x1c, 0x24, 0x00, 0x20))
			) {
				returndatacopy(mload(0x40), 0x00, returndatasize())
				revert(mload(0x40), returndatasize())
			}
			result := shr(96, mload(0x0c))
		}
	}

	/// @dev Sets whether `operator` is approved to manage the tokens of the caller in
	/// the base DN404 contract.
	///
	/// Emits an {ApprovalForAll} event.
	function setApprovalForAll(address operator, bool approved) public virtual {
		address base = baseERC20();
		/// @solidity memory-safe-assembly
		assembly {
			operator := shr(96, shl(96, operator))
			let m := mload(0x40)
			mstore(0x00, 0x813500fc) // `setApprovalForAll(address,bool,address)`.
			mstore(0x20, operator)
			mstore(0x40, iszero(iszero(approved)))
			mstore(0x60, caller())
			if iszero(
				and(eq(mload(0x00), 1), call(gas(), base, callvalue(), 0x1c, 0x64, 0x00, 0x20))
			) {
				returndatacopy(m, 0x00, returndatasize())
				revert(m, returndatasize())
			}
			// Emit the {ApprovalForAll} event.
			log3(0x40, 0x20, _APPROVAL_FOR_ALL_EVENT_SIGNATURE, caller(), operator)
			mstore(0x40, m) // Restore the free memory pointer.
			mstore(0x60, 0) // Restore the zero pointer.
		}
	}

	/// @dev Returns whether `operator` is approved to manage the tokens of `owner` from
	/// the base DN404 contract.
	function isApprovedForAll(address owner, address operator)
		public
		view
		virtual
		returns (bool result)
	{
		address base = baseERC20();
		/// @solidity memory-safe-assembly
		assembly {
			let m := mload(0x40)
			mstore(0x40, operator)
			mstore(0x2c, shl(96, owner))
			mstore(0x0c, 0xe985e9c5000000000000000000000000) // `isApprovedForAll(address,address)`.
			if iszero(
				and(gt(returndatasize(), 0x1f), staticcall(gas(), base, 0x1c, 0x44, 0x00, 0x20))
			) {
				returndatacopy(m, 0x00, returndatasize())
				revert(m, returndatasize())
			}
			mstore(0x40, m) // Restore the free memory pointer.
			result := iszero(iszero(mload(0x00)))
		}
	}

	/// @dev Transfers token `id` from `from` to `to`.
	///
	/// Requirements:
	///
	/// - Token `id` must exist.
	/// - `from` must be the owner of the token.
	/// - `to` cannot be the zero address.
	/// - The caller must be the owner of the token, or be approved to manage the token.
	///
	/// Emits a {Transfer} event.
	function transferFrom(address from, address to, uint256 id) public virtual {
		address base = baseERC20();
		/// @solidity memory-safe-assembly
		assembly {
			from := shr(96, shl(96, from))
			to := shr(96, shl(96, to))
			let m := mload(0x40)
			mstore(m, 0xe5eb36c8) // `transferFromNFT(address,address,uint256,address)`.
			mstore(add(m, 0x20), from)
			mstore(add(m, 0x40), to)
			mstore(add(m, 0x60), id)
			mstore(add(m, 0x80), caller())
			if iszero(
				and(eq(mload(m), 1), call(gas(), base, callvalue(), add(m, 0x1c), 0x84, m, 0x20))
			) {
				returndatacopy(m, 0x00, returndatasize())
				revert(m, returndatasize())
			}
			// Emit the {Transfer} event.
			log4(codesize(), 0x00, _TRANSFER_EVENT_SIGNATURE, from, to, id)
		}
	}

	/// @dev Equivalent to `safeTransferFrom(from, to, id, "")`.
	function safeTransferFrom(address from, address to, uint256 id) public payable virtual {
		transferFrom(from, to, id);

		if (_hasCode(to)) _checkOnERC721Received(from, to, id, "");
	}

	/// @dev Transfers token `id` from `from` to `to`.
	///
	/// Requirements:
	///
	/// - Token `id` must exist.
	/// - `from` must be the owner of the token.
	/// - `to` cannot be the zero address.
	/// - The caller must be the owner of the token, or be approved to manage the token.
	/// - 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 id, bytes calldata data)
		public
		virtual
	{
		transferFrom(from, to, id);

		if (_hasCode(to)) _checkOnERC721Received(from, to, id, data);
	}

	/// @dev Returns true if this contract implements the interface defined by `interfaceId`.
	/// See: https://eips.ethereum.org/EIPS/eip-165
	/// This function call must use less than 30000 gas.
	function supportsInterface(bytes4 interfaceId) public view virtual returns (bool result) {
		/// @solidity memory-safe-assembly
		assembly {
			let s := shr(224, interfaceId)
			// ERC165: 0x01ffc9a7, ERC721: 0x80ac58cd, ERC721Metadata: 0x5b5e139f.
			result := or(or(eq(s, 0x01ffc9a7), eq(s, 0x80ac58cd)), eq(s, 0x5b5e139f))
		}
	}

	/*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
	/*                     MIRROR OPERATIONS                      */
	/*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

	/// @dev Returns the address of the base DN404 contract.
	function baseERC20() public view virtual returns (address base) {
		base = _getDN404NFTStorage().baseERC20;
		if (base == address(0)) revert NotLinked();
	}

	/// @dev Fallback modifier to execute calls from the base DN404 contract.
	modifier dn404NFTFallback() virtual {
		DN404NFTStorage storage $ = _getDN404NFTStorage();

		uint256 fnSelector = _calldataload(0x00) >> 224;

		// `logTransfer(uint256[])`.
		if (fnSelector == 0x263c69d6) {
			if (msg.sender != $.baseERC20) revert SenderNotBase();
			/// @solidity memory-safe-assembly
			assembly {
				// When returndatacopy copies 1 or more out-of-bounds bytes, it reverts.
				returndatacopy(0x00, returndatasize(), lt(calldatasize(), 0x20))
				let o := add(0x24, calldataload(0x04)) // Packed logs offset.
				returndatacopy(0x00, returndatasize(), lt(calldatasize(), o))
				let end := add(o, shl(5, calldataload(sub(o, 0x20))))
				returndatacopy(0x00, returndatasize(), lt(calldatasize(), end))

				for {} iszero(eq(o, end)) { o := add(0x20, o) } {
					let d := calldataload(o) // Entry in the packed logs.
					let a := shr(96, d) // The address.
					let b := and(1, d) // Whether it is a burn.
					log4(
						codesize(),
						0x00,
						_TRANSFER_EVENT_SIGNATURE,
						mul(a, b),
						mul(a, iszero(b)),
						shr(168, shl(160, d))
					)
				}
				mstore(0x00, 0x01)
				return(0x00, 0x20)
			}
		}
		// `linkMirrorContract(address)`.
		if (fnSelector == 0x0f4599e5) {
			if ($.deployer != address(0)) {
				if (address(uint160(_calldataload(0x04))) != $.deployer) {
					revert SenderNotDeployer();
				}
			}
			if ($.baseERC20 != address(0)) revert AlreadyLinked();
			$.baseERC20 = msg.sender;
			/// @solidity memory-safe-assembly
			assembly {
				mstore(0x00, 0x01)
				return(0x00, 0x20)
			}
		}
		_;
	}

	/// @dev Fallback function for calls from base DN404 contract.
	fallback() external payable virtual dn404NFTFallback {}

	receive() external payable virtual {}

	/*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
	/*                      PRIVATE HELPERS                       */
	/*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

	/// @dev Returns the calldata value at `offset`.
	function _calldataload(uint256 offset) private pure returns (uint256 value) {
		/// @solidity memory-safe-assembly
		assembly {
			value := calldataload(offset)
		}
	}

	/// @dev Returns if `a` has bytecode of non-zero length.
	function _hasCode(address a) private view returns (bool result) {
		/// @solidity memory-safe-assembly
		assembly {
			result := extcodesize(a) // Can handle dirty upper bits.
		}
	}

	/// @dev Perform a call to invoke {IERC721Receiver-onERC721Received} on `to`.
	/// Reverts if the target does not support the function correctly.
	function _checkOnERC721Received(address from, address to, uint256 id, bytes memory data)
		private
	{
		/// @solidity memory-safe-assembly
		assembly {
			// Prepare the calldata.
			let m := mload(0x40)
			let onERC721ReceivedSelector := 0x150b7a02
			mstore(m, onERC721ReceivedSelector)
			mstore(add(m, 0x20), caller()) // The `operator`, which is always `msg.sender`.
			mstore(add(m, 0x40), shr(96, shl(96, from)))
			mstore(add(m, 0x60), id)
			mstore(add(m, 0x80), 0x80)
			let n := mload(data)
			mstore(add(m, 0xa0), n)
			if n { pop(staticcall(gas(), 4, add(data, 0x20), n, add(m, 0xc0), n)) }
			// Revert if the call reverts.
			if iszero(call(gas(), to, 0, add(m, 0x1c), add(n, 0xa4), m, 0x20)) {
				if returndatasize() {
					// Bubble up the revert if the call reverts.
					returndatacopy(m, 0x00, returndatasize())
					revert(m, returndatasize())
				}
			}
			// Load the returndata and compare it.
			if iszero(eq(mload(m), shl(224, onERC721ReceivedSelector))) {
				mstore(0x00, 0xd1a57ed6) // `TransferToNonERC721ReceiverImplementer()`.
				revert(0x1c, 0x04)
			}
		}
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"deployer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[],"name":"AlreadyLinked","type":"error"},{"inputs":[],"name":"CannotLink","type":"error"},{"inputs":[],"name":"NewOwnerIsZeroAddress","type":"error"},{"inputs":[],"name":"NoHandoverRequest","type":"error"},{"inputs":[],"name":"NotLinked","type":"error"},{"inputs":[],"name":"SenderNotBase","type":"error"},{"inputs":[],"name":"SenderNotDeployer","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","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":"isApproved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"OwnershipHandoverCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"OwnershipHandoverRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldOwner","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":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseERC20","outputs":[{"internalType":"address","name":"base","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cancelOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingOwner","type":"address"}],"name":"completeOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"result","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":"result","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"result","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"result","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"result","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pendingOwner","type":"address"}],"name":"ownershipHandoverExpiresAt","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"requestOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","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":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"result","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"result","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"result","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561000f575f80fd5b50604051610e97380380610e9783398101604081905261002e9161009b565b683602298b8c10b0123180546001600160a01b0319166001600160a01b03831617905561005a81610060565b506100c8565b6001600160a01b0316638b78c6d819819055805f7f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08180a350565b5f602082840312156100ab575f80fd5b81516001600160a01b03811681146100c1575f80fd5b9392505050565b610dc2806100d55f395ff3fe608060405260043610610138575f3560e01c8063715018a6116100aa578063b88d4fde1161006e578063b88d4fde14610471578063c87b56dd14610490578063e985e9c5146104af578063f04e283e146104ce578063f2fde38b146104e1578063fee81cf4146104f45761013f565b8063715018a61461040a5780638da5cb5b1461041257806395d89b411461042a57806397e5311c1461043e578063a22cb465146104525761013f565b806323b872dd116100fc57806323b872dd1461038a57806325692962146103a957806342842e0e146103b157806354d1f13d146103c45780636352211e146103cc57806370a08231146103eb5761013f565b806301ffc9a7146102a057806306fdde03146102f1578063081812fc14610312578063095ea7b31461034957806318160ddd146103685761013f565b3661013f57005b683602298b8c10b012305f3560e01c63263c69d68190036102045781546001600160a01b0316331461018457604051631b1e598960e11b815260040160405180910390fd5b602036103d5f3e6004356024018036103d5f3e602081033560051b81018036103d5f3e5b8082146101f95781358060601c816001168260a01b60a81c811583028284027fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f38a45050508160200191506101a8565b505060015f5260205ff35b80630f4599e50361029e5760018201546001600160a01b03161561025a5760018201546001600160a01b03166004356001600160a01b03161461025a576040516362cf623d60e11b815260040160405180910390fd5b81546001600160a01b03161561028357604051635fb2b52360e11b815260040160405180910390fd5b81546001600160a01b0319163317825560015f908152602090f35b005b3480156102ab575f80fd5b506102dc6102ba366004610b6a565b6301ffc9a760e09190911c9081146380ac58cd821417635b5e139f9091141790565b60405190151581526020015b60405180910390f35b3480156102fc575f80fd5b50610305610525565b6040516102e89190610b98565b34801561031d575f80fd5b5061033161032c366004610be3565b610578565b6040516001600160a01b0390911681526020016102e8565b348015610354575f80fd5b5061029e610363366004610c15565b6105bb565b348015610373575f80fd5b5061037c61063b565b6040519081526020016102e8565b348015610395575f80fd5b5061029e6103a4366004610c3d565b610674565b61029e610700565b61029e6103bf366004610c3d565b61074d565b61029e61077e565b3480156103d7575f80fd5b506103316103e6366004610be3565b6107b7565b3480156103f6575f80fd5b5061037c610405366004610c76565b6107ed565b61029e610832565b34801561041d575f80fd5b50638b78c6d81954610331565b348015610435575f80fd5b50610305610845565b348015610449575f80fd5b50610331610873565b34801561045d575f80fd5b5061029e61046c366004610c8f565b6108a8565b34801561047c575f80fd5b5061029e61048b366004610cc8565b610925565b34801561049b575f80fd5b506103056104aa366004610be3565b61097f565b3480156104ba575f80fd5b506102dc6104c9366004610d5b565b6109d8565b61029e6104dc366004610c76565b610a27565b61029e6104ef366004610c76565b610a64565b3480156104ff575f80fd5b5061037c61050e366004610c76565b63389a75e1600c9081525f91909152602090205490565b60605f610530610873565b905060405191506306fdde035f525f806004601c845afa610553573d5f833e3d82fd5b60205f803e60205f51833e815160205f5101602084013e815160208301016040525090565b5f80610582610873565b905063081812fc5f528260205260205f6024601c845afa601f3d11166105ae573d5f6040513e3d604051fd5b5050600c5160601c919050565b5f6105c4610873565b90508260601b60601c925060405163d10b6e0c5f5283602052826040523360605260205f6064601c34865af1601f3d1116610601573d5f823e3d81fd5b80604052505f6060528183600c5160601c7f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9255f38a4505050565b5f80610645610873565b905063e2c792815f5260205f6004601c845afa601f3d111661066d573d5f6040513e3d604051fd5b50505f5190565b5f61067d610873565b90508360601b60601c93508260601b60601c925060405163e5eb36c881528460208201528360408201528260608201523360808201526020816084601c840134865af16001825114166106d2573d5f823e3d81fd5b508183857fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f38a450505050565b5f6202a30067ffffffffffffffff164201905063389a75e1600c52335f52806020600c2055337fdbf36a107da19e49527a7176a1babf963b4b0ff8cde35ee35d6cd8f1f9ac7e1d5f80a250565b610758838383610674565b813b156107795761077983838360405180602001604052805f815250610a8a565b505050565b63389a75e1600c52335f525f6020600c2055337ffa7b8eab7da67f412cc9575ed43464468f9bfbae89d1675917346ca6d8fe3c925f80a2565b5f806107c1610873565b9050636352211e5f528260205260205f6024601c845afa601f3d11166105ae573d5f6040513e3d604051fd5b5f806107f7610873565b90508260601b60601c60205263f5b100ea5f5260205f6024601c845afa601f3d1116610829573d5f6040513e3d604051fd5b50505f51919050565b61083a610b13565b6108435f610b2d565b565b60605f610850610873565b905060405191506395d89b415f525f806004601c845afa610553573d5f833e3d82fd5b683602298b8c10b01230546001600160a01b0316806108a557604051632d9523d760e11b815260040160405180910390fd5b90565b5f6108b1610873565b90508260601b60601c925060405163813500fc5f52836020528215156040523360605260205f6064601c34865af160015f5114166108f1573d5f823e3d81fd5b83337f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160206040a360405250505f60605250565b610930858585610674565b833b156109785761097885858585858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250610a8a92505050565b5050505050565b60605f61098a610873565b905060405191508260205263c87b56dd5f525f806024601c845afa6109b1573d5f833e3d82fd5b60205f803e60205f51833e815160205f5101602084013e8151602083010160405250919050565b5f806109e2610873565b9050604051836040528460601b602c5263e985e9c560601b600c5260205f6044601c855afa601f3d1116610a18573d5f823e3d81fd5b60405250505f51151592915050565b610a2f610b13565b63389a75e1600c52805f526020600c208054421115610a5557636f5e88185f526004601cfd5b5f9055610a6181610b2d565b50565b610a6c610b13565b8060601b610a8157637448fbae5f526004601cfd5b610a6181610b2d565b60405163150b7a028082523360208301528560601b60601c604083015283606083015260808083015282518060a08401528015610ad1578060c08401826020870160045afa505b60208360a48301601c86015f8a5af1610af2573d15610af2573d5f843e3d83fd5b508060e01b825114610b0b5763d1a57ed65f526004601cfd5b505050505050565b638b78c6d819543314610843576382b429005f526004601cfd5b638b78c6d81980546001600160a01b039092169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a355565b5f60208284031215610b7a575f80fd5b81356001600160e01b031981168114610b91575f80fd5b9392505050565b5f6020808352835180828501525f5b81811015610bc357858101830151858201604001528201610ba7565b505f604082860101526040601f19601f8301168501019250505092915050565b5f60208284031215610bf3575f80fd5b5035919050565b80356001600160a01b0381168114610c10575f80fd5b919050565b5f8060408385031215610c26575f80fd5b610c2f83610bfa565b946020939093013593505050565b5f805f60608486031215610c4f575f80fd5b610c5884610bfa565b9250610c6660208501610bfa565b9150604084013590509250925092565b5f60208284031215610c86575f80fd5b610b9182610bfa565b5f8060408385031215610ca0575f80fd5b610ca983610bfa565b915060208301358015158114610cbd575f80fd5b809150509250929050565b5f805f805f60808688031215610cdc575f80fd5b610ce586610bfa565b9450610cf360208701610bfa565b935060408601359250606086013567ffffffffffffffff80821115610d16575f80fd5b818801915088601f830112610d29575f80fd5b813581811115610d37575f80fd5b896020828501011115610d48575f80fd5b9699959850939650602001949392505050565b5f8060408385031215610d6c575f80fd5b610d7583610bfa565b9150610d8360208401610bfa565b9050925092905056fea264697066735822122014132e2dba0057e1e9509430b17f78c07e06c5e3699bd2b2f59ca5ce52d1254f64736f6c63430008140033000000000000000000000000a1de861f64aaad3c79d70c86abd7e7a23692d853

Deployed Bytecode

0x608060405260043610610138575f3560e01c8063715018a6116100aa578063b88d4fde1161006e578063b88d4fde14610471578063c87b56dd14610490578063e985e9c5146104af578063f04e283e146104ce578063f2fde38b146104e1578063fee81cf4146104f45761013f565b8063715018a61461040a5780638da5cb5b1461041257806395d89b411461042a57806397e5311c1461043e578063a22cb465146104525761013f565b806323b872dd116100fc57806323b872dd1461038a57806325692962146103a957806342842e0e146103b157806354d1f13d146103c45780636352211e146103cc57806370a08231146103eb5761013f565b806301ffc9a7146102a057806306fdde03146102f1578063081812fc14610312578063095ea7b31461034957806318160ddd146103685761013f565b3661013f57005b683602298b8c10b012305f3560e01c63263c69d68190036102045781546001600160a01b0316331461018457604051631b1e598960e11b815260040160405180910390fd5b602036103d5f3e6004356024018036103d5f3e602081033560051b81018036103d5f3e5b8082146101f95781358060601c816001168260a01b60a81c811583028284027fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f38a45050508160200191506101a8565b505060015f5260205ff35b80630f4599e50361029e5760018201546001600160a01b03161561025a5760018201546001600160a01b03166004356001600160a01b03161461025a576040516362cf623d60e11b815260040160405180910390fd5b81546001600160a01b03161561028357604051635fb2b52360e11b815260040160405180910390fd5b81546001600160a01b0319163317825560015f908152602090f35b005b3480156102ab575f80fd5b506102dc6102ba366004610b6a565b6301ffc9a760e09190911c9081146380ac58cd821417635b5e139f9091141790565b60405190151581526020015b60405180910390f35b3480156102fc575f80fd5b50610305610525565b6040516102e89190610b98565b34801561031d575f80fd5b5061033161032c366004610be3565b610578565b6040516001600160a01b0390911681526020016102e8565b348015610354575f80fd5b5061029e610363366004610c15565b6105bb565b348015610373575f80fd5b5061037c61063b565b6040519081526020016102e8565b348015610395575f80fd5b5061029e6103a4366004610c3d565b610674565b61029e610700565b61029e6103bf366004610c3d565b61074d565b61029e61077e565b3480156103d7575f80fd5b506103316103e6366004610be3565b6107b7565b3480156103f6575f80fd5b5061037c610405366004610c76565b6107ed565b61029e610832565b34801561041d575f80fd5b50638b78c6d81954610331565b348015610435575f80fd5b50610305610845565b348015610449575f80fd5b50610331610873565b34801561045d575f80fd5b5061029e61046c366004610c8f565b6108a8565b34801561047c575f80fd5b5061029e61048b366004610cc8565b610925565b34801561049b575f80fd5b506103056104aa366004610be3565b61097f565b3480156104ba575f80fd5b506102dc6104c9366004610d5b565b6109d8565b61029e6104dc366004610c76565b610a27565b61029e6104ef366004610c76565b610a64565b3480156104ff575f80fd5b5061037c61050e366004610c76565b63389a75e1600c9081525f91909152602090205490565b60605f610530610873565b905060405191506306fdde035f525f806004601c845afa610553573d5f833e3d82fd5b60205f803e60205f51833e815160205f5101602084013e815160208301016040525090565b5f80610582610873565b905063081812fc5f528260205260205f6024601c845afa601f3d11166105ae573d5f6040513e3d604051fd5b5050600c5160601c919050565b5f6105c4610873565b90508260601b60601c925060405163d10b6e0c5f5283602052826040523360605260205f6064601c34865af1601f3d1116610601573d5f823e3d81fd5b80604052505f6060528183600c5160601c7f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9255f38a4505050565b5f80610645610873565b905063e2c792815f5260205f6004601c845afa601f3d111661066d573d5f6040513e3d604051fd5b50505f5190565b5f61067d610873565b90508360601b60601c93508260601b60601c925060405163e5eb36c881528460208201528360408201528260608201523360808201526020816084601c840134865af16001825114166106d2573d5f823e3d81fd5b508183857fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f38a450505050565b5f6202a30067ffffffffffffffff164201905063389a75e1600c52335f52806020600c2055337fdbf36a107da19e49527a7176a1babf963b4b0ff8cde35ee35d6cd8f1f9ac7e1d5f80a250565b610758838383610674565b813b156107795761077983838360405180602001604052805f815250610a8a565b505050565b63389a75e1600c52335f525f6020600c2055337ffa7b8eab7da67f412cc9575ed43464468f9bfbae89d1675917346ca6d8fe3c925f80a2565b5f806107c1610873565b9050636352211e5f528260205260205f6024601c845afa601f3d11166105ae573d5f6040513e3d604051fd5b5f806107f7610873565b90508260601b60601c60205263f5b100ea5f5260205f6024601c845afa601f3d1116610829573d5f6040513e3d604051fd5b50505f51919050565b61083a610b13565b6108435f610b2d565b565b60605f610850610873565b905060405191506395d89b415f525f806004601c845afa610553573d5f833e3d82fd5b683602298b8c10b01230546001600160a01b0316806108a557604051632d9523d760e11b815260040160405180910390fd5b90565b5f6108b1610873565b90508260601b60601c925060405163813500fc5f52836020528215156040523360605260205f6064601c34865af160015f5114166108f1573d5f823e3d81fd5b83337f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160206040a360405250505f60605250565b610930858585610674565b833b156109785761097885858585858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f92019190915250610a8a92505050565b5050505050565b60605f61098a610873565b905060405191508260205263c87b56dd5f525f806024601c845afa6109b1573d5f833e3d82fd5b60205f803e60205f51833e815160205f5101602084013e8151602083010160405250919050565b5f806109e2610873565b9050604051836040528460601b602c5263e985e9c560601b600c5260205f6044601c855afa601f3d1116610a18573d5f823e3d81fd5b60405250505f51151592915050565b610a2f610b13565b63389a75e1600c52805f526020600c208054421115610a5557636f5e88185f526004601cfd5b5f9055610a6181610b2d565b50565b610a6c610b13565b8060601b610a8157637448fbae5f526004601cfd5b610a6181610b2d565b60405163150b7a028082523360208301528560601b60601c604083015283606083015260808083015282518060a08401528015610ad1578060c08401826020870160045afa505b60208360a48301601c86015f8a5af1610af2573d15610af2573d5f843e3d83fd5b508060e01b825114610b0b5763d1a57ed65f526004601cfd5b505050505050565b638b78c6d819543314610843576382b429005f526004601cfd5b638b78c6d81980546001600160a01b039092169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a355565b5f60208284031215610b7a575f80fd5b81356001600160e01b031981168114610b91575f80fd5b9392505050565b5f6020808352835180828501525f5b81811015610bc357858101830151858201604001528201610ba7565b505f604082860101526040601f19601f8301168501019250505092915050565b5f60208284031215610bf3575f80fd5b5035919050565b80356001600160a01b0381168114610c10575f80fd5b919050565b5f8060408385031215610c26575f80fd5b610c2f83610bfa565b946020939093013593505050565b5f805f60608486031215610c4f575f80fd5b610c5884610bfa565b9250610c6660208501610bfa565b9150604084013590509250925092565b5f60208284031215610c86575f80fd5b610b9182610bfa565b5f8060408385031215610ca0575f80fd5b610ca983610bfa565b915060208301358015158114610cbd575f80fd5b809150509250929050565b5f805f805f60808688031215610cdc575f80fd5b610ce586610bfa565b9450610cf360208701610bfa565b935060408601359250606086013567ffffffffffffffff80821115610d16575f80fd5b818801915088601f830112610d29575f80fd5b813581811115610d37575f80fd5b896020828501011115610d48575f80fd5b9699959850939650602001949392505050565b5f8060408385031215610d6c575f80fd5b610d7583610bfa565b9150610d8360208401610bfa565b9050925092905056fea264697066735822122014132e2dba0057e1e9509430b17f78c07e06c5e3699bd2b2f59ca5ce52d1254f64736f6c63430008140033

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

000000000000000000000000a1de861F64AAAd3c79d70c86aBD7e7A23692d853

-----Decoded View---------------
Arg [0] : deployer (address): 0xa1de861F64AAAd3c79d70c86aBD7e7A23692d853

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a1de861F64AAAd3c79d70c86aBD7e7A23692d853


Deployed Bytecode Sourcemap

10846:18508:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14044:20;25603:25;27793:20;25703:3;25680:26;25763:10;25749:24;;;25745:988;;25799:11;;-1:-1:-1;;;;;25799:11:0;25785:10;:25;25781:53;;25819:15;;-1:-1:-1;;;25819:15:0;;;;;;;;;;;25781:53;26031:4;26015:14;26012:24;25994:16;25988:4;25973:64;26075:4;26062:18;26056:4;26052:29;26168:1;26152:14;26149:21;26131:16;26125:4;26110:61;26222:4;26219:1;26215:12;26202:26;26199:1;26195:34;26192:1;26188:42;26294:3;26278:14;26275:23;26257:16;26251:4;26236:63;26307:367;26327:3;26324:1;26321:10;26307:367;;26385:1;26372:15;26440:1;26436:2;26432:10;26481:1;26478;26474:9;26656:1;26651:3;26647:11;26642:3;26638:21;26626:1;26619:9;26616:1;26612:17;26601:1;26598;26594:9;26560:25;26547:4;26528:10;26515:152;;;;26350:1;26344:4;26340:12;26335:17;;26307:367;;;26311:2;;26693:4;26687;26680:18;26717:4;26711;26704:18;25745:988;26778:10;26792;26778:24;26774:380;;26814:10;;;;-1:-1:-1;;;;;26814:10:0;:24;26810:142;;26892:10;;;;-1:-1:-1;;;;;26892:10:0;26881:4;27793:20;-1:-1:-1;;;;;26851:51:0;;26847:99;;26919:19;;-1:-1:-1;;;26919:19:0;;;;;;;;;;;26847:99;26961:11;;-1:-1:-1;;;;;26961:11:0;:25;26957:53;;26995:15;;-1:-1:-1;;;26995:15:0;;;;;;;;;;;26957:53;27016:24;;-1:-1:-1;;;;;;27016:24:0;27030:10;27016:24;;;;:11;27101:18;;;27138:4;;27125:18;26774:380;25598:1566;24656:339;;;;;;;;;;-1:-1:-1;24656:339:0;;;;;:::i;:::-;24935:10;24816:3;24812:21;;;;24929:17;;;24954:10;24948:17;;24926:40;24974:10;24968:17;;;24923:63;;24656:339;;;;470:14:1;;463:22;445:41;;433:2;418:18;24656:339:0;;;;;;;;14954:605;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20124:498::-;;;;;;;;;;-1:-1:-1;20124:498:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1399:32:1;;;1381:51;;1369:2;1354:18;20124:498:0;1235:203:1;19151:814:0;;;;;;;;;;-1:-1:-1;19151:814:0;;;;;:::i;:::-;;:::i;17082:454::-;;;;;;;;;;;;;:::i;:::-;;;2026:25:1;;;2014:2;1999:18;17082:454:0;1880:177:1;22747:762:0;;;;;;;;;;-1:-1:-1;22747:762:0;;;;;:::i;:::-;;:::i;7746:507::-;;;:::i;23577:188::-;;;;;;:::i;:::-;;:::i;8332:391::-;;;:::i;18351:490::-;;;;;;;;;;-1:-1:-1;18351:490:0;;;;;:::i;:::-;;:::i;17704:512::-;;;;;;;;;;-1:-1:-1;17704:512:0;;;;;:::i;:::-;;:::i;7499:93::-;;;:::i;9826:157::-;;;;;;;;;;-1:-1:-1;;;9956:18:0;9826:157;;15641:609;;;;;;;;;;;;;:::i;25322:159::-;;;;;;;;;;;;;:::i;20788:823::-;;;;;;;;;;-1:-1:-1;20788:823:0;;;;;:::i;:::-;;:::i;24243:211::-;;;;;;;;;;-1:-1:-1;24243:211:0;;;;;:::i;:::-;;:::i;16363:644::-;;;;;;;;;;-1:-1:-1;16363:644:0;;;;;:::i;:::-;;:::i;21734:679::-;;;;;;;;;;-1:-1:-1;21734:679:0;;;;;:::i;:::-;;:::i;8905:592::-;;;;;;:::i;:::-;;:::i;7148:289::-;;;;;;:::i;:::-;;:::i;10083:356::-;;;;;;;;;;-1:-1:-1;10083:356:0;;;;;:::i;:::-;10305:19;10299:4;10292:33;;;10182:14;10330:26;;;;10424:4;10408:21;;10402:28;;10083:356;14954:605;14999:20;15026:12;15041:11;:9;:11::i;:::-;15026:26;;15126:4;15120:11;15110:21;;15149:10;15143:4;15136:24;15230:4;15224;15218;15212;15206;15199:5;15188:47;15178:156;;15273:16;15267:4;15259:6;15244:46;15311:16;15303:6;15296:32;15178:156;15366:4;15360;15354;15339:32;15412:4;15405;15399:11;15391:6;15376:41;15486:6;15480:13;15473:4;15466;15460:11;15456:22;15449:4;15441:6;15437:17;15422:72;15541:6;15535:13;15528:4;15520:6;15516:17;15512:37;15506:4;15499:51;15104:451;14954:605;:::o;20124:498::-;20186:14;20207:12;20222:11;:9;:11::i;:::-;20207:26;;20304:10;20298:4;20291:24;20360:2;20354:4;20347:16;20458:4;20452;20446;20440;20434;20427:5;20416:47;20409:4;20391:16;20388:26;20384:80;20368:210;;20512:16;20506:4;20499;20493:11;20478:51;20555:16;20548:4;20542:11;20535:37;20368:210;-1:-1:-1;;20607:4:0;20601:11;20597:2;20593:20;;20124:498;-1:-1:-1;20124:498:0:o;19151:814::-;19217:12;19232:11;:9;:11::i;:::-;19217:26;;19328:7;19324:2;19320:16;19316:2;19312:25;19301:36;;19357:4;19351:11;19380:10;19374:4;19367:24;19451:7;19445:4;19438:21;19477:2;19471:4;19464:16;19498:8;19492:4;19485:22;19622:4;19616;19610;19604;19591:11;19585:4;19578:5;19573:54;19560:4;19542:16;19539:26;19528:106;19512:216;;19672:16;19666:4;19663:1;19648:41;19705:16;19702:1;19695:27;19512:216;19746:1;19740:4;19733:15;;19802:1;19796:4;19789:15;19953:2;19944:7;19936:4;19930:11;19926:2;19922:20;19895:25;19889:4;19877:10;19872:84;19295:666;19151:814;;:::o;17082:454::-;17134:14;17155:12;17170:11;:9;:11::i;:::-;17155:26;;17252:10;17246:4;17239:24;17381:4;17375;17369;17363;17357;17350:5;17339:47;17332:4;17314:16;17311:26;17307:80;17291:210;;17435:16;17429:4;17422;17416:11;17401:51;17478:16;17471:4;17465:11;17458:37;17291:210;-1:-1:-1;;17522:4:0;17516:11;;17082:454::o;22747:762::-;22827:12;22842:11;:9;:11::i;:::-;22827:26;;22935:4;22931:2;22927:13;22923:2;22919:22;22911:30;;22968:2;22964;22960:11;22956:2;22952:20;22946:26;;22992:4;22986:11;23012:10;23009:1;23002:21;23104:4;23097;23094:1;23090:12;23083:26;23135:2;23128:4;23125:1;23121:12;23114:24;23164:2;23157:4;23154:1;23150:12;23143:24;23193:8;23186:4;23183:1;23179:12;23172:30;23298:4;23295:1;23289:4;23282;23279:1;23275:12;23262:11;23256:4;23249:5;23244:59;23240:1;23236;23230:8;23227:15;23223:81;23207:191;;23342:16;23336:4;23333:1;23318:41;23375:16;23372:1;23365:27;23207:191;;23497:2;23493;23487:4;23460:25;23454:4;23442:10;23437:63;22905:600;22747:762;;;:::o;7746:507::-;7826:15;6782:9;7844:46;;:15;:46;7826:64;;8020:19;8014:4;8007:33;8059:8;8053:4;8046:22;8104:7;8097:4;8091;8081:21;8074:38;8229:8;8182:45;8179:1;8176;8171:67;7944:300;7746:507::o;23577:188::-;23669:26;23682:4;23688:2;23692;23669:12;:26::i;:::-;28018:14;;23702:58;;;23720:40;23743:4;23749:2;23753;23720:40;;;;;;;;;;;;:22;:40::i;:::-;23577:188;;;:::o;8332:391::-;8508:19;8502:4;8495:33;8546:8;8540:4;8533:22;8590:1;8583:4;8577;8567:21;8560:32;8705:8;8659:44;8656:1;8653;8648:66;8332:391::o;18351:490::-;18409:14;18430:12;18445:11;:9;:11::i;:::-;18430:26;;18527:10;18521:4;18514:24;18579:2;18573:4;18566:16;18677:4;18671;18665;18659;18653;18646:5;18635:47;18628:4;18610:16;18607:26;18603:80;18587:210;;18731:16;18725:4;18718;18712:11;18697:51;18774:16;18767:4;18761:11;18754:37;17704:512;17767:14;17788:12;17803:11;:9;:11::i;:::-;17788:26;;17901:5;17897:2;17893:14;17889:2;17885:23;17879:4;17872:37;17927:10;17921:4;17914:24;18061:4;18055;18049;18043;18037;18030:5;18019:47;18012:4;17994:16;17991:26;17987:80;17971:210;;18115:16;18109:4;18102;18096:11;18081:51;18158:16;18151:4;18145:11;18138:37;17971:210;-1:-1:-1;;18202:4:0;18196:11;;17704:512;-1:-1:-1;17704:512:0:o;7499:93::-;10815:13;:11;:13::i;:::-;7566:21:::1;7584:1;7566:9;:21::i;:::-;7499:93::o:0;15641:609::-;15688:20;15715:12;15730:11;:9;:11::i;:::-;15715:26;;15815:4;15809:11;15799:21;;15838:10;15832:4;15825:24;15921:4;15915;15909;15903;15897;15890:5;15879:47;15869:156;;15964:16;15958:4;15950:6;15935:46;16002:16;15994:6;15987:32;25322:159;14044:20;25398:31;-1:-1:-1;;;;;25398:31:0;;25434:42;;25465:11;;-1:-1:-1;;;25465:11:0;;;;;;;;;;;25434:42;25322:159;:::o;20788:823::-;20868:12;20883:11;:9;:11::i;:::-;20868:26;;20980:8;20976:2;20972:17;20968:2;20964:26;20952:38;;21010:4;21004:11;21033:10;21027:4;21020:24;21108:8;21102:4;21095:22;21149:8;21142:16;21135:24;21129:4;21122:38;21178:8;21172:4;21165:22;21281:4;21275;21269;21263;21250:11;21244:4;21237:5;21232:54;21228:1;21221:4;21215:11;21212:18;21208:79;21192:189;;21325:16;21319:4;21316:1;21301:41;21358:16;21355:1;21348:27;21192:189;21488:8;21478;21443:33;21437:4;21431;21426:71;21509:4;21502:15;-1:-1:-1;;21571:1:0;21565:4;21558:15;-1:-1:-1;20788:823:0:o;24243:211::-;24356:26;24369:4;24375:2;24379;24356:12;:26::i;:::-;28018:14;;24389:60;;;24407:42;24430:4;24436:2;24440;24444:4;;24407:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24407:22:0;;-1:-1:-1;;;24407:42:0:i;:::-;24243:211;;;;;:::o;16363:644::-;16422:20;16449:12;16464:11;:9;:11::i;:::-;16449:26;;16549:4;16543:11;16533:21;;16572:2;16566:4;16559:16;16593:10;16587:4;16580:24;16678:4;16672;16666;16660;16654;16647:5;16636:47;16626:156;;16721:16;16715:4;16707:6;16692:46;16759:16;16751:6;16744:32;16626:156;16814:4;16808;16802;16787:32;16860:4;16853;16847:11;16839:6;16824:41;16934:6;16928:13;16921:4;16914;16908:11;16904:22;16897:4;16889:6;16885:17;16870:72;16989:6;16983:13;16976:4;16968:6;16964:17;16960:37;16954:4;16947:51;16527:476;16363:644;;;:::o;21734:679::-;21834:11;21854:12;21869:11;:9;:11::i;:::-;21854:26;;21953:4;21947:11;21976:8;21970:4;21963:22;22011:5;22007:2;22003:14;21997:4;21990:28;-1:-1:-1;;;22030:4:0;22023:48;22206:4;22200;22194;22188;22182;22175:5;22164:47;22157:4;22139:16;22136:26;22132:80;22116:190;;22250:16;22244:4;22241:1;22226:41;22283:16;22280:1;22273:27;22116:190;22318:4;22311:15;-1:-1:-1;;22397:4:0;22391:11;22384:19;22377:27;;21734:679;-1:-1:-1;;21734:679:0:o;8905:592::-;10815:13;:11;:13::i;:::-;9113:19:::1;9107:4;9100:33;9151:12;9145:4;9138:26;9205:4;9199;9189:21;9295:12;9289:19;9276:11;9273:36;9270:127;;;9330:10;9324:4;9317:24;9386:4;9380;9373:18;9270:127;9458:1;9437:23:::0;;9469::::1;9479:12:::0;9469:9:::1;:23::i;:::-;8905:592:::0;:::o;7148:289::-;10815:13;:11;:13::i;:::-;7302:8:::1;7298:2;7294:17;7284:120;;7333:10;7327:4;7320:24;7393:4;7387;7380:18;7284:120;7413:19;7423:8;7413:9;:19::i;28227:1124::-:0;28431:4;28425:11;28473:10;28498:24;28495:1;28488:35;28549:8;28542:4;28539:1;28535:12;28528:30;28649:4;28645:2;28641:13;28637:2;28633:22;28626:4;28623:1;28619:12;28612:44;28682:2;28675:4;28672:1;28668:12;28661:24;28711:4;28704;28701:1;28697:12;28690:26;28736:4;28730:11;28767:1;28760:4;28757:1;28753:12;28746:23;28777:1;28774:71;;;28840:1;28833:4;28830:1;28826:12;28823:1;28816:4;28810;28806:15;28803:1;28796:5;28785:57;28781:62;28774:71;28945:4;28942:1;28935:4;28932:1;28928:12;28921:4;28918:1;28914:12;28911:1;28907:2;28900:5;28895:55;28885:241;;28962:16;28959:161;;;29062:16;29056:4;29053:1;29038:41;29096:16;29093:1;29086:27;28959:161;28885:241;29206:24;29201:3;29197:34;29193:1;29187:8;29184:48;29174:168;;29254:10;29248:4;29241:24;29331:4;29325;29318:18;29174:168;;;28227:1124;;;;:::o;6177:292::-;-1:-1:-1;;6357:18:0;6347:8;6344:32;6334:126;;6398:10;6392:4;6385:24;6449:4;6443;6436:18;5252:870;-1:-1:-1;;6018:16:0;;-1:-1:-1;;;;;5888:26:0;;;;;;5978:38;5975:1;;5967:78;6080:27;5252:870::o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;199:71;289:5;14:286;-1:-1:-1;;;14:286:1:o;497:548::-;609:4;638:2;667;656:9;649:21;699:6;693:13;742:6;737:2;726:9;722:18;715:34;767:1;777:140;791:6;788:1;785:13;777:140;;;886:14;;;882:23;;876:30;852:17;;;871:2;848:26;841:66;806:10;;777:140;;;781:3;966:1;961:2;952:6;941:9;937:22;933:31;926:42;1036:2;1029;1025:7;1020:2;1012:6;1008:15;1004:29;993:9;989:45;985:54;977:62;;;;497:548;;;;:::o;1050:180::-;1109:6;1162:2;1150:9;1141:7;1137:23;1133:32;1130:52;;;1178:1;1175;1168:12;1130:52;-1:-1:-1;1201:23:1;;1050:180;-1:-1:-1;1050:180:1:o;1443:173::-;1511:20;;-1:-1:-1;;;;;1560:31:1;;1550:42;;1540:70;;1606:1;1603;1596:12;1540:70;1443:173;;;:::o;1621:254::-;1689:6;1697;1750:2;1738:9;1729:7;1725:23;1721:32;1718:52;;;1766:1;1763;1756:12;1718:52;1789:29;1808:9;1789:29;:::i;:::-;1779:39;1865:2;1850:18;;;;1837:32;;-1:-1:-1;;;1621:254:1:o;2062:328::-;2139:6;2147;2155;2208:2;2196:9;2187:7;2183:23;2179:32;2176:52;;;2224:1;2221;2214:12;2176:52;2247:29;2266:9;2247:29;:::i;:::-;2237:39;;2295:38;2329:2;2318:9;2314:18;2295:38;:::i;:::-;2285:48;;2380:2;2369:9;2365:18;2352:32;2342:42;;2062:328;;;;;:::o;2395:186::-;2454:6;2507:2;2495:9;2486:7;2482:23;2478:32;2475:52;;;2523:1;2520;2513:12;2475:52;2546:29;2565:9;2546:29;:::i;2586:347::-;2651:6;2659;2712:2;2700:9;2691:7;2687:23;2683:32;2680:52;;;2728:1;2725;2718:12;2680:52;2751:29;2770:9;2751:29;:::i;:::-;2741:39;;2830:2;2819:9;2815:18;2802:32;2877:5;2870:13;2863:21;2856:5;2853:32;2843:60;;2899:1;2896;2889:12;2843:60;2922:5;2912:15;;;2586:347;;;;;:::o;2938:808::-;3035:6;3043;3051;3059;3067;3120:3;3108:9;3099:7;3095:23;3091:33;3088:53;;;3137:1;3134;3127:12;3088:53;3160:29;3179:9;3160:29;:::i;:::-;3150:39;;3208:38;3242:2;3231:9;3227:18;3208:38;:::i;:::-;3198:48;;3293:2;3282:9;3278:18;3265:32;3255:42;;3348:2;3337:9;3333:18;3320:32;3371:18;3412:2;3404:6;3401:14;3398:34;;;3428:1;3425;3418:12;3398:34;3466:6;3455:9;3451:22;3441:32;;3511:7;3504:4;3500:2;3496:13;3492:27;3482:55;;3533:1;3530;3523:12;3482:55;3573:2;3560:16;3599:2;3591:6;3588:14;3585:34;;;3615:1;3612;3605:12;3585:34;3660:7;3655:2;3646:6;3642:2;3638:15;3634:24;3631:37;3628:57;;;3681:1;3678;3671:12;3628:57;2938:808;;;;-1:-1:-1;2938:808:1;;-1:-1:-1;3712:2:1;3704:11;;3734:6;2938:808;-1:-1:-1;;;2938:808:1:o;3751:260::-;3819:6;3827;3880:2;3868:9;3859:7;3855:23;3851:32;3848:52;;;3896:1;3893;3886:12;3848:52;3919:29;3938:9;3919:29;:::i;:::-;3909:39;;3967:38;4001:2;3990:9;3986:18;3967:38;:::i;:::-;3957:48;;3751:260;;;;;:::o

Swarm Source

ipfs://14132e2dba0057e1e9509430b17f78c07e06c5e3699bd2b2f59ca5ce52d1254f
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.