ERC-721
NFT
Overview
Max Total Supply
414,116 SCORE
Holders
414,116
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SCORELoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
GalxeScore
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity Standard Json-Input format)
/* Copyright 2022 Project Galaxy. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.7.6; pragma abicoder v2; import "IERC721.sol"; import "IERC721Receiver.sol"; import "IERC721Metadata.sol"; import "Address.sol"; import "Strings.sol"; import "Ownable.sol"; import "ERC165.sol"; import "IGalxeScore.sol"; /** * @dev Fork https://github.com/generalgalactic/ERC721S and implement IGalxeScore interface */ contract GalxeScore is Ownable, ERC165, IERC721, IERC721Metadata, IGalxeScore { using Address for address; using Strings for uint256; /* ============ State Variables ============ */ struct Score { uint160 owner; // address is 20 bytes long uint96 cid; } // Token name string private _name; // Token symbol string private _symbol; // Total number of tokens burned uint256 private _burnCount; // Array of all tokens storing the owner's address and the campaign id Score[] private _tokens; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping owner address to score token id mapping(address => uint256) private _scores; // Mint and burn permission. mapping(address => bool) private _minters; // Base token URI string private _baseURI; // Flag to allow burn bool private _burnable; // Flag to allow revoke bool private _revokable; /* ============ Events ============ */ // Add new minter event EventMinterAdded(address indexed newMinter); // Remove old minter event EventMinterRemoved(address indexed oldMinter); // Score created event Mint(address indexed owner, uint256 tokenId, uint96 cid); // Score burned event Burn(address indexed owner, uint256 tokenId); // Score revoked event Revoke(address indexed owner, uint256 tokenId); /* ============ Modifiers ============ */ /** * Only minter. */ modifier onlyMinter() { require(_minters[msg.sender], "GalxeScore: must be minter"); _; } /** * @dev Initializes the contract */ constructor() { // Initialize zero index value Score memory _score = Score(0, 0); _tokens.push(_score); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IGalxeScore).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Is this address a minters. */ function minters(address account) public view returns (bool) { return _minters[account]; } /** * @dev Is this contract allow nft transfer. */ function transferable() public view returns (bool) { return false; } /** * @dev Returns the base URI for nft. */ function baseURI() public view returns (string memory) { return _baseURI; } /** * @dev Get Score CID. */ function cid(uint256 tokenId) public view returns (uint256) { require(_exists(tokenId), "GalxeScore: score does not exist"); return _tokens[tokenId].cid; } /** * @dev Get Score minted count. */ function getNumMinted() public view override returns (uint256) { return _tokens.length - 1; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view returns (uint256) { return getNumMinted() - _burnCount; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This is implementation is O(n) and should not be * called by other contracts. */ function tokenOfOwnerByIndex( address owner, uint256 index ) public view returns (uint256) { uint256 currentIndex = 0; for (uint256 i = 1; i < _tokens.length; i++) { if (isOwnerOf(owner, i)) { if (currentIndex == index) { return i; } currentIndex += 1; } } revert("ERC721Enumerable: owner index out of bounds"); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721: owner query for nonexistent token"); return address(_tokens[tokenId].owner); } /** * @dev See {IGalxeScore-isOwnerOf}. */ function isOwnerOf( address account, uint256 id ) public view override returns (bool) { address owner = ownerOf(id); return owner == account; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI( uint256 tokenId ) public view override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return bytes(_baseURI).length > 0 ? string( abi.encodePacked(_baseURI, tokenId.toString(), ".json") ) : ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { require(false, "GalxeScore: approve is not allowed"); } /** * @dev See {IERC721-getApproved}. */ function getApproved( uint256 tokenId ) public view override returns (address) { require(false, "GalxeScore: getApproved is not allowed"); } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll( address operator, bool approved ) public override { require(false, "GalxeScore: setApprovalForAll is not allowed"); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll( address owner, address operator ) public view override returns (bool) { return false; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { require(false, "GalxeScore: score is not transferrable"); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { require(false, "GalxeScore: score is not transferrable"); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { require(false, "GalxeScore: score is not transferrable"); } /** * @dev Returns whether `tokenId` exists. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId > 0 && tokenId <= getNumMinted() && _tokens[tokenId].owner != 0x0; } /** * @dev Returns whether `spender` owns `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isOwner( address spender, uint256 tokenId ) internal view returns (bool) { address owner = ownerOf(tokenId); return spender == owner; } /* ============ External Functions ============ */ /** * @dev Mints score to `account`. * * Emits a {Mint} and a {Transfer} event. */ function mint( address account, uint256 cid ) external override onlyMinter returns (uint256) { require(account != address(0), "GalxeScore: mint to the zero address"); return _mint(account, cid); } /** * @dev Compatible with IStarNFT interface. Mints score to `account`. * * Emits a {Mint} and a {Transfer} event. */ function mintBatch( address account, uint256 amount, uint256[] calldata cidArr ) external onlyMinter returns (uint256[] memory) { require(cidArr.length > 0, "GalxeScore: cidArr is empty"); uint256 id = _mint(account, cidArr[0]); uint256[] memory tokenIds = new uint256[](cidArr.length); for (uint256 i = 0; i < cidArr.length; i++) { tokenIds[i] = id; } return tokenIds; } /** * @dev Revokes score with tokenId. * * Requirements: * * - msg sender must be minter. * - `tokenId` token must exist. * * * Emits a {Revoke} and a {Transfer} event. */ function revoke(uint256 tokenId) external override onlyMinter { require(_exists(tokenId), "GalxeScore: score does not exist"); require(_revokable, "GalxeScore: revoke is not allowed"); address account = ownerOf(tokenId); _burnCount++; _balances[account] -= 1; delete _scores[account]; _tokens[tokenId].owner = 0; _tokens[tokenId].cid = 0; emit Revoke(account, tokenId); emit Transfer(account, address(0), tokenId); } /** * @dev Burns score with tokenId. * * Requirements: * * - msg sender must be token owner. * - `tokenId` token must exist. * * * Emits a {Burn} and a {Transfer} event. */ function burn(uint256 tokenId) external override { require( isOwnerOf(_msgSender(), tokenId), "GalxeScore: caller is not token owner" ); require(_exists(tokenId), "GalxeScore: score does not exist"); require(_burnable, "GalxeScore: burn is not allowed"); _burnCount++; _balances[_msgSender()] -= 1; delete _scores[_msgSender()]; _tokens[tokenId].owner = 0; _tokens[tokenId].cid = 0; emit Burn(_msgSender(), tokenId); emit Transfer(_msgSender(), address(0), tokenId); } function getAddressScore(address owner) public view returns (Score memory) { require( balanceOf(owner) != 0, "GalxeScore: address does not have score" ); uint256 tokenId = _scores[owner]; return _tokens[tokenId]; } function _mint(address account, uint256 cid) internal returns (uint256) { if (balanceOf(account) == 1) { uint256 tokenId = _scores[account]; return tokenId; } uint256 tokenId = _tokens.length; uint96 campaignId = uint96(cid); Score memory score = Score(uint160(account), campaignId); _balances[account] += 1; _scores[account] = tokenId; _tokens.push(score); emit Mint(account, tokenId, campaignId); emit Transfer(address(0), account, tokenId); return tokenId; } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(false, "GalxeScore: score is not transferrable"); } /* ============ Util Functions ============ */ /** * @dev Sets a new baseURI for all token types. */ function setURI(string calldata newURI) external onlyOwner { _baseURI = newURI; } /** * @dev Sets a new name for all token types. */ function setName(string calldata newName) external onlyOwner { _name = newName; } /** * @dev Sets burnable flag. */ function setBurnable(bool burnable) external onlyOwner { _burnable = burnable; } /** * @dev Sets revokable flag. */ function setRevokable(bool revokable) external onlyOwner { _revokable = revokable; } /** * @dev Sets a new symbol for all token types. */ function setSymbol(string calldata newSymbol) external onlyOwner { _symbol = newSymbol; } /** * @dev Add a new minter. */ function addMinter(address minter) external onlyOwner { require(minter != address(0), "minter must not be null address"); require(!_minters[minter], "minter already added"); _minters[minter] = true; emit EventMinterAdded(minter); } /** * @dev Remove a old minter. */ function removeMinter(address minter) external onlyOwner { require(_minters[minter], "minter does not exist"); delete _minters[minter]; emit EventMinterRemoved(minter); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; import "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); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <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); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <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) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` 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; } bytes memory buffer = new bytes(digits); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = bytes1(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { 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 virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 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. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract 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) public view virtual override 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 virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } }
/* Copyright 2021 Project Galaxy. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.7.6; /** * @title IGalxeScore * @author Galaxy Protocol * * Interface for operating with GalxePassports. */ interface IGalxeScore { /* ============ Events =============== */ /* ============ Functions ============ */ function isOwnerOf(address, uint256) external view returns (bool); function getNumMinted() external view returns (uint256); // mint function mint(address account, uint256 powah) external returns (uint256); function burn(uint256 tokenId) external; function revoke(uint256 tokenId) external; }
{ "evmVersion": "istanbul", "optimizer": { "enabled": true, "runs": 200 }, "libraries": { "GalxeScore.sol": {} }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"tokenId","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newMinter","type":"address"}],"name":"EventMinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldMinter","type":"address"}],"name":"EventMinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint96","name":"cid","type":"uint96"}],"name":"Mint","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":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Revoke","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":[{"internalType":"address","name":"minter","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"cid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getAddressScore","outputs":[{"components":[{"internalType":"uint160","name":"owner","type":"uint160"},{"internalType":"uint96","name":"cid","type":"uint96"}],"internalType":"struct GalxeScore.Score","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"cid","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256[]","name":"cidArr","type":"uint256[]"}],"name":"mintBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"minters","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":[{"internalType":"address","name":"minter","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"revoke","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":"bool","name":"burnable","type":"bool"}],"name":"setBurnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"revokable","type":"bool"}],"name":"setRevokable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newSymbol","type":"string"}],"name":"setSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setURI","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":"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":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060006200001e620000ff565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200007a6301ffc9a760e01b62000103565b6040805180820190915260008082526020820181815260058054600181018255925291517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0909101805492516001600160601b0316600160a01b026001600160a01b039283166001600160a01b0319909416939093179091169190911790556200018b565b3390565b6001600160e01b0319808216141562000163576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152600160208190526040909120805460ff19169091179055565b6121ba806200019b6000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c8063715018a611610125578063b0c479a5116100ad578063c5b8f7721161007c578063c5b8f77214610457578063c87b56dd1461046a578063e985e9c51461047d578063f2fde38b14610490578063f46eccc4146104a35761021c565b8063b0c479a514610410578063b84c824614610423578063b88d4fde14610436578063c47f0027146104445761021c565b806395d89b41116100f457806395d89b41146103af578063983b2d56146103b75780639acca077146103ca578063a22cb465146103dd578063a4690fa1146103f05761021c565b8063715018a61461038457806380929e5b1461038c5780638da5cb5b1461039f57806392ff0d31146103a75761021c565b80633092afd5116101a857806342966c681161017757806342966c68146103235780636352211e146103365780636c0360eb1461034957806370a082311461035157806370c2f239146103645761021c565b80633092afd5146102f55780633726230a1461030857806340c10f191461031057806342842e0e146102cf5761021c565b8063095ea7b3116101ef578063095ea7b31461029457806318160ddd146102a757806320c5429b146102bc57806323b872dd146102cf5780632f745c59146102e25761021c565b806301ffc9a71461022157806302fe53051461024a57806306fdde031461025f578063081812fc14610274575b600080fd5b61023461022f366004611a2f565b6104b6565b6040516102419190611bc5565b60405180910390f35b61025d610258366004611a57565b610519565b005b61026761058c565b6040516102419190611bd0565b610287610282366004611ac4565b61061f565b6040516102419190611b6d565b61025d6102a2366004611968565b610642565b6102af61065a565b60405161024191906120f2565b61025d6102ca366004611ac4565b61066d565b61025d6102dd366004611844565b610818565b6102af6102f0366004611968565b610830565b61025d6103033660046117f8565b61088e565b6102af610971565b6102af61031e366004611968565b61097b565b61025d610331366004611ac4565b6109e1565b610287610344366004611ac4565b610bc2565b610267610c11565b6102af61035f3660046117f8565b610c72565b610377610372366004611991565b610cb6565b6040516102419190611b81565b61025d610da2565b61025d61039a366004611a15565b610e4e565b610287610ec3565b610234610ed2565b610267610ed7565b61025d6103c53660046117f8565b610f38565b61025d6103d8366004611a15565b611045565b61025d6103eb36600461193f565b6110c1565b6104036103fe3660046117f8565b6110d9565b60405161024191906120c9565b6102af61041e366004611ac4565b61116f565b61025d610431366004611a57565b6111c5565b61025d6102dd36600461187f565b61025d610452366004611a57565b611239565b610234610465366004611968565b6112a7565b610267610478366004611ac4565b6112cb565b61023461048b366004611812565b611353565b61025d61049e3660046117f8565b61135b565b6102346104b13660046117f8565b61145d565b60006001600160e01b031982166380ac58cd60e01b14806104e757506001600160e01b03198216635b5e139f60e01b145b8061050257506001600160e01b031982166368067ac960e11b145b8061051157506105118261147b565b90505b919050565b61052161149a565b6001600160a01b0316610532610ec3565b6001600160a01b03161461057b576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b61058760098383611719565b505050565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156106155780601f106105ea57610100808354040283529160200191610615565b820191906000526020600020905b8154815290600101906020018083116105f857829003601f168201915b5050505050905090565b600060405162461bcd60e51b815260040161063990611d0c565b60405180910390fd5b60405162461bcd60e51b815260040161063990611c7f565b6000600454610667610971565b03905090565b3360009081526008602052604090205460ff1661069c5760405162461bcd60e51b815260040161063990612015565b6106a58161149e565b6106c15760405162461bcd60e51b815260040161063990611d52565b600a54610100900460ff166106e85760405162461bcd60e51b815260040161063990611fd4565b60006106f382610bc2565b6004805460010190556001600160a01b03811660009081526006602090815260408083208054600019019055600790915281208190556005805492935090918490811061073c57fe5b6000918252602082200180546001600160a01b0319166001600160a01b039390931692909217909155600580548490811061077357fe5b600091825260209091200180546001600160601b0392909216600160a01b026001600160a01b03928316179055604051908216907fec9ab91322523c899ede7830ec9bfc992b5981cdcc27b91162fb23de5791117b906107d49085906120f2565b60405180910390a260405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60405162461bcd60e51b81526004016106399061204c565b60008060015b60055481101561086f5761084a85826112a7565b1561086757838214156108605791506108889050565b6001820191505b600101610836565b5060405162461bcd60e51b815260040161063990611cc1565b92915050565b61089661149a565b6001600160a01b03166108a7610ec3565b6001600160a01b0316146108f0576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff166109285760405162461bcd60e51b815260040161063990611fa5565b6001600160a01b038116600081815260086020526040808220805460ff19169055517f7df677640dd30a79584f8ecea06aeea15d215b861c5d3b5f8c26962d691f820e9190a250565b6005546000190190565b3360009081526008602052604081205460ff166109aa5760405162461bcd60e51b815260040161063990612015565b6001600160a01b0383166109d05760405162461bcd60e51b815260040161063990611d87565b6109da83836114e7565b9392505050565b6109f26109ec61149a565b826112a7565b610a0e5760405162461bcd60e51b815260040161063990611c03565b610a178161149e565b610a335760405162461bcd60e51b815260040161063990611d52565b600a5460ff16610a555760405162461bcd60e51b815260040161063990611f1f565b60048054600190810190915560066000610a6d61149a565b6001600160a01b0316815260208101919091526040016000908120805492909203909155600790610a9c61149a565b6001600160a01b03166001600160a01b0316815260200190815260200160002060009055600060058281548110610acf57fe5b6000918252602082200180546001600160a01b0319166001600160a01b0393909316929092179091556005805483908110610b0657fe5b9060005260206000200160000160146101000a8154816001600160601b0302191690836001600160601b03160217905550610b3f61149a565b6001600160a01b03167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca582604051610b7791906120f2565b60405180910390a2806000610b8a61149a565b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450565b6000610bcd8261149e565b610be95760405162461bcd60e51b815260040161063990611e8f565b60058281548110610bf657fe5b6000918252602090912001546001600160a01b031692915050565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106155780601f106105ea57610100808354040283529160200191610615565b60006001600160a01b038216610c9a5760405162461bcd60e51b815260040161063990611e45565b506001600160a01b031660009081526006602052604090205490565b3360009081526008602052604090205460609060ff16610ce85760405162461bcd60e51b815260040161063990612015565b81610d055760405162461bcd60e51b815260040161063990611c48565b6000610d248685856000818110610d1857fe5b905060200201356114e7565b905060008367ffffffffffffffff81118015610d3f57600080fd5b50604051908082528060200260200182016040528015610d69578160200160208202803683370190505b50905060005b84811015610d975782828281518110610d8457fe5b6020908102919091010152600101610d6f565b509695505050505050565b610daa61149a565b6001600160a01b0316610dbb610ec3565b6001600160a01b031614610e04576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610e5661149a565b6001600160a01b0316610e67610ec3565b6001600160a01b031614610eb0576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b600a805460ff1916911515919091179055565b6000546001600160a01b031690565b600090565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106155780601f106105ea57610100808354040283529160200191610615565b610f4061149a565b6001600160a01b0316610f51610ec3565b6001600160a01b031614610f9a576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b6001600160a01b038116610fc05760405162461bcd60e51b815260040161063990612092565b6001600160a01b03811660009081526008602052604090205460ff1615610ff95760405162461bcd60e51b815260040161063990611dcb565b6001600160a01b038116600081815260086020526040808220805460ff19166001179055517f3a159411d00fa06a3ec11d4578931f1b7f877cceadb1e083929d74ec020cb2439190a250565b61104d61149a565b6001600160a01b031661105e610ec3565b6001600160a01b0316146110a7576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b600a80549115156101000261ff0019909216919091179055565b60405162461bcd60e51b815260040161063990611df9565b6110e16117a5565b6110ea82610c72565b6111065760405162461bcd60e51b815260040161063990611ed8565b6001600160a01b038216600090815260076020526040902054600580548290811061112d57fe5b6000918252602091829020604080518082019091529101546001600160a01b0381168252600160a01b90046001600160601b0316918101919091529392505050565b600061117a8261149e565b6111965760405162461bcd60e51b815260040161063990611d52565b600582815481106111a357fe5b600091825260209091200154600160a01b90046001600160601b031692915050565b6111cd61149a565b6001600160a01b03166111de610ec3565b6001600160a01b031614611227576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b61058760038383611719565b50505050565b61124161149a565b6001600160a01b0316611252610ec3565b6001600160a01b03161461129b576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b61058760028383611719565b6000806112b383610bc2565b6001600160a01b039081169085161491505092915050565b60606112d68261149e565b6112f25760405162461bcd60e51b815260040161063990611f56565b600954600260001961010060018416150201909116046113215760405180602001604052806000815250610511565b600961132c8361163e565b60405160200161133d929190611adc565b6040516020818303038152906040529050919050565b600092915050565b61136361149a565b6001600160a01b0316611374610ec3565b6001600160a01b0316146113bd576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b6001600160a01b0381166114025760405162461bcd60e51b815260040180806020018281038252602681526020018061213f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526008602052604090205460ff1690565b6001600160e01b03191660009081526001602052604090205460ff1690565b3390565b600080821180156114b657506114b2610971565b8211155b80156105115750600582815481106114ca57fe5b6000918252602090912001546001600160a01b0316151592915050565b60006114f283610c72565b6001141561151957506001600160a01b038216600090815260076020526040902054610888565b600580546040805180820182526001600160a01b038088168083526001600160601b03808916602080860191825260008481526006825287812080546001908101909155600790925287812089905589549182018a559890985284517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db090980180549151909216600160a01b029784166001600160a01b0319909116179092169590951790559051919285927f425a295edbe695682540505b2120b79f88e14eb267bfae4ea187071c90067701906115f490869086906120fb565b60405180910390a260405183906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45090949350505050565b60608161166357506040805180820190915260018152600360fc1b6020820152610514565b8160005b811561167b57600101600a82049150611667565b60008167ffffffffffffffff8111801561169457600080fd5b506040519080825280601f01601f1916602001820160405280156116bf576020820181803683370190505b50859350905060001982015b831561171057600a840660300160f81b828280600190039350815181106116ee57fe5b60200101906001600160f81b031916908160001a905350600a840493506116cb565b50949350505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261174f5760008555611795565b82601f106117685782800160ff19823516178555611795565b82800160010185558215611795579182015b8281111561179557823582559160200191906001019061177a565b506117a19291506117bc565b5090565b604080518082019091526000808252602082015290565b5b808211156117a157600081556001016117bd565b80356001600160a01b038116811461051457600080fd5b8035801515811461051457600080fd5b600060208284031215611809578081fd5b6109da826117d1565b60008060408385031215611824578081fd5b61182d836117d1565b915061183b602084016117d1565b90509250929050565b600080600060608486031215611858578081fd5b611861846117d1565b925061186f602085016117d1565b9150604084013590509250925092565b60008060008060808587031215611894578081fd5b61189d856117d1565b935060206118ac8187016117d1565b935060408601359250606086013567ffffffffffffffff808211156118cf578384fd5b818801915088601f8301126118e2578384fd5b8135818111156118ee57fe5b604051601f8201601f191681018501838111828210171561190b57fe5b60405281815283820185018b1015611921578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611951578182fd5b61195a836117d1565b915061183b602084016117e8565b6000806040838503121561197a578182fd5b611983836117d1565b946020939093013593505050565b600080600080606085870312156119a6578384fd5b6119af856117d1565b935060208501359250604085013567ffffffffffffffff808211156119d2578384fd5b818701915087601f8301126119e5578384fd5b8135818111156119f3578485fd5b8860208083028501011115611a06578485fd5b95989497505060200194505050565b600060208284031215611a26578081fd5b6109da826117e8565b600060208284031215611a40578081fd5b81356001600160e01b0319811681146109da578182fd5b60008060208385031215611a69578182fd5b823567ffffffffffffffff80821115611a80578384fd5b818501915085601f830112611a93578384fd5b813581811115611aa1578485fd5b866020828501011115611ab2578485fd5b60209290920196919550909350505050565b600060208284031215611ad5578081fd5b5035919050565b6000808454600180821660008114611afb5760018114611b1257611b41565b60ff198316865260028304607f1686019350611b41565b600283048886526020808720875b83811015611b395781548a820152908501908201611b20565b505050860193505b5050508351611b54818360208801612112565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6020808252825182820181905260009190848201906040850190845b81811015611bb957835183529284019291840191600101611b9d565b50909695505050505050565b901515815260200190565b6000602082528251806020840152611bef816040850160208701612112565b601f01601f19169190910160400192915050565b60208082526025908201527f47616c786553636f72653a2063616c6c6572206973206e6f7420746f6b656e2060408201526437bbb732b960d91b606082015260800190565b6020808252601b908201527f47616c786553636f72653a2063696441727220697320656d7074790000000000604082015260600190565b60208082526022908201527f47616c786553636f72653a20617070726f7665206973206e6f7420616c6c6f77604082015261195960f21b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526026908201527f47616c786553636f72653a20676574417070726f766564206973206e6f7420616040820152651b1b1bddd95960d21b606082015260800190565b6020808252818101527f47616c786553636f72653a2073636f726520646f6573206e6f74206578697374604082015260600190565b60208082526024908201527f47616c786553636f72653a206d696e7420746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601490820152731b5a5b9d195c88185b1c9958591e48185919195960621b604082015260600190565b6020808252602c908201527f47616c786553636f72653a20736574417070726f76616c466f72416c6c20697360408201526b081b9bdd08185b1b1bddd95960a21b606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526027908201527f47616c786553636f72653a206164647265737320646f6573206e6f7420686176604082015266652073636f726560c81b606082015260800190565b6020808252601f908201527f47616c786553636f72653a206275726e206973206e6f7420616c6c6f77656400604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601590820152741b5a5b9d195c88191bd95cc81b9bdd08195e1a5cdd605a1b604082015260600190565b60208082526021908201527f47616c786553636f72653a207265766f6b65206973206e6f7420616c6c6f77656040820152601960fa1b606082015260800190565b6020808252601a908201527f47616c786553636f72653a206d757374206265206d696e746572000000000000604082015260600190565b60208082526026908201527f47616c786553636f72653a2073636f7265206973206e6f74207472616e736665604082015265727261626c6560d01b606082015260800190565b6020808252601f908201527f6d696e746572206d757374206e6f74206265206e756c6c206164647265737300604082015260600190565b81516001600160a01b031681526020918201516001600160601b03169181019190915260400190565b90815260200190565b9182526001600160601b0316602082015260400190565b60005b8381101561212d578181015183820152602001612115565b83811115611233575050600091015256fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122098e8cc67b8652196b6a7baa2a6f5760f2821bc68ef802c0d2ff42474baa980a364736f6c63430007060033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061021c5760003560e01c8063715018a611610125578063b0c479a5116100ad578063c5b8f7721161007c578063c5b8f77214610457578063c87b56dd1461046a578063e985e9c51461047d578063f2fde38b14610490578063f46eccc4146104a35761021c565b8063b0c479a514610410578063b84c824614610423578063b88d4fde14610436578063c47f0027146104445761021c565b806395d89b41116100f457806395d89b41146103af578063983b2d56146103b75780639acca077146103ca578063a22cb465146103dd578063a4690fa1146103f05761021c565b8063715018a61461038457806380929e5b1461038c5780638da5cb5b1461039f57806392ff0d31146103a75761021c565b80633092afd5116101a857806342966c681161017757806342966c68146103235780636352211e146103365780636c0360eb1461034957806370a082311461035157806370c2f239146103645761021c565b80633092afd5146102f55780633726230a1461030857806340c10f191461031057806342842e0e146102cf5761021c565b8063095ea7b3116101ef578063095ea7b31461029457806318160ddd146102a757806320c5429b146102bc57806323b872dd146102cf5780632f745c59146102e25761021c565b806301ffc9a71461022157806302fe53051461024a57806306fdde031461025f578063081812fc14610274575b600080fd5b61023461022f366004611a2f565b6104b6565b6040516102419190611bc5565b60405180910390f35b61025d610258366004611a57565b610519565b005b61026761058c565b6040516102419190611bd0565b610287610282366004611ac4565b61061f565b6040516102419190611b6d565b61025d6102a2366004611968565b610642565b6102af61065a565b60405161024191906120f2565b61025d6102ca366004611ac4565b61066d565b61025d6102dd366004611844565b610818565b6102af6102f0366004611968565b610830565b61025d6103033660046117f8565b61088e565b6102af610971565b6102af61031e366004611968565b61097b565b61025d610331366004611ac4565b6109e1565b610287610344366004611ac4565b610bc2565b610267610c11565b6102af61035f3660046117f8565b610c72565b610377610372366004611991565b610cb6565b6040516102419190611b81565b61025d610da2565b61025d61039a366004611a15565b610e4e565b610287610ec3565b610234610ed2565b610267610ed7565b61025d6103c53660046117f8565b610f38565b61025d6103d8366004611a15565b611045565b61025d6103eb36600461193f565b6110c1565b6104036103fe3660046117f8565b6110d9565b60405161024191906120c9565b6102af61041e366004611ac4565b61116f565b61025d610431366004611a57565b6111c5565b61025d6102dd36600461187f565b61025d610452366004611a57565b611239565b610234610465366004611968565b6112a7565b610267610478366004611ac4565b6112cb565b61023461048b366004611812565b611353565b61025d61049e3660046117f8565b61135b565b6102346104b13660046117f8565b61145d565b60006001600160e01b031982166380ac58cd60e01b14806104e757506001600160e01b03198216635b5e139f60e01b145b8061050257506001600160e01b031982166368067ac960e11b145b8061051157506105118261147b565b90505b919050565b61052161149a565b6001600160a01b0316610532610ec3565b6001600160a01b03161461057b576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b61058760098383611719565b505050565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156106155780601f106105ea57610100808354040283529160200191610615565b820191906000526020600020905b8154815290600101906020018083116105f857829003601f168201915b5050505050905090565b600060405162461bcd60e51b815260040161063990611d0c565b60405180910390fd5b60405162461bcd60e51b815260040161063990611c7f565b6000600454610667610971565b03905090565b3360009081526008602052604090205460ff1661069c5760405162461bcd60e51b815260040161063990612015565b6106a58161149e565b6106c15760405162461bcd60e51b815260040161063990611d52565b600a54610100900460ff166106e85760405162461bcd60e51b815260040161063990611fd4565b60006106f382610bc2565b6004805460010190556001600160a01b03811660009081526006602090815260408083208054600019019055600790915281208190556005805492935090918490811061073c57fe5b6000918252602082200180546001600160a01b0319166001600160a01b039390931692909217909155600580548490811061077357fe5b600091825260209091200180546001600160601b0392909216600160a01b026001600160a01b03928316179055604051908216907fec9ab91322523c899ede7830ec9bfc992b5981cdcc27b91162fb23de5791117b906107d49085906120f2565b60405180910390a260405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60405162461bcd60e51b81526004016106399061204c565b60008060015b60055481101561086f5761084a85826112a7565b1561086757838214156108605791506108889050565b6001820191505b600101610836565b5060405162461bcd60e51b815260040161063990611cc1565b92915050565b61089661149a565b6001600160a01b03166108a7610ec3565b6001600160a01b0316146108f0576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff166109285760405162461bcd60e51b815260040161063990611fa5565b6001600160a01b038116600081815260086020526040808220805460ff19169055517f7df677640dd30a79584f8ecea06aeea15d215b861c5d3b5f8c26962d691f820e9190a250565b6005546000190190565b3360009081526008602052604081205460ff166109aa5760405162461bcd60e51b815260040161063990612015565b6001600160a01b0383166109d05760405162461bcd60e51b815260040161063990611d87565b6109da83836114e7565b9392505050565b6109f26109ec61149a565b826112a7565b610a0e5760405162461bcd60e51b815260040161063990611c03565b610a178161149e565b610a335760405162461bcd60e51b815260040161063990611d52565b600a5460ff16610a555760405162461bcd60e51b815260040161063990611f1f565b60048054600190810190915560066000610a6d61149a565b6001600160a01b0316815260208101919091526040016000908120805492909203909155600790610a9c61149a565b6001600160a01b03166001600160a01b0316815260200190815260200160002060009055600060058281548110610acf57fe5b6000918252602082200180546001600160a01b0319166001600160a01b0393909316929092179091556005805483908110610b0657fe5b9060005260206000200160000160146101000a8154816001600160601b0302191690836001600160601b03160217905550610b3f61149a565b6001600160a01b03167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca582604051610b7791906120f2565b60405180910390a2806000610b8a61149a565b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450565b6000610bcd8261149e565b610be95760405162461bcd60e51b815260040161063990611e8f565b60058281548110610bf657fe5b6000918252602090912001546001600160a01b031692915050565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106155780601f106105ea57610100808354040283529160200191610615565b60006001600160a01b038216610c9a5760405162461bcd60e51b815260040161063990611e45565b506001600160a01b031660009081526006602052604090205490565b3360009081526008602052604090205460609060ff16610ce85760405162461bcd60e51b815260040161063990612015565b81610d055760405162461bcd60e51b815260040161063990611c48565b6000610d248685856000818110610d1857fe5b905060200201356114e7565b905060008367ffffffffffffffff81118015610d3f57600080fd5b50604051908082528060200260200182016040528015610d69578160200160208202803683370190505b50905060005b84811015610d975782828281518110610d8457fe5b6020908102919091010152600101610d6f565b509695505050505050565b610daa61149a565b6001600160a01b0316610dbb610ec3565b6001600160a01b031614610e04576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610e5661149a565b6001600160a01b0316610e67610ec3565b6001600160a01b031614610eb0576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b600a805460ff1916911515919091179055565b6000546001600160a01b031690565b600090565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106155780601f106105ea57610100808354040283529160200191610615565b610f4061149a565b6001600160a01b0316610f51610ec3565b6001600160a01b031614610f9a576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b6001600160a01b038116610fc05760405162461bcd60e51b815260040161063990612092565b6001600160a01b03811660009081526008602052604090205460ff1615610ff95760405162461bcd60e51b815260040161063990611dcb565b6001600160a01b038116600081815260086020526040808220805460ff19166001179055517f3a159411d00fa06a3ec11d4578931f1b7f877cceadb1e083929d74ec020cb2439190a250565b61104d61149a565b6001600160a01b031661105e610ec3565b6001600160a01b0316146110a7576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b600a80549115156101000261ff0019909216919091179055565b60405162461bcd60e51b815260040161063990611df9565b6110e16117a5565b6110ea82610c72565b6111065760405162461bcd60e51b815260040161063990611ed8565b6001600160a01b038216600090815260076020526040902054600580548290811061112d57fe5b6000918252602091829020604080518082019091529101546001600160a01b0381168252600160a01b90046001600160601b0316918101919091529392505050565b600061117a8261149e565b6111965760405162461bcd60e51b815260040161063990611d52565b600582815481106111a357fe5b600091825260209091200154600160a01b90046001600160601b031692915050565b6111cd61149a565b6001600160a01b03166111de610ec3565b6001600160a01b031614611227576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b61058760038383611719565b50505050565b61124161149a565b6001600160a01b0316611252610ec3565b6001600160a01b03161461129b576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b61058760028383611719565b6000806112b383610bc2565b6001600160a01b039081169085161491505092915050565b60606112d68261149e565b6112f25760405162461bcd60e51b815260040161063990611f56565b600954600260001961010060018416150201909116046113215760405180602001604052806000815250610511565b600961132c8361163e565b60405160200161133d929190611adc565b6040516020818303038152906040529050919050565b600092915050565b61136361149a565b6001600160a01b0316611374610ec3565b6001600160a01b0316146113bd576040805162461bcd60e51b81526020600482018190526024820152600080516020612165833981519152604482015290519081900360640190fd5b6001600160a01b0381166114025760405162461bcd60e51b815260040180806020018281038252602681526020018061213f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526008602052604090205460ff1690565b6001600160e01b03191660009081526001602052604090205460ff1690565b3390565b600080821180156114b657506114b2610971565b8211155b80156105115750600582815481106114ca57fe5b6000918252602090912001546001600160a01b0316151592915050565b60006114f283610c72565b6001141561151957506001600160a01b038216600090815260076020526040902054610888565b600580546040805180820182526001600160a01b038088168083526001600160601b03808916602080860191825260008481526006825287812080546001908101909155600790925287812089905589549182018a559890985284517f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db090980180549151909216600160a01b029784166001600160a01b0319909116179092169590951790559051919285927f425a295edbe695682540505b2120b79f88e14eb267bfae4ea187071c90067701906115f490869086906120fb565b60405180910390a260405183906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45090949350505050565b60608161166357506040805180820190915260018152600360fc1b6020820152610514565b8160005b811561167b57600101600a82049150611667565b60008167ffffffffffffffff8111801561169457600080fd5b506040519080825280601f01601f1916602001820160405280156116bf576020820181803683370190505b50859350905060001982015b831561171057600a840660300160f81b828280600190039350815181106116ee57fe5b60200101906001600160f81b031916908160001a905350600a840493506116cb565b50949350505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261174f5760008555611795565b82601f106117685782800160ff19823516178555611795565b82800160010185558215611795579182015b8281111561179557823582559160200191906001019061177a565b506117a19291506117bc565b5090565b604080518082019091526000808252602082015290565b5b808211156117a157600081556001016117bd565b80356001600160a01b038116811461051457600080fd5b8035801515811461051457600080fd5b600060208284031215611809578081fd5b6109da826117d1565b60008060408385031215611824578081fd5b61182d836117d1565b915061183b602084016117d1565b90509250929050565b600080600060608486031215611858578081fd5b611861846117d1565b925061186f602085016117d1565b9150604084013590509250925092565b60008060008060808587031215611894578081fd5b61189d856117d1565b935060206118ac8187016117d1565b935060408601359250606086013567ffffffffffffffff808211156118cf578384fd5b818801915088601f8301126118e2578384fd5b8135818111156118ee57fe5b604051601f8201601f191681018501838111828210171561190b57fe5b60405281815283820185018b1015611921578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611951578182fd5b61195a836117d1565b915061183b602084016117e8565b6000806040838503121561197a578182fd5b611983836117d1565b946020939093013593505050565b600080600080606085870312156119a6578384fd5b6119af856117d1565b935060208501359250604085013567ffffffffffffffff808211156119d2578384fd5b818701915087601f8301126119e5578384fd5b8135818111156119f3578485fd5b8860208083028501011115611a06578485fd5b95989497505060200194505050565b600060208284031215611a26578081fd5b6109da826117e8565b600060208284031215611a40578081fd5b81356001600160e01b0319811681146109da578182fd5b60008060208385031215611a69578182fd5b823567ffffffffffffffff80821115611a80578384fd5b818501915085601f830112611a93578384fd5b813581811115611aa1578485fd5b866020828501011115611ab2578485fd5b60209290920196919550909350505050565b600060208284031215611ad5578081fd5b5035919050565b6000808454600180821660008114611afb5760018114611b1257611b41565b60ff198316865260028304607f1686019350611b41565b600283048886526020808720875b83811015611b395781548a820152908501908201611b20565b505050860193505b5050508351611b54818360208801612112565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6020808252825182820181905260009190848201906040850190845b81811015611bb957835183529284019291840191600101611b9d565b50909695505050505050565b901515815260200190565b6000602082528251806020840152611bef816040850160208701612112565b601f01601f19169190910160400192915050565b60208082526025908201527f47616c786553636f72653a2063616c6c6572206973206e6f7420746f6b656e2060408201526437bbb732b960d91b606082015260800190565b6020808252601b908201527f47616c786553636f72653a2063696441727220697320656d7074790000000000604082015260600190565b60208082526022908201527f47616c786553636f72653a20617070726f7665206973206e6f7420616c6c6f77604082015261195960f21b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526026908201527f47616c786553636f72653a20676574417070726f766564206973206e6f7420616040820152651b1b1bddd95960d21b606082015260800190565b6020808252818101527f47616c786553636f72653a2073636f726520646f6573206e6f74206578697374604082015260600190565b60208082526024908201527f47616c786553636f72653a206d696e7420746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601490820152731b5a5b9d195c88185b1c9958591e48185919195960621b604082015260600190565b6020808252602c908201527f47616c786553636f72653a20736574417070726f76616c466f72416c6c20697360408201526b081b9bdd08185b1b1bddd95960a21b606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526027908201527f47616c786553636f72653a206164647265737320646f6573206e6f7420686176604082015266652073636f726560c81b606082015260800190565b6020808252601f908201527f47616c786553636f72653a206275726e206973206e6f7420616c6c6f77656400604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601590820152741b5a5b9d195c88191bd95cc81b9bdd08195e1a5cdd605a1b604082015260600190565b60208082526021908201527f47616c786553636f72653a207265766f6b65206973206e6f7420616c6c6f77656040820152601960fa1b606082015260800190565b6020808252601a908201527f47616c786553636f72653a206d757374206265206d696e746572000000000000604082015260600190565b60208082526026908201527f47616c786553636f72653a2073636f7265206973206e6f74207472616e736665604082015265727261626c6560d01b606082015260800190565b6020808252601f908201527f6d696e746572206d757374206e6f74206265206e756c6c206164647265737300604082015260600190565b81516001600160a01b031681526020918201516001600160601b03169181019190915260400190565b90815260200190565b9182526001600160601b0316602082015260400190565b60005b8381101561212d578181015183820152602001612115565b83811115611233575050600091015256fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122098e8cc67b8652196b6a7baa2a6f5760f2821bc68ef802c0d2ff42474baa980a364736f6c63430007060033
Deployed Bytecode Sourcemap
992:13277:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2899:366;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12967:93;;;;;;:::i;:::-;;:::i;:::-;;5785:98;;;:::i;:::-;;;;;;;:::i;6782:164::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6590:131::-;;;;;;:::i;:::-;;:::i;4188:104::-;;;:::i;:::-;;;;;;;:::i;10149:502::-;;;;;;:::i;:::-;;:::i;7464:184::-;;;;;;:::i;:::-;;:::i;4461:461::-;;;;;;:::i;:::-;;:::i;14069:198::-;;;;;;:::i;:::-;;:::i;4012:105::-;;;:::i;9068:237::-;;;;;;:::i;:::-;;:::i;10884:586::-;;;;;;:::i;:::-;;:::i;5269:208::-;;;;;;:::i;:::-;;:::i;3643:87::-;;;:::i;4981:231::-;;;;;;:::i;:::-;;:::i;9454:463::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1708:145:9:-;;;:::i;13278:92:3:-;;;;;;:::i;:::-;;:::i;1076:85:9:-;;;:::i;3499:80:3:-;;;:::i;5947:102::-;;;:::i;13747:267::-;;;;;;:::i;:::-;;:::i;13425:96::-;;;;;;:::i;:::-;;:::i;7013:177::-;;;;;;:::i;:::-;;:::i;11476:274::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3779:175::-;;;;;;:::i;:::-;;:::i;13594:101::-;;;;;;:::i;:::-;;:::i;7968:216::-;;;;;;:::i;13131:93::-;;;;;;:::i;:::-;;:::i;5540:183::-;;;;;;:::i;:::-;;:::i;6115:418::-;;;;;;:::i;:::-;;:::i;7256:146::-;;;;;;:::i;:::-;;:::i;2002:240:9:-;;;;;;:::i;:::-;;:::i;3326:102:3:-;;;;;;:::i;:::-;;:::i;2899:366::-;3007:4;-1:-1:-1;;;;;;3042:40:3;;-1:-1:-1;;;3042:40:3;;:104;;-1:-1:-1;;;;;;;3098:48:3;;-1:-1:-1;;;3098:48:3;3042:104;:164;;;-1:-1:-1;;;;;;;3162:44:3;;-1:-1:-1;;;3162:44:3;3042:164;:216;;;;3222:36;3246:11;3222:23;:36::i;:::-;3023:235;;2899:366;;;;:::o;12967:93::-;1299:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1288:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1288:23:9;;1280:68;;;;;-1:-1:-1;;;1280:68:9;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1280:68:9;;;;;;;;;;;;;;;13036:17:3::1;:8;13047:6:::0;;13036:17:::1;:::i;:::-;;12967:93:::0;;:::o;5785:98::-;5871:5;5864:12;;;;;;;-1:-1:-1;;5864:12:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5839:13;;5864:12;;5871:5;;5864:12;;5871:5;5864:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5785:98;:::o;6782:164::-;6864:7;6883:56;;-1:-1:-1;;;6883:56:3;;;;;;;:::i;:::-;;;;;;;;6590:131;6662:52;;-1:-1:-1;;;6662:52:3;;;;;;;:::i;4188:104::-;4232:7;4275:10;;4258:14;:12;:14::i;:::-;:27;4251:34;;4188:104;:::o;10149:502::-;2580:10;2571:20;;;;:8;:20;;;;;;;;2563:59;;;;-1:-1:-1;;;2563:59:3;;;;;;;:::i;:::-;10229:16:::1;10237:7;10229;:16::i;:::-;10221:61;;;;-1:-1:-1::0;;;10221:61:3::1;;;;;;;:::i;:::-;10300:10;::::0;::::1;::::0;::::1;;;10292:56;;;;-1:-1:-1::0;;;10292:56:3::1;;;;;;;:::i;:::-;10359:15;10377:16;10385:7;10377;:16::i;:::-;10403:10;:12:::0;;::::1;;::::0;;-1:-1:-1;;;;;10425:18:3;::::1;10403:10;10425:18:::0;;;:9:::1;:18;::::0;;;;;;;:23;;-1:-1:-1;;10425:23:3;;;10465:7:::1;:16:::0;;;;;10458:23;;;10491:7:::1;:16:::0;;10359:34;;-1:-1:-1;10403:10:3;;10499:7;;10491:16;::::1;;;;;;::::0;;;::::1;::::0;;::::1;:26:::0;;-1:-1:-1;;;;;;10491:26:3::1;-1:-1:-1::0;;;;;10491:26:3;;;::::1;::::0;;;::::1;::::0;;;10527:7:::1;:16:::0;;10535:7;;10527:16;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;:24:::0;;-1:-1:-1;;;;;10527:24:3;;;::::1;-1:-1:-1::0;;;10527:24:3::1;-1:-1:-1::0;;;;;10527:24:3;;::::1;;::::0;;10567::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;10583:7;;10567:24:::1;:::i;:::-;;;;;;;;10606:38;::::0;10636:7;;10632:1:::1;::::0;-1:-1:-1;;;;;10606:38:3;::::1;::::0;::::1;::::0;10632:1;;10606:38:::1;2632:1;10149:502:::0;:::o;7464:184::-;7585:56;;-1:-1:-1;;;7585:56:3;;;;;;;:::i;4461:461::-;4563:7;;4633:1;4616:237;4640:7;:14;4636:18;;4616:237;;;4679:19;4689:5;4696:1;4679:9;:19::i;:::-;4675:168;;;4738:5;4722:12;:21;4718:76;;;4774:1;-1:-1:-1;4767:8:3;;-1:-1:-1;4767:8:3;4718:76;4827:1;4811:17;;;;4675:168;4656:3;;4616:237;;;;4862:53;;-1:-1:-1;;;4862:53:3;;;;;;;:::i;4461:461::-;;;;;:::o;14069:198::-;1299:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1288:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1288:23:9;;1280:68;;;;;-1:-1:-1;;;1280:68:9;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1280:68:9;;;;;;;;;;;;;;;-1:-1:-1;;;;;14144:16:3;::::1;;::::0;;;:8:::1;:16;::::0;;;;;::::1;;14136:50;;;;-1:-1:-1::0;;;14136:50:3::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;14203:16:3;::::1;;::::0;;;:8:::1;:16;::::0;;;;;14196:23;;-1:-1:-1;;14196:23:3::1;::::0;;14234:26;::::1;::::0;14203:16;14234:26:::1;14069:198:::0;:::o;4012:105::-;4092:7;:14;-1:-1:-1;;4092:18:3;4012:105;:::o;9068:237::-;2580:10;9172:7;2571:20;;;:8;:20;;;;;;;;2563:59;;;;-1:-1:-1;;;2563:59:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;9199:21:3;::::1;9191:70;;;;-1:-1:-1::0;;;9191:70:3::1;;;;;;;:::i;:::-;9279:19;9285:7;9294:3;9279:5;:19::i;:::-;9272:26:::0;9068:237;-1:-1:-1;;;9068:237:3:o;10884:586::-;10964:32;10974:12;:10;:12::i;:::-;10988:7;10964:9;:32::i;:::-;10943:116;;;;-1:-1:-1;;;10943:116:3;;;;;;;:::i;:::-;11077:16;11085:7;11077;:16::i;:::-;11069:61;;;;-1:-1:-1;;;11069:61:3;;;;;;;:::i;:::-;11148:9;;;;11140:53;;;;-1:-1:-1;;;11140:53:3;;;;;;;:::i;:::-;11204:10;:12;;;;;;;;;11226:9;11204:10;11236:12;:10;:12::i;:::-;-1:-1:-1;;;;;11226:23:3;;;;;;;;;;;;-1:-1:-1;11226:23:3;;;:28;;;;;;;;;11271:7;;11279:12;:10;:12::i;:::-;-1:-1:-1;;;;;11271:21:3;-1:-1:-1;;;;;11271:21:3;;;;;;;;;;;;11264:28;;;11327:1;11302:7;11310;11302:16;;;;;;;;;;;;;;;;:26;;-1:-1:-1;;;;;;11302:26:3;-1:-1:-1;;;;;11302:26:3;;;;;;;;;;;11338:7;:16;;11346:7;;11338:16;;;;;;;;;;;;;:20;;;:24;;;;;-1:-1:-1;;;;;11338:24:3;;;;;-1:-1:-1;;;;;11338:24:3;;;;;;11383:12;:10;:12::i;:::-;-1:-1:-1;;;;;11378:27:3;;11397:7;11378:27;;;;;;:::i;:::-;;;;;;;;11455:7;11451:1;11429:12;:10;:12::i;:::-;-1:-1:-1;;;;;11420:43:3;;;;;;;;;;;10884:586;:::o;5269:208::-;5333:7;5360:16;5368:7;5360;:16::i;:::-;5352:70;;;;-1:-1:-1;;;5352:70:3;;;;;;;:::i;:::-;5447:7;5455;5447:16;;;;;;;;;;;;;;;;;:22;-1:-1:-1;;;;;5447:22:3;;5269:208;-1:-1:-1;;5269:208:3:o;3643:87::-;3715:8;3708:15;;;;;;;;-1:-1:-1;;3708:15:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3683:13;;3708:15;;3715:8;;3708:15;;3715:8;3708:15;;;;;;;;;;;;;;;;;;;;;;;;4981:231;5045:7;-1:-1:-1;;;;;5085:19:3;;5064:108;;;;-1:-1:-1;;;5064:108:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;5189:16:3;;;;;:9;:16;;;;;;;4981:231::o;9454:463::-;2580:10;2571:20;;;;:8;:20;;;;;;9592:16;;2571:20;;2563:59;;;;-1:-1:-1;;;2563:59:3;;;;;;;:::i;:::-;9628:17;9620:57:::1;;;;-1:-1:-1::0;;;9620:57:3::1;;;;;;;:::i;:::-;9687:10;9700:25;9706:7;9715:6;;9722:1;9715:9;;;;;;;;;;;;;9700:5;:25::i;:::-;9687:38:::0;-1:-1:-1;9735:25:3::1;9777:6:::0;9763:28:::1;::::0;::::1;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;9763:28:3::1;;9735:56;;9806:9;9801:85;9821:17:::0;;::::1;9801:85;;;9873:2;9859:8;9868:1;9859:11;;;;;;;;;::::0;;::::1;::::0;;;;;:16;9840:3:::1;;9801:85;;;-1:-1:-1::0;9902:8:3;9454:463;-1:-1:-1;;;;;;9454:463:3:o;1708:145:9:-;1299:12;:10;:12::i;:::-;-1:-1:-1;;;;;1288:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1288:23:9;;1280:68;;;;;-1:-1:-1;;;1280:68:9;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1280:68:9;;;;;;;;;;;;;;;1814:1:::1;1798:6:::0;;1777:40:::1;::::0;-1:-1:-1;;;;;1798:6:9;;::::1;::::0;1777:40:::1;::::0;1814:1;;1777:40:::1;1844:1;1827:19:::0;;-1:-1:-1;;;;;;1827:19:9::1;::::0;;1708:145::o;13278:92:3:-;1299:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1288:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1288:23:9;;1280:68;;;;;-1:-1:-1;;;1280:68:9;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1280:68:9;;;;;;;;;;;;;;;13343:9:3::1;:20:::0;;-1:-1:-1;;13343:20:3::1;::::0;::::1;;::::0;;;::::1;::::0;;13278:92::o;1076:85:9:-;1122:7;1148:6;-1:-1:-1;;;;;1148:6:9;1076:85;:::o;3499:80:3:-;3544:4;3499:80;:::o;5947:102::-;6035:7;6028:14;;;;;;;;-1:-1:-1;;6028:14:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6003:13;;6028:14;;6035:7;;6028:14;;6035:7;6028:14;;;;;;;;;;;;;;;;;;;;;;;;13747:267;1299:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1288:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1288:23:9;;1280:68;;;;;-1:-1:-1;;;1280:68:9;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1280:68:9;;;;;;;;;;;;;;;-1:-1:-1;;;;;13819:20:3;::::1;13811:64;;;;-1:-1:-1::0;;;13811:64:3::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;13894:16:3;::::1;;::::0;;;:8:::1;:16;::::0;;;;;::::1;;13893:17;13885:50;;;;-1:-1:-1::0;;;13885:50:3::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;13945:16:3;::::1;;::::0;;;:8:::1;:16;::::0;;;;;:23;;-1:-1:-1;;13945:23:3::1;13964:4;13945:23;::::0;;13983:24;::::1;::::0;13945:16;13983:24:::1;13747:267:::0;:::o;13425:96::-;1299:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1288:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1288:23:9;;1280:68;;;;;-1:-1:-1;;;1280:68:9;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1280:68:9;;;;;;;;;;;;;;;13492:10:3::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;13492:22:3;;::::1;::::0;;;::::1;::::0;;13425:96::o;7013:177::-;7121:62;;-1:-1:-1;;;7121:62:3;;;;;;;:::i;11476:274::-;11537:12;;:::i;:::-;11582:16;11592:5;11582:9;:16::i;:::-;11561:107;;;;-1:-1:-1;;;11561:107:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;11696:14:3;;11678:15;11696:14;;;:7;:14;;;;;;11727:7;:16;;11696:14;;11727:16;;;;;;;;;;;;;;;11720:23;;;;;;;;;11727:16;;11720:23;-1:-1:-1;;;;;11720:23:3;;;;-1:-1:-1;;;11720:23:3;;-1:-1:-1;;;;;11720:23:3;;;;;;;;;11476:274;-1:-1:-1;;;11476:274:3:o;3779:175::-;3830:7;3857:16;3865:7;3857;:16::i;:::-;3849:61;;;;-1:-1:-1;;;3849:61:3;;;;;;;:::i;:::-;3927:7;3935;3927:16;;;;;;;;;;;;;;;;;:20;-1:-1:-1;;;3927:20:3;;-1:-1:-1;;;;;3927:20:3;;3779:175;-1:-1:-1;;3779:175:3:o;13594:101::-;1299:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1288:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1288:23:9;;1280:68;;;;;-1:-1:-1;;;1280:68:9;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1280:68:9;;;;;;;;;;;;;;;13669:19:3::1;:7;13679:9:::0;;13669:19:::1;:::i;8121:56::-:0;7968:216;;;;:::o;13131:93::-;1299:12:9;:10;:12::i;:::-;-1:-1:-1;;;;;1288:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1288:23:9;;1280:68;;;;;-1:-1:-1;;;1280:68:9;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1280:68:9;;;;;;;;;;;;;;;13202:15:3::1;:5;13210:7:::0;;13202:15:::1;:::i;5540:183::-:0;5640:4;5656:13;5672:11;5680:2;5672:7;:11::i;:::-;-1:-1:-1;;;;;5700:16:3;;;;;;;;-1:-1:-1;;5540:183:3;;;;:::o;6115:418::-;6194:13;6240:16;6248:7;6240;:16::i;:::-;6219:110;;;;-1:-1:-1;;;6219:110:3;;;;;;;:::i;:::-;6365:8;6359:22;;-1:-1:-1;;6359:22:3;;;;;;;;;;;:167;;;;;;;;;;;;;;;;;6449:8;6459:18;:7;:16;:18::i;:::-;6432:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6340:186;;6115:418;;;:::o;7256:146::-;7367:4;7256:146;;;;:::o;2002:240:9:-;1299:12;:10;:12::i;:::-;-1:-1:-1;;;;;1288:23:9;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1288:23:9;;1280:68;;;;;-1:-1:-1;;;1280:68:9;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1280:68:9;;;;;;;;;;;;;;;-1:-1:-1;;;;;2090:22:9;::::1;2082:73;;;;-1:-1:-1::0;;;2082:73:9::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2191:6;::::0;;2170:38:::1;::::0;-1:-1:-1;;;;;2170:38:9;;::::1;::::0;2191:6;::::1;::::0;2170:38:::1;::::0;::::1;2218:6;:17:::0;;-1:-1:-1;;;;;;2218:17:9::1;-1:-1:-1::0;;;;;2218:17:9;;;::::1;::::0;;;::::1;::::0;;2002:240::o;3326:102:3:-;-1:-1:-1;;;;;3404:17:3;3381:4;3404:17;;;:8;:17;;;;;;;;;3326:102::o;963:148:2:-;-1:-1:-1;;;;;;1071:33:2;1048:4;1071:33;;;:20;:33;;;;;;;;;963:148::o;598:104:1:-;685:10;598:104;:::o;8377:196:3:-;8434:4;8479:1;8469:7;:11;:52;;;;;8507:14;:12;:14::i;:::-;8496:7;:25;;8469:52;:97;;;;;8537:7;8545;8537:16;;;;;;;;;;;;;;;;;:22;-1:-1:-1;;;;;8537:22:3;:29;;;8377:196;-1:-1:-1;;8377:196:3:o;11756:580::-;11819:7;11842:18;11852:7;11842:9;:18::i;:::-;11864:1;11842:23;11838:116;;;-1:-1:-1;;;;;;11899:16:3;;11881:15;11899:16;;;:7;:16;;;;;;11929:14;;11838:116;11982:7;:14;;12068:35;;;;;;;;-1:-1:-1;;;;;12068:35:3;;;;;;-1:-1:-1;;;;;12068:35:3;;;;;;;;;;11964:15;12114:18;;;:9;:18;;;;;:23;;12136:1;12114:23;;;;;;12147:7;:16;;;;;;:26;;;12183:19;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12183:19:3;;;;-1:-1:-1;;;;;;12183:19:3;;;;;;;;;;;;;12218:34;;11982:14;;12033:3;;12218:34;;;;11982:14;;12033:3;;12218:34;:::i;:::-;;;;;;;;12267:38;;12297:7;;-1:-1:-1;;;;;12267:38:3;;;12284:1;;12267:38;;12284:1;;12267:38;-1:-1:-1;12322:7:3;;11756:580;-1:-1:-1;;;;11756:580:3:o;210:725:10:-;266:13;483:10;479:51;;-1:-1:-1;509:10:10;;;;;;;;;;;;-1:-1:-1;;;509:10:10;;;;;;479:51;554:5;539:12;593:75;600:9;;593:75;;625:8;;655:2;647:10;;;;593:75;;;677:19;709:6;699:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;699:17:10;-1:-1:-1;769:5:10;;-1:-1:-1;677:39:10;-1:-1:-1;;;742:10:10;;784:114;791:9;;784:114;;859:2;852:4;:9;847:2;:14;834:29;;816:6;823:7;;;;;;;816:15;;;;;;;;;;;:47;-1:-1:-1;;;;;816:47:10;;;;;;;;-1:-1:-1;885:2:10;877:10;;;;784:114;;;-1:-1:-1;921:6:10;210:725;-1:-1:-1;;;;210:725:10:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:175:11;84:20;;-1:-1:-1;;;;;133:31:11;;123:42;;113:2;;179:1;176;169:12;194:162;261:20;;317:13;;310:21;300:32;;290:2;;346:1;343;336:12;361:198;;473:2;461:9;452:7;448:23;444:32;441:2;;;494:6;486;479:22;441:2;522:31;543:9;522:31;:::i;564:274::-;;;693:2;681:9;672:7;668:23;664:32;661:2;;;714:6;706;699:22;661:2;742:31;763:9;742:31;:::i;:::-;732:41;;792:40;828:2;817:9;813:18;792:40;:::i;:::-;782:50;;651:187;;;;;:::o;843:342::-;;;;989:2;977:9;968:7;964:23;960:32;957:2;;;1010:6;1002;995:22;957:2;1038:31;1059:9;1038:31;:::i;:::-;1028:41;;1088:40;1124:2;1113:9;1109:18;1088:40;:::i;:::-;1078:50;;1175:2;1164:9;1160:18;1147:32;1137:42;;947:238;;;;;:::o;1190:1160::-;;;;;1362:3;1350:9;1341:7;1337:23;1333:33;1330:2;;;1384:6;1376;1369:22;1330:2;1412:31;1433:9;1412:31;:::i;:::-;1402:41;;1462:2;1483:40;1519:2;1508:9;1504:18;1483:40;:::i;:::-;1473:50;;1570:2;1559:9;1555:18;1542:32;1532:42;;1625:2;1614:9;1610:18;1597:32;1648:18;1689:2;1681:6;1678:14;1675:2;;;1710:6;1702;1695:22;1675:2;1753:6;1742:9;1738:22;1728:32;;1798:7;1791:4;1787:2;1783:13;1779:27;1769:2;;1825:6;1817;1810:22;1769:2;1866;1853:16;1888:2;1884;1881:10;1878:2;;;1894:9;1878:2;1934;1928:9;2003:2;1984:13;;-1:-1:-1;;1980:27:11;1968:40;;1964:49;;2028:18;;;2048:22;;;2025:46;2022:2;;;2074:9;2022:2;2101;2094:22;2125:18;;;2162:11;;;2158:20;;2155:33;-1:-1:-1;2152:2:11;;;2206:6;2198;2191:22;2152:2;2267;2262;2258;2254:11;2249:2;2241:6;2237:15;2224:46;2290:15;;;2286:24;;;2279:40;;;;-1:-1:-1;1320:1030:11;;;;-1:-1:-1;1320:1030:11;;-1:-1:-1;;1320:1030:11:o;2355:268::-;;;2481:2;2469:9;2460:7;2456:23;2452:32;2449:2;;;2502:6;2494;2487:22;2449:2;2530:31;2551:9;2530:31;:::i;:::-;2520:41;;2580:37;2613:2;2602:9;2598:18;2580:37;:::i;2628:266::-;;;2757:2;2745:9;2736:7;2732:23;2728:32;2725:2;;;2778:6;2770;2763:22;2725:2;2806:31;2827:9;2806:31;:::i;:::-;2796:41;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2715:179:11:o;2899:810::-;;;;;3080:2;3068:9;3059:7;3055:23;3051:32;3048:2;;;3101:6;3093;3086:22;3048:2;3129:31;3150:9;3129:31;:::i;:::-;3119:41;;3207:2;3196:9;3192:18;3179:32;3169:42;;3262:2;3251:9;3247:18;3234:32;3285:18;3326:2;3318:6;3315:14;3312:2;;;3347:6;3339;3332:22;3312:2;3390:6;3379:9;3375:22;3365:32;;3435:7;3428:4;3424:2;3420:13;3416:27;3406:2;;3462:6;3454;3447:22;3406:2;3507;3494:16;3533:2;3525:6;3522:14;3519:2;;;3554:6;3546;3539:22;3519:2;3613:7;3608:2;3602;3594:6;3590:15;3586:2;3582:24;3578:33;3575:46;3572:2;;;3639:6;3631;3624:22;3572:2;3038:671;;;;-1:-1:-1;;3675:2:11;3667:11;;-1:-1:-1;;;3038:671:11:o;3714:192::-;;3823:2;3811:9;3802:7;3798:23;3794:32;3791:2;;;3844:6;3836;3829:22;3791:2;3872:28;3890:9;3872:28;:::i;3911:306::-;;4022:2;4010:9;4001:7;3997:23;3993:32;3990:2;;;4043:6;4035;4028:22;3990:2;4074:23;;-1:-1:-1;;;;;;4126:32:11;;4116:43;;4106:2;;4178:6;4170;4163:22;4222:642;;;4354:2;4342:9;4333:7;4329:23;4325:32;4322:2;;;4375:6;4367;4360:22;4322:2;4420:9;4407:23;4449:18;4490:2;4482:6;4479:14;4476:2;;;4511:6;4503;4496:22;4476:2;4554:6;4543:9;4539:22;4529:32;;4599:7;4592:4;4588:2;4584:13;4580:27;4570:2;;4626:6;4618;4611:22;4570:2;4671;4658:16;4697:2;4689:6;4686:14;4683:2;;;4718:6;4710;4703:22;4683:2;4768:7;4763:2;4754:6;4750:2;4746:15;4742:24;4739:37;4736:2;;;4794:6;4786;4779:22;4736:2;4830;4822:11;;;;;4852:6;;-1:-1:-1;4312:552:11;;-1:-1:-1;;;;4312:552:11:o;4869:190::-;;4981:2;4969:9;4960:7;4956:23;4952:32;4949:2;;;5002:6;4994;4987:22;4949:2;-1:-1:-1;5030:23:11;;4939:120;-1:-1:-1;4939:120:11:o;5064:1151::-;;5370:3;5405:6;5399:13;5431:1;5463:2;5452:9;5448:18;5480:1;5475:126;;;;5615:1;5610:406;;;;5441:575;;5475:126;-1:-1:-1;;5508:24:11;;5496:37;;5581:1;5566:17;;5585:4;5562:28;5553:38;;;-1:-1:-1;5475:126:11;;5610:406;5660:1;5649:9;5645:17;5687:6;5682:3;5675:19;5717:4;5764:2;5759:3;5749:18;5789:3;5805:165;5819:6;5816:1;5813:13;5805:165;;;5897:14;;5884:11;;;5877:35;5940:16;;;;5834:10;;5805:165;;;-1:-1:-1;;;5990:16:11;;;-1:-1:-1;5441:575:11;;;;6047:6;6041:13;6063:55;6109:8;6104:3;6097:4;6089:6;6085:17;6063:55;:::i;:::-;-1:-1:-1;;;6137:18:11;;6164:19;;;6207:1;6199:10;;5349:866;-1:-1:-1;;;;5349:866:11:o;6220:203::-;-1:-1:-1;;;;;6384:32:11;;;;6366:51;;6354:2;6339:18;;6321:102::o;6428:635::-;6599:2;6651:21;;;6721:13;;6624:18;;;6743:22;;;6428:635;;6599:2;6822:15;;;;6796:2;6781:18;;;6428:635;6868:169;6882:6;6879:1;6876:13;6868:169;;;6943:13;;6931:26;;7012:15;;;;6977:12;;;;6904:1;6897:9;6868:169;;;-1:-1:-1;7054:3:11;;6579:484;-1:-1:-1;;;;;;6579:484:11:o;7068:187::-;7233:14;;7226:22;7208:41;;7196:2;7181:18;;7163:92::o;7260:383::-;;7409:2;7398:9;7391:21;7441:6;7435:13;7484:6;7479:2;7468:9;7464:18;7457:34;7500:66;7559:6;7554:2;7543:9;7539:18;7534:2;7526:6;7522:15;7500:66;:::i;:::-;7627:2;7606:15;-1:-1:-1;;7602:29:11;7587:45;;;;7634:2;7583:54;;7381:262;-1:-1:-1;;7381:262:11:o;7648:401::-;7850:2;7832:21;;;7889:2;7869:18;;;7862:30;7928:34;7923:2;7908:18;;7901:62;-1:-1:-1;;;7994:2:11;7979:18;;7972:35;8039:3;8024:19;;7822:227::o;8054:351::-;8256:2;8238:21;;;8295:2;8275:18;;;8268:30;8334:29;8329:2;8314:18;;8307:57;8396:2;8381:18;;8228:177::o;8410:398::-;8612:2;8594:21;;;8651:2;8631:18;;;8624:30;8690:34;8685:2;8670:18;;8663:62;-1:-1:-1;;;8756:2:11;8741:18;;8734:32;8798:3;8783:19;;8584:224::o;8813:407::-;9015:2;8997:21;;;9054:2;9034:18;;;9027:30;9093:34;9088:2;9073:18;;9066:62;-1:-1:-1;;;9159:2:11;9144:18;;9137:41;9210:3;9195:19;;8987:233::o;9225:402::-;9427:2;9409:21;;;9466:2;9446:18;;;9439:30;9505:34;9500:2;9485:18;;9478:62;-1:-1:-1;;;9571:2:11;9556:18;;9549:36;9617:3;9602:19;;9399:228::o;9632:356::-;9834:2;9816:21;;;9853:18;;;9846:30;9912:34;9907:2;9892:18;;9885:62;9979:2;9964:18;;9806:182::o;9993:400::-;10195:2;10177:21;;;10234:2;10214:18;;;10207:30;10273:34;10268:2;10253:18;;10246:62;-1:-1:-1;;;10339:2:11;10324:18;;10317:34;10383:3;10368:19;;10167:226::o;10398:344::-;10600:2;10582:21;;;10639:2;10619:18;;;10612:30;-1:-1:-1;;;10673:2:11;10658:18;;10651:50;10733:2;10718:18;;10572:170::o;10747:408::-;10949:2;10931:21;;;10988:2;10968:18;;;10961:30;11027:34;11022:2;11007:18;;11000:62;-1:-1:-1;;;11093:2:11;11078:18;;11071:42;11145:3;11130:19;;10921:234::o;11160:406::-;11362:2;11344:21;;;11401:2;11381:18;;;11374:30;11440:34;11435:2;11420:18;;11413:62;-1:-1:-1;;;11506:2:11;11491:18;;11484:40;11556:3;11541:19;;11334:232::o;11571:405::-;11773:2;11755:21;;;11812:2;11792:18;;;11785:30;11851:34;11846:2;11831:18;;11824:62;-1:-1:-1;;;11917:2:11;11902:18;;11895:39;11966:3;11951:19;;11745:231::o;11981:403::-;12183:2;12165:21;;;12222:2;12202:18;;;12195:30;12261:34;12256:2;12241:18;;12234:62;-1:-1:-1;;;12327:2:11;12312:18;;12305:37;12374:3;12359:19;;12155:229::o;12389:355::-;12591:2;12573:21;;;12630:2;12610:18;;;12603:30;12669:33;12664:2;12649:18;;12642:61;12735:2;12720:18;;12563:181::o;12749:411::-;12951:2;12933:21;;;12990:2;12970:18;;;12963:30;13029:34;13024:2;13009:18;;13002:62;-1:-1:-1;;;13095:2:11;13080:18;;13073:45;13150:3;13135:19;;12923:237::o;13165:345::-;13367:2;13349:21;;;13406:2;13386:18;;;13379:30;-1:-1:-1;;;13440:2:11;13425:18;;13418:51;13501:2;13486:18;;13339:171::o;13515:397::-;13717:2;13699:21;;;13756:2;13736:18;;;13729:30;13795:34;13790:2;13775:18;;13768:62;-1:-1:-1;;;13861:2:11;13846:18;;13839:31;13902:3;13887:19;;13689:223::o;13917:350::-;14119:2;14101:21;;;14158:2;14138:18;;;14131:30;14197:28;14192:2;14177:18;;14170:56;14258:2;14243:18;;14091:176::o;14272:402::-;14474:2;14456:21;;;14513:2;14493:18;;;14486:30;14552:34;14547:2;14532:18;;14525:62;-1:-1:-1;;;14618:2:11;14603:18;;14596:36;14664:3;14649:19;;14446:228::o;14679:355::-;14881:2;14863:21;;;14920:2;14900:18;;;14893:30;14959:33;14954:2;14939:18;;14932:61;15025:2;15010:18;;14853:181::o;15039:350::-;15251:13;;-1:-1:-1;;;;;15247:39:11;15229:58;;15347:4;15335:17;;;15329:24;-1:-1:-1;;;;;15325:57:11;15303:20;;;15296:87;;;;15217:2;15202:18;;15184:205::o;15394:177::-;15540:25;;;15528:2;15513:18;;15495:76::o;15576:279::-;15748:25;;;-1:-1:-1;;;;;15809:39:11;15804:2;15789:18;;15782:67;15736:2;15721:18;;15703:152::o;15860:258::-;15932:1;15942:113;15956:6;15953:1;15950:13;15942:113;;;16032:11;;;16026:18;16013:11;;;16006:39;15978:2;15971:10;15942:113;;;16073:6;16070:1;16067:13;16064:2;;;-1:-1:-1;;16108:1:11;16090:16;;16083:27;15913:205::o
Swarm Source
ipfs://98e8cc67b8652196b6a7baa2a6f5760f2821bc68ef802c0d2ff42474baa980a3
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.