ERC-20
Overview
Max Total Supply
756,482,832.613345492556202904 FLURRY
Holders
642
Market
Price
$0.00 @ 0.000000 ETH (+17.92%)
Onchain Market Cap
$72,479.89
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
56,748.999999983921116666 FLURRYValue
$5.44 ( ~0.00216083889523292 Eth) [0.0075%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FlurryToken
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526//SPDX-License-Identifier: MITpragma solidity 0.8.4;import "@openzeppelin/contracts/token/ERC20/presets/ERC20PresetMinterPauser.sol";import "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "./VestedToken.sol";contract FlurryToken is VestedToken, ERC20PresetMinterPauser, ERC20Capped {// Tokenuint256 public constant MAX_SUPPLY = 1e28;// Rolebytes32 public constant SWEEPER_ROLE = keccak256("SWEEPER_ROLE");bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");// Initilizerconstructor(string memory name,string memory symbol,uint256 _restrictionGas,uint256 _restrictionAmount,uint256 _unlockMultiple,uint256 _maxLock) ERC20PresetMinterPauser(name, symbol) ERC20Capped(MAX_SUPPLY){
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../ERC20.sol";import "../extensions/ERC20Burnable.sol";import "../extensions/ERC20Pausable.sol";import "../../../access/AccessControlEnumerable.sol";import "../../../utils/Context.sol";/*** @dev {ERC20} token, including:** - ability for holders to burn (destroy) their tokens* - a minter role that allows for token minting (creation)* - a pauser role that allows to stop all token transfers** This contract uses {AccessControl} to lock permissioned functions using the* different roles - head to its documentation for details.** The account that deploys the contract will be granted the minter and pauser* roles, as well as the default admin role, which will let it grant both minter* and pauser roles to other accounts.*/contract ERC20PresetMinterPauser is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable {bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
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 "../ERC20.sol";/*** @dev Extension of {ERC20} that adds a cap to the supply of tokens.*/abstract contract ERC20Capped is ERC20 {uint256 private immutable _cap;/*** @dev Sets the value of the `cap`. This value is immutable, it can only be* set once during construction.*/constructor(uint256 cap_) {require(cap_ > 0, "ERC20Capped: cap is 0");_cap = cap_;}/*** @dev Returns the cap on the token's total supply.*/function cap() public view virtual returns (uint256) {return _cap;
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.4;import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";import "@openzeppelin/contracts/utils/Address.sol";import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";import "../interfaces/uniswapV2/IUniswapV2Router02.sol";import "../interfaces/uniswapV2/IUniswapV2Factory.sol";abstract contract VestedToken is AccessControlEnumerable, ERC20 {using Address for address;address public pairingToken;address public launchPool;uint256 public tradingTime;uint256 public restrictionLiftTime;uint256 public restrictionAmount;uint256 public restrictionGas;uint256 public launchPrice;mapping(address => bool) public isWhitelisted;mapping(address => bool) public openSender;mapping(address => bool) public lastTx;mapping(address => uint256) public lockTime;mapping(address => uint256) public lockedAmount;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../ERC20.sol";import "../../../utils/Context.sol";/*** @dev Extension of {ERC20} that allows token holders to destroy both their own* tokens and those that they have an allowance for, in a way that can be* recognized off-chain (via event analysis).*/abstract contract ERC20Burnable is Context, ERC20 {/*** @dev Destroys `amount` tokens from the caller.** See {ERC20-_burn}.*/function burn(uint256 amount) public virtual {_burn(_msgSender(), amount);}/*** @dev Destroys `amount` tokens from `account`, deducting from the caller's* allowance.*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../ERC20.sol";import "../../../security/Pausable.sol";/*** @dev ERC20 token with pausable token transfers, minting and burning.** Useful for scenarios such as preventing trades until the end of an evaluation* period, or having an emergency switch for freezing all token transfers in the* event of a large bug.*/abstract contract ERC20Pausable is ERC20, Pausable {/*** @dev See {ERC20-_beforeTokenTransfer}.** Requirements:** - the contract must not be paused.*/function _beforeTokenTransfer(address from,address to,uint256 amount
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./AccessControl.sol";import "../utils/structs/EnumerableSet.sol";/*** @dev External interface of AccessControlEnumerable declared to support ERC165 detection.*/interface IAccessControlEnumerable {function getRoleMember(bytes32 role, uint256 index) external view returns (address);function getRoleMemberCount(bytes32 role) external view returns (uint256);}/*** @dev Extension of {AccessControl} that allows enumerating the members of each role.*/abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {using EnumerableSet for EnumerableSet.AddressSet;mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;/*** @dev See {IERC165-supportsInterface}.
1234567891011121314151617181920212223// 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) {return msg.data;}}
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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which allows children to implement an emergency stop* mechanism that can be triggered by an authorized account.** This module is used through inheritance. It will make available the* modifiers `whenNotPaused` and `whenPaused`, which can be applied to* the functions of your contract. Note that they will not be pausable by* simply including this module, only once the modifiers are put in place.*/abstract contract Pausable is Context {/*** @dev Emitted when the pause is triggered by `account`.*/event Paused(address account);/*** @dev Emitted when the pause is lifted by `account`.*/event Unpaused(address account);
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
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;/*** @dev String operations.*/library Strings {bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.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;/*** @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.4;import "./IUniswapV2Router01.sol";interface IUniswapV2Router02 is IUniswapV2Router01 {function removeLiquidityETHSupportingFeeOnTransferTokens(address token,uint256 liquidity,uint256 amountTokenMin,uint256 amountETHMin,address to,uint256 deadline) external returns (uint256 amountETH);function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(address token,uint256 liquidity,uint256 amountTokenMin,uint256 amountETHMin,address to,uint256 deadline,bool approveMax,uint8 v,bytes32 r,bytes32 s
12345678910111213141516171819202122//SPDX-License-Identifier: MITpragma solidity 0.8.4;interface IUniswapV2Factory {event PairCreated(address indexed token0, address indexed token1, address pair, uint256);function feeTo() external view returns (address);function feeToSetter() external view returns (address);function getPair(address tokenA, address tokenB) external view returns (address pair);function allPairs(uint256) external view returns (address pair);function allPairsLength() external view returns (uint256);function createPair(address tokenA, address tokenB) external returns (address pair);function setFeeTo(address) external;function setFeeToSetter(address) external;}
1234567891011121314151617181920212223242526//SPDX-License-Identifier: MITpragma solidity >=0.6.2;interface IUniswapV2Router01 {function factory() external pure returns (address);function WETH() external pure returns (address);function addLiquidity(address tokenA,address tokenB,uint256 amountADesired,uint256 amountBDesired,uint256 amountAMin,uint256 amountBMin,address to,uint256 deadline)externalreturns (uint256 amountA,uint256 amountB,uint256 liquidity);function addLiquidityETH(
12345678910111213141516{"optimizer": {"enabled": true,"runs": 10000},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_restrictionGas","type":"uint256"},{"internalType":"uint256","name":"_restrictionAmount","type":"uint256"},{"internalType":"uint256","name":"_unlockMultiple","type":"uint256"},{"internalType":"uint256","name":"_maxLock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SWEEPER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addSender","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"uniswapV2Router02","type":"address"},{"internalType":"address","name":"pairingToken_","type":"address"},{"internalType":"address","name":"lp","type":"address"}],"name":"configurePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"unlockBotTime","type":"uint256"}],"name":"lockBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lockedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"openSender","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairingToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restrictionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"restrictionGas","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"restrictionLiftTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setLaunchPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setRestrictionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setRestrictionGas","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":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"sweepERC20Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockMultiple","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b50604051620036693803806200366983398101604081905262000034916200043a565b6b204fce5e3e250261100000008686818181600590805190602001906200005d929190620002e1565b50805162000073906006906020840190620002e1565b50506015805460ff19169055506200008d60003362000165565b620000b97f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63362000165565b620000e57f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3362000165565b5050600081116200013c5760405162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015260640160405180910390fd5b6080526200015984848484620001a8602090811b620012e717901c565b50505050505062000519565b6200017c8282620001bf60201b620012fe1760201c565b6000828152600160209081526040909120620001a391839062001308620001cf821b17901c565b505050565b600b92909255600c92909255601391909155601455565b620001cb8282620001ef565b5050565b6000620001e6836001600160a01b0384166200028f565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620001cb576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200024b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054620002d857508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620001e9565b506000620001e9565b828054620002ef90620004c6565b90600052602060002090601f0160209004810192826200031357600085556200035e565b82601f106200032e57805160ff19168380011785556200035e565b828001600101855582156200035e579182015b828111156200035e57825182559160200191906001019062000341565b506200036c92915062000370565b5090565b5b808211156200036c576000815560010162000371565b600082601f83011262000398578081fd5b81516001600160401b0380821115620003b557620003b562000503565b604051601f8301601f19908116603f01168101908282118183101715620003e057620003e062000503565b81604052838152602092508683858801011115620003fc578485fd5b8491505b838210156200041f578582018301518183018401529082019062000400565b838211156200043057848385830101525b9695505050505050565b60008060008060008060c0878903121562000453578182fd5b86516001600160401b03808211156200046a578384fd5b620004788a838b0162000387565b975060208901519150808211156200048e578384fd5b506200049d89828a0162000387565b95505060408701519350606087015192506080870151915060a087015190509295509295509295565b600181811c90821680620004db57607f821691505b60208210811415620004fd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805161312662000543600039600081816104c501528181611891015261277d01526131266000f3fe608060405234801561001057600080fd5b506004361061036d5760003560e01c80638456cb59116101d3578063a8180f9f11610104578063d547741f116100a2578063e63ab1e91161007c578063e63ab1e914610803578063ef6318bf1461082a578063f039da5014610833578063f2f827121461083c57600080fd5b8063d547741f146107a4578063dd62ed3e146107b7578063e1756218146107f057600080fd5b8063b8158d60116100de578063b8158d601461074e578063ca15c87314610757578063cf607eaa1461076a578063d53913931461077d57600080fd5b8063a8180f9f14610715578063a9059cbb14610728578063b697f5311461073b57600080fd5b80639dc29fac11610171578063a217fddf1161014b578063a217fddf146106b7578063a457c2d7146106bf578063a4beda63146106d2578063a62b48ce146106f257600080fd5b80639dc29fac14610671578063a153e70814610684578063a1d4958c146106a457600080fd5b80638faac4c9116101ad5780638faac4c9146106165780639010d07c1461061f57806391d148541461063257806395d89b411461066957600080fd5b80638456cb59146105fd578063893d20e8146106055780638deed2431461060d57600080fd5b8063355274ea116102ad57806350993f3e1161024b5780636c0b3e46116102255780636c0b3e46146105a557806370a08231146105ae5780637521b7c2146105d757806379cc6790146105ea57600080fd5b806350993f3e146105605780635c975abb146105735780635f82abb91461057e57600080fd5b80633af32abf116102875780633af32abf1461050f5780633f4ba83a1461053257806340c10f191461053a57806342966c681461054d57600080fd5b8063355274ea146104c357806336568abe146104e957806339509351146104fc57600080fd5b806323b872dd1161031a578063282c51f3116102f4578063282c51f3146104655780632f2ff15d1461048c578063313ce567146104a157806332cb6b0c146104b057600080fd5b806323b872dd1461040457806323be42ed14610417578063248a9ca31461044257600080fd5b80630ccb07621161034b5780630ccb0762146103c257806310785ef8146103d957806318160ddd146103fc57600080fd5b806301ffc9a71461037257806306fdde031461039a578063095ea7b3146103af575b600080fd5b610385610380366004612e3d565b61084f565b60405190151581526020015b60405180910390f35b6103a26108ab565b6040516103919190612f16565b6103856103bd366004612d99565b61093d565b6103cb60135481565b604051908152602001610391565b6103856103e7366004612cd0565b600f6020526000908152604090205460ff1681565b6004546103cb565b610385610412366004612d5e565b610953565b60075461042a906001600160a01b031681565b6040516001600160a01b039091168152602001610391565b6103cb610450366004612de2565b60009081526020819052604090206001015490565b6103cb7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61049f61049a366004612dfa565b610a17565b005b60405160128152602001610391565b6103cb6b204fce5e3e2502611000000081565b7f00000000000000000000000000000000000000000000000000000000000000006103cb565b61049f6104f7366004612dfa565b610a3e565b61038561050a366004612d99565b610a60565b61038561051d366004612cd0565b600e6020526000908152604090205460ff1681565b61049f610a9c565b61049f610548366004612d99565b610b42565b61049f61055b366004612de2565b610bec565b61049f61056e366004612d99565b610bf9565b60155460ff16610385565b6103cb7f8aef0597c0be1e090afba1f387ee99f604b5d975ccbed6215cdf146ffd5c49fc81565b6103cb60145481565b6103cb6105bc366004612cd0565b6001600160a01b031660009081526002602052604090205490565b61049f6105e5366004612de2565b610c22565b61049f6105f8366004612d99565b610c34565b61049f610cce565b61042a610d72565b6103cb600b5481565b6103cb600d5481565b61042a61062d366004612e1c565b610d97565b610385610640366004612dfa565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6103a2610db6565b61049f61067f366004612d99565b610dc5565b6103cb610692366004612cd0565b60126020526000908152604090205481565b60085461042a906001600160a01b031681565b6103cb600081565b6103856106cd366004612d99565b610e6b565b6103cb6106e0366004612cd0565b60116020526000908152604090205481565b610385610700366004612cd0565b60106020526000908152604090205460ff1681565b61049f610723366004612d1c565b610f1c565b610385610736366004612d99565b6110a7565b61049f610749366004612cd0565b6110b4565b6103cb60095481565b6103cb610765366004612de2565b6110e5565b61049f610778366004612de2565b6110fc565b6103cb7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61049f6107b2366004612dfa565b61110e565b6103cb6107c5366004612cea565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61049f6107fe366004612cea565b611118565b6103cb7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6103cb600a5481565b6103cb600c5481565b61049f61084a366004612de2565b6112d5565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f5a05180f0000000000000000000000000000000000000000000000000000000014806108a557506108a58261131d565b92915050565b6060600580546108ba9061306d565b80601f01602080910402602001604051908101604052809291908181526020018280546108e69061306d565b80156109335780601f1061090857610100808354040283529160200191610933565b820191906000526020600020905b81548152906001019060200180831161091657829003601f168201915b5050505050905090565b600061094a3384846113b4565b50600192915050565b600061096084848461150c565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156109ff5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610a0c85338584036113b4565b506001949350505050565b610a218282611730565b6000828152600160205260409020610a399082611308565b505050565b610a488282611756565b6000828152600160205260409020610a3990826117de565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161094a918590610a97908690612f67565b6113b4565b610ac67f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610640565b610b385760405162461bcd60e51b815260206004820152603960248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20756e70617573650000000000000060648201526084016109f6565b610b406117f3565b565b610b6c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610640565b610bde5760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f7665206d696e74657220726f6c6520746f206d696e740000000000000000000060648201526084016109f6565b610be8828261188f565b5050565b610bf6338261191c565b50565b6000610c058133611aad565b506001600160a01b03909116600090815260116020526040902055565b6000610c2e8133611aad565b50600c55565b6000610c4083336107c5565b905081811015610cb75760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016109f6565b610cc483338484036113b4565b610a39838361191c565b610cf87f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610640565b610d6a5760405162461bcd60e51b815260206004820152603760248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20706175736500000000000000000060648201526084016109f6565b610b40611b49565b6000610d7d816110e5565b610d875750600090565b610d92600080610d97565b905090565b6000828152600160205260408120610daf9083611bd1565b9392505050565b6060600680546108ba9061306d565b610def7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610640565b610e615760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365746d696e7465725061757365723a206d75737420686160448201527f7665206275726e657220726f6c6520746f206275726e0000000000000000000060648201526084016109f6565b610be8828261191c565b3360009081526003602090815260408083206001600160a01b038616845290915281205482811015610f055760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016109f6565b610f1233858584036113b4565b5060019392505050565b6000610f288133611aad565b6001600160a01b038416610f7e5760405162461bcd60e51b815260206004820152601360248201527f726f75746572206164647265737320697320300000000000000000000000000060448201526064016109f6565b6001600160a01b038316610fd45760405162461bcd60e51b815260206004820152601460248201527f666163746f72792061646472657373206973203000000000000000000000000060448201526064016109f6565b6001600160a01b03821661102a5760405162461bcd60e51b815260206004820152601760248201527f6c6175636820706f6f6c2061646472657373206973203000000000000000000060448201526064016109f6565b50600780547fffffffffffffffffffffffff00000000000000000000000000000000000000009081166001600160a01b0394851617909155600880549091169183169190911781559181166000908152600e6020526040808220805460ff1990811660019081179092559454909316825290208054909216179055565b600061094a33848461150c565b60006110c08133611aad565b506001600160a01b03166000908152600f60205260409020805460ff19166001179055565b60008181526001602052604081206108a590611bdd565b60006111088133611aad565b50600d55565b610a488282611be7565b7f8aef0597c0be1e090afba1f387ee99f604b5d975ccbed6215cdf146ffd5c49fc6111438133611aad565b6001600160a01b03831630141561119c5760405162461bcd60e51b815260206004820152600560248201527f217361666500000000000000000000000000000000000000000000000000000060448201526064016109f6565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015283906001600160a01b0382169063a9059cbb90859083906370a082319060240160206040518083038186803b15801561120057600080fd5b505afa158015611214573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112389190612e7d565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561129657600080fd5b505af11580156112aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ce9190612dc2565b5050505050565b60006112e18133611aad565b50600b55565b600b92909255600c92909255601391909155601455565b610be88282611c0d565b6000610daf836001600160a01b038416611cab565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b0000000000000000000000000000000000000000000000000000000014806108a557507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108a5565b6001600160a01b03831661142f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b0382166114ab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115885760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b0382166116045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016109f6565b61160f838383611cfa565b6001600160a01b0383166000908152600260205260409020548181101561169e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b038085166000908152600260205260408082208585039055918516815290812080548492906116d5908490612f67565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161172191815260200190565b60405180910390a35b50505050565b60008281526020819052604090206001015461174c8133611aad565b610a398383611c0d565b6001600160a01b03811633146117d45760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016109f6565b610be88282612594565b6000610daf836001600160a01b038416612613565b60155460ff166118455760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016109f6565b6015805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b7f0000000000000000000000000000000000000000000000000000000000000000816118ba60045490565b6118c49190612f67565b11156119125760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016109f6565b610be8828261277b565b6001600160a01b0382166119985760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6119a482600083611cfa565b6001600160a01b03821660009081526002602052604090205481811015611a335760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b0383166000908152600260205260408120838303905560048054849290611a62908490612ff5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16610be857611ae9816001600160a01b03166014612808565b611af4836020612808565b604051602001611b05929190612e95565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905262461bcd60e51b82526109f691600401612f16565b60155460ff1615611b9c5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016109f6565b6015805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118723390565b6000610daf8383612af4565b60006108a5825490565b600082815260208190526040902060010154611c038133611aad565b610a398383612594565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16610be8576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611c673390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054611cf2575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108a5565b5060006108a5565b6008548390839083906001600160a01b03161561258157600954611db0576001600160a01b0383166000908152600f602052604090205460ff16611d805760405162461bcd60e51b815260206004820152601c60248201527f56544b4e3a207472616e7366657273206172652064697361626c65640000000060448201526064016109f6565b6008546001600160a01b0383811691161415611dab57426009819055611da79060b4612f67565b600a555b612581565b426009541415611e025760405162461bcd60e51b815260206004820152601d60248201527f56544b4e3a206e6f207472616e73616374696f6e7320616c6c6f77656400000060448201526064016109f6565b42600954108015611e14575042600a54115b156124be57600b54811115611e915760405162461bcd60e51b815260206004820152602360248201527f56544b4e3a20616d6f756e742067726561746572207468616e206d6178206c6960448201527f6d6974000000000000000000000000000000000000000000000000000000000060648201526084016109f6565b600c543a1115611ee35760405162461bcd60e51b815260206004820152601b60248201527f56544b4e3a206761732070726963652061626f7665206c696d6974000000000060448201526064016109f6565b6001600160a01b0383166000908152600e602052604090205460ff16158015611f2557506001600160a01b0382166000908152600e602052604090205460ff16155b15612044576001600160a01b03831660009081526010602052604090205460ff16158015611f6c57506001600160a01b03821660009081526010602052604090205460ff16155b8015611f8857503260009081526010602052604090205460ff16155b611ff95760405162461bcd60e51b8152602060048201526024808201527f56544b4e3a206f6e6c79206f6e6520747820696e20726573747269637465642060448201527f74696d650000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b038381166000908152601060205260408082208054600160ff1991821681179092559386168352818320805485168217905532835291208054909216179055612250565b6001600160a01b0382166000908152600e602052604090205460ff1661214c576001600160a01b03821660009081526010602052604090205460ff1615801561209d57503260009081526010602052604090205460ff16155b61210e5760405162461bcd60e51b8152602060048201526024808201527f56544b4e3a206f6e6c79206f6e6520747820696e20726573747269637465642060448201527f74696d650000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b0382166000908152601060205260408082208054600160ff1991821681179092553284529190922080549091169091179055612250565b6001600160a01b0383166000908152600e602052604090205460ff16612250576001600160a01b03831660009081526010602052604090205460ff161580156121a557503260009081526010602052604090205460ff16155b6122165760405162461bcd60e51b8152602060048201526024808201527f56544b4e3a206f6e6c79206f6e6520747820696e20726573747269637465642060448201527f74696d650000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b0383166000908152601060205260408082208054600160ff19918216811790925532845291909220805490911690911790555b6008546001600160a01b0384811691161415611dab576001600160a01b0382166000908152600e602052604090205460ff168061229c5750336000908152600e602052604090205460ff165b61230e5760405162461bcd60e51b815260206004820152602160248201527f56544b4e3a206f6e6c7920756e697377617020726f7574657220616c6c6f776560448201527f640000000000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6007546008546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015260009291909116906370a082319060240160206040518083038186803b15801561237357600080fd5b505afa158015612387573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123ab9190612e7d565b6008546001600160a01b0316600090815260026020526040812054600d54929350916123d79083612fb8565b6123e984670de0b6b3a7640000612fb8565b6123f5906103e8612fb8565b6123ff9190612f7f565b90506013546103e86124119190612fb8565b8110156124b657601354612427906103e8612fb8565b816014546124359190612fb8565b61243f9190612f7f565b60145461244c9042612f67565b6124569190612ff5565b6001600160a01b03861660009081526011602052604090205560135461247e906103e8612fb8565b6124888286612fb8565b6124929190612f7f565b61249c9085612ff5565b6001600160a01b0386166000908152601260205260409020555b505050612581565b6001600160a01b0383166000908152600e602052604090205460ff161580156124ff57506001600160a01b0383166000908152601160205260409020544211155b15612581576001600160a01b0383166000908152600260209081526040808320546012909252909120546125339083612f67565b11156125815760405162461bcd60e51b815260206004820152601460248201527f56544b4e3a206c6f636b65642062616c616e636500000000000000000000000060448201526064016109f6565b61258c868686612b45565b505050505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1615610be8576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015612771576000612637600183612ff5565b855490915060009061264b90600190612ff5565b90508181146126fe576000866000018281548110612692577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050808760000184815481106126dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612736577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506108a5565b60009150506108a5565b7f0000000000000000000000000000000000000000000000000000000000000000816127a660045490565b6127b09190612f67565b11156127fe5760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016109f6565b610be88282612b50565b60606000612817836002612fb8565b612822906002612f67565b67ffffffffffffffff811115612861577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561288b576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106128e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612973577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006129af846002612fb8565b6129ba906001612f67565b90505b6001811115612aa5577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110612a22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612a5f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93612a9e81613038565b90506129bd565b508315610daf5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016109f6565b6000826000018281548110612b32577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b610a39838383612c3b565b6001600160a01b038216612ba65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016109f6565b612bb260008383611cfa565b8060046000828254612bc49190612f67565b90915550506001600160a01b03821660009081526002602052604081208054839290612bf1908490612f67565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60155460ff1615610a395760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e7366657220776860448201527f696c65207061757365640000000000000000000000000000000000000000000060648201526084016109f6565b80356001600160a01b0381168114612ccb57600080fd5b919050565b600060208284031215612ce1578081fd5b610daf82612cb4565b60008060408385031215612cfc578081fd5b612d0583612cb4565b9150612d1360208401612cb4565b90509250929050565b600080600060608486031215612d30578081fd5b612d3984612cb4565b9250612d4760208501612cb4565b9150612d5560408501612cb4565b90509250925092565b600080600060608486031215612d72578283fd5b612d7b84612cb4565b9250612d8960208501612cb4565b9150604084013590509250925092565b60008060408385031215612dab578182fd5b612db483612cb4565b946020939093013593505050565b600060208284031215612dd3578081fd5b81518015158114610daf578182fd5b600060208284031215612df3578081fd5b5035919050565b60008060408385031215612e0c578182fd5b82359150612d1360208401612cb4565b60008060408385031215612e2e578182fd5b50508035926020909101359150565b600060208284031215612e4e578081fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114610daf578182fd5b600060208284031215612e8e578081fd5b5051919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612ecd81601785016020880161300c565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351612f0a81602884016020880161300c565b01602801949350505050565b6020815260008251806020840152612f3581604085016020870161300c565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008219821115612f7a57612f7a6130c1565b500190565b600082612fb3577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ff057612ff06130c1565b500290565b600082821015613007576130076130c1565b500390565b60005b8381101561302757818101518382015260200161300f565b8381111561172a5750506000910152565b600081613047576130476130c1565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c9082168061308157607f821691505b602082108114156130bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea264697066735822122044e1d8e5106178c404d56ca902c37a3c6cda579992ed64b170962fe18d67cd7764736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000746a5288000000000000000000000000000000000000000000000422ca8b0a00a425000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000d2f000000000000000000000000000000000000000000000000000000000000000017466c7572727920476f7665726e616e636520546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000006464c555252590000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061036d5760003560e01c80638456cb59116101d3578063a8180f9f11610104578063d547741f116100a2578063e63ab1e91161007c578063e63ab1e914610803578063ef6318bf1461082a578063f039da5014610833578063f2f827121461083c57600080fd5b8063d547741f146107a4578063dd62ed3e146107b7578063e1756218146107f057600080fd5b8063b8158d60116100de578063b8158d601461074e578063ca15c87314610757578063cf607eaa1461076a578063d53913931461077d57600080fd5b8063a8180f9f14610715578063a9059cbb14610728578063b697f5311461073b57600080fd5b80639dc29fac11610171578063a217fddf1161014b578063a217fddf146106b7578063a457c2d7146106bf578063a4beda63146106d2578063a62b48ce146106f257600080fd5b80639dc29fac14610671578063a153e70814610684578063a1d4958c146106a457600080fd5b80638faac4c9116101ad5780638faac4c9146106165780639010d07c1461061f57806391d148541461063257806395d89b411461066957600080fd5b80638456cb59146105fd578063893d20e8146106055780638deed2431461060d57600080fd5b8063355274ea116102ad57806350993f3e1161024b5780636c0b3e46116102255780636c0b3e46146105a557806370a08231146105ae5780637521b7c2146105d757806379cc6790146105ea57600080fd5b806350993f3e146105605780635c975abb146105735780635f82abb91461057e57600080fd5b80633af32abf116102875780633af32abf1461050f5780633f4ba83a1461053257806340c10f191461053a57806342966c681461054d57600080fd5b8063355274ea146104c357806336568abe146104e957806339509351146104fc57600080fd5b806323b872dd1161031a578063282c51f3116102f4578063282c51f3146104655780632f2ff15d1461048c578063313ce567146104a157806332cb6b0c146104b057600080fd5b806323b872dd1461040457806323be42ed14610417578063248a9ca31461044257600080fd5b80630ccb07621161034b5780630ccb0762146103c257806310785ef8146103d957806318160ddd146103fc57600080fd5b806301ffc9a71461037257806306fdde031461039a578063095ea7b3146103af575b600080fd5b610385610380366004612e3d565b61084f565b60405190151581526020015b60405180910390f35b6103a26108ab565b6040516103919190612f16565b6103856103bd366004612d99565b61093d565b6103cb60135481565b604051908152602001610391565b6103856103e7366004612cd0565b600f6020526000908152604090205460ff1681565b6004546103cb565b610385610412366004612d5e565b610953565b60075461042a906001600160a01b031681565b6040516001600160a01b039091168152602001610391565b6103cb610450366004612de2565b60009081526020819052604090206001015490565b6103cb7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b61049f61049a366004612dfa565b610a17565b005b60405160128152602001610391565b6103cb6b204fce5e3e2502611000000081565b7f0000000000000000000000000000000000000000204fce5e3e250261100000006103cb565b61049f6104f7366004612dfa565b610a3e565b61038561050a366004612d99565b610a60565b61038561051d366004612cd0565b600e6020526000908152604090205460ff1681565b61049f610a9c565b61049f610548366004612d99565b610b42565b61049f61055b366004612de2565b610bec565b61049f61056e366004612d99565b610bf9565b60155460ff16610385565b6103cb7f8aef0597c0be1e090afba1f387ee99f604b5d975ccbed6215cdf146ffd5c49fc81565b6103cb60145481565b6103cb6105bc366004612cd0565b6001600160a01b031660009081526002602052604090205490565b61049f6105e5366004612de2565b610c22565b61049f6105f8366004612d99565b610c34565b61049f610cce565b61042a610d72565b6103cb600b5481565b6103cb600d5481565b61042a61062d366004612e1c565b610d97565b610385610640366004612dfa565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6103a2610db6565b61049f61067f366004612d99565b610dc5565b6103cb610692366004612cd0565b60126020526000908152604090205481565b60085461042a906001600160a01b031681565b6103cb600081565b6103856106cd366004612d99565b610e6b565b6103cb6106e0366004612cd0565b60116020526000908152604090205481565b610385610700366004612cd0565b60106020526000908152604090205460ff1681565b61049f610723366004612d1c565b610f1c565b610385610736366004612d99565b6110a7565b61049f610749366004612cd0565b6110b4565b6103cb60095481565b6103cb610765366004612de2565b6110e5565b61049f610778366004612de2565b6110fc565b6103cb7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61049f6107b2366004612dfa565b61110e565b6103cb6107c5366004612cea565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61049f6107fe366004612cea565b611118565b6103cb7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6103cb600a5481565b6103cb600c5481565b61049f61084a366004612de2565b6112d5565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f5a05180f0000000000000000000000000000000000000000000000000000000014806108a557506108a58261131d565b92915050565b6060600580546108ba9061306d565b80601f01602080910402602001604051908101604052809291908181526020018280546108e69061306d565b80156109335780601f1061090857610100808354040283529160200191610933565b820191906000526020600020905b81548152906001019060200180831161091657829003601f168201915b5050505050905090565b600061094a3384846113b4565b50600192915050565b600061096084848461150c565b6001600160a01b0384166000908152600360209081526040808320338452909152902054828110156109ff5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610a0c85338584036113b4565b506001949350505050565b610a218282611730565b6000828152600160205260409020610a399082611308565b505050565b610a488282611756565b6000828152600160205260409020610a3990826117de565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161094a918590610a97908690612f67565b6113b4565b610ac67f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610640565b610b385760405162461bcd60e51b815260206004820152603960248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20756e70617573650000000000000060648201526084016109f6565b610b406117f3565b565b610b6c7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610640565b610bde5760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f7665206d696e74657220726f6c6520746f206d696e740000000000000000000060648201526084016109f6565b610be8828261188f565b5050565b610bf6338261191c565b50565b6000610c058133611aad565b506001600160a01b03909116600090815260116020526040902055565b6000610c2e8133611aad565b50600c55565b6000610c4083336107c5565b905081811015610cb75760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016109f6565b610cc483338484036113b4565b610a39838361191c565b610cf87f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33610640565b610d6a5760405162461bcd60e51b815260206004820152603760248201527f45524332305072657365744d696e7465725061757365723a206d75737420686160448201527f76652070617573657220726f6c6520746f20706175736500000000000000000060648201526084016109f6565b610b40611b49565b6000610d7d816110e5565b610d875750600090565b610d92600080610d97565b905090565b6000828152600160205260408120610daf9083611bd1565b9392505050565b6060600680546108ba9061306d565b610def7f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84833610640565b610e615760405162461bcd60e51b815260206004820152603660248201527f45524332305072657365746d696e7465725061757365723a206d75737420686160448201527f7665206275726e657220726f6c6520746f206275726e0000000000000000000060648201526084016109f6565b610be8828261191c565b3360009081526003602090815260408083206001600160a01b038616845290915281205482811015610f055760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016109f6565b610f1233858584036113b4565b5060019392505050565b6000610f288133611aad565b6001600160a01b038416610f7e5760405162461bcd60e51b815260206004820152601360248201527f726f75746572206164647265737320697320300000000000000000000000000060448201526064016109f6565b6001600160a01b038316610fd45760405162461bcd60e51b815260206004820152601460248201527f666163746f72792061646472657373206973203000000000000000000000000060448201526064016109f6565b6001600160a01b03821661102a5760405162461bcd60e51b815260206004820152601760248201527f6c6175636820706f6f6c2061646472657373206973203000000000000000000060448201526064016109f6565b50600780547fffffffffffffffffffffffff00000000000000000000000000000000000000009081166001600160a01b0394851617909155600880549091169183169190911781559181166000908152600e6020526040808220805460ff1990811660019081179092559454909316825290208054909216179055565b600061094a33848461150c565b60006110c08133611aad565b506001600160a01b03166000908152600f60205260409020805460ff19166001179055565b60008181526001602052604081206108a590611bdd565b60006111088133611aad565b50600d55565b610a488282611be7565b7f8aef0597c0be1e090afba1f387ee99f604b5d975ccbed6215cdf146ffd5c49fc6111438133611aad565b6001600160a01b03831630141561119c5760405162461bcd60e51b815260206004820152600560248201527f217361666500000000000000000000000000000000000000000000000000000060448201526064016109f6565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015283906001600160a01b0382169063a9059cbb90859083906370a082319060240160206040518083038186803b15801561120057600080fd5b505afa158015611214573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112389190612e7d565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b15801561129657600080fd5b505af11580156112aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ce9190612dc2565b5050505050565b60006112e18133611aad565b50600b55565b600b92909255600c92909255601391909155601455565b610be88282611c0d565b6000610daf836001600160a01b038416611cab565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b0000000000000000000000000000000000000000000000000000000014806108a557507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108a5565b6001600160a01b03831661142f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b0382166114ab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115885760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b0382166116045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016109f6565b61160f838383611cfa565b6001600160a01b0383166000908152600260205260409020548181101561169e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b038085166000908152600260205260408082208585039055918516815290812080548492906116d5908490612f67565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161172191815260200190565b60405180910390a35b50505050565b60008281526020819052604090206001015461174c8133611aad565b610a398383611c0d565b6001600160a01b03811633146117d45760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016109f6565b610be88282612594565b6000610daf836001600160a01b038416612613565b60155460ff166118455760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016109f6565b6015805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b7f0000000000000000000000000000000000000000204fce5e3e25026110000000816118ba60045490565b6118c49190612f67565b11156119125760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016109f6565b610be8828261277b565b6001600160a01b0382166119985760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6119a482600083611cfa565b6001600160a01b03821660009081526002602052604090205481811015611a335760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b0383166000908152600260205260408120838303905560048054849290611a62908490612ff5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16610be857611ae9816001600160a01b03166014612808565b611af4836020612808565b604051602001611b05929190612e95565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905262461bcd60e51b82526109f691600401612f16565b60155460ff1615611b9c5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016109f6565b6015805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118723390565b6000610daf8383612af4565b60006108a5825490565b600082815260208190526040902060010154611c038133611aad565b610a398383612594565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16610be8576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611c673390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054611cf2575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108a5565b5060006108a5565b6008548390839083906001600160a01b03161561258157600954611db0576001600160a01b0383166000908152600f602052604090205460ff16611d805760405162461bcd60e51b815260206004820152601c60248201527f56544b4e3a207472616e7366657273206172652064697361626c65640000000060448201526064016109f6565b6008546001600160a01b0383811691161415611dab57426009819055611da79060b4612f67565b600a555b612581565b426009541415611e025760405162461bcd60e51b815260206004820152601d60248201527f56544b4e3a206e6f207472616e73616374696f6e7320616c6c6f77656400000060448201526064016109f6565b42600954108015611e14575042600a54115b156124be57600b54811115611e915760405162461bcd60e51b815260206004820152602360248201527f56544b4e3a20616d6f756e742067726561746572207468616e206d6178206c6960448201527f6d6974000000000000000000000000000000000000000000000000000000000060648201526084016109f6565b600c543a1115611ee35760405162461bcd60e51b815260206004820152601b60248201527f56544b4e3a206761732070726963652061626f7665206c696d6974000000000060448201526064016109f6565b6001600160a01b0383166000908152600e602052604090205460ff16158015611f2557506001600160a01b0382166000908152600e602052604090205460ff16155b15612044576001600160a01b03831660009081526010602052604090205460ff16158015611f6c57506001600160a01b03821660009081526010602052604090205460ff16155b8015611f8857503260009081526010602052604090205460ff16155b611ff95760405162461bcd60e51b8152602060048201526024808201527f56544b4e3a206f6e6c79206f6e6520747820696e20726573747269637465642060448201527f74696d650000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b038381166000908152601060205260408082208054600160ff1991821681179092559386168352818320805485168217905532835291208054909216179055612250565b6001600160a01b0382166000908152600e602052604090205460ff1661214c576001600160a01b03821660009081526010602052604090205460ff1615801561209d57503260009081526010602052604090205460ff16155b61210e5760405162461bcd60e51b8152602060048201526024808201527f56544b4e3a206f6e6c79206f6e6520747820696e20726573747269637465642060448201527f74696d650000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b0382166000908152601060205260408082208054600160ff1991821681179092553284529190922080549091169091179055612250565b6001600160a01b0383166000908152600e602052604090205460ff16612250576001600160a01b03831660009081526010602052604090205460ff161580156121a557503260009081526010602052604090205460ff16155b6122165760405162461bcd60e51b8152602060048201526024808201527f56544b4e3a206f6e6c79206f6e6520747820696e20726573747269637465642060448201527f74696d650000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6001600160a01b0383166000908152601060205260408082208054600160ff19918216811790925532845291909220805490911690911790555b6008546001600160a01b0384811691161415611dab576001600160a01b0382166000908152600e602052604090205460ff168061229c5750336000908152600e602052604090205460ff165b61230e5760405162461bcd60e51b815260206004820152602160248201527f56544b4e3a206f6e6c7920756e697377617020726f7574657220616c6c6f776560448201527f640000000000000000000000000000000000000000000000000000000000000060648201526084016109f6565b6007546008546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015260009291909116906370a082319060240160206040518083038186803b15801561237357600080fd5b505afa158015612387573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123ab9190612e7d565b6008546001600160a01b0316600090815260026020526040812054600d54929350916123d79083612fb8565b6123e984670de0b6b3a7640000612fb8565b6123f5906103e8612fb8565b6123ff9190612f7f565b90506013546103e86124119190612fb8565b8110156124b657601354612427906103e8612fb8565b816014546124359190612fb8565b61243f9190612f7f565b60145461244c9042612f67565b6124569190612ff5565b6001600160a01b03861660009081526011602052604090205560135461247e906103e8612fb8565b6124888286612fb8565b6124929190612f7f565b61249c9085612ff5565b6001600160a01b0386166000908152601260205260409020555b505050612581565b6001600160a01b0383166000908152600e602052604090205460ff161580156124ff57506001600160a01b0383166000908152601160205260409020544211155b15612581576001600160a01b0383166000908152600260209081526040808320546012909252909120546125339083612f67565b11156125815760405162461bcd60e51b815260206004820152601460248201527f56544b4e3a206c6f636b65642062616c616e636500000000000000000000000060448201526064016109f6565b61258c868686612b45565b505050505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1615610be8576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015612771576000612637600183612ff5565b855490915060009061264b90600190612ff5565b90508181146126fe576000866000018281548110612692577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050808760000184815481106126dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b8554869080612736577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506108a5565b60009150506108a5565b7f0000000000000000000000000000000000000000204fce5e3e25026110000000816127a660045490565b6127b09190612f67565b11156127fe5760405162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a206361702065786365656465640000000000000060448201526064016109f6565b610be88282612b50565b60606000612817836002612fb8565b612822906002612f67565b67ffffffffffffffff811115612861577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561288b576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106128e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612973577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006129af846002612fb8565b6129ba906001612f67565b90505b6001811115612aa5577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110612a22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612a5f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93612a9e81613038565b90506129bd565b508315610daf5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016109f6565b6000826000018281548110612b32577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b610a39838383612c3b565b6001600160a01b038216612ba65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016109f6565b612bb260008383611cfa565b8060046000828254612bc49190612f67565b90915550506001600160a01b03821660009081526002602052604081208054839290612bf1908490612f67565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60155460ff1615610a395760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e7366657220776860448201527f696c65207061757365640000000000000000000000000000000000000000000060648201526084016109f6565b80356001600160a01b0381168114612ccb57600080fd5b919050565b600060208284031215612ce1578081fd5b610daf82612cb4565b60008060408385031215612cfc578081fd5b612d0583612cb4565b9150612d1360208401612cb4565b90509250929050565b600080600060608486031215612d30578081fd5b612d3984612cb4565b9250612d4760208501612cb4565b9150612d5560408501612cb4565b90509250925092565b600080600060608486031215612d72578283fd5b612d7b84612cb4565b9250612d8960208501612cb4565b9150604084013590509250925092565b60008060408385031215612dab578182fd5b612db483612cb4565b946020939093013593505050565b600060208284031215612dd3578081fd5b81518015158114610daf578182fd5b600060208284031215612df3578081fd5b5035919050565b60008060408385031215612e0c578182fd5b82359150612d1360208401612cb4565b60008060408385031215612e2e578182fd5b50508035926020909101359150565b600060208284031215612e4e578081fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114610daf578182fd5b600060208284031215612e8e578081fd5b5051919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612ecd81601785016020880161300c565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351612f0a81602884016020880161300c565b01602801949350505050565b6020815260008251806020840152612f3581604085016020870161300c565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008219821115612f7a57612f7a6130c1565b500190565b600082612fb3577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ff057612ff06130c1565b500290565b600082821015613007576130076130c1565b500390565b60005b8381101561302757818101518382015260200161300f565b8381111561172a5750506000910152565b600081613047576130476130c1565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600181811c9082168061308157607f821691505b602082108114156130bb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea264697066735822122044e1d8e5106178c404d56ca902c37a3c6cda579992ed64b170962fe18d67cd7764736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000746a5288000000000000000000000000000000000000000000000422ca8b0a00a425000000000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000d2f000000000000000000000000000000000000000000000000000000000000000017466c7572727920476f7665726e616e636520546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000006464c555252590000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Flurry Governance Token
Arg [1] : symbol (string): FLURRY
Arg [2] : _restrictionGas (uint256): 500000000000
Arg [3] : _restrictionAmount (uint256): 5000000000000000000000000
Arg [4] : _unlockMultiple (uint256): 5
Arg [5] : _maxLock (uint256): 864000
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 000000000000000000000000000000000000000000000000000000746a528800
Arg [3] : 0000000000000000000000000000000000000000000422ca8b0a00a425000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 00000000000000000000000000000000000000000000000000000000000d2f00
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [7] : 466c7572727920476f7665726e616e636520546f6b656e000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 464c555252590000000000000000000000000000000000000000000000000000
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.