ERC-721
NFT
Overview
Max Total Supply
7,986 LOKL
Holders
2,195
Market
Volume (24H)
0.2997 ETH
Min Price (24H)
$64.62 @ 0.025700 ETH
Max Price (24H)
$688.92 @ 0.274000 ETH
Other Info
Token Contract
Balance
2 LOKLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KingdomLand
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-03 */ pragma solidity ^0.5.12; /* * @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 GSN 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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Required interface of an ERC721 compliant contract. */ contract IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of NFTs in `owner`'s account. */ function balanceOf(address owner) public view returns (uint256 balance); /** * @dev Returns the owner of the NFT specified by `tokenId`. */ function ownerOf(uint256 tokenId) public view returns (address owner); /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * * * Requirements: * - `from`, `to` cannot be zero. * - `tokenId` must be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this * NFT by either {approve} or {setApprovalForAll}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public; /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * Requirements: * - If the caller is not `from`, it must be approved to move this NFT by * either {approve} or {setApprovalForAll}. */ function transferFrom(address from, address to, uint256 tokenId) public; function approve(address to, uint256 tokenId) public; function getApproved(uint256 tokenId) public view returns (address operator); function setApprovalForAll(address operator, bool _approved) public; function isApprovedForAll(address owner, address operator) public view returns (bool); function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public; } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ contract IERC721Receiver { /** * @notice Handle the receipt of an NFT * @dev The ERC721 smart contract calls this function on the recipient * after a {IERC721-safeTransferFrom}. This function MUST return the function selector, * otherwise the caller will revert the transaction. The selector to be * returned can be obtained as `this.onERC721Received.selector`. This * function MAY throw to revert and reject the transfer. * Note: the ERC721 contract address is always the message sender. * @param operator The address which called `safeTransferFrom` function * @param from The address which previously owned the token * @param tokenId The NFT identifier which is being transferred * @param data Additional data with no specified format * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` */ function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data) public returns (bytes4); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * NOTE: This is a feature of the next version of OpenZeppelin Contracts. * @dev Get it via `npm install @openzeppelin/contracts@next`. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * NOTE: This is a feature of the next version of OpenZeppelin Contracts. * @dev Get it via `npm install @openzeppelin/contracts@next`. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * NOTE: This is a feature of the next version of OpenZeppelin Contracts. * @dev Get it via `npm install @openzeppelin/contracts@next`. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and there may be false-negatives: during the * execution of a contract's constructor, its address will be reported as * not containing a contract. * * IMPORTANT: It is unsafe to assume that an address for which this * function returns false is an externally-owned account (EOA) and not a * contract. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != 0x0 && codehash != accountHash); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * NOTE: This is a feature of the next version of OpenZeppelin Contracts. * @dev Get it via `npm install @openzeppelin/contracts@next`. */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } } /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath} * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never * directly accessed. */ library Counters { using SafeMath for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from token ID to owner mapping (uint256 => address) private _tokenOwner; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to number of owned token mapping (address => Counters.Counter) private _ownedTokensCount; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; constructor () public { // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); } /** * @dev Gets the balance of the specified address. * @param owner address to query the balance of * @return uint256 representing the amount owned by the passed address */ function balanceOf(address owner) public view returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _ownedTokensCount[owner].current(); } /** * @dev Gets the owner of the specified token ID. * @param tokenId uint256 ID of the token to query the owner of * @return address currently marked as the owner of the given token ID */ function ownerOf(uint256 tokenId) public view returns (address) { address owner = _tokenOwner[tokenId]; // require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev Approves another address to transfer the given token ID * The zero address indicates there is no approved address. * There can only be one approved address per token at a given time. * Can only be called by the token owner or an approved operator. * @param to address to be approved for the given token ID * @param tokenId uint256 ID of the token to be approved */ function approve(address to, uint256 tokenId) public { address owner = ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Gets the approved address for a token ID, or zero if no address set * Reverts if the token ID does not exist. * @param tokenId uint256 ID of the token to query the approval of * @return address currently approved for the given token ID */ function getApproved(uint256 tokenId) public view returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev Sets or unsets the approval of a given operator * An operator is allowed to transfer all tokens of the sender on their behalf. * @param to operator address to set the approval * @param approved representing the status of the approval to be set */ function setApprovalForAll(address to, bool approved) public { require(to != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][to] = approved; emit ApprovalForAll(_msgSender(), to, approved); } /** * @dev Tells whether an operator is approved by a given owner. * @param owner owner address which you want to query the approval of * @param operator operator address which you want to query the approval of * @return bool whether the given operator is approved by the given owner */ function isApprovedForAll(address owner, address operator) public view returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Transfers the ownership of a given token ID to another address. * Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * Requires the msg.sender to be the owner, approved, or operator. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function transferFrom(address from, address to, uint256 tokenId) public { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transferFrom(from, to, tokenId); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the _msgSender() to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransferFrom(from, to, tokenId, _data); } /** * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ function _safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) internal { _transferFrom(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether the specified token exists. * @param tokenId uint256 ID of the token to query the existence of * @return bool whether the token exists */ function _exists(uint256 tokenId) internal view returns (bool) { address owner = _tokenOwner[tokenId]; return owner != address(0); } /** * @dev Returns whether the given spender can transfer a given token ID. * @param spender address of the spender to query * @param tokenId uint256 ID of the token to be transferred * @return bool whether the msg.sender is approved for the given token ID, * is an operator of the owner, or is the owner of the token */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _safeMint(address to, uint256 tokenId) internal { _safeMint(to, tokenId, ""); } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted * @param _data bytes data to send along with a safe transfer check */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Internal function to mint a new token. * Reverts if the given token ID already exists. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _mint(address to, uint256 tokenId) internal { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _tokenOwner[tokenId] = to; _ownedTokensCount[to].increment(); emit Transfer(address(0), to, tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use {_burn} instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned */ function _burn(address owner, uint256 tokenId) internal { require(ownerOf(tokenId) == owner, "ERC721: burn of token that is not own"); _clearApproval(tokenId); _ownedTokensCount[owner].decrement(); _tokenOwner[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * @param tokenId uint256 ID of the token being burned */ function _burn(uint256 tokenId) internal { _burn(ownerOf(tokenId), tokenId); } /** * @dev Internal function to transfer ownership of a given token ID to another address. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function _transferFrom(address from, address to, uint256 tokenId) internal { require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _clearApproval(tokenId); _ownedTokensCount[from].decrement(); _ownedTokensCount[to].increment(); _tokenOwner[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * This function is deprecated. * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) internal returns (bool) { if (!to.isContract()) { return true; } bytes4 retval = IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data); return (retval == _ERC721_RECEIVED); } /** * @dev Private function to clear current approval of a given token ID. * @param tokenId uint256 ID of the token to be transferred */ function _clearApproval(uint256 tokenId) private { if (_tokenApprovals[tokenId] != address(0)) { _tokenApprovals[tokenId] = address(0); } } } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721Enumerable is IERC721 { function totalSupply() public view returns (uint256); function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId); function tokenByIndex(uint256 index) public view returns (uint256); } /** * @title ERC-721 Non-Fungible Token with optional enumeration extension logic * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721Enumerable is Context, ERC165, ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => uint256[]) internal _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) internal _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] internal _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) internal _allTokensIndex; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Constructor function. */ constructor () public { // register the supported interface to conform to ERC721Enumerable via ERC165 _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev Gets the token ID at a given index of the tokens list of the requested owner. * @param owner address owning the tokens list to be accessed * @param index uint256 representing the index to be accessed of the requested tokens list * @return uint256 token ID at the given index of the tokens list owned by the requested address */ function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev Gets the total amount of tokens stored by the contract. * @return uint256 representing the total amount of tokens */ function totalSupply() public view returns (uint256) { return _allTokens.length; } /** * @dev Gets the token ID at a given index of all the tokens in this contract * Reverts if the index is greater or equal to the total number of tokens. * @param index uint256 representing the index to be accessed of the tokens list * @return uint256 token ID at the given index of the tokens list */ function tokenByIndex(uint256 index) public view returns (uint256) { require(index < totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Internal function to transfer ownership of a given token ID to another address. * As opposed to transferFrom, this imposes no restrictions on msg.sender. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function _transferFrom(address from, address to, uint256 tokenId) internal { super._transferFrom(from, to, tokenId); _removeTokenFromOwnerEnumeration(from, tokenId); _addTokenToOwnerEnumeration(to, tokenId); } /** * @dev Internal function to mint a new token. * Reverts if the given token ID already exists. * @param to address the beneficiary that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _mint(address to, uint256 tokenId) internal { super._mint(to, tokenId); _addTokenToOwnerEnumeration(to, tokenId); _addTokenToAllTokensEnumeration(tokenId); } /** * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use {ERC721-_burn} instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned */ function _burn(address owner, uint256 tokenId) internal { super._burn(owner, tokenId); _removeTokenFromOwnerEnumeration(owner, tokenId); // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund _ownedTokensIndex[tokenId] = 0; _removeTokenFromAllTokensEnumeration(tokenId); } /** * @dev Gets the list of token IDs of the requested owner. * @param owner address owning the tokens * @return uint256[] List of token IDs owned by the requested address */ function _tokensOfOwner(address owner) internal view returns (uint256[] storage) { return _ownedTokens[owner]; } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { _ownedTokensIndex[tokenId] = _ownedTokens[to].length; _ownedTokens[to].push(tokenId); } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _ownedTokens[from].length.sub(1); uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array _ownedTokens[from].length--; // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by // lastTokenId, or just over the end of the array if the token was the last one). } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length.sub(1); uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array _allTokens.length--; _allTokensIndex[tokenId] = 0; } } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ contract IERC721Metadata is IERC721 { function name() external view returns (string memory); function symbol() external view returns (string memory); function tokenURI(uint256 tokenId) external view returns (string memory); } contract ERC721Metadata is Context, ERC165, ERC721, IERC721Metadata { // Token name string private _name; // Token symbol string private _symbol; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /** * @dev Constructor function */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721_METADATA); } /** * @dev Gets the token name. * @return string representing the token name */ function name() external view returns (string memory) { return _name; } /** * @dev Gets the token symbol. * @return string representing the token symbol */ function symbol() external view returns (string memory) { return _symbol; } } /** * @title Full ERC721 Token * @dev This implementation includes all the required and some optional functionality of the ERC721 standard * Moreover, it includes approve all functionality using operator terminology. * * See https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata { constructor (string memory name, string memory symbol) public ERC721Metadata(name, symbol) { // solhint-disable-previous-line no-empty-blocks } } /** * @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. * * 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. */ 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _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 onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract Ownership is Ownable { event OwnershipChanged(address indexed owner, uint256 level); mapping(address => uint256) internal ownership; constructor () internal { setOwnership(_msgSender(), 1); } function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); setOwnership(newOwner, 1); } function setOwnership(address key, uint256 level) public onlyOwner { ownership[key] = level; emit OwnershipChanged(key, level); } modifier onlyMinter() { require(isMinter(), "Ownerhsip : caller is not the minter"); _; } function isMinter() public view returns (bool) { return ownership[_msgSender()] > 0; } } library Strings { // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory) { bytes memory _ba = bytes(_a); bytes memory _bb = bytes(_b); bytes memory _bc = bytes(_c); bytes memory _bd = bytes(_d); bytes memory _be = bytes(_e); string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length); bytes memory babcde = bytes(abcde); uint k = 0; for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i]; for (uint i = 0; i < _bb.length; i++) babcde[k++] = _bb[i]; for (uint i = 0; i < _bc.length; i++) babcde[k++] = _bc[i]; for (uint i = 0; i < _bd.length; i++) babcde[k++] = _bd[i]; for (uint i = 0; i < _be.length; i++) babcde[k++] = _be[i]; return string(babcde); } function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory) { return strConcat(_a, _b, _c, _d, ""); } function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) { return strConcat(_a, _b, _c, "", ""); } function strConcat(string memory _a, string memory _b) internal pure returns (string memory) { return strConcat(_a, _b, "", "", ""); } function uint2str(uint _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len - 1; while (_i != 0) { bstr[k--] = byte(uint8(48 + _i % 10)); _i /= 10; } return string(bstr); } } contract Metadata { using Strings for string; string public baseUri; function tokenURI(uint256 _id) external view returns (string memory) { return Strings.strConcat(baseUri, Strings.uint2str(_id)); } function uri(uint256 _id) external view returns (string memory) { return Strings.strConcat(baseUri, Strings.uint2str(_id)); } } contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } contract KingdomLand is ERC721Full, Ownership, Metadata { ProxyRegistry public proxyRegistry; constructor(ProxyRegistry proxy, string memory uri, string memory name, string memory symbol) public ERC721Full(name, symbol) { proxyRegistry = proxy; baseUri = uri; } function setBaseURI(string memory uri) public onlyOwner { baseUri = uri; } function mint(address to, uint256 tokenId) public onlyMinter { _mint(to, tokenId); } function isApprovedForAll(address owner, address operator) public view returns (bool){ if (address(proxyRegistry.proxies(owner)) == operator) return true; return super.isApprovedForAll(owner, operator); } function allTokens() public view returns (uint256[] memory){ return _allTokens; } function getTokens(uint256 start, uint256 end) public view returns (uint256[] memory) { if(end <= start || _allTokens.length <= start) return new uint256[](0); uint256 length = end-start; if(end > _allTokens.length) length = _allTokens.length-start; uint256[] memory outputs = new uint256[](length); for (uint256 i = 0; i < length; ++i) { outputs[i] = _allTokens[start+i]; } return outputs; } function ownedTokens(address owner) public view returns (uint256[] memory){ return _ownedTokens[owner]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract ProxyRegistry","name":"proxy","type":"address"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"level","type":"uint256"}],"name":"OwnershipChanged","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"},{"constant":true,"inputs":[],"name":"allTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"getTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ownedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"proxyRegistry","outputs":[{"internalType":"contract ProxyRegistry","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"key","type":"address"},{"internalType":"uint256","name":"level","type":"uint256"}],"name":"setOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003fd138038062003fd1833981810160405260808110156200003757600080fd5b8101908080519060200190929190805160405193929190846401000000008211156200006257600080fd5b838201915060208201858111156200007957600080fd5b82518660018202830111640100000000821117156200009757600080fd5b8083526020830192505050908051906020019080838360005b83811015620000cd578082015181840152602081019050620000b0565b50505050905090810190601f168015620000fb5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011f57600080fd5b838201915060208201858111156200013657600080fd5b82518660018202830111640100000000821117156200015457600080fd5b8083526020830192505050908051906020019080838360005b838110156200018a5780820151818401526020810190506200016d565b50505050905090810190601f168015620001b85780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620001dc57600080fd5b83820191506020820185811115620001f357600080fd5b82518660018202830111640100000000821117156200021157600080fd5b8083526020830192505050908051906020019080838360005b83811015620002475780820151818401526020810190506200022a565b50505050905090810190601f168015620002755780820380516001836020036101000a031916815260200191505b5060405250505081818181620002986301ffc9a760e01b6200044d60201b60201c565b620002b06380ac58cd60e01b6200044d60201b60201c565b620002c863780e9d6360e01b6200044d60201b60201c565b8160099080519060200190620002e0929190620006de565b5080600a9080519060200190620002f9929190620006de565b5062000312635b5e139f60e01b6200044d60201b60201c565b505050506000620003286200055660201b60201c565b905080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620003e9620003db6200055660201b60201c565b60016200055e60201b60201c565b83600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600d908051906020019062000442929190620006de565b50505050506200078d565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620004ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b6200056e6200067760201b60201c565b620005e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167ffc8f2d6996e2b706fa4cfb81cb10a53534b07f2010b2488488508f8751f55375826040518082815260200191505060405180910390a25050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16620006c26200055660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200072157805160ff191683800117855562000752565b8280016001018555821562000752579182015b828111156200075157825182559160200191906001019062000734565b5b50905062000761919062000765565b5090565b6200078a91905b80821115620007865760008160009055506001016200076c565b5090565b90565b613834806200079d6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80636ff97f1d116101045780639abc8320116100a2578063b88d4fde11610071578063b88d4fde14610ba2578063c87b56dd14610ca7578063e985e9c514610d4e578063f2fde38b14610dca576101da565b80639abc8320146109ec578063a22cb46514610a6f578063b12ab40f14610abf578063b50cbd9f14610b58576101da565b8063813d0227116100de578063813d0227146108af5780638da5cb5b146108fd5780638f32d59b1461094757806395d89b4114610969576101da565b80636ff97f1d146107ee57806370a082311461084d578063715018a6146108a5576101da565b80632f745c591161017c5780634f6ccce71161014b5780634f6ccce71461066157806350e59eb3146106a357806355f804b3146106c55780636352211e14610780576101da565b80632f745c59146104b657806340c10f191461051857806342842e0e14610566578063494cfc6c146105d4576101da565b8063095ea7b3116101b8578063095ea7b3146103355780630e89341c1461038357806318160ddd1461042a57806323b872dd14610448576101da565b806301ffc9a7146101df57806306fdde0314610244578063081812fc146102c7575b600080fd5b61022a600480360360208110156101f557600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610e0e565b604051808215151515815260200191505060405180910390f35b61024c610e75565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028c578082015181840152602081019050610271565b50505050905090810190601f1680156102b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102f3600480360360208110156102dd57600080fd5b8101908080359060200190929190505050610f17565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103816004803603604081101561034b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fb2565b005b6103af6004803603602081101561039957600080fd5b8101908080359060200190929190505050611199565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103ef5780820151818401526020810190506103d4565b50505050905090810190601f16801561041c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61043261124e565b6040518082815260200191505060405180910390f35b6104b46004803603606081101561045e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061125b565b005b610502600480360360408110156104cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112d1565b6040518082815260200191505060405180910390f35b6105646004803603604081101561052e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611390565b005b6105d26004803603606081101561057c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113fb565b005b61060a600480360360408110156105ea57600080fd5b81019080803590602001909291908035906020019092919050505061141b565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561064d578082015181840152602081019050610632565b505050509050019250505060405180910390f35b61068d6004803603602081101561067757600080fd5b8101908080359060200190929190505050611519565b6040518082815260200191505060405180910390f35b6106ab611599565b604051808215151515815260200191505060405180910390f35b61077e600480360360208110156106db57600080fd5b81019080803590602001906401000000008111156106f857600080fd5b82018360208201111561070a57600080fd5b8035906020019184600183028401116401000000008311171561072c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506115e9565b005b6107ac6004803603602081101561079657600080fd5b810190808035906020019092919050505061167d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107f66116bf565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561083957808201518184015260208101905061081e565b505050509050019250505060405180910390f35b61088f6004803603602081101561086357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611717565b6040518082815260200191505060405180910390f35b6108ad6117ec565b005b6108fb600480360360408110156108c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611927565b005b610905611a37565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61094f611a61565b604051808215151515815260200191505060405180910390f35b610971611ac0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109b1578082015181840152602081019050610996565b50505050905090810190601f1680156109de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109f4611b62565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a34578082015181840152602081019050610a19565b50505050905090810190601f168015610a615780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610abd60048036036040811015610a8557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611c00565b005b610b0160048036036020811015610ad557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611db8565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610b44578082015181840152602081019050610b29565b505050509050019250505060405180910390f35b610b60611e4f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ca560048036036080811015610bb857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610c1f57600080fd5b820183602082011115610c3157600080fd5b80359060200191846001830284011164010000000083111715610c5357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611e75565b005b610cd360048036036020811015610cbd57600080fd5b8101908080359060200190929190505050611eed565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d13578082015181840152602081019050610cf8565b50505050905090810190601f168015610d405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610db060048036036040811015610d6457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fa2565b604051808215151515815260200191505060405180910390f35b610e0c60048036036020811015610de057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120cd565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f0d5780601f10610ee257610100808354040283529160200191610f0d565b820191906000526020600020905b815481529060010190602001808311610ef057829003601f168201915b5050505050905090565b6000610f228261215e565b610f77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613709602c913960400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610fbd8261167d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611044576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806137826021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166110636121d0565b73ffffffffffffffffffffffffffffffffffffffff16148061109257506110918161108c6121d0565b611fa2565b5b6110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806136a76038913960400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6060611247600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112345780601f1061120957610100808354040283529160200191611234565b820191906000526020600020905b81548152906001019060200180831161121757829003601f168201915b5050505050611242846121d8565b612305565b9050919050565b6000600780549050905090565b61126c6112666121d0565b82612349565b6112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806137a36031913960400191505060405180910390fd5b6112cc83838361243d565b505050565b60006112dc83611717565b8210611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806135d4602b913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061137d57fe5b9060005260206000200154905092915050565b611398611599565b6113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806137356024913960400191505060405180910390fd5b6113f78282612461565b5050565b61141683838360405180602001604052806000815250611e75565b505050565b6060828211158061143157508260078054905011155b1561146e5760006040519080825280602002602001820160405280156114665781602001602082028038833980820191505090505b509050611513565b6000838303905060078054905083111561148d57836007805490500390505b6060816040519080825280602002602001820160405280156114be5781602001602082028038833980820191505090505b50905060008090505b8281101561150c576007818701815481106114de57fe5b90600052602060002001548282815181106114f557fe5b6020026020010181815250508060010190506114c7565b5080925050505b92915050565b600061152361124e565b821061157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806137d4602c913960400191505060405180910390fd5b6007828154811061158757fe5b90600052602060002001549050919050565b600080600c60006115a86121d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411905090565b6115f1611a61565b611663576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d9080519060200190611679929190613502565b5050565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905080915050919050565b6060600780548060200260200160405190810160405280929190818152602001828054801561170d57602002820191906000526020600020905b8154815260200190600101908083116116f9575b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806136df602a913960400191505060405180910390fd5b6117e5600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612482565b9050919050565b6117f4611a61565b611866576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61192f611a61565b6119a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167ffc8f2d6996e2b706fa4cfb81cb10a53534b07f2010b2488488508f8751f55375826040518082815260200191505060405180910390a25050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611aa46121d0565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b585780601f10611b2d57610100808354040283529160200191611b58565b820191906000526020600020905b815481529060010190602001808311611b3b57829003601f168201915b5050505050905090565b600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611bf85780601f10611bcd57610100808354040283529160200191611bf8565b820191906000526020600020905b815481529060010190602001808311611bdb57829003601f168201915b505050505081565b611c086121d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ca9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060046000611cb66121d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d636121d0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b6060600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611e4357602002820191906000526020600020905b815481526020019060010190808311611e2f575b50505050509050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611e86611e806121d0565b83612349565b611edb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806137a36031913960400191505060405180910390fd5b611ee784848484612490565b50505050565b6060611f9b600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f885780601f10611f5d57610100808354040283529160200191611f88565b820191906000526020600020905b815481529060010190602001808311611f6b57829003601f168201915b5050505050611f96846121d8565b612305565b9050919050565b60008173ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c4552791856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561205a57600080fd5b505afa15801561206e573d6000803e3d6000fd5b505050506040513d602081101561208457600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1614156120ba57600190506120c7565b6120c48383612502565b90505b92915050565b6120d5611a61565b612147576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61215081612596565b61215b816001611927565b50565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b600033905090565b60606000821415612220576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612300565b600082905060005b6000821461224a578080600101915050600a828161224257fe5b049150612228565b6060816040519080825280601f01601f19166020018201604052801561227f5781602001600182028038833980820191505090505b50905060006001830390505b600086146122f857600a868161229d57fe5b0660300160f81b828280600190039350815181106122b757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a86816122f057fe5b04955061228b565b819450505050505b919050565b606061234183836040518060200160405280600081525060405180602001604052806000815250604051806020016040528060008152506126dc565b905092915050565b60006123548261215e565b6123a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061367b602c913960400191505060405180910390fd5b60006123b48361167d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061242357508373ffffffffffffffffffffffffffffffffffffffff1661240b84610f17565b73ffffffffffffffffffffffffffffffffffffffff16145b8061243457506124338185611fa2565b5b91505092915050565b6124488383836129a2565b6124528382612bfd565b61245c8282612d9b565b505050565b61246b8282612e62565b6124758282612d9b565b61247e8161307a565b5050565b600081600001549050919050565b61249b84848461243d565b6124a7848484846130c6565b6124fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806135ff6032913960400191505060405180910390fd5b50505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561261c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806136316026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156127385781602001600182028038833980820191505090505b5090506060819050600080905060008090505b88518110156127b95788818151811061276057fe5b602001015160f81c60f81b83838060010194508151811061277d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061274b565b5060008090505b875181101561282e578781815181106127d557fe5b602001015160f81c60f81b8383806001019450815181106127f257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506127c0565b5060008090505b86518110156128a35786818151811061284a57fe5b602001015160f81c60f81b83838060010194508151811061286757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050612835565b5060008090505b8551811015612918578581815181106128bf57fe5b602001015160f81c60f81b8383806001019450815181106128dc57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506128aa565b5060008090505b845181101561298d5784818151811061293457fe5b602001015160f81c60f81b83838060010194508151811061295157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061291f565b50819850505050505050505095945050505050565b8273ffffffffffffffffffffffffffffffffffffffff166129c28261167d565b73ffffffffffffffffffffffffffffffffffffffff1614612a2e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806137596029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ab4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806136576024913960400191505060405180910390fd5b612abd816132b6565b612b04600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613374565b612b4b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613397565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612c556001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506133ad90919063ffffffff16565b9050600060066000848152602001908152602001600020549050818114612d42576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110612cc257fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110612d1a57fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480919060019003612d949190613582565b5050505050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b612f0e8161215e565b15612f81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061301a600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613397565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b60006130e78473ffffffffffffffffffffffffffffffffffffffff166133f7565b6130f457600190506132ae565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a0261311a6121d0565b8887876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156131d65780820151818401526020810190506131bb565b50505050905090810190601f1680156132035780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561322557600080fd5b505af1158015613239573d6000803e3d6000fd5b505050506040513d602081101561324f57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146133715760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b61338c600182600001546133ad90919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b60006133ef83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613442565b905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b82141580156134395750808214155b92505050919050565b60008383111582906134ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134b4578082015181840152602081019050613499565b50505050905090810190601f1680156134e15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061354357805160ff1916838001178555613571565b82800160010185558215613571579182015b82811115613570578251825591602001919060010190613555565b5b50905061357e91906135ae565b5090565b8154818355818111156135a9578183600052602060002091820191016135a891906135ae565b5b505050565b6135d091905b808211156135cc5760008160009055506001016135b4565b5090565b9056fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e657268736970203a2063616c6c6572206973206e6f7420746865206d696e7465724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a7231582004af202ae7176259aaf2ad55f4ca9a7ede5458dd38469c6a5b9dab386adc188164736f6c63430005100032000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f6c6f6b2d6e66742e6c65616775656f666b696e67646f6d732e636f6d2f6170692f6c616e642f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000174c6561677565206f66204b696e67646f6d73204c414e4400000000000000000000000000000000000000000000000000000000000000000000000000000000044c4f4b4c00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80636ff97f1d116101045780639abc8320116100a2578063b88d4fde11610071578063b88d4fde14610ba2578063c87b56dd14610ca7578063e985e9c514610d4e578063f2fde38b14610dca576101da565b80639abc8320146109ec578063a22cb46514610a6f578063b12ab40f14610abf578063b50cbd9f14610b58576101da565b8063813d0227116100de578063813d0227146108af5780638da5cb5b146108fd5780638f32d59b1461094757806395d89b4114610969576101da565b80636ff97f1d146107ee57806370a082311461084d578063715018a6146108a5576101da565b80632f745c591161017c5780634f6ccce71161014b5780634f6ccce71461066157806350e59eb3146106a357806355f804b3146106c55780636352211e14610780576101da565b80632f745c59146104b657806340c10f191461051857806342842e0e14610566578063494cfc6c146105d4576101da565b8063095ea7b3116101b8578063095ea7b3146103355780630e89341c1461038357806318160ddd1461042a57806323b872dd14610448576101da565b806301ffc9a7146101df57806306fdde0314610244578063081812fc146102c7575b600080fd5b61022a600480360360208110156101f557600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610e0e565b604051808215151515815260200191505060405180910390f35b61024c610e75565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028c578082015181840152602081019050610271565b50505050905090810190601f1680156102b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102f3600480360360208110156102dd57600080fd5b8101908080359060200190929190505050610f17565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103816004803603604081101561034b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fb2565b005b6103af6004803603602081101561039957600080fd5b8101908080359060200190929190505050611199565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103ef5780820151818401526020810190506103d4565b50505050905090810190601f16801561041c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61043261124e565b6040518082815260200191505060405180910390f35b6104b46004803603606081101561045e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061125b565b005b610502600480360360408110156104cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112d1565b6040518082815260200191505060405180910390f35b6105646004803603604081101561052e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611390565b005b6105d26004803603606081101561057c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113fb565b005b61060a600480360360408110156105ea57600080fd5b81019080803590602001909291908035906020019092919050505061141b565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561064d578082015181840152602081019050610632565b505050509050019250505060405180910390f35b61068d6004803603602081101561067757600080fd5b8101908080359060200190929190505050611519565b6040518082815260200191505060405180910390f35b6106ab611599565b604051808215151515815260200191505060405180910390f35b61077e600480360360208110156106db57600080fd5b81019080803590602001906401000000008111156106f857600080fd5b82018360208201111561070a57600080fd5b8035906020019184600183028401116401000000008311171561072c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506115e9565b005b6107ac6004803603602081101561079657600080fd5b810190808035906020019092919050505061167d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107f66116bf565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561083957808201518184015260208101905061081e565b505050509050019250505060405180910390f35b61088f6004803603602081101561086357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611717565b6040518082815260200191505060405180910390f35b6108ad6117ec565b005b6108fb600480360360408110156108c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611927565b005b610905611a37565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61094f611a61565b604051808215151515815260200191505060405180910390f35b610971611ac0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109b1578082015181840152602081019050610996565b50505050905090810190601f1680156109de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109f4611b62565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a34578082015181840152602081019050610a19565b50505050905090810190601f168015610a615780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610abd60048036036040811015610a8557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611c00565b005b610b0160048036036020811015610ad557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611db8565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610b44578082015181840152602081019050610b29565b505050509050019250505060405180910390f35b610b60611e4f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ca560048036036080811015610bb857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610c1f57600080fd5b820183602082011115610c3157600080fd5b80359060200191846001830284011164010000000083111715610c5357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611e75565b005b610cd360048036036020811015610cbd57600080fd5b8101908080359060200190929190505050611eed565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d13578082015181840152602081019050610cf8565b50505050905090810190601f168015610d405780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610db060048036036040811015610d6457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fa2565b604051808215151515815260200191505060405180910390f35b610e0c60048036036020811015610de057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120cd565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f0d5780601f10610ee257610100808354040283529160200191610f0d565b820191906000526020600020905b815481529060010190602001808311610ef057829003601f168201915b5050505050905090565b6000610f228261215e565b610f77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613709602c913960400191505060405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610fbd8261167d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611044576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806137826021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166110636121d0565b73ffffffffffffffffffffffffffffffffffffffff16148061109257506110918161108c6121d0565b611fa2565b5b6110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806136a76038913960400191505060405180910390fd5b826002600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6060611247600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112345780601f1061120957610100808354040283529160200191611234565b820191906000526020600020905b81548152906001019060200180831161121757829003601f168201915b5050505050611242846121d8565b612305565b9050919050565b6000600780549050905090565b61126c6112666121d0565b82612349565b6112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806137a36031913960400191505060405180910390fd5b6112cc83838361243d565b505050565b60006112dc83611717565b8210611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b8152602001806135d4602b913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061137d57fe5b9060005260206000200154905092915050565b611398611599565b6113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806137356024913960400191505060405180910390fd5b6113f78282612461565b5050565b61141683838360405180602001604052806000815250611e75565b505050565b6060828211158061143157508260078054905011155b1561146e5760006040519080825280602002602001820160405280156114665781602001602082028038833980820191505090505b509050611513565b6000838303905060078054905083111561148d57836007805490500390505b6060816040519080825280602002602001820160405280156114be5781602001602082028038833980820191505090505b50905060008090505b8281101561150c576007818701815481106114de57fe5b90600052602060002001548282815181106114f557fe5b6020026020010181815250508060010190506114c7565b5080925050505b92915050565b600061152361124e565b821061157a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806137d4602c913960400191505060405180910390fd5b6007828154811061158757fe5b90600052602060002001549050919050565b600080600c60006115a86121d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411905090565b6115f1611a61565b611663576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600d9080519060200190611679929190613502565b5050565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905080915050919050565b6060600780548060200260200160405190810160405280929190818152602001828054801561170d57602002820191906000526020600020905b8154815260200190600101908083116116f9575b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806136df602a913960400191505060405180910390fd5b6117e5600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612482565b9050919050565b6117f4611a61565b611866576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b61192f611a61565b6119a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167ffc8f2d6996e2b706fa4cfb81cb10a53534b07f2010b2488488508f8751f55375826040518082815260200191505060405180910390a25050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611aa46121d0565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b585780601f10611b2d57610100808354040283529160200191611b58565b820191906000526020600020905b815481529060010190602001808311611b3b57829003601f168201915b5050505050905090565b600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611bf85780601f10611bcd57610100808354040283529160200191611bf8565b820191906000526020600020905b815481529060010190602001808311611bdb57829003601f168201915b505050505081565b611c086121d0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ca9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060046000611cb66121d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d636121d0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b6060600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015611e4357602002820191906000526020600020905b815481526020019060010190808311611e2f575b50505050509050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611e86611e806121d0565b83612349565b611edb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806137a36031913960400191505060405180910390fd5b611ee784848484612490565b50505050565b6060611f9b600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f885780601f10611f5d57610100808354040283529160200191611f88565b820191906000526020600020905b815481529060010190602001808311611f6b57829003601f168201915b5050505050611f96846121d8565b612305565b9050919050565b60008173ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c4552791856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561205a57600080fd5b505afa15801561206e573d6000803e3d6000fd5b505050506040513d602081101561208457600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1614156120ba57600190506120c7565b6120c48383612502565b90505b92915050565b6120d5611a61565b612147576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61215081612596565b61215b816001611927565b50565b6000806001600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415915050919050565b600033905090565b60606000821415612220576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612300565b600082905060005b6000821461224a578080600101915050600a828161224257fe5b049150612228565b6060816040519080825280601f01601f19166020018201604052801561227f5781602001600182028038833980820191505090505b50905060006001830390505b600086146122f857600a868161229d57fe5b0660300160f81b828280600190039350815181106122b757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a86816122f057fe5b04955061228b565b819450505050505b919050565b606061234183836040518060200160405280600081525060405180602001604052806000815250604051806020016040528060008152506126dc565b905092915050565b60006123548261215e565b6123a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061367b602c913960400191505060405180910390fd5b60006123b48361167d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061242357508373ffffffffffffffffffffffffffffffffffffffff1661240b84610f17565b73ffffffffffffffffffffffffffffffffffffffff16145b8061243457506124338185611fa2565b5b91505092915050565b6124488383836129a2565b6124528382612bfd565b61245c8282612d9b565b505050565b61246b8282612e62565b6124758282612d9b565b61247e8161307a565b5050565b600081600001549050919050565b61249b84848461243d565b6124a7848484846130c6565b6124fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806135ff6032913960400191505060405180910390fd5b50505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561261c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806136316026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f1916602001820160405280156127385781602001600182028038833980820191505090505b5090506060819050600080905060008090505b88518110156127b95788818151811061276057fe5b602001015160f81c60f81b83838060010194508151811061277d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061274b565b5060008090505b875181101561282e578781815181106127d557fe5b602001015160f81c60f81b8383806001019450815181106127f257fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506127c0565b5060008090505b86518110156128a35786818151811061284a57fe5b602001015160f81c60f81b83838060010194508151811061286757fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080600101915050612835565b5060008090505b8551811015612918578581815181106128bf57fe5b602001015160f81c60f81b8383806001019450815181106128dc57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806001019150506128aa565b5060008090505b845181101561298d5784818151811061293457fe5b602001015160f81c60f81b83838060010194508151811061295157fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808060010191505061291f565b50819850505050505050505095945050505050565b8273ffffffffffffffffffffffffffffffffffffffff166129c28261167d565b73ffffffffffffffffffffffffffffffffffffffff1614612a2e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806137596029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ab4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806136576024913960400191505060405180910390fd5b612abd816132b6565b612b04600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613374565b612b4b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613397565b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612c556001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506133ad90919063ffffffff16565b9050600060066000848152602001908152602001600020549050818114612d42576000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110612cc257fe5b9060005260206000200154905080600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110612d1a57fe5b9060005260206000200181905550816006600083815260200190815260200160002081905550505b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480919060019003612d949190613582565b5050505050565b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506006600083815260200190815260200160002081905550600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150509060018203906000526020600020016000909192909190915055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b612f0e8161215e565b15612f81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b816001600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061301a600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613397565b808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6007805490506008600083815260200190815260200160002081905550600781908060018154018082558091505090600182039060005260206000200160009091929091909150555050565b60006130e78473ffffffffffffffffffffffffffffffffffffffff166133f7565b6130f457600190506132ae565b60008473ffffffffffffffffffffffffffffffffffffffff1663150b7a0261311a6121d0565b8887876040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156131d65780820151818401526020810190506131bb565b50505050905090810190601f1680156132035780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561322557600080fd5b505af1158015613239573d6000803e3d6000fd5b505050506040513d602081101561324f57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146133715760006002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b61338c600182600001546133ad90919063ffffffff16565b816000018190555050565b6001816000016000828254019250508190555050565b60006133ef83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613442565b905092915050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91506000801b82141580156134395750808214155b92505050919050565b60008383111582906134ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134b4578082015181840152602081019050613499565b50505050905090810190601f1680156134e15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061354357805160ff1916838001178555613571565b82800160010185558215613571579182015b82811115613570578251825591602001919060010190613555565b5b50905061357e91906135ae565b5090565b8154818355818111156135a9578183600052602060002091820191016135a891906135ae565b5b505050565b6135d091905b808211156135cc5760008160009055506001016135b4565b5090565b9056fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e657268736970203a2063616c6c6572206973206e6f7420746865206d696e7465724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a7231582004af202ae7176259aaf2ad55f4ca9a7ede5458dd38469c6a5b9dab386adc188164736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f6c6f6b2d6e66742e6c65616775656f666b696e67646f6d732e636f6d2f6170692f6c616e642f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000174c6561677565206f66204b696e67646f6d73204c414e4400000000000000000000000000000000000000000000000000000000000000000000000000000000044c4f4b4c00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : proxy (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : uri (string): https://lok-nft.leagueofkingdoms.com/api/land/
Arg [2] : name (string): League of Kingdoms LAND
Arg [3] : symbol (string): LOKL
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [5] : 68747470733a2f2f6c6f6b2d6e66742e6c65616775656f666b696e67646f6d73
Arg [6] : 2e636f6d2f6170692f6c616e642f000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [8] : 4c6561677565206f66204b696e67646f6d73204c414e44000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 4c4f4b4c00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47916:1378:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47916:1378:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14981:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14981:135:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41364:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;41364:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19845:204;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19845:204:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19127:425;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19127:425:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47633:139;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;47633:139:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;47633:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33300:96;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21528:292;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21528:292:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32909:232;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32909:232:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48292:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48292:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22482:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22482:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;48717:453;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48717:453:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;48717:453:0;;;;;;;;;;;;;;;;;33742:199;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33742:199:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45285:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48204:82;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48204:82:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;48204:82:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48204:82:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;48204:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;48204:82:0;;;;;;;;;;;;;;;:::i;:::-;;18465:231;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18465:231:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48622:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;48622:89:0;;;;;;;;;;;;;;;;;18028:211;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18028:211:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43857:140;;;:::i;:::-;;45005:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45005:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43046:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;43412:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41564:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;41564:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47451:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;47451:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20350:254;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20350:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49178:113;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49178:113:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;49178:113:0;;;;;;;;;;;;;;;;;47977:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23353:272;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;23353:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;23353:272:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;23353:272:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;23353:272:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;23353:272:0;;;;;;;;;;;;;;;:::i;:::-;;47481:144;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;47481:144:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;47481:144:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48390:226;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48390:226:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44852:145;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44852:145:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;14981:135;15051:4;15075:20;:33;15096:11;15075:33;;;;;;;;;;;;;;;;;;;;;;;;;;;15068:40;;14981:135;;;:::o;41364:85::-;41403:13;41436:5;41429:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41364:85;:::o;19845:204::-;19904:7;19932:16;19940:7;19932;:16::i;:::-;19924:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20017:15;:24;20033:7;20017:24;;;;;;;;;;;;;;;;;;;;;20010:31;;19845:204;;;:::o;19127:425::-;19191:13;19207:16;19215:7;19207;:16::i;:::-;19191:32;;19248:5;19242:11;;:2;:11;;;;19234:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19328:5;19312:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;19337:37;19354:5;19361:12;:10;:12::i;:::-;19337:16;:37::i;:::-;19312:62;19304:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19498:2;19471:15;:24;19487:7;19471:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19536:7;19532:2;19516:28;;19525:5;19516:28;;;;;;;;;;;;19127:425;;;:::o;47633:139::-;47682:13;47715:49;47733:7;47715:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47742:21;47759:3;47742:16;:21::i;:::-;47715:17;:49::i;:::-;47708:56;;47633:139;;;:::o;33300:96::-;33344:7;33371:10;:17;;;;33364:24;;33300:96;:::o;21528:292::-;21672:41;21691:12;:10;:12::i;:::-;21705:7;21672:18;:41::i;:::-;21664:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21780:32;21794:4;21800:2;21804:7;21780:13;:32::i;:::-;21528:292;;;:::o;32909:232::-;32989:7;33025:16;33035:5;33025:9;:16::i;:::-;33017:5;:24;33009:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33107:12;:19;33120:5;33107:19;;;;;;;;;;;;;;;33127:5;33107:26;;;;;;;;;;;;;;;;33100:33;;32909:232;;;;:::o;48292:92::-;45206:10;:8;:10::i;:::-;45198:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48360:18;48366:2;48370:7;48360:5;:18::i;:::-;48292:92;;:::o;22482:134::-;22569:39;22586:4;22592:2;22596:7;22569:39;;;;;;;;;;;;:16;:39::i;:::-;22482:134;;;:::o;48717:453::-;48785:16;48820:5;48813:3;:12;;:42;;;;48850:5;48829:10;:17;;;;:26;;48813:42;48810:77;;;48885:1;48871:16;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;48871:16:0;;;;48864:23;;;;48810:77;48894:14;48915:5;48911:3;:9;48894:26;;48936:10;:17;;;;48930:3;:23;48927:67;;;48989:5;48971:10;:17;;;;:23;48962:32;;48927:67;49001:24;49042:6;49028:21;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;49028:21:0;;;;49001:48;;49061:9;49073:1;49061:13;;49056:88;49080:6;49076:1;:10;49056:88;;;49117:10;49134:1;49128:5;:7;49117:19;;;;;;;;;;;;;;;;49104:7;49112:1;49104:10;;;;;;;;;;;;;:32;;;;;49088:3;;;;;49056:88;;;;49157:7;49150:14;;;;48717:453;;;;;:::o;33742:199::-;33800:7;33836:13;:11;:13::i;:::-;33828:5;:21;33820:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33916:10;33927:5;33916:17;;;;;;;;;;;;;;;;33909:24;;33742:199;;;:::o;45285:100::-;45326:4;45376:1;45350:9;:23;45360:12;:10;:12::i;:::-;45350:23;;;;;;;;;;;;;;;;:27;45343:34;;45285:100;:::o;48204:82::-;43258:9;:7;:9::i;:::-;43250:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48277:3;48267:7;:13;;;;;;;;;;;;:::i;:::-;;48204:82;:::o;18465:231::-;18520:7;18540:13;18556:11;:20;18568:7;18556:20;;;;;;;;;;;;;;;;;;;;;18540:36;;18683:5;18676:12;;;18465:231;;;:::o;48622:89::-;48664:16;48695:10;48688:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48622:89;:::o;18028:211::-;18083:7;18128:1;18111:19;;:5;:19;;;;18103:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18197:34;:17;:24;18215:5;18197:24;;;;;;;;;;;;;;;:32;:34::i;:::-;18190:41;;18028:211;;;:::o;43857:140::-;43258:9;:7;:9::i;:::-;43250:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43956:1;43919:40;;43940:6;;;;;;;;;;;43919:40;;;;;;;;;;;;43987:1;43970:6;;:19;;;;;;;;;;;;;;;;;;43857:140::o;45005:152::-;43258:9;:7;:9::i;:::-;43250:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45100:5;45083:9;:14;45093:3;45083:14;;;;;;;;;;;;;;;:22;;;;45138:3;45121:28;;;45143:5;45121:28;;;;;;;;;;;;;;;;;;45005:152;;:::o;43046:79::-;43084:7;43111:6;;;;;;;;;;;43104:13;;43046:79;:::o;43412:94::-;43452:4;43492:6;;;;;;;;;;;43476:22;;:12;:10;:12::i;:::-;:22;;;43469:29;;43412:94;:::o;41564:89::-;41605:13;41638:7;41631:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41564:89;:::o;47451:21::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20350:254::-;20436:12;:10;:12::i;:::-;20430:18;;:2;:18;;;;20422:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20530:8;20491:18;:32;20510:12;:10;:12::i;:::-;20491:32;;;;;;;;;;;;;;;:36;20524:2;20491:36;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;20583:2;20554:42;;20569:12;:10;:12::i;:::-;20554:42;;;20587:8;20554:42;;;;;;;;;;;;;;;;;;;;;;20350:254;;:::o;49178:113::-;49235:16;49266:12;:19;49279:5;49266:19;;;;;;;;;;;;;;;49259:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49178:113;;;:::o;47977:34::-;;;;;;;;;;;;;:::o;23353:272::-;23468:41;23487:12;:10;:12::i;:::-;23501:7;23468:18;:41::i;:::-;23460:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23574:43;23592:4;23598:2;23602:7;23611:5;23574:17;:43::i;:::-;23353:272;;;;:::o;47481:144::-;47535:13;47568:49;47586:7;47568:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47595:21;47612:3;47595:16;:21::i;:::-;47568:17;:49::i;:::-;47561:56;;47481:144;;;:::o;48390:226::-;48470:4;48527:8;48486:49;;48494:13;;;;;;;;;;;:21;;;48516:5;48494:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48494:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48494:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48494:28:0;;;;;;;;;;;;;;;;48486:49;;;48482:75;;;48553:4;48546:11;;;;48482:75;48571:39;48594:5;48601:8;48571:22;:39::i;:::-;48564:46;;48390:226;;;;;:::o;44852:145::-;43258:9;:7;:9::i;:::-;43250:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44925:28;44944:8;44925:18;:28::i;:::-;44964:25;44977:8;44987:1;44964:12;:25::i;:::-;44852:145;:::o;24818:155::-;24875:4;24892:13;24908:11;:20;24920:7;24908:20;;;;;;;;;;;;;;;;;;;;;24892:36;;24963:1;24946:19;;:5;:19;;;;24939:26;;;24818:155;;;:::o;809:98::-;854:15;889:10;882:17;;809:98;:::o;46904:482::-;46954:27;47004:1;46998:2;:7;46994:50;;;47022:10;;;;;;;;;;;;;;;;;;;;;46994:50;47054:6;47063:2;47054:11;;47076:8;47095:69;47107:1;47102;:6;47095:69;;47125:5;;;;;;;47150:2;47145:7;;;;;;;;;47095:69;;;47174:17;47204:3;47194:14;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;47194:14:0;;;;47174:34;;47219:6;47234:1;47228:3;:7;47219:16;;47246:103;47259:1;47253:2;:7;47246:103;;47310:2;47305;:7;;;;;;47300:2;:12;47289:25;;47277:4;47282:3;;;;;;;47277:9;;;;;;;;;;;:37;;;;;;;;;;;47335:2;47329:8;;;;;;;;;47246:103;;;47373:4;47359:19;;;;;;46904:482;;;;:::o;46748:148::-;46826:13;46859:29;46869:2;46873;46859:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;:::-;46852:36;;46748:148;;;;:::o;25343:333::-;25428:4;25453:16;25461:7;25453;:16::i;:::-;25445:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25529:13;25545:16;25553:7;25545;:16::i;:::-;25529:32;;25591:5;25580:16;;:7;:16;;;:51;;;;25624:7;25600:31;;:20;25612:7;25600:11;:20::i;:::-;:31;;;25580:51;:87;;;;25635:32;25652:5;25659:7;25635:16;:32::i;:::-;25580:87;25572:96;;;25343:333;;;;:::o;34325:245::-;34411:38;34431:4;34437:2;34441:7;34411:19;:38::i;:::-;34462:47;34495:4;34501:7;34462:32;:47::i;:::-;34522:40;34550:2;34554:7;34522:27;:40::i;:::-;34325:245;;;:::o;34835:202::-;34899:24;34911:2;34915:7;34899:11;:24::i;:::-;34936:40;34964:2;34968:7;34936:27;:40::i;:::-;34989;35021:7;34989:31;:40::i;:::-;34835:202;;:::o;13660:114::-;13725:7;13752;:14;;;13745:21;;13660:114;;;:::o;24344:272::-;24454:32;24468:4;24474:2;24478:7;24454:13;:32::i;:::-;24505:48;24528:4;24534:2;24538:7;24547:5;24505:22;:48::i;:::-;24497:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24344:272;;;;:::o;20934:147::-;21014:4;21038:18;:25;21057:5;21038:25;;;;;;;;;;;;;;;:35;21064:8;21038:35;;;;;;;;;;;;;;;;;;;;;;;;;21031:42;;20934:147;;;;:::o;44367:229::-;44461:1;44441:22;;:8;:22;;;;44433:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44551:8;44522:38;;44543:6;;;;;;;;;;;44522:38;;;;;;;;;;;;44580:8;44571:6;;:17;;;;;;;;;;;;;;;;;;44367:229;:::o;45502:872::-;45634:13;45658:16;45683:2;45658:28;;45695:16;45720:2;45695:28;;45732:16;45757:2;45732:28;;45769:16;45794:2;45769:28;;45806:16;45831:2;45806:28;;45843:19;45928:3;:10;45915:3;:10;45902:3;:10;45889:3;:10;45876:3;:10;:23;:36;:49;:62;45865:74;;;;;;;;;;;;;;;;;;;;;;;;;29:1:-1;21:6;17:14;116:4;104:10;96:6;87:34;147:4;139:6;135:17;125:27;;0:156;45865:74:0;;;;45843:96;;45948:19;45976:5;45948:34;;45991:6;46000:1;45991:10;;46015:6;46024:1;46015:10;;46010:58;46031:3;:10;46027:1;:14;46010:58;;;46062:3;46066:1;46062:6;;;;;;;;;;;;;;;;46048;46055:3;;;;;;46048:11;;;;;;;;;;;:20;;;;;;;;;;;46043:3;;;;;;;46010:58;;;;46082:6;46091:1;46082:10;;46077:58;46098:3;:10;46094:1;:14;46077:58;;;46129:3;46133:1;46129:6;;;;;;;;;;;;;;;;46115;46122:3;;;;;;46115:11;;;;;;;;;;;:20;;;;;;;;;;;46110:3;;;;;;;46077:58;;;;46149:6;46158:1;46149:10;;46144:58;46165:3;:10;46161:1;:14;46144:58;;;46196:3;46200:1;46196:6;;;;;;;;;;;;;;;;46182;46189:3;;;;;;46182:11;;;;;;;;;;;:20;;;;;;;;;;;46177:3;;;;;;;46144:58;;;;46216:6;46225:1;46216:10;;46211:58;46232:3;:10;46228:1;:14;46211:58;;;46263:3;46267:1;46263:6;;;;;;;;;;;;;;;;46249;46256:3;;;;;;46249:11;;;;;;;;;;;:20;;;;;;;;;;;46244:3;;;;;;;46211:58;;;;46283:6;46292:1;46283:10;;46278:58;46299:3;:10;46295:1;:14;46278:58;;;46330:3;46334:1;46330:6;;;;;;;;;;;;;;;;46316;46323:3;;;;;;46316:11;;;;;;;;;;;:20;;;;;;;;;;;46311:3;;;;;;;46278:58;;;;46359:6;46345:21;;;;;;;;;;45502:872;;;;;;;:::o;29039:459::-;29153:4;29133:24;;:16;29141:7;29133;:16::i;:::-;:24;;;29125:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29236:1;29222:16;;:2;:16;;;;29214:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29292:23;29307:7;29292:14;:23::i;:::-;29328:35;:17;:23;29346:4;29328:23;;;;;;;;;;;;;;;:33;:35::i;:::-;29374:33;:17;:21;29392:2;29374:21;;;;;;;;;;;;;;;:31;:33::i;:::-;29443:2;29420:11;:20;29432:7;29420:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;29482:7;29478:2;29463:27;;29472:4;29463:27;;;;;;;;;;;;29039:459;;;:::o;37510:1148::-;37776:22;37801:32;37831:1;37801:12;:18;37814:4;37801:18;;;;;;;;;;;;;;;:25;;;;:29;;:32;;;;:::i;:::-;37776:57;;37844:18;37865:17;:26;37883:7;37865:26;;;;;;;;;;;;37844:47;;38012:14;37998:10;:28;37994:328;;38043:19;38065:12;:18;38078:4;38065:18;;;;;;;;;;;;;;;38084:14;38065:34;;;;;;;;;;;;;;;;38043:56;;38149:11;38116:12;:18;38129:4;38116:18;;;;;;;;;;;;;;;38135:10;38116:30;;;;;;;;;;;;;;;:44;;;;38266:10;38233:17;:30;38251:11;38233:30;;;;;;;;;;;:43;;;;37994:328;;38411:12;:18;38424:4;38411:18;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:::i;:::-;;37510:1148;;;;:::o;36332:186::-;36446:12;:16;36459:2;36446:16;;;;;;;;;;;;;;;:23;;;;36417:17;:26;36435:7;36417:26;;;;;;;;;;;:52;;;;36480:12;:16;36493:2;36480:16;;;;;;;;;;;;;;;36502:7;36480:30;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;36480:30:0;;;;;;;;;;;;;;;;;;;;;;36332:186;;:::o;27428:335::-;27514:1;27500:16;;:2;:16;;;;27492:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27573:16;27581:7;27573;:16::i;:::-;27572:17;27564:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27658:2;27635:11;:20;27647:7;27635:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;27671:33;:17;:21;27689:2;27671:21;;;;;;;;;;;;;;;:31;:33::i;:::-;27747:7;27743:2;27722:33;;27739:1;27722:33;;;;;;;;;;;;27428:335;;:::o;36719:164::-;36823:10;:17;;;;36796:15;:24;36812:7;36796:24;;;;;;;;;;;:44;;;;36851:10;36867:7;36851:24;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;36851:24:0;;;;;;;;;;;;;;;;;;;;;;36719:164;:::o;30100:358::-;30222:4;30249:15;:2;:13;;;:15::i;:::-;30244:60;;30288:4;30281:11;;;;30244:60;30316:13;30348:2;30332:36;;;30369:12;:10;:12::i;:::-;30383:4;30389:7;30398:5;30332:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;30332:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30332:72:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30332:72:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30332:72:0;;;;;;;;;;;;;;;;30316:88;;16229:10;30433:16;;30423:26;;;:6;:26;;;;30415:35;;;30100:358;;;;;;;:::o;30626:175::-;30726:1;30690:38;;:15;:24;30706:7;30690:24;;;;;;;;;;;;;;;;;;;;;:38;;;30686:108;;30780:1;30745:15;:24;30761:7;30745:24;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;30686:108;30626:175;:::o;13971:110::-;14052:21;14071:1;14052:7;:14;;;:18;;:21;;;;:::i;:::-;14035:7;:14;;:38;;;;13971:110;:::o;13782:181::-;13954:1;13936:7;:14;;;:19;;;;;;;;;;;13782:181;:::o;6336:136::-;6394:7;6421:43;6425:1;6428;6421:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6414:50;;6336:136;;;;:::o;11357:810::-;11417:4;11870:16;11897:19;11919:66;11897:88;;;;12088:7;12076:20;12064:32;;12128:3;12116:15;;:8;:15;;:42;;;;;12147:11;12135:8;:23;;12116:42;12108:51;;;;11357:810;;;:::o;6922:192::-;7008:7;7041:1;7036;:6;;7044:12;7028:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;7028:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7068:9;7084:1;7080;:5;7068:17;;7105:1;7098:8;;;6922:192;;;;;:::o;47916:1378::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://04af202ae7176259aaf2ad55f4ca9a7ede5458dd38469c6a5b9dab386adc1881
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.