Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
96
Holders
87
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xf512f79F...624593f0D The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
CollectionV2
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// Latest stable version of soliditypragma solidity ^0.8.0;pragma experimental ABIEncoderV2;import "../FarmV2.sol";import "../MoneyHandler.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";import "@openzeppelin/contracts/access/AccessControl.sol";import "@openzeppelin/contracts/utils/math/SafeMath.sol";import "./IFactory.sol";import "../oracle/IPriceFeed.sol";import "hardhat/console.sol";contract CollectionV2 is ERC1155, AccessControl {event Sold(address indexed operator,address indexed to,uint256 indexed id,uint256 amount);event PaymentShared(address account, uint256 amount);event PaymentTreasure(address account, uint256 amount);event SoldWithStones(address buyer, uint256 amount);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/utils/math/SafeMath.sol";import "@openzeppelin/contracts/access/AccessControl.sol";contract FarmV2 is AccessControl {using SafeERC20 for ERC20;using SafeMath for uint256;uint256 public limit = 10000 ether;uint256 public total;bytes32 public constant COLLECTION_ROLE =bytes32(keccak256("COLLECTION_ROLE"));struct Staker {uint256 amount;uint256 stones;uint256 timestamp;}mapping(address => Staker) public stakers;ERC20 private _token;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <=0.8.0;import "@openzeppelin/contracts/utils/Address.sol";import "@openzeppelin/contracts/utils/Context.sol";import "@openzeppelin/contracts/utils/math/SafeMath.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/access/AccessControl.sol";/*** @title PaymentSplitter* @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware* that the Ether will be split in this way, since it is handled transparently by the contract.** The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each* account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim* an amount proportional to the percentage of total shares they were assigned.** `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the* accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}* function.*/contract MoneyHandler is Context, AccessControl {using SafeMath for uint256;event PayeeAdded(address account, uint256 shares);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Returns the amount of tokens in existence.*/function totalSupply() external view returns (uint256);/*** @dev Returns the amount of tokens owned by `account`.*/function balanceOf(address account) external view returns (uint256);/*** @dev Moves `amount` tokens from the caller's account to `recipient`.** Returns a boolean value indicating whether the operation succeeded.** Emits a {Transfer} event.*/function transfer(address recipient, uint256 amount) external returns (bool);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @dev Library for managing* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive* types.** Sets have the following properties:** - Elements are added, removed, and checked for existence in constant time* (O(1)).* - Elements are enumerated in O(n). No guarantees are made on the ordering.** ```* contract Example {* // Add the library methods* using EnumerableSet for EnumerableSet.AddressSet;** // Declare a set state variable* EnumerableSet.AddressSet private mySet;* }* ```** As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IERC1155.sol";import "./IERC1155Receiver.sol";import "./extensions/IERC1155MetadataURI.sol";import "../../utils/Address.sol";import "../../utils/Context.sol";import "../../utils/introspection/ERC165.sol";/*** @dev Implementation of the basic standard multi-token.* See https://eips.ethereum.org/EIPS/eip-1155* Originally based on code by Enjin: https://github.com/enjin/erc-1155** _Available since v3.1._*/contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {using Address for address;// Mapping from token ID to account balancesmapping (uint256 => mapping(address => uint256)) private _balances;// Mapping from account to operator approvalsmapping (address => mapping(address => bool)) private _operatorApprovals;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../utils/Context.sol";import "../utils/Strings.sol";import "../utils/introspection/ERC165.sol";/*** @dev External interface of AccessControl declared to support ERC165 detection.*/interface IAccessControl {function hasRole(bytes32 role, address account) external view returns (bool);function getRoleAdmin(bytes32 role) external view returns (bytes32);function grantRole(bytes32 role, address account) external;function revokeRole(bytes32 role, address account) external;function renounceRole(bytes32 role, address account) external;}/*** @dev Contract module that allows children to implement role-based access* control mechanisms. This is a lightweight version that doesn't allow enumerating role* members except through off-chain means by accessing the contract event logs. Some* applications may benefit from on-chain enumerability, for those cases see* {AccessControlEnumerable}.*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;// CAUTION// This version of SafeMath should only be used with Solidity 0.8 or later,// because it relies on the compiler's built in overflow checks./*** @dev Wrappers over Solidity's arithmetic operations.** NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler* now has built in overflow checking.*/library SafeMath {/*** @dev Returns the addition of two unsigned integers, with an overflow flag.** _Available since v3.4._*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {unchecked {uint256 c = a + b;if (c < a) return (false, 0);return (true, c);}
1234567891011121314151617181920212223// SPDX-License-Identifier: MITpragma solidity 0.8.0;struct CollectionData {string uri;uint256 total;uint256 startTime;uint256 endTime;uint256 amount;uint256 percent;address admin;address factoryAddress;uint8 currencyType;address farm;address moneyHandler;address treasury;address token;address stone;}interface IFactory {function getPriceOracle() external view returns (address);}
12345678910// SPDX-License-Identifier: MITpragma solidity 0.8.0;interface IPriceFeed {function getThePrice(address tokenFeed) external view returns (int256);function setPriceFeed(address token, address feed) external;function getFeed(address token) external view returns (address);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >= 0.4.22 <0.9.0;library console {address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);function _sendLogPayload(bytes memory payload) private view {uint256 payloadLength = payload.length;address consoleAddress = CONSOLE_ADDRESS;assembly {let payloadStart := add(payload, 32)let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)}}function log() internal view {_sendLogPayload(abi.encodeWithSignature("log()"));}function logInt(int p0) internal view {_sendLogPayload(abi.encodeWithSignature("log(int)", p0));}function logUint(uint p0) internal view {_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IERC20.sol";import "./extensions/IERC20Metadata.sol";import "../../utils/Context.sol";/*** @dev Implementation of the {IERC20} interface.** This implementation is agnostic to the way tokens are created. This means* that a supply mechanism has to be added in a derived contract using {_mint}.* For a generic mechanism see {ERC20PresetMinterPauser}.** TIP: For a detailed writeup see our guide* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How* to implement supply mechanisms].** We have followed general OpenZeppelin guidelines: functions revert instead* of returning `false` on failure. This behavior is nonetheless conventional* and does not conflict with the expectations of ERC20 applications.** Additionally, an {Approval} event is emitted on calls to {transferFrom}.* This allows applications to reconstruct the allowance for all accounts just* by listening to said events. Other implementations of the EIP may not emit
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../IERC20.sol";import "../../../utils/Address.sol";/*** @title SafeERC20* @dev Wrappers around ERC20 operations that throw on failure (when the token* contract returns false). Tokens that return no value (and instead revert or* throw on failure) are also supported, non-reverting calls are assumed to be* successful.* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.*/library SafeERC20 {using Address for address;function safeTransfer(IERC20 token, address to, uint256 value) internal {_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));}function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.*/constructor () {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../IERC20.sol";/*** @dev Interface for the optional metadata functions from the ERC20 standard.** _Available since v4.1._*/interface IERC20Metadata is IERC20 {/*** @dev Returns the name of the token.*/function name() external view returns (string memory);/*** @dev Returns the symbol of the token.*/function symbol() external view returns (string memory);/*** @dev Returns the decimals places of the token.*/function decimals() external view returns (uint8);
123456789101112131415161718192021222324// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====*/function isContract(address account) internal view returns (bool) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @dev String operations.*/library Strings {bytes16 private constant alphabet = "0123456789abcdef";/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;temp /= 10;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IERC165.sol";/*** @dev Implementation of the {IERC165} interface.** Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check* for the additional interface id that will be supported. For example:** ```solidity* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);* }* ```** Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.*/abstract contract ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {return interfaceId == type(IERC165).interfaceId;
123456789101112131415161718192021222324// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @dev Required interface of an ERC1155 compliant contract, as defined in the* https://eips.ethereum.org/EIPS/eip-1155[EIP].** _Available since v3.1._*/interface IERC1155 is IERC165 {/*** @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.*/event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);/*** @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all* transfers.*/event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values);/*** @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @dev _Available since v3.1._*/interface IERC1155Receiver is IERC165 {/**@dev Handles the receipt of a single ERC1155 token type. This function iscalled at the end of a `safeTransferFrom` after the balance has been updated.To accept the transfer, this must return`bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`(i.e. 0xf23a6e61, or its own function selector).@param operator The address which initiated the transfer (i.e. msg.sender)@param from The address which previously owned the token@param id The ID of the token being transferred@param value The amount of tokens being transferred@param data Additional data with no specified format@return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed*/function onERC1155Received(address operator,
123456789101112131415161718192021// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../IERC1155.sol";/*** @dev Interface of the optional ERC1155MetadataExtension interface, as defined* in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].** _Available since v3.1._*/interface IERC1155MetadataURI is IERC1155 {/*** @dev Returns the URI for token type `id`.** If the `\{id\}` substring is present in the URI, it must be replaced by* clients with the actual token type ID.*/function uri(uint256 id) external view returns (string memory);}
12345678910111213141516{"optimizer": {"enabled": true,"runs": 200},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"components":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"total","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"address","name":"admin","type":"address"},{"internalType":"address","name":"factoryAddress","type":"address"},{"internalType":"uint8","name":"currencyType","type":"uint8"},{"internalType":"address","name":"farm","type":"address"},{"internalType":"address","name":"moneyHandler","type":"address"},{"internalType":"address","name":"treasury","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"stone","type":"address"}],"internalType":"struct CollectionData","name":"collecData","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"NewEndTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"NewStartTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"NewUsdAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentShared","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentTreasure","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"stone","type":"address"},{"indexed":false,"internalType":"address","name":"treasury","type":"address"},{"indexed":false,"internalType":"address","name":"moneyHandler","type":"address"}],"name":"SetAddresses","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Sold","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SoldWithStones","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_stone","type":"address"},{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_moneyHandler","type":"address"}],"name":"addExternalAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"amount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"available","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"buyer","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cType","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ernTreasure","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"facAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCardPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amount_","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"moneyHand","outputs":[{"internalType":"contract MoneyHandler","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setAmount","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":"uint256","name":"_endTime","type":"uint256"}],"name":"setEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_starTime","type":"uint256"}],"name":"setStarTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stone","outputs":[{"internalType":"contract FarmV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"total","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003c4b38038062003c4b833981016040819052620000349162000623565b80516200004181620000fb565b5060808101516009556020810151600b819055600d556040810151600e556060810151600f5560a0810151600a5560e0810151601080546001600160a01b0390921661010002610100600160a81b031990921691909117905560c0810151620000ad9060009062000114565b601054620000cc9060009061010090046001600160a01b031662000114565b620000f4816101800151826101a001518361016001518461014001516200012060201b60201c565b50620009a4565b805162000110906002906020840190620004dc565b5050565b620001108282620001c8565b600062000137816200013162000254565b62000258565b600680546001600160a01b038088166001600160a01b031992831617909255600780548784169083161790556008805485841690831617905560118054928616929091169190911790556040517faaa9fbd44f151f33e813cad14b3227af4d0b1ec931d5dd2bc2c7e1f8925043a990620001b9908790879087908790620007f0565b60405180910390a15050505050565b620001d48282620002e4565b620001105760008281526003602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200021062000254565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b3390565b620002648282620002e4565b62000110576200028a816001600160a01b031660146200030f60201b620015321760201c565b620002a0836020620015326200030f821b17811c565b604051602001620002b392919062000777565b60408051601f198184030181529082905262461bcd60e51b8252620002db916004016200081b565b60405180910390fd5b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600062000320836002620008cc565b6200032d906002620008b1565b6001600160401b038111156200035357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156200037e576020820181803683370190505b509050600360fc1b81600081518110620003a857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620003e657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006200040c846002620008cc565b62000419906001620008b1565b90505b6001811115620004b3576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106200045d57634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106200048257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93620004ab8162000921565b90506200041c565b508315620004d55760405162461bcd60e51b8152600401620002db9062000850565b9392505050565b828054620004ea906200093b565b90600052602060002090601f0160209004810192826200050e576000855562000559565b82601f106200052957805160ff191683800117855562000559565b8280016001018555821562000559579182015b82811115620005595782518255916020019190600101906200053c565b50620005679291506200056b565b5090565b5b808211156200056757600081556001016200056c565b80516001600160a01b03811681146200059a57600080fd5b919050565b600082601f830112620005b0578081fd5b81516001600160401b03811115620005cc57620005cc6200098e565b620005e1601f8201601f191660200162000885565b818152846020838601011115620005f6578283fd5b62000609826020830160208701620008ee565b949350505050565b805160ff811681146200059a57600080fd5b60006020828403121562000635578081fd5b81516001600160401b03808211156200064c578283fd5b81840191506101c080838703121562000663578384fd5b6200066e8162000885565b90508251828111156200067f578485fd5b6200068d878286016200059f565b8252506020830151602082015260408301516040820152606083015160608201526080830151608082015260a083015160a0820152620006d060c0840162000582565b60c0820152620006e360e0840162000582565b60e08201526101009150620006fa82840162000611565b8282015261012091506200071082840162000582565b8282015261014091506200072682840162000582565b8282015261016091506200073c82840162000582565b8282015261018091506200075282840162000582565b828201526101a091506200076882840162000582565b91810191909152949350505050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351620007b1816017850160208801620008ee565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351620007e4816028840160208801620008ee565b01602801949350505050565b6001600160a01b03948516815292841660208401529083166040830152909116606082015260800190565b60006020825282518060208401526200083c816040850160208701620008ee565b601f01601f19169190910160400192915050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b6040518181016001600160401b0381118282101715620008a957620008a96200098e565b604052919050565b60008219821115620008c757620008c762000978565b500190565b6000816000190483118215151615620008e957620008e962000978565b500290565b60005b838110156200090b578181015183820152602001620008f1565b838111156200091b576000848401525b50505050565b60008162000933576200093362000978565b506000190190565b6002810460018216806200095057607f821691505b602082108114156200097257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61329780620009b46000396000f3fe608060405234801561001057600080fd5b50600436106102315760003560e01c806370ba111311610130578063ccb98ffc116100b8578063d81d0a151161007c578063d81d0a1514610450578063e985e9c514610463578063ed7ba89814610476578063f242432a1461048b578063fc0c546a1461049e57610231565b8063ccb98ffc14610407578063cce7ec131461041a578063d53913931461042d578063d547741f14610435578063d79d63be1461044857610231565b80639be65a60116100ff5780639be65a60146103c9578063a217fddf146103dc578063a22cb465146103e4578063aa8c217c146103f7578063ca405ce0146103ff57610231565b806370ba11131461039e57806378e97925146103a65780638b9fa7b5146103ae57806391d14854146103b657610231565b80632f2ff15d116101be57806348a0d7541161018257806348a0d754146103485780634b94f50e146103505780634e1273f4146103585780634f9b1b4014610378578063548307711461038b57610231565b80632f2ff15d146102ff578063303c6433146103125780633197cbb61461031a57806336568abe1461032257806340c10f191461033557610231565b80630e89341c116102055780630e89341c1461029c578063248a9ca3146102bc578063271f88b4146102cf5780632ddbd13a146102e45780632eb2c2d6146102ec57610231565b8062fdd58e146102365780630167eb851461025f57806301ffc9a71461027457806302c7e7af14610294575b600080fd5b6102496102443660046126b9565b6104a6565b6040516102569190612a89565b60405180910390f35b610267610500565b6040516102569190612927565b6102876102823660046127fc565b61050f565b6040516102569190612a7e565b61024961051a565b6102af6102aa3660046127c0565b610520565b6040516102569190612a92565b6102496102ca3660046127c0565b6105b4565b6102e26102dd3660046127c0565b6105c9565b005b61024961061d565b6102e26102fa366004612508565b610623565b6102e261030d3660046127d8565b610889565b6102676108ad565b6102496108bc565b6102e26103303660046127d8565b6108c2565b6102e26103433660046126b9565b610908565b6102496109c0565b6102496109c6565b61036b6103663660046126e4565b610b60565b6040516102569190612a46565b6102e26103863660046124ad565b610c80565b6102e26103993660046127c0565b610d1d565b610249610d60565b610249610d66565b610267610d6c565b6102876103c43660046127d8565b610d7b565b6102e26103d736600461243d565b610da6565b610249610eb6565b6102e26103f236600461268c565b610ebb565b610249610f89565b610267610f8f565b6102e26104153660046127c0565b610fa3565b6102e26104283660046126b9565b610fe6565b610249611163565b6102e26104433660046127d8565b611187565b6102496111a6565b6102e261045e366004612619565b611201565b610287610471366004612475565b611356565b61047e611384565b6040516102569190612fee565b6102e26104993660046125b2565b61138d565b610267611523565b60006001600160a01b0383166104d75760405162461bcd60e51b81526004016104ce90612b76565b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b6007546001600160a01b031681565b60006104fa826116eb565b600c5481565b60606002805461052f906130fb565b80601f016020809104026020016040519081016040528092919081815260200182805461055b906130fb565b80156105a85780601f1061057d576101008083540402835291602001916105a8565b820191906000526020600020905b81548152906001019060200180831161058b57829003601f168201915b50505050509050919050565b60009081526003602052604090206001015490565b60006105dc816105d7611710565b611714565b60098290556040517feb18ff59fd68414f119b648d3eaab6e6b3ed437e66c28ec8f3a59dedb8f6a75090610611908490612a89565b60405180910390a15050565b600d5481565b81518351146106445760405162461bcd60e51b81526004016104ce90612ed8565b6001600160a01b03841661066a5760405162461bcd60e51b81526004016104ce90612cfe565b610672611710565b6001600160a01b0316856001600160a01b03161480610698575061069885610471611710565b6106b45760405162461bcd60e51b81526004016104ce90612d43565b60006106be611710565b90506106ce818787878787610881565b60005b845181101561081b5760008582815181106106fc57634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061072857634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156107785760405162461bcd60e51b81526004016104ce90612d95565b61078282826130a1565b60008085815260200190815260200160002060008c6001600160a01b03166001600160a01b03168152602001908152602001600020819055508160008085815260200190815260200160002060008b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254610800919061304a565b925050819055505050508061081490613136565b90506106d1565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161086b929190612a59565b60405180910390a4610881818787878787611778565b505050505050565b610892826105b4565b61089e816105d7611710565b6108a88383611886565b505050565b6011546001600160a01b031681565b600f5481565b6108ca611710565b6001600160a01b0316816001600160a01b0316146108fa5760405162461bcd60e51b81526004016104ce90612f91565b610904828261190d565b5050565b6000610916816105d7611710565b610921600483611992565b1561093e5760405162461bcd60e51b81526004016104ce90612f61565b6000600b54116109605760405162461bcd60e51b81526004016104ce90612bf8565b61097c838360016040518060200160405280600081525061199e565b6001600b600082825461098f91906130a1565b925050819055506001600c60008282546109a9919061304a565b909155506109ba9050600483611a7e565b50505050565b600b5481565b600080601060019054906101000a90046001600160a01b03166001600160a01b031663fca513a86040518163ffffffff1660e01b815260040160206040518083038186803b158015610a1757600080fd5b505afa158015610a2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4f9190612459565b6006546040516316b8e73160e01b81529192506000916001600160a01b03808516926316b8e73192610a879290911690600401612927565b60206040518083038186803b158015610a9f57600080fd5b505afa158015610ab3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad79190612459565b90506000826001600160a01b03166344a11f65836040518263ffffffff1660e01b8152600401610b079190612927565b60206040518083038186803b158015610b1f57600080fd5b505afa158015610b33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b579190612834565b93505050505b90565b60608151835114610b835760405162461bcd60e51b81526004016104ce90612e8f565b6000835167ffffffffffffffff811115610bad57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bd6578160200160208202803683370190505b50905060005b8451811015610c7857610c3d858281518110610c0857634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610c3057634e487b7160e01b600052603260045260246000fd5b60200260200101516104a6565b828281518110610c5d57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610c7181613136565b9050610bdc565b509392505050565b6000610c8e816105d7611710565b600680546001600160a01b038088166001600160a01b031992831617909255600780548784169083161790556008805485841690831617905560118054928616929091169190911790556040517faaa9fbd44f151f33e813cad14b3227af4d0b1ec931d5dd2bc2c7e1f8925043a990610d0e90879087908790879061293b565b60405180910390a15050505050565b6000610d2b816105d7611710565b600e8290556040517fb1c3fe1bc33e06477df816d42ac9d600e037c768df5fbd04b622391bdd9b451c90610611908490612a89565b600a5481565b600e5481565b6008546001600160a01b031681565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610db4816105d7611710565b6040516370a0823160e01b81526000906001600160a01b038416906370a0823190610de3903090600401612927565b60206040518083038186803b158015610dfb57600080fd5b505afa158015610e0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e339190612834565b60405163a9059cbb60e01b81529091506001600160a01b0384169063a9059cbb90610e649033908590600401612a2d565b602060405180830381600087803b158015610e7e57600080fd5b505af1158015610e92573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ba91906127a4565b600081565b816001600160a01b0316610ecd611710565b6001600160a01b03161415610ef45760405162461bcd60e51b81526004016104ce90612e46565b8060016000610f01611710565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f45611710565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f7d9190612a7e565b60405180910390a35050565b60095481565b60105461010090046001600160a01b031681565b6000610fb1816105d7611710565b600f8290556040517f18c072bc98b0b73c93817369c5f408345da097127acc038ec75ad73c261c265a90610611908490612a89565b60105461010090046001600160a01b031633146110155760405162461bcd60e51b81526004016104ce90612c63565b611020600482611992565b1561103d5760405162461bcd60e51b81526004016104ce90612f61565b6000600b541161105f5760405162461bcd60e51b81526004016104ce90612bf8565b42600e5411158015611072575042600f54115b61108e5760405162461bcd60e51b81526004016104ce90612ddf565b6007546001600160a01b0316156110ad576110a882611a8a565b6110b6565b6110b682611c04565b6110d2828260016040518060200160405280600081525061199e565b6001600b60008282546110e591906130a1565b925050819055506001600c60008282546110ff919061304a565b909155506111109050600482611a7e565b5080826001600160a01b0316306001600160a01b03167f16dd16959a056953a63cf14bf427881e762e54f03d86b864efea8238dd3b822f6009546040516111579190612a89565b60405180910390a45050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611190826105b4565b61119c816105d7611710565b6108a8838361190d565b6000806111b16109c6565b90506111bc81611f43565b60006111d082670de0b6b3a7640000613082565b6009546111f09072047bf19673df52e37f2410011d100000000000613082565b6111fa9190613062565b9250505090565b600061120f816105d7611710565b8251600b54116112315760405162461bcd60e51b81526004016104ce90612bf8565b60005b83518110156112a75761127884828151811061126057634e487b7160e01b600052603260045260246000fd5b6020026020010151600461199290919063ffffffff16565b156112955760405162461bcd60e51b81526004016104ce90612f61565b8061129f81613136565b915050611234565b506112c384848460405180602001604052806000815250611f89565b8251600b60008282546112d691906130a1565b90915550508251600c80546000906112ef90849061304a565b90915550600090505b835181101561134f5761133c84828151811061132457634e487b7160e01b600052603260045260246000fd5b60200260200101516004611a7e90919063ffffffff16565b508061134781613136565b9150506112f8565b5050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b60105460ff1681565b6001600160a01b0384166113b35760405162461bcd60e51b81526004016104ce90612cfe565b6113bb611710565b6001600160a01b0316856001600160a01b031614806113e157506113e185610471611710565b6113fd5760405162461bcd60e51b81526004016104ce90612c1a565b6000611407611710565b90506114278187876114188861210a565b6114218861210a565b87610881565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156114685760405162461bcd60e51b81526004016104ce90612d95565b61147284826130a1565b6000868152602081815260408083206001600160a01b038c811685529252808320939093558816815290812080548692906114ae90849061304a565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611504929190612fe0565b60405180910390a461151a828888888888612163565b50505050505050565b6006546001600160a01b031681565b60606000611541836002613082565b61154c90600261304a565b67ffffffffffffffff81111561157257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561159c576020820181803683370190505b509050600360fc1b816000815181106115c557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061160257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611626846002613082565b61163190600161304a565b90505b60018111156116c5576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061167357634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061169757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936116be816130e4565b9050611634565b5083156116e45760405162461bcd60e51b81526004016104ce90612af9565b9392505050565b60006001600160e01b03198216637965db0b60e01b14806104fa57506104fa82612234565b3390565b61171e8282610d7b565b61090457611736816001600160a01b03166014611532565b611741836020611532565b6040516020016117529291906128b2565b60408051601f198184030181529082905262461bcd60e51b82526104ce91600401612a92565b61178a846001600160a01b0316612274565b156108815760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906117c39089908990889088908890600401612966565b602060405180830381600087803b1580156117dd57600080fd5b505af192505050801561180d575060408051601f3d908101601f1916820190925261180a91810190612818565b60015b61185657611819613183565b80611824575061183e565b8060405162461bcd60e51b81526004016104ce9190612a92565b60405162461bcd60e51b81526004016104ce90612aa5565b6001600160e01b0319811663bc197c8160e01b1461151a5760405162461bcd60e51b81526004016104ce90612b2e565b6118908282610d7b565b6109045760008281526003602090815260408083206001600160a01b03851684529091529020805460ff191660011790556118c9611710565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6119178282610d7b565b156109045760008281526003602090815260408083206001600160a01b03851684529091529020805460ff1916905561194e611710565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006116e4838361227a565b6001600160a01b0384166119c45760405162461bcd60e51b81526004016104ce90612f20565b60006119ce611710565b90506119e0816000876114188861210a565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611a1090849061304a565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611a67929190612fe0565b60405180910390a461134f81600087878787612163565b60006116e48383612292565b6007546040516375c7e97360e01b81526000916001600160a01b0316906375c7e97390611abb908590600401612927565b60206040518083038186803b158015611ad357600080fd5b505afa158015611ae7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0b9190612834565b9050600954811015611b2f5760405162461bcd60e51b81526004016104ce90612e0f565b6007546009546040516367a09c2360e01b81526001600160a01b03909216916367a09c2391611b6391869190600401612a2d565b602060405180830381600087803b158015611b7d57600080fd5b505af1158015611b91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bb591906127a4565b611bd15760405162461bcd60e51b81526004016104ce90612bc1565b7ff2114d57b88c404287ba909c1d52f75395208c6b1a20716ae4b37c19435b29af82600954604051610611929190612a2d565b6000611c0e6111a6565b6006546040516370a0823160e01b815291925082916001600160a01b03909116906370a0823190611c43908690600401612927565b60206040518083038186803b158015611c5b57600080fd5b505afa158015611c6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c939190612834565b1015611cb15760405162461bcd60e51b81526004016104ce90612cb7565b6000611cbf82600a546122dc565b90506000611ccd8383612308565b6006546040516323b872dd60e01b81529192506001600160a01b0316906323b872dd90611d02908790309088906004016129c4565b602060405180830381600087803b158015611d1c57600080fd5b505af1158015611d30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5491906127a4565b5060065460115460405163a9059cbb60e01b81526001600160a01b039283169263a9059cbb92611d8b929116908690600401612a2d565b602060405180830381600087803b158015611da557600080fd5b505af1158015611db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ddd91906127a4565b5060065460085460405163a9059cbb60e01b81526001600160a01b039283169263a9059cbb92611e14929116908590600401612a2d565b602060405180830381600087803b158015611e2e57600080fd5b505af1158015611e42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e6691906127a4565b50600854604051631e4ee01b60e01b81526001600160a01b0390911690631e4ee01b90611e999030908590600401612a2d565b600060405180830381600087803b158015611eb357600080fd5b505af1158015611ec7573d6000803e3d6000fd5b505050507fcc512fe50bbacd531b448f7ffd7e933d0fa429d8f015bb9210336e04fc366e653083604051611efc929190612a2d565b60405180910390a17f8712441e414e4ca707b96817466a67d017d2daa9a139049258cbd3a67bb3a5393082604051611f35929190612a2d565b60405180910390a150505050565b611f8681604051602401611f579190612a89565b60408051601f198184030181529190526020810180516001600160e01b031663f5b1bba960e01b179052612314565b50565b6001600160a01b038416611faf5760405162461bcd60e51b81526004016104ce90612f20565b8151835114611fd05760405162461bcd60e51b81526004016104ce90612ed8565b6000611fda611710565b9050611feb81600087878787610881565b60005b84518110156120a25783818151811061201757634e487b7160e01b600052603260045260246000fd5b602002602001015160008087848151811061204257634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020600082825461208a919061304a565b9091555081905061209a81613136565b915050611fee565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516120f3929190612a59565b60405180910390a461134f81600087878787611778565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061215257634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b612175846001600160a01b0316612274565b156108815760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906121ae90899089908890889088906004016129e8565b602060405180830381600087803b1580156121c857600080fd5b505af19250505080156121f8575060408051601f3d908101601f191682019092526121f591810190612818565b60015b61220457611819613183565b6001600160e01b0319811663f23a6e6160e01b1461151a5760405162461bcd60e51b81526004016104ce90612b2e565b60006001600160e01b03198216636cdb3d1360e11b148061226557506001600160e01b031982166303a24d0760e21b145b806104fa57506104fa82612335565b3b151590565b60009081526001919091016020526040902054151590565b600061229e838361227a565b6122d4575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104fa565b5060006104fa565b6000806122e9848461234e565b905060006122ff82670de0b6b3a764000061235a565b95945050505050565b60006116e482846130a1565b80516a636f6e736f6c652e6c6f67602083016000808483855afa5050505050565b6001600160e01b031981166301ffc9a760e01b14919050565b60006116e48284613082565b60006116e48284613062565b600082601f830112612376578081fd5b8135602061238b61238683613026565b612ffc565b82815281810190858301838502870184018810156123a7578586fd5b855b858110156123c5578135845292840192908401906001016123a9565b5090979650505050505050565b600082601f8301126123e2578081fd5b813567ffffffffffffffff8111156123fc576123fc613167565b61240f601f8201601f1916602001612ffc565b818152846020838601011115612423578283fd5b816020850160208301379081016020019190915292915050565b60006020828403121561244e578081fd5b81356116e481613228565b60006020828403121561246a578081fd5b81516116e481613228565b60008060408385031215612487578081fd5b823561249281613228565b915060208301356124a281613228565b809150509250929050565b600080600080608085870312156124c2578182fd5b84356124cd81613228565b935060208501356124dd81613228565b925060408501356124ed81613228565b915060608501356124fd81613228565b939692955090935050565b600080600080600060a0868803121561251f578081fd5b853561252a81613228565b9450602086013561253a81613228565b9350604086013567ffffffffffffffff80821115612556578283fd5b61256289838a01612366565b94506060880135915080821115612577578283fd5b61258389838a01612366565b93506080880135915080821115612598578283fd5b506125a5888289016123d2565b9150509295509295909350565b600080600080600060a086880312156125c9578081fd5b85356125d481613228565b945060208601356125e481613228565b93506040860135925060608601359150608086013567ffffffffffffffff81111561260d578182fd5b6125a5888289016123d2565b60008060006060848603121561262d578081fd5b833561263881613228565b9250602084013567ffffffffffffffff80821115612654578283fd5b61266087838801612366565b93506040860135915080821115612675578283fd5b5061268286828701612366565b9150509250925092565b6000806040838503121561269e578182fd5b82356126a981613228565b915060208301356124a28161323d565b600080604083850312156126cb578182fd5b82356126d681613228565b946020939093013593505050565b600080604083850312156126f6578182fd5b823567ffffffffffffffff8082111561270d578384fd5b818501915085601f830112612720578384fd5b8135602061273061238683613026565b82815281810190858301838502870184018b101561274c578889fd5b8896505b8487101561277757803561276381613228565b835260019690960195918301918301612750565b509650508601359250508082111561278d578283fd5b5061279a85828601612366565b9150509250929050565b6000602082840312156127b5578081fd5b81516116e48161323d565b6000602082840312156127d1578081fd5b5035919050565b600080604083850312156127ea578182fd5b8235915060208301356124a281613228565b60006020828403121561280d578081fd5b81356116e48161324b565b600060208284031215612829578081fd5b81516116e48161324b565b600060208284031215612845578081fd5b5051919050565b6000815180845260208085019450808401835b8381101561287b5781518752958201959082019060010161285f565b509495945050505050565b6000815180845261289e8160208601602086016130b8565b601f01601f19169290920160200192915050565b60007f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000825283516128ea8160178501602088016130b8565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161291b8160288401602088016130b8565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03948516815292841660208401529083166040830152909116606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190526000906129929083018661284c565b82810360608401526129a4818661284c565b905082810360808401526129b88185612886565b98975050505050505050565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612a2290830184612886565b979650505050505050565b6001600160a01b03929092168252602082015260400190565b6000602082526116e4602083018461284c565b600060408252612a6c604083018561284c565b82810360208401526122ff818561284c565b901515815260200190565b90815260200190565b6000602082526116e46020830184612886565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526018908201527f5061796d656e742077617320756e7375636365737366756c0000000000000000604082015260600190565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526034908201527f546869732066756e6374696f6e2063616e206f6e6c792062652063616c6c656460408201527308189e48199858dd1bdc9e4818dbdb9d1c9858dd60621b606082015260800190565b60208082526027908201527f496e73756666696369656e742066756e64733a2043616e6e6f742062757920746040820152661a1a5cc813919560ca1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526016908201527514d85b1948191a59081b9bdd081cdd185c9d081e595d60521b604082015260600190565b6020808252601f908201527f596f7520646f206e6f74206861766520656e6f75676820706f696e7473202100604082015260600190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604082015268103337b91039b2b63360b91b606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604082015268040dad2e6dac2e8c6d60bb1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b602080825260169082015275151a1a5cc818d85c9908185b1c9958591e481cdbdb1960521b604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b918252602082015260400190565b60ff91909116815260200190565b60405181810167ffffffffffffffff8111828210171561301e5761301e613167565b604052919050565b600067ffffffffffffffff82111561304057613040613167565b5060209081020190565b6000821982111561305d5761305d613151565b500190565b60008261307d57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561309c5761309c613151565b500290565b6000828210156130b3576130b3613151565b500390565b60005b838110156130d35781810151838201526020016130bb565b838111156109ba5750506000910152565b6000816130f3576130f3613151565b506000190190565b60028104600182168061310f57607f821691505b6020821081141561313057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561314a5761314a613151565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d101561319357610b5d565b600481823e6308c379a06131a7825161317d565b146131b157610b5d565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156131e15750505050610b5d565b828401925082519150808211156131fb5750505050610b5d565b503d8301602082840101111561321357505050610b5d565b601f01601f1916810160200160405291505090565b6001600160a01b0381168114611f8657600080fd5b8015158114611f8657600080fd5b6001600160e01b031981168114611f8657600080fdfea26469706673582212206924a383964f5d1409406321e530d375b5fcf8fd4bea563bb5fa8edf990e388464736f6c63430008000033000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000006116eb85000000000000000000000000000000000000000000000000000000006118721b00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000c7d713b49da0000000000000000000000000000fbc3b76a206f03f1edbf411f280444cd3fd9c7c8000000000000000000000000a49c0d9a786e659a0557281b4fa72cf8cf08f6cf0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000edfe9ac42a511e1c523e067db8345711419d4f14000000000000000000000000fbbb0db0b33dc38c65443e4f3aeae2b79a0d35f6000000000000000000000000fbc3b76a206f03f1edbf411f280444cd3fd9c7c8000000000000000000000000bbc2ae13b23d715c30720f079fcd9b4a740935050000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b697073662f2f2e732e6461000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102315760003560e01c806370ba111311610130578063ccb98ffc116100b8578063d81d0a151161007c578063d81d0a1514610450578063e985e9c514610463578063ed7ba89814610476578063f242432a1461048b578063fc0c546a1461049e57610231565b8063ccb98ffc14610407578063cce7ec131461041a578063d53913931461042d578063d547741f14610435578063d79d63be1461044857610231565b80639be65a60116100ff5780639be65a60146103c9578063a217fddf146103dc578063a22cb465146103e4578063aa8c217c146103f7578063ca405ce0146103ff57610231565b806370ba11131461039e57806378e97925146103a65780638b9fa7b5146103ae57806391d14854146103b657610231565b80632f2ff15d116101be57806348a0d7541161018257806348a0d754146103485780634b94f50e146103505780634e1273f4146103585780634f9b1b4014610378578063548307711461038b57610231565b80632f2ff15d146102ff578063303c6433146103125780633197cbb61461031a57806336568abe1461032257806340c10f191461033557610231565b80630e89341c116102055780630e89341c1461029c578063248a9ca3146102bc578063271f88b4146102cf5780632ddbd13a146102e45780632eb2c2d6146102ec57610231565b8062fdd58e146102365780630167eb851461025f57806301ffc9a71461027457806302c7e7af14610294575b600080fd5b6102496102443660046126b9565b6104a6565b6040516102569190612a89565b60405180910390f35b610267610500565b6040516102569190612927565b6102876102823660046127fc565b61050f565b6040516102569190612a7e565b61024961051a565b6102af6102aa3660046127c0565b610520565b6040516102569190612a92565b6102496102ca3660046127c0565b6105b4565b6102e26102dd3660046127c0565b6105c9565b005b61024961061d565b6102e26102fa366004612508565b610623565b6102e261030d3660046127d8565b610889565b6102676108ad565b6102496108bc565b6102e26103303660046127d8565b6108c2565b6102e26103433660046126b9565b610908565b6102496109c0565b6102496109c6565b61036b6103663660046126e4565b610b60565b6040516102569190612a46565b6102e26103863660046124ad565b610c80565b6102e26103993660046127c0565b610d1d565b610249610d60565b610249610d66565b610267610d6c565b6102876103c43660046127d8565b610d7b565b6102e26103d736600461243d565b610da6565b610249610eb6565b6102e26103f236600461268c565b610ebb565b610249610f89565b610267610f8f565b6102e26104153660046127c0565b610fa3565b6102e26104283660046126b9565b610fe6565b610249611163565b6102e26104433660046127d8565b611187565b6102496111a6565b6102e261045e366004612619565b611201565b610287610471366004612475565b611356565b61047e611384565b6040516102569190612fee565b6102e26104993660046125b2565b61138d565b610267611523565b60006001600160a01b0383166104d75760405162461bcd60e51b81526004016104ce90612b76565b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b6007546001600160a01b031681565b60006104fa826116eb565b600c5481565b60606002805461052f906130fb565b80601f016020809104026020016040519081016040528092919081815260200182805461055b906130fb565b80156105a85780601f1061057d576101008083540402835291602001916105a8565b820191906000526020600020905b81548152906001019060200180831161058b57829003601f168201915b50505050509050919050565b60009081526003602052604090206001015490565b60006105dc816105d7611710565b611714565b60098290556040517feb18ff59fd68414f119b648d3eaab6e6b3ed437e66c28ec8f3a59dedb8f6a75090610611908490612a89565b60405180910390a15050565b600d5481565b81518351146106445760405162461bcd60e51b81526004016104ce90612ed8565b6001600160a01b03841661066a5760405162461bcd60e51b81526004016104ce90612cfe565b610672611710565b6001600160a01b0316856001600160a01b03161480610698575061069885610471611710565b6106b45760405162461bcd60e51b81526004016104ce90612d43565b60006106be611710565b90506106ce818787878787610881565b60005b845181101561081b5760008582815181106106fc57634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061072857634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156107785760405162461bcd60e51b81526004016104ce90612d95565b61078282826130a1565b60008085815260200190815260200160002060008c6001600160a01b03166001600160a01b03168152602001908152602001600020819055508160008085815260200190815260200160002060008b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254610800919061304a565b925050819055505050508061081490613136565b90506106d1565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161086b929190612a59565b60405180910390a4610881818787878787611778565b505050505050565b610892826105b4565b61089e816105d7611710565b6108a88383611886565b505050565b6011546001600160a01b031681565b600f5481565b6108ca611710565b6001600160a01b0316816001600160a01b0316146108fa5760405162461bcd60e51b81526004016104ce90612f91565b610904828261190d565b5050565b6000610916816105d7611710565b610921600483611992565b1561093e5760405162461bcd60e51b81526004016104ce90612f61565b6000600b54116109605760405162461bcd60e51b81526004016104ce90612bf8565b61097c838360016040518060200160405280600081525061199e565b6001600b600082825461098f91906130a1565b925050819055506001600c60008282546109a9919061304a565b909155506109ba9050600483611a7e565b50505050565b600b5481565b600080601060019054906101000a90046001600160a01b03166001600160a01b031663fca513a86040518163ffffffff1660e01b815260040160206040518083038186803b158015610a1757600080fd5b505afa158015610a2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4f9190612459565b6006546040516316b8e73160e01b81529192506000916001600160a01b03808516926316b8e73192610a879290911690600401612927565b60206040518083038186803b158015610a9f57600080fd5b505afa158015610ab3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad79190612459565b90506000826001600160a01b03166344a11f65836040518263ffffffff1660e01b8152600401610b079190612927565b60206040518083038186803b158015610b1f57600080fd5b505afa158015610b33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b579190612834565b93505050505b90565b60608151835114610b835760405162461bcd60e51b81526004016104ce90612e8f565b6000835167ffffffffffffffff811115610bad57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bd6578160200160208202803683370190505b50905060005b8451811015610c7857610c3d858281518110610c0857634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610c3057634e487b7160e01b600052603260045260246000fd5b60200260200101516104a6565b828281518110610c5d57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610c7181613136565b9050610bdc565b509392505050565b6000610c8e816105d7611710565b600680546001600160a01b038088166001600160a01b031992831617909255600780548784169083161790556008805485841690831617905560118054928616929091169190911790556040517faaa9fbd44f151f33e813cad14b3227af4d0b1ec931d5dd2bc2c7e1f8925043a990610d0e90879087908790879061293b565b60405180910390a15050505050565b6000610d2b816105d7611710565b600e8290556040517fb1c3fe1bc33e06477df816d42ac9d600e037c768df5fbd04b622391bdd9b451c90610611908490612a89565b600a5481565b600e5481565b6008546001600160a01b031681565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610db4816105d7611710565b6040516370a0823160e01b81526000906001600160a01b038416906370a0823190610de3903090600401612927565b60206040518083038186803b158015610dfb57600080fd5b505afa158015610e0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e339190612834565b60405163a9059cbb60e01b81529091506001600160a01b0384169063a9059cbb90610e649033908590600401612a2d565b602060405180830381600087803b158015610e7e57600080fd5b505af1158015610e92573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ba91906127a4565b600081565b816001600160a01b0316610ecd611710565b6001600160a01b03161415610ef45760405162461bcd60e51b81526004016104ce90612e46565b8060016000610f01611710565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f45611710565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f7d9190612a7e565b60405180910390a35050565b60095481565b60105461010090046001600160a01b031681565b6000610fb1816105d7611710565b600f8290556040517f18c072bc98b0b73c93817369c5f408345da097127acc038ec75ad73c261c265a90610611908490612a89565b60105461010090046001600160a01b031633146110155760405162461bcd60e51b81526004016104ce90612c63565b611020600482611992565b1561103d5760405162461bcd60e51b81526004016104ce90612f61565b6000600b541161105f5760405162461bcd60e51b81526004016104ce90612bf8565b42600e5411158015611072575042600f54115b61108e5760405162461bcd60e51b81526004016104ce90612ddf565b6007546001600160a01b0316156110ad576110a882611a8a565b6110b6565b6110b682611c04565b6110d2828260016040518060200160405280600081525061199e565b6001600b60008282546110e591906130a1565b925050819055506001600c60008282546110ff919061304a565b909155506111109050600482611a7e565b5080826001600160a01b0316306001600160a01b03167f16dd16959a056953a63cf14bf427881e762e54f03d86b864efea8238dd3b822f6009546040516111579190612a89565b60405180910390a45050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611190826105b4565b61119c816105d7611710565b6108a8838361190d565b6000806111b16109c6565b90506111bc81611f43565b60006111d082670de0b6b3a7640000613082565b6009546111f09072047bf19673df52e37f2410011d100000000000613082565b6111fa9190613062565b9250505090565b600061120f816105d7611710565b8251600b54116112315760405162461bcd60e51b81526004016104ce90612bf8565b60005b83518110156112a75761127884828151811061126057634e487b7160e01b600052603260045260246000fd5b6020026020010151600461199290919063ffffffff16565b156112955760405162461bcd60e51b81526004016104ce90612f61565b8061129f81613136565b915050611234565b506112c384848460405180602001604052806000815250611f89565b8251600b60008282546112d691906130a1565b90915550508251600c80546000906112ef90849061304a565b90915550600090505b835181101561134f5761133c84828151811061132457634e487b7160e01b600052603260045260246000fd5b60200260200101516004611a7e90919063ffffffff16565b508061134781613136565b9150506112f8565b5050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b60105460ff1681565b6001600160a01b0384166113b35760405162461bcd60e51b81526004016104ce90612cfe565b6113bb611710565b6001600160a01b0316856001600160a01b031614806113e157506113e185610471611710565b6113fd5760405162461bcd60e51b81526004016104ce90612c1a565b6000611407611710565b90506114278187876114188861210a565b6114218861210a565b87610881565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156114685760405162461bcd60e51b81526004016104ce90612d95565b61147284826130a1565b6000868152602081815260408083206001600160a01b038c811685529252808320939093558816815290812080548692906114ae90849061304a565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611504929190612fe0565b60405180910390a461151a828888888888612163565b50505050505050565b6006546001600160a01b031681565b60606000611541836002613082565b61154c90600261304a565b67ffffffffffffffff81111561157257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561159c576020820181803683370190505b509050600360fc1b816000815181106115c557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061160257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611626846002613082565b61163190600161304a565b90505b60018111156116c5576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061167357634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061169757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c936116be816130e4565b9050611634565b5083156116e45760405162461bcd60e51b81526004016104ce90612af9565b9392505050565b60006001600160e01b03198216637965db0b60e01b14806104fa57506104fa82612234565b3390565b61171e8282610d7b565b61090457611736816001600160a01b03166014611532565b611741836020611532565b6040516020016117529291906128b2565b60408051601f198184030181529082905262461bcd60e51b82526104ce91600401612a92565b61178a846001600160a01b0316612274565b156108815760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906117c39089908990889088908890600401612966565b602060405180830381600087803b1580156117dd57600080fd5b505af192505050801561180d575060408051601f3d908101601f1916820190925261180a91810190612818565b60015b61185657611819613183565b80611824575061183e565b8060405162461bcd60e51b81526004016104ce9190612a92565b60405162461bcd60e51b81526004016104ce90612aa5565b6001600160e01b0319811663bc197c8160e01b1461151a5760405162461bcd60e51b81526004016104ce90612b2e565b6118908282610d7b565b6109045760008281526003602090815260408083206001600160a01b03851684529091529020805460ff191660011790556118c9611710565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6119178282610d7b565b156109045760008281526003602090815260408083206001600160a01b03851684529091529020805460ff1916905561194e611710565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006116e4838361227a565b6001600160a01b0384166119c45760405162461bcd60e51b81526004016104ce90612f20565b60006119ce611710565b90506119e0816000876114188861210a565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611a1090849061304a565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611a67929190612fe0565b60405180910390a461134f81600087878787612163565b60006116e48383612292565b6007546040516375c7e97360e01b81526000916001600160a01b0316906375c7e97390611abb908590600401612927565b60206040518083038186803b158015611ad357600080fd5b505afa158015611ae7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0b9190612834565b9050600954811015611b2f5760405162461bcd60e51b81526004016104ce90612e0f565b6007546009546040516367a09c2360e01b81526001600160a01b03909216916367a09c2391611b6391869190600401612a2d565b602060405180830381600087803b158015611b7d57600080fd5b505af1158015611b91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bb591906127a4565b611bd15760405162461bcd60e51b81526004016104ce90612bc1565b7ff2114d57b88c404287ba909c1d52f75395208c6b1a20716ae4b37c19435b29af82600954604051610611929190612a2d565b6000611c0e6111a6565b6006546040516370a0823160e01b815291925082916001600160a01b03909116906370a0823190611c43908690600401612927565b60206040518083038186803b158015611c5b57600080fd5b505afa158015611c6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c939190612834565b1015611cb15760405162461bcd60e51b81526004016104ce90612cb7565b6000611cbf82600a546122dc565b90506000611ccd8383612308565b6006546040516323b872dd60e01b81529192506001600160a01b0316906323b872dd90611d02908790309088906004016129c4565b602060405180830381600087803b158015611d1c57600080fd5b505af1158015611d30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5491906127a4565b5060065460115460405163a9059cbb60e01b81526001600160a01b039283169263a9059cbb92611d8b929116908690600401612a2d565b602060405180830381600087803b158015611da557600080fd5b505af1158015611db9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ddd91906127a4565b5060065460085460405163a9059cbb60e01b81526001600160a01b039283169263a9059cbb92611e14929116908590600401612a2d565b602060405180830381600087803b158015611e2e57600080fd5b505af1158015611e42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e6691906127a4565b50600854604051631e4ee01b60e01b81526001600160a01b0390911690631e4ee01b90611e999030908590600401612a2d565b600060405180830381600087803b158015611eb357600080fd5b505af1158015611ec7573d6000803e3d6000fd5b505050507fcc512fe50bbacd531b448f7ffd7e933d0fa429d8f015bb9210336e04fc366e653083604051611efc929190612a2d565b60405180910390a17f8712441e414e4ca707b96817466a67d017d2daa9a139049258cbd3a67bb3a5393082604051611f35929190612a2d565b60405180910390a150505050565b611f8681604051602401611f579190612a89565b60408051601f198184030181529190526020810180516001600160e01b031663f5b1bba960e01b179052612314565b50565b6001600160a01b038416611faf5760405162461bcd60e51b81526004016104ce90612f20565b8151835114611fd05760405162461bcd60e51b81526004016104ce90612ed8565b6000611fda611710565b9050611feb81600087878787610881565b60005b84518110156120a25783818151811061201757634e487b7160e01b600052603260045260246000fd5b602002602001015160008087848151811061204257634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b03168152602001908152602001600020600082825461208a919061304a565b9091555081905061209a81613136565b915050611fee565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516120f3929190612a59565b60405180910390a461134f81600087878787611778565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061215257634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b612175846001600160a01b0316612274565b156108815760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906121ae90899089908890889088906004016129e8565b602060405180830381600087803b1580156121c857600080fd5b505af19250505080156121f8575060408051601f3d908101601f191682019092526121f591810190612818565b60015b61220457611819613183565b6001600160e01b0319811663f23a6e6160e01b1461151a5760405162461bcd60e51b81526004016104ce90612b2e565b60006001600160e01b03198216636cdb3d1360e11b148061226557506001600160e01b031982166303a24d0760e21b145b806104fa57506104fa82612335565b3b151590565b60009081526001919091016020526040902054151590565b600061229e838361227a565b6122d4575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104fa565b5060006104fa565b6000806122e9848461234e565b905060006122ff82670de0b6b3a764000061235a565b95945050505050565b60006116e482846130a1565b80516a636f6e736f6c652e6c6f67602083016000808483855afa5050505050565b6001600160e01b031981166301ffc9a760e01b14919050565b60006116e48284613082565b60006116e48284613062565b600082601f830112612376578081fd5b8135602061238b61238683613026565b612ffc565b82815281810190858301838502870184018810156123a7578586fd5b855b858110156123c5578135845292840192908401906001016123a9565b5090979650505050505050565b600082601f8301126123e2578081fd5b813567ffffffffffffffff8111156123fc576123fc613167565b61240f601f8201601f1916602001612ffc565b818152846020838601011115612423578283fd5b816020850160208301379081016020019190915292915050565b60006020828403121561244e578081fd5b81356116e481613228565b60006020828403121561246a578081fd5b81516116e481613228565b60008060408385031215612487578081fd5b823561249281613228565b915060208301356124a281613228565b809150509250929050565b600080600080608085870312156124c2578182fd5b84356124cd81613228565b935060208501356124dd81613228565b925060408501356124ed81613228565b915060608501356124fd81613228565b939692955090935050565b600080600080600060a0868803121561251f578081fd5b853561252a81613228565b9450602086013561253a81613228565b9350604086013567ffffffffffffffff80821115612556578283fd5b61256289838a01612366565b94506060880135915080821115612577578283fd5b61258389838a01612366565b93506080880135915080821115612598578283fd5b506125a5888289016123d2565b9150509295509295909350565b600080600080600060a086880312156125c9578081fd5b85356125d481613228565b945060208601356125e481613228565b93506040860135925060608601359150608086013567ffffffffffffffff81111561260d578182fd5b6125a5888289016123d2565b60008060006060848603121561262d578081fd5b833561263881613228565b9250602084013567ffffffffffffffff80821115612654578283fd5b61266087838801612366565b93506040860135915080821115612675578283fd5b5061268286828701612366565b9150509250925092565b6000806040838503121561269e578182fd5b82356126a981613228565b915060208301356124a28161323d565b600080604083850312156126cb578182fd5b82356126d681613228565b946020939093013593505050565b600080604083850312156126f6578182fd5b823567ffffffffffffffff8082111561270d578384fd5b818501915085601f830112612720578384fd5b8135602061273061238683613026565b82815281810190858301838502870184018b101561274c578889fd5b8896505b8487101561277757803561276381613228565b835260019690960195918301918301612750565b509650508601359250508082111561278d578283fd5b5061279a85828601612366565b9150509250929050565b6000602082840312156127b5578081fd5b81516116e48161323d565b6000602082840312156127d1578081fd5b5035919050565b600080604083850312156127ea578182fd5b8235915060208301356124a281613228565b60006020828403121561280d578081fd5b81356116e48161324b565b600060208284031215612829578081fd5b81516116e48161324b565b600060208284031215612845578081fd5b5051919050565b6000815180845260208085019450808401835b8381101561287b5781518752958201959082019060010161285f565b509495945050505050565b6000815180845261289e8160208601602086016130b8565b601f01601f19169290920160200192915050565b60007f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000825283516128ea8160178501602088016130b8565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161291b8160288401602088016130b8565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03948516815292841660208401529083166040830152909116606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190526000906129929083018661284c565b82810360608401526129a4818661284c565b905082810360808401526129b88185612886565b98975050505050505050565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612a2290830184612886565b979650505050505050565b6001600160a01b03929092168252602082015260400190565b6000602082526116e4602083018461284c565b600060408252612a6c604083018561284c565b82810360208401526122ff818561284c565b901515815260200190565b90815260200190565b6000602082526116e46020830184612886565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526018908201527f5061796d656e742077617320756e7375636365737366756c0000000000000000604082015260600190565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526034908201527f546869732066756e6374696f6e2063616e206f6e6c792062652063616c6c656460408201527308189e48199858dd1bdc9e4818dbdb9d1c9858dd60621b606082015260800190565b60208082526027908201527f496e73756666696369656e742066756e64733a2043616e6e6f742062757920746040820152661a1a5cc813919560ca1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526016908201527514d85b1948191a59081b9bdd081cdd185c9d081e595d60521b604082015260600190565b6020808252601f908201527f596f7520646f206e6f74206861766520656e6f75676820706f696e7473202100604082015260600190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604082015268103337b91039b2b63360b91b606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604082015268040dad2e6dac2e8c6d60bb1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b602080825260169082015275151a1a5cc818d85c9908185b1c9958591e481cdbdb1960521b604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b918252602082015260400190565b60ff91909116815260200190565b60405181810167ffffffffffffffff8111828210171561301e5761301e613167565b604052919050565b600067ffffffffffffffff82111561304057613040613167565b5060209081020190565b6000821982111561305d5761305d613151565b500190565b60008261307d57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561309c5761309c613151565b500290565b6000828210156130b3576130b3613151565b500390565b60005b838110156130d35781810151838201526020016130bb565b838111156109ba5750506000910152565b6000816130f3576130f3613151565b506000190190565b60028104600182168061310f57607f821691505b6020821081141561313057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561314a5761314a613151565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d101561319357610b5d565b600481823e6308c379a06131a7825161317d565b146131b157610b5d565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156131e15750505050610b5d565b828401925082519150808211156131fb5750505050610b5d565b503d8301602082840101111561321357505050610b5d565b601f01601f1916810160200160405291505090565b6001600160a01b0381168114611f8657600080fd5b8015158114611f8657600080fd5b6001600160e01b031981168114611f8657600080fdfea26469706673582212206924a383964f5d1409406321e530d375b5fcf8fd4bea563bb5fa8edf990e388464736f6c63430008000033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.