ETH Price: $1,583.50 (-0.49%)
 

Overview

TokenID

10691

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The X,Y Project is a full set of XY Coordinates that are stored on chain, representing a 128x128 grid. Use it for open metaverse maps, tiles, locations, games, or anything you want.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
XY

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 10 runs

Other Settings:
default evmVersion
File 1 of 20 : XY.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC721Tradable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
contract XY is ERC721Tradable, ReentrancyGuard {
using SafeMath for uint256;
uint256 constant WIDTH = 128;
uint256 constant HEIGHT = 128;
string private contractURI_ = "https://assets.nfty.dev/xy/contract.json";
function contractURI() public view returns (string memory) {
return contractURI_;
}
function updateContractURI(string memory _contractURI) public onlyOwner {
contractURI_ = _contractURI;
}
function getX(uint256 tokenId) public pure returns (uint256) {
return SafeMath.mod(SafeMath.sub(tokenId, 1), WIDTH);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 20 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 20 : ReentrancyGuard.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 20 : ERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 20 : IERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 20 : IERC721Receiver.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 20 : ERC721Enumerable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 20 : IERC721Enumerable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 20 : IERC721Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 20 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 20 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 12 of 20 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 13 of 20 : ERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 14 of 20 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 15 of 20 : SafeMath.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 16 of 20 : ERC721Tradable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./common/meta-transactions/ContentMixin.sol";
import "./common/meta-transactions/NativeMetaTransaction.sol";
contract OwnableDelegateProxy {}
contract ProxyRegistry {
mapping(address => OwnableDelegateProxy) public proxies;
}
/**
* @title ERC721Tradable
* ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
*/
abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable {
using SafeMath for uint256;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 17 of 20 : ContentMixin.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract ContextMixin {
function msgSender()
internal
view
returns (address payable sender)
{
if (msg.sender == address(this)) {
bytes memory array = msg.data;
uint256 index = msg.data.length;
assembly {
// Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
sender := and(
mload(add(array, index)),
0xffffffffffffffffffffffffffffffffffffffff
)
}
} else {
sender = payable(msg.sender);
}
return sender;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 18 of 20 : EIP712Base.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {Initializable} from "./Initializable.sol";
contract EIP712Base is Initializable {
struct EIP712Domain {
string name;
string version;
address verifyingContract;
bytes32 salt;
}
string constant public ERC712_VERSION = "1";
bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
bytes(
"EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
)
);
bytes32 internal domainSeperator;
// supposed to be called once while initializing.
// one of the contracts that inherits this contract follows proxy pattern
// so it is not possible to do this in a constructor
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 19 of 20 : Initializable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Initializable {
bool inited = false;
modifier initializer() {
require(!inited, "already inited");
_;
inited = true;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 20 of 20 : NativeMetaTransaction.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import {SafeMath} from "@openzeppelin/contracts/utils/math/SafeMath.sol";
import {EIP712Base} from "./EIP712Base.sol";
contract NativeMetaTransaction is EIP712Base {
using SafeMath for uint256;
bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
bytes(
"MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
)
);
event MetaTransactionExecuted(
address userAddress,
address payable relayerAddress,
bytes functionSignature
);
mapping(address => uint256) nonces;
/*
* Meta transaction structure.
* No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
* He should call the desired function directly in that case.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 10
},
"evmVersion": "london",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"x","type":"uint256"},{"internalType":"uint256","name":"y","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getHeight","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWidth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"updateContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600a805460ff191690556000600f5560e060405260286080818152906200305860a0398051620000389160119160209091019062000304565b503480156200004657600080fd5b5060405162003080380380620030808339810160408190526200006991620003aa565b6040518060400160405280600f81526020016e582c5920436f6f7264696e6174657360881b8152506040518060400160405280600381526020016258594360e81b8152508282828160009080519060200190620000c892919062000304565b508051620000de90600190602084019062000304565b505050620000fb620000f56200013160201b60201c565b6200014d565b600e80546001600160a01b0319166001600160a01b03831617905562000121836200019f565b5050600160105550620004199050565b6000620001486200020360201b620012861760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615620001e85760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620001f38162000262565b50600a805460ff19166001179055565b6000333014156200025c57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200025f9050565b50335b90565b6040518060800160405280604f815260200162003009604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b8280546200031290620003dc565b90600052602060002090601f01602090048101928262000336576000855562000381565b82601f106200035157805160ff191683800117855562000381565b8280016001018555821562000381579182015b828111156200038157825182559160200191906001019062000364565b506200038f92915062000393565b5090565b5b808211156200038f576000815560010162000394565b600060208284031215620003bd57600080fd5b81516001600160a01b0381168114620003d557600080fd5b9392505050565b600181811c90821680620003f157607f821691505b602082108114156200041357634e487b7160e01b600052602260045260246000fd5b50919050565b612be080620004296000396000f3fe6080604052600436106101735760003560e01c806301ffc9a71461017857806306fdde03146101ad578063081812fc146101cf578063095ea7b3146101fc5780630c53c51c1461021e5780630f7e59701461023157806318160ddd1461025e57806319efb11d1461027d57806320379ee51461029157806323b872dd146102a65780632d0335ab146102c65780632f745c59146102fc5780633408e4701461031c578063379607f51461032f57806342842e0e1461034f5780634f6ccce71461036f5780636352211e1461038f57806370a08231146103af578063715018a6146103cf5780637e5b1e24146103e4578063845a4697146104045780638da5cb5b146104245780638e5cb5f61461043957806395d89b4114610459578063a22cb4651461046e578063b88d4fde1461048e578063c3490263146104ae578063c87b56dd146104ce578063e8a3d485146104ee578063e985e9c514610503578063f2fde38b14610523578063f8e195b31461027d575b600080fd5b34801561018457600080fd5b506101986101933660046122f8565b610543565b60405190151581526020015b60405180910390f35b3480156101b957600080fd5b506101c261056e565b6040516101a49190612737565b3480156101db57600080fd5b506101ef6101ea366004612397565b610600565b6040516101a491906126b1565b34801561020857600080fd5b5061021c6102173660046122cc565b61068d565b005b6101c261022c36600461224f565b6107b0565b34801561023d57600080fd5b506101c2604051806040016040528060018152602001603160f81b81525081565b34801561026a57600080fd5b506008545b6040519081526020016101a4565b34801561028957600080fd5b50608061026f565b34801561029d57600080fd5b50600b5461026f565b3480156102b257600080fd5b5061021c6102c1366004612170565b610999565b3480156102d257600080fd5b5061026f6102e136600461211a565b6001600160a01b03166000908152600c602052604090205490565b34801561030857600080fd5b5061026f6103173660046122cc565b6109d1565b34801561032857600080fd5b504661026f565b34801561033b57600080fd5b5061021c61034a366004612397565b610a67565b34801561035b57600080fd5b5061021c61036a366004612170565b610b00565b34801561037b57600080fd5b5061026f61038a366004612397565b610b1b565b34801561039b57600080fd5b506101ef6103aa366004612397565b610bae565b3480156103bb57600080fd5b5061026f6103ca36600461211a565b610c25565b3480156103db57600080fd5b5061021c610cac565b3480156103f057600080fd5b5061021c6103ff36600461234f565b610cf7565b34801561041057600080fd5b5061026f61041f366004612397565b610d4d565b34801561043057600080fd5b506101ef610d64565b34801561044557600080fd5b5061026f610454366004612397565b610d73565b34801561046557600080fd5b506101c2610d8a565b34801561047a57600080fd5b5061021c61048936600461221c565b610d99565b34801561049a57600080fd5b5061021c6104a93660046121b1565b610e97565b3480156104ba57600080fd5b5061021c6104c93660046123b0565b610ed6565b3480156104da57600080fd5b506101c26104e9366004612397565b610f91565b3480156104fa57600080fd5b506101c26110f3565b34801561050f57600080fd5b5061019861051e366004612137565b611102565b34801561052f57600080fd5b5061021c61053e36600461211a565b6111d6565b60006001600160e01b0319821663780e9d6360e01b14806105685750610568826112e3565b92915050565b60606000805461057d906128e7565b80601f01602080910402602001604051908101604052809291908181526020018280546105a9906128e7565b80156105f65780601f106105cb576101008083540402835291602001916105f6565b820191906000526020600020905b8154815290600101906020018083116105d957829003601f168201915b5050505050905090565b600061060b82611333565b6106715760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061069882610bae565b9050806001600160a01b0316836001600160a01b031614156107065760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610668565b806001600160a01b0316610718611350565b6001600160a01b0316148061073457506107348161051e611350565b6107a15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610668565b6107ab838361135f565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526107ee87828787876113cd565b6108445760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610668565b6001600160a01b0387166000908152600c60205260409020546108689060016114bd565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b906108b890899033908a906126c5565b60405180910390a1600080306001600160a01b0316888a6040516020016108e0929190612436565b60408051601f19818403018152908290526108fa9161241a565b6000604051808303816000865af19150503d8060008114610937576040519150601f19603f3d011682016040523d82523d6000602084013e61093c565b606091505b50915091508161098d5760405162461bcd60e51b815260206004820152601c60248201527b119d5b98dd1a5bdb8818d85b1b081b9bdd081cdd58d8d95cdcd99d5b60221b6044820152606401610668565b98975050505050505050565b6109aa6109a4611350565b826114d0565b6109c65760405162461bcd60e51b8152600401610668906127d1565b6107ab838383611592565b60006109dc83610c25565b8210610a3e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610668565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60026010541415610a8a5760405162461bcd60e51b815260040161066890612822565b60026010558015801590610aa85750610aa460808061172b565b8111155b610ae75760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610668565b610af8610af2611350565b82611737565b506001601055565b6107ab83838360405180602001604052806000815250610e97565b6000610b2660085490565b8210610b895760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610668565b60088281548110610b9c57610b9c612993565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105685760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610668565b60006001600160a01b038216610c905760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610668565b506001600160a01b031660009081526003602052604090205490565b610cb4611350565b6001600160a01b0316610cc5610d64565b6001600160a01b031614610ceb5760405162461bcd60e51b81526004016106689061279c565b610cf56000611751565b565b610cff611350565b6001600160a01b0316610d10610d64565b6001600160a01b031614610d365760405162461bcd60e51b81526004016106689061279c565b8051610d49906011906020840190611fc4565b5050565b6000610568610d5d8360016117a3565b60806117af565b600d546001600160a01b031690565b6000610568610d838360016117a3565b60806117bb565b60606001805461057d906128e7565b610da1611350565b6001600160a01b0316826001600160a01b03161415610dfe5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610668565b8060056000610e0b611350565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e4f611350565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e8b911515815260200190565b60405180910390a35050565b610ea8610ea2611350565b836114d0565b610ec45760405162461bcd60e51b8152600401610668906127d1565b610ed0848484846117c7565b50505050565b60026010541415610ef95760405162461bcd60e51b815260040161066890612822565b60026010556000610f1e610f1784610f1260808661172b565b6114bd565b60016114bd565b9050600081118015610f3a5750610f3660808061172b565b8111155b610f7c5760405162461bcd60e51b815260206004820152601360248201527210dbdbdc991a5b985d195cc81a5b9d985b1a59606a1b6044820152606401610668565b610f87610af2611350565b5050600160105550565b6060610f9b612048565b60405180610140016040528061011d8152602001612a2e61011d91398152610fca610fc584610d73565b6117fa565b60208281019190915260408051808201825260018152600b60fa1b92810192909252820152610ffb610fc584610d4d565b60608201908152604080518082018252600e81526d149e17ba32bc3a1f1e17b9bb339f60911b60208083019190915260808501829052845181860151848701519551945160009661105496939592949093929101612468565b604051602081830303815290604052905060006110c7611076610fc587610d73565b611082610fc588610d4d565b61108c60806117fa565b61109660806117fa565b61109f876118f7565b6040516020016110b39594939291906124d3565b6040516020818303038152906040526118f7565b9050806040516020016110da919061266c565b60408051601f1981840301815291905295945050505050565b60606011805461057d906128e7565b600e5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c45527919061113b9088906004016126b1565b60206040518083038186803b15801561115357600080fd5b505afa158015611167573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118b9190612332565b6001600160a01b031614156111a4576001915050610568565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6111de611350565b6001600160a01b03166111ef610d64565b6001600160a01b0316146112155760405162461bcd60e51b81526004016106689061279c565b6001600160a01b03811661127a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610668565b61128381611751565b50565b6000333014156112dd57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506112e09050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b148061131457506001600160e01b03198216635b5e139f60e01b145b8061056857506301ffc9a760e01b6001600160e01b0319831614610568565b6000908152600260205260409020546001600160a01b0316151590565b600061135a611286565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061139482610bae565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166114335760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610668565b600161144661144187611a5c565b611ad9565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611494573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006114c98284612859565b9392505050565b60006114db82611333565b61153c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610668565b600061154783610bae565b9050806001600160a01b0316846001600160a01b031614806115825750836001600160a01b031661157784610600565b6001600160a01b0316145b806111ce57506111ce8185611102565b826001600160a01b03166115a582610bae565b6001600160a01b03161461160d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610668565b6001600160a01b03821661166f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610668565b61167a838383611b09565b61168560008261135f565b6001600160a01b03831660009081526003602052604081208054600192906116ae9084906128a4565b90915550506001600160a01b03821660009081526003602052604081208054600192906116dc908490612859565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612b8b83398151915291a4505050565b60006114c98284612885565b610d49828260405180602001604052806000815250611bc1565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006114c982846128a4565b60006114c98284612871565b60006114c9828461293d565b6117d2848484611592565b6117de84848484611bf4565b610ed05760405162461bcd60e51b81526004016106689061274a565b60608161181e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611848578061183281612922565b91506118419050600a83612871565b9150611822565b6000816001600160401b03811115611862576118626129a9565b6040519080825280601f01601f19166020018201604052801561188c576020820181803683370190505b5090505b84156111ce576118a16001836128a4565b91506118ae600a8661293d565b6118b9906030612859565b60f81b8183815181106118ce576118ce612993565b60200101906001600160f81b031916908160001a9053506118f0600a86612871565b9450611890565b805160609080611917575050604080516020810190915260008152919050565b60006003611926836002612859565b6119309190612871565b61193b906004612885565b9050600061194a826020612859565b6001600160401b03811115611961576119616129a9565b6040519080825280601f01601f19166020018201604052801561198b576020820181803683370190505b5090506000604051806060016040528060408152602001612b4b604091399050600181016020830160005b86811015611a17576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016119b6565b506003860660018114611a315760028114611a4257611a4e565b613d3d60f01b600119830152611a4e565b603d60f81b6000198301525b505050918152949350505050565b60006040518060800160405280604381526020016129eb6043913980516020918201208351848301516040808701518051908601209051611abc950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611ae4600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201611abc565b6001600160a01b038316611b6457611b5f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b87565b816001600160a01b0316836001600160a01b031614611b8757611b878382611d08565b6001600160a01b038216611b9e576107ab81611da5565b826001600160a01b0316826001600160a01b0316146107ab576107ab8282611e54565b611bcb8383611e98565b611bd86000848484611bf4565b6107ab5760405162461bcd60e51b81526004016106689061274a565b60006001600160a01b0384163b15611cfd57836001600160a01b031663150b7a02611c1d611350565b8786866040518563ffffffff1660e01b8152600401611c3f94939291906126fa565b602060405180830381600087803b158015611c5957600080fd5b505af1925050508015611c89575060408051601f3d908101601f19168201909252611c8691810190612315565b60015b611ce3573d808015611cb7576040519150601f19603f3d011682016040523d82523d6000602084013e611cbc565b606091505b508051611cdb5760405162461bcd60e51b81526004016106689061274a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111ce565b506001949350505050565b60006001611d1584610c25565b611d1f91906128a4565b600083815260076020526040902054909150808214611d72576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611db7906001906128a4565b60008381526009602052604081205460088054939450909284908110611ddf57611ddf612993565b906000526020600020015490508060088381548110611e0057611e00612993565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e3857611e3861297d565b6001900381819060005260206000200160009055905550505050565b6000611e5f83610c25565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611eee5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610668565b611ef781611333565b15611f435760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610668565b611f4f60008383611b09565b6001600160a01b0382166000908152600360205260408120805460019290611f78908490612859565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612b8b833981519152908290a45050565b828054611fd0906128e7565b90600052602060002090601f016020900481019282611ff25760008555612038565b82601f1061200b57805160ff1916838001178555612038565b82800160010185558215612038579182015b8281111561203857825182559160200191906001019061201d565b50612044929150612070565b5090565b6040518061022001604052806011905b60608152602001906001900390816120585790505090565b5b808211156120445760008155600101612071565b60006001600160401b038084111561209f5761209f6129a9565b604051601f8501601f19908116603f011681019082821181831017156120c7576120c76129a9565b816040528093508581528686860111156120e057600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261210b57600080fd5b6114c983833560208501612085565b60006020828403121561212c57600080fd5b81356114c9816129bf565b6000806040838503121561214a57600080fd5b8235612155816129bf565b91506020830135612165816129bf565b809150509250929050565b60008060006060848603121561218557600080fd5b8335612190816129bf565b925060208401356121a0816129bf565b929592945050506040919091013590565b600080600080608085870312156121c757600080fd5b84356121d2816129bf565b935060208501356121e2816129bf565b92506040850135915060608501356001600160401b0381111561220457600080fd5b612210878288016120fa565b91505092959194509250565b6000806040838503121561222f57600080fd5b823561223a816129bf565b91506020830135801515811461216557600080fd5b600080600080600060a0868803121561226757600080fd5b8535612272816129bf565b945060208601356001600160401b0381111561228d57600080fd5b612299888289016120fa565b9450506040860135925060608601359150608086013560ff811681146122be57600080fd5b809150509295509295909350565b600080604083850312156122df57600080fd5b82356122ea816129bf565b946020939093013593505050565b60006020828403121561230a57600080fd5b81356114c9816129d4565b60006020828403121561232757600080fd5b81516114c9816129d4565b60006020828403121561234457600080fd5b81516114c9816129bf565b60006020828403121561236157600080fd5b81356001600160401b0381111561237757600080fd5b8201601f8101841361238857600080fd5b6111ce84823560208401612085565b6000602082840312156123a957600080fd5b5035919050565b600080604083850312156123c357600080fd5b50508035926020909101359150565b600081518084526123ea8160208601602086016128bb565b601f01601f19169290920160200192915050565b600081516124108185602086016128bb565b9290920192915050565b6000825161242c8184602087016128bb565b9190910192915050565b600083516124488184602088016128bb565b60609390931b6001600160601b0319169190920190815260140192915050565b6000865161247a818460208b016128bb565b86519083019061248e818360208b016128bb565b86519101906124a1818360208a016128bb565b85519101906124b48183602089016128bb565b84519101906124c78183602088016128bb565b01979650505050505050565b750f644dcc2daca4474404486dedee4c8d2dcc2e8ca40560531b81528551600090612505816016850160208b016128bb565b600b60fa1b6016918401918201528651612526816017840160208b016128bb565b7f29222c20226465736372697074696f6e223a2022582c5920436f6f7264696e61601792909101918201527f746573206172652073746f726564206f6e20636861696e20616e642072657072603782015267032b9b2b73a1030960c51b6057820152855161259b81605f840160208a016128bb565b600f60fb1b605f929091019182015284516125bd8160608401602089016128bb565b61265f61265161264b6060848601017f20677269642e2055736520697420666f72206d6170732c2074696c65732c206c81527f6f636174696f6e73206f7220616e797468696e6720656c736521222c2022696d60208201527f616765223a2022646174613a696d6167652f7376672b786d6c3b6261736536346040820152600b60fa1b606082015260610190565b876123fe565b61227d60f01b815260020190565b9998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516126a481601d8501602087016128bb565b91909101601d0192915050565b6001600160a01b0391909116815260200190565b6001600160a01b038481168252831660208201526060604082018190526000906126f1908301846123d2565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061272d908301846123d2565b9695505050505050565b6020815260006114c960208301846123d2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000821982111561286c5761286c612951565b500190565b60008261288057612880612967565b500490565b600081600019048311821515161561289f5761289f612951565b500290565b6000828210156128b6576128b6612951565b500390565b60005b838110156128d65781810151838201526020016128be565b83811115610ed05750506000910152565b600181811c908216806128fb57607f821691505b6020821081141561291c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561293657612936612951565b5060010190565b60008261294c5761294c612967565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461128357600080fd5b6001600160e01b03198116811461128357600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e6174757265293c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b20666f6e742d66616d696c793a206d6f6e6f73706163653b20666f6e742d73697a653a20323870783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d222335343342323322202f3e3c7465787420783d223530252220793d223530252220746578742d616e63686f723d226d6964646c65222066696c6c3d22233831424531432220636c6173733d2262617365223e284142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220b67bc92b3187b1c7e2368b722d1224f6526bbfc424c9215bd82fe17ca6272ba564736f6c63430008070033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742968747470733a2f2f6173736574732e6e6674792e6465762f78792f636f6e74726163742e6a736f6e000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x6080604052600436106101735760003560e01c806301ffc9a71461017857806306fdde03146101ad578063081812fc146101cf578063095ea7b3146101fc5780630c53c51c1461021e5780630f7e59701461023157806318160ddd1461025e57806319efb11d1461027d57806320379ee51461029157806323b872dd146102a65780632d0335ab146102c65780632f745c59146102fc5780633408e4701461031c578063379607f51461032f57806342842e0e1461034f5780634f6ccce71461036f5780636352211e1461038f57806370a08231146103af578063715018a6146103cf5780637e5b1e24146103e4578063845a4697146104045780638da5cb5b146104245780638e5cb5f61461043957806395d89b4114610459578063a22cb4651461046e578063b88d4fde1461048e578063c3490263146104ae578063c87b56dd146104ce578063e8a3d485146104ee578063e985e9c514610503578063f2fde38b14610523578063f8e195b31461027d575b600080fd5b34801561018457600080fd5b506101986101933660046122f8565b610543565b60405190151581526020015b60405180910390f35b3480156101b957600080fd5b506101c261056e565b6040516101a49190612737565b3480156101db57600080fd5b506101ef6101ea366004612397565b610600565b6040516101a491906126b1565b34801561020857600080fd5b5061021c6102173660046122cc565b61068d565b005b6101c261022c36600461224f565b6107b0565b34801561023d57600080fd5b506101c2604051806040016040528060018152602001603160f81b81525081565b34801561026a57600080fd5b506008545b6040519081526020016101a4565b34801561028957600080fd5b50608061026f565b34801561029d57600080fd5b50600b5461026f565b3480156102b257600080fd5b5061021c6102c1366004612170565b610999565b3480156102d257600080fd5b5061026f6102e136600461211a565b6001600160a01b03166000908152600c602052604090205490565b34801561030857600080fd5b5061026f6103173660046122cc565b6109d1565b34801561032857600080fd5b504661026f565b34801561033b57600080fd5b5061021c61034a366004612397565b610a67565b34801561035b57600080fd5b5061021c61036a366004612170565b610b00565b34801561037b57600080fd5b5061026f61038a366004612397565b610b1b565b34801561039b57600080fd5b506101ef6103aa366004612397565b610bae565b3480156103bb57600080fd5b5061026f6103ca36600461211a565b610c25565b3480156103db57600080fd5b5061021c610cac565b3480156103f057600080fd5b5061021c6103ff36600461234f565b610cf7565b34801561041057600080fd5b5061026f61041f366004612397565b610d4d565b34801561043057600080fd5b506101ef610d64565b34801561044557600080fd5b5061026f610454366004612397565b610d73565b34801561046557600080fd5b506101c2610d8a565b34801561047a57600080fd5b5061021c61048936600461221c565b610d99565b34801561049a57600080fd5b5061021c6104a93660046121b1565b610e97565b3480156104ba57600080fd5b5061021c6104c93660046123b0565b610ed6565b3480156104da57600080fd5b506101c26104e9366004612397565b610f91565b3480156104fa57600080fd5b506101c26110f3565b34801561050f57600080fd5b5061019861051e366004612137565b611102565b34801561052f57600080fd5b5061021c61053e36600461211a565b6111d6565b60006001600160e01b0319821663780e9d6360e01b14806105685750610568826112e3565b92915050565b60606000805461057d906128e7565b80601f01602080910402602001604051908101604052809291908181526020018280546105a9906128e7565b80156105f65780601f106105cb576101008083540402835291602001916105f6565b820191906000526020600020905b8154815290600101906020018083116105d957829003601f168201915b5050505050905090565b600061060b82611333565b6106715760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061069882610bae565b9050806001600160a01b0316836001600160a01b031614156107065760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610668565b806001600160a01b0316610718611350565b6001600160a01b0316148061073457506107348161051e611350565b6107a15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b6064820152608401610668565b6107ab838361135f565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526107ee87828787876113cd565b6108445760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610668565b6001600160a01b0387166000908152600c60205260409020546108689060016114bd565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b906108b890899033908a906126c5565b60405180910390a1600080306001600160a01b0316888a6040516020016108e0929190612436565b60408051601f19818403018152908290526108fa9161241a565b6000604051808303816000865af19150503d8060008114610937576040519150601f19603f3d011682016040523d82523d6000602084013e61093c565b606091505b50915091508161098d5760405162461bcd60e51b815260206004820152601c60248201527b119d5b98dd1a5bdb8818d85b1b081b9bdd081cdd58d8d95cdcd99d5b60221b6044820152606401610668565b98975050505050505050565b6109aa6109a4611350565b826114d0565b6109c65760405162461bcd60e51b8152600401610668906127d1565b6107ab838383611592565b60006109dc83610c25565b8210610a3e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610668565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60026010541415610a8a5760405162461bcd60e51b815260040161066890612822565b60026010558015801590610aa85750610aa460808061172b565b8111155b610ae75760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b6044820152606401610668565b610af8610af2611350565b82611737565b506001601055565b6107ab83838360405180602001604052806000815250610e97565b6000610b2660085490565b8210610b895760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610668565b60088281548110610b9c57610b9c612993565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105685760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610668565b60006001600160a01b038216610c905760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610668565b506001600160a01b031660009081526003602052604090205490565b610cb4611350565b6001600160a01b0316610cc5610d64565b6001600160a01b031614610ceb5760405162461bcd60e51b81526004016106689061279c565b610cf56000611751565b565b610cff611350565b6001600160a01b0316610d10610d64565b6001600160a01b031614610d365760405162461bcd60e51b81526004016106689061279c565b8051610d49906011906020840190611fc4565b5050565b6000610568610d5d8360016117a3565b60806117af565b600d546001600160a01b031690565b6000610568610d838360016117a3565b60806117bb565b60606001805461057d906128e7565b610da1611350565b6001600160a01b0316826001600160a01b03161415610dfe5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610668565b8060056000610e0b611350565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e4f611350565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e8b911515815260200190565b60405180910390a35050565b610ea8610ea2611350565b836114d0565b610ec45760405162461bcd60e51b8152600401610668906127d1565b610ed0848484846117c7565b50505050565b60026010541415610ef95760405162461bcd60e51b815260040161066890612822565b60026010556000610f1e610f1784610f1260808661172b565b6114bd565b60016114bd565b9050600081118015610f3a5750610f3660808061172b565b8111155b610f7c5760405162461bcd60e51b815260206004820152601360248201527210dbdbdc991a5b985d195cc81a5b9d985b1a59606a1b6044820152606401610668565b610f87610af2611350565b5050600160105550565b6060610f9b612048565b60405180610140016040528061011d8152602001612a2e61011d91398152610fca610fc584610d73565b6117fa565b60208281019190915260408051808201825260018152600b60fa1b92810192909252820152610ffb610fc584610d4d565b60608201908152604080518082018252600e81526d149e17ba32bc3a1f1e17b9bb339f60911b60208083019190915260808501829052845181860151848701519551945160009661105496939592949093929101612468565b604051602081830303815290604052905060006110c7611076610fc587610d73565b611082610fc588610d4d565b61108c60806117fa565b61109660806117fa565b61109f876118f7565b6040516020016110b39594939291906124d3565b6040516020818303038152906040526118f7565b9050806040516020016110da919061266c565b60408051601f1981840301815291905295945050505050565b60606011805461057d906128e7565b600e5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c45527919061113b9088906004016126b1565b60206040518083038186803b15801561115357600080fd5b505afa158015611167573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118b9190612332565b6001600160a01b031614156111a4576001915050610568565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6111de611350565b6001600160a01b03166111ef610d64565b6001600160a01b0316146112155760405162461bcd60e51b81526004016106689061279c565b6001600160a01b03811661127a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610668565b61128381611751565b50565b6000333014156112dd57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506112e09050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b148061131457506001600160e01b03198216635b5e139f60e01b145b8061056857506301ffc9a760e01b6001600160e01b0319831614610568565b6000908152600260205260409020546001600160a01b0316151590565b600061135a611286565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061139482610bae565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166114335760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610668565b600161144661144187611a5c565b611ad9565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611494573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006114c98284612859565b9392505050565b60006114db82611333565b61153c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610668565b600061154783610bae565b9050806001600160a01b0316846001600160a01b031614806115825750836001600160a01b031661157784610600565b6001600160a01b0316145b806111ce57506111ce8185611102565b826001600160a01b03166115a582610bae565b6001600160a01b03161461160d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610668565b6001600160a01b03821661166f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610668565b61167a838383611b09565b61168560008261135f565b6001600160a01b03831660009081526003602052604081208054600192906116ae9084906128a4565b90915550506001600160a01b03821660009081526003602052604081208054600192906116dc908490612859565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b038681169182179092559151849391871691600080516020612b8b83398151915291a4505050565b60006114c98284612885565b610d49828260405180602001604052806000815250611bc1565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006114c982846128a4565b60006114c98284612871565b60006114c9828461293d565b6117d2848484611592565b6117de84848484611bf4565b610ed05760405162461bcd60e51b81526004016106689061274a565b60608161181e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611848578061183281612922565b91506118419050600a83612871565b9150611822565b6000816001600160401b03811115611862576118626129a9565b6040519080825280601f01601f19166020018201604052801561188c576020820181803683370190505b5090505b84156111ce576118a16001836128a4565b91506118ae600a8661293d565b6118b9906030612859565b60f81b8183815181106118ce576118ce612993565b60200101906001600160f81b031916908160001a9053506118f0600a86612871565b9450611890565b805160609080611917575050604080516020810190915260008152919050565b60006003611926836002612859565b6119309190612871565b61193b906004612885565b9050600061194a826020612859565b6001600160401b03811115611961576119616129a9565b6040519080825280601f01601f19166020018201604052801561198b576020820181803683370190505b5090506000604051806060016040528060408152602001612b4b604091399050600181016020830160005b86811015611a17576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016119b6565b506003860660018114611a315760028114611a4257611a4e565b613d3d60f01b600119830152611a4e565b603d60f81b6000198301525b505050918152949350505050565b60006040518060800160405280604381526020016129eb6043913980516020918201208351848301516040808701518051908601209051611abc950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611ae4600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201611abc565b6001600160a01b038316611b6457611b5f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b87565b816001600160a01b0316836001600160a01b031614611b8757611b878382611d08565b6001600160a01b038216611b9e576107ab81611da5565b826001600160a01b0316826001600160a01b0316146107ab576107ab8282611e54565b611bcb8383611e98565b611bd86000848484611bf4565b6107ab5760405162461bcd60e51b81526004016106689061274a565b60006001600160a01b0384163b15611cfd57836001600160a01b031663150b7a02611c1d611350565b8786866040518563ffffffff1660e01b8152600401611c3f94939291906126fa565b602060405180830381600087803b158015611c5957600080fd5b505af1925050508015611c89575060408051601f3d908101601f19168201909252611c8691810190612315565b60015b611ce3573d808015611cb7576040519150601f19603f3d011682016040523d82523d6000602084013e611cbc565b606091505b508051611cdb5760405162461bcd60e51b81526004016106689061274a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111ce565b506001949350505050565b60006001611d1584610c25565b611d1f91906128a4565b600083815260076020526040902054909150808214611d72576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611db7906001906128a4565b60008381526009602052604081205460088054939450909284908110611ddf57611ddf612993565b906000526020600020015490508060088381548110611e0057611e00612993565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e3857611e3861297d565b6001900381819060005260206000200160009055905550505050565b6000611e5f83610c25565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611eee5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610668565b611ef781611333565b15611f435760405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606401610668565b611f4f60008383611b09565b6001600160a01b0382166000908152600360205260408120805460019290611f78908490612859565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386169081179091559051839290600080516020612b8b833981519152908290a45050565b828054611fd0906128e7565b90600052602060002090601f016020900481019282611ff25760008555612038565b82601f1061200b57805160ff1916838001178555612038565b82800160010185558215612038579182015b8281111561203857825182559160200191906001019061201d565b50612044929150612070565b5090565b6040518061022001604052806011905b60608152602001906001900390816120585790505090565b5b808211156120445760008155600101612071565b60006001600160401b038084111561209f5761209f6129a9565b604051601f8501601f19908116603f011681019082821181831017156120c7576120c76129a9565b816040528093508581528686860111156120e057600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261210b57600080fd5b6114c983833560208501612085565b60006020828403121561212c57600080fd5b81356114c9816129bf565b6000806040838503121561214a57600080fd5b8235612155816129bf565b91506020830135612165816129bf565b809150509250929050565b60008060006060848603121561218557600080fd5b8335612190816129bf565b925060208401356121a0816129bf565b929592945050506040919091013590565b600080600080608085870312156121c757600080fd5b84356121d2816129bf565b935060208501356121e2816129bf565b92506040850135915060608501356001600160401b0381111561220457600080fd5b612210878288016120fa565b91505092959194509250565b6000806040838503121561222f57600080fd5b823561223a816129bf565b91506020830135801515811461216557600080fd5b600080600080600060a0868803121561226757600080fd5b8535612272816129bf565b945060208601356001600160401b0381111561228d57600080fd5b612299888289016120fa565b9450506040860135925060608601359150608086013560ff811681146122be57600080fd5b809150509295509295909350565b600080604083850312156122df57600080fd5b82356122ea816129bf565b946020939093013593505050565b60006020828403121561230a57600080fd5b81356114c9816129d4565b60006020828403121561232757600080fd5b81516114c9816129d4565b60006020828403121561234457600080fd5b81516114c9816129bf565b60006020828403121561236157600080fd5b81356001600160401b0381111561237757600080fd5b8201601f8101841361238857600080fd5b6111ce84823560208401612085565b6000602082840312156123a957600080fd5b5035919050565b600080604083850312156123c357600080fd5b50508035926020909101359150565b600081518084526123ea8160208601602086016128bb565b601f01601f19169290920160200192915050565b600081516124108185602086016128bb565b9290920192915050565b6000825161242c8184602087016128bb565b9190910192915050565b600083516124488184602088016128bb565b60609390931b6001600160601b0319169190920190815260140192915050565b6000865161247a818460208b016128bb565b86519083019061248e818360208b016128bb565b86519101906124a1818360208a016128bb565b85519101906124b48183602089016128bb565b84519101906124c78183602088016128bb565b01979650505050505050565b750f644dcc2daca4474404486dedee4c8d2dcc2e8ca40560531b81528551600090612505816016850160208b016128bb565b600b60fa1b6016918401918201528651612526816017840160208b016128bb565b7f29222c20226465736372697074696f6e223a2022582c5920436f6f7264696e61601792909101918201527f746573206172652073746f726564206f6e20636861696e20616e642072657072603782015267032b9b2b73a1030960c51b6057820152855161259b81605f840160208a016128bb565b600f60fb1b605f929091019182015284516125bd8160608401602089016128bb565b61265f61265161264b6060848601017f20677269642e2055736520697420666f72206d6170732c2074696c65732c206c81527f6f636174696f6e73206f7220616e797468696e6720656c736521222c2022696d60208201527f616765223a2022646174613a696d6167652f7376672b786d6c3b6261736536346040820152600b60fa1b606082015260610190565b876123fe565b61227d60f01b815260020190565b9998505050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516126a481601d8501602087016128bb565b91909101601d0192915050565b6001600160a01b0391909116815260200190565b6001600160a01b038481168252831660208201526060604082018190526000906126f1908301846123d2565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061272d908301846123d2565b9695505050505050565b6020815260006114c960208301846123d2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000821982111561286c5761286c612951565b500190565b60008261288057612880612967565b500490565b600081600019048311821515161561289f5761289f612951565b500290565b6000828210156128b6576128b6612951565b500390565b60005b838110156128d65781810151838201526020016128be565b83811115610ed05750506000910152565b600181811c908216806128fb57607f821691505b6020821081141561291c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561293657612936612951565b5060010190565b60008261294c5761294c612967565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461128357600080fd5b6001600160e01b03198116811461128357600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e6174757265293c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b20666f6e742d66616d696c793a206d6f6e6f73706163653b20666f6e742d73697a653a20323870783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d222335343342323322202f3e3c7465787420783d223530252220793d223530252220746578742d616e63686f723d226d6964646c65222066696c6c3d22233831424531432220636c6173733d2262617365223e284142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220b67bc92b3187b1c7e2368b722d1224f6526bbfc424c9215bd82fe17ca6272ba564736f6c63430008070033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

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


Loading...
Loading
Loading...
Loading
[ 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.