ERC-20
DEX
Overview
Max Total Supply
400,000,000 SNOW
Holders
881 (0.00%)
Market
Price
$0.0002 @ 0.000351 POL
Onchain Market Cap
$95,048.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.454454732062267555 SNOWValue
$0.00 ( ~0 POL) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x7DbDb74b...00ccA9095 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Token
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } pragma solidity >=0.6.0 <0.9.0; /** * @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. */ 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } pragma solidity >=0.6.0 <0.9.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(initializing, "Initializable: contract is not initializing"); _; } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } pragma solidity >=0.6.0 <0.9.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); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity >=0.6.0 <0.9.0; /** * @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 * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Initializable, Context, Ownable, IERC20 { using SafeMath for uint256; //using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name2, string memory symbol2) { _name = name2; _symbol = symbol2; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } } pragma solidity >=0.6.0; // helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false library SafeERC20 { function _safeApprove(IERC20 token, address to, uint value) internal { // bytes4(keccak256(bytes('approve(address,uint256)'))); (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(0x095ea7b3, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), '!APPROVE_FAILED'); } function safeApprove(IERC20 token, address to, uint value) internal { if (value > 0 && token.allowance(msg.sender, to) > 0) _safeApprove(token, to, 0); return _safeApprove(token, to, value); } function safeTransfer(IERC20 token, address to, uint value) internal { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(0xa9059cbb, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), '!TRANSFER_FAILED'); } function safeTransferFrom(IERC20 token, address from, address to, uint value) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(0x23b872dd, from, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), '!TRANSFER_FROM_FAILED'); } function safeTransferETH(address to, uint value) internal { (bool success,) = to.call{value:value}(new bytes(0)); require(success, '!ETH_TRANSFER_FAILED'); } } pragma solidity ^0.8.0; /** * @title TokenVesting * @dev A token holder contract that can release its token balance gradually like a * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the * owner. */ contract TokenVesting { using SafeMath for uint256; using SafeERC20 for IERC20; event Released(uint256 amount); address public beneficiary; uint256 public cliff; uint256 public start; uint256 public duration; mapping(address => uint256) public released; /* * @dev Creates a vesting contract that vests its balance of any ERC20 token to the * _beneficiary, gradually in a linear fashion until _start + _duration. By then all * of the balance will have vested. * @param _beneficiary * @param _cliff duration in seconds of the cliff in which tokens will begin to vest * @param _duration */ constructor( address _beneficiary, uint256 _start, uint256 _cliff, uint256 _duration ) { require(_beneficiary != address(0)); require(_cliff <= _duration); beneficiary = _beneficiary; duration = _duration; cliff = _start.add(_cliff); start = _start; } /** * @notice Transfers vested tokens to beneficiary. * @param token ERC20 token which is being vested */ function release(address token) external { uint256 unreleased = releasableAmount(token); require(unreleased > 0); released[token] = released[token].add(unreleased); IERC20(token).safeTransfer(beneficiary, unreleased); emit Released(unreleased); } /** * @dev Calculates the amount that has already vested but hasn't been released yet. * @param token ERC20 token which is being vested */ function releasableAmount(address token) public view returns (uint256) { return vestedAmount(token).sub(released[token]); } /** * @dev Calculates the amount that has already vested. * @param token ERC20 token which is being vested */ function vestedAmount(address token) public view returns (uint256) { uint256 currentBalance = IERC20(token).balanceOf(address(this)); uint256 totalBalance = currentBalance.add(released[token]); if (block.timestamp < cliff) { return 0; } else if (block.timestamp >= start.add(duration)) { return totalBalance; } else { return totalBalance.mul(block.timestamp.sub(start)).div(duration); } } } pragma solidity ^0.8.0; contract Token is Ownable, ERC20{ TokenVesting public communityLockToken; TokenVesting public treasuryLockToken; TokenVesting public teamLockLockToken; TokenVesting public angelLockToken; TokenVesting public advisorLockToken; bool doOnce; uint256 public constant MAX_SUPPLY = 400e6 * 1e18; constructor(string memory name_, string memory symbol_) Ownable() ERC20(name_,symbol_){ treasuryLockToken = new TokenVesting(msg.sender, block.timestamp + 180 days, 0 days, 300 days); teamLockLockToken = new TokenVesting(msg.sender, block.timestamp + 360 days, 0 days, 300 days); communityLockToken = new TokenVesting(msg.sender, block.timestamp + 90 days, 0 days, 120 days); angelLockToken = new TokenVesting(msg.sender, block.timestamp + 360 days, 0 days, 150 days); advisorLockToken = new TokenVesting(msg.sender, block.timestamp + 180 days, 0 days, 0 days); __mint(msg.sender, MAX_SUPPLY * 25 / 200); __mint(address(treasuryLockToken), MAX_SUPPLY * 15 / 100); __mint(address(teamLockLockToken), MAX_SUPPLY * 5 / 100); __mint(address(communityLockToken), MAX_SUPPLY * 10 / 100); __mint(address(angelLockToken), MAX_SUPPLY * 5 / 100); __mint(address(advisorLockToken), MAX_SUPPLY * 5 / 200); } function mintToFarm(address _farm) external onlyOwner { require(!doOnce, "only can mint once"); doOnce = true; __mint(_farm, MAX_SUPPLY * 5 / 10); } function __mint(address _to, uint256 _amount) internal { _mint(_to, _amount); _moveDelegates(address(0), _to, _amount); } function _transfer(address sender, address recipient, uint256 amount) internal override { ERC20._transfer(sender, recipient, amount); _moveDelegates(sender, recipient, amount); } // notice A record of each accounts delegate mapping (address => address) internal _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegator The address to get delegatee for */ function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode( DELEGATION_TYPEHASH, delegatee, nonce, expiry ) ); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", domainSeparator, structHash ) ); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "FarmToken::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "FarmToken::delegateBySig: invalid nonce"); require(block.timestamp <= expiry, "FarmToken::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) external view returns (uint256) { require(blockNumber < block.number, "FarmToken::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying FarmTokens (not scaled); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld - amount; _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld + amount; _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "FarmToken::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() internal view returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","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":"advisorLockToken","outputs":[{"internalType":"contract TokenVesting","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"angelLockToken","outputs":[{"internalType":"contract TokenVesting","name":"","type":"address"}],"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":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityLockToken","outputs":[{"internalType":"contract TokenVesting","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_farm","type":"address"}],"name":"mintToFarm","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":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamLockLockToken","outputs":[{"internalType":"contract TokenVesting","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryLockToken","outputs":[{"internalType":"contract TokenVesting","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002e4d38038062002e4d833981016040819052620000349162000a96565b603380546001600160a01b031916339081179091556040518391839181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200009090603790602085019062000908565b508051620000a690603890602084019062000908565b50506039805460ff191660121790555033620000c64262ed4e0062000b16565b600063018b8200604051620000db9062000997565b6001600160a01b039094168452602084019290925260408301526060820152608001604051809103906000f0801580156200011a573d6000803e3d6000fd5b50603a80546001600160a01b0319166001600160a01b0392909216919091179055336200014c426301da9c0062000b16565b600063018b8200604051620001619062000997565b6001600160a01b039094168452602084019290925260408301526060820152608001604051809103906000f080158015620001a0573d6000803e3d6000fd5b50603b80546001600160a01b0319166001600160a01b039290921691909117905533620001d1426276a70062000b16565b6000629e3400604051620001e59062000997565b6001600160a01b039094168452602084019290925260408301526060820152608001604051809103906000f08015801562000224573d6000803e3d6000fd5b50603980546001600160a01b039290921661010002610100600160a81b0319909216919091179055336200025d426301da9c0062000b16565b600062c5c100604051620002719062000997565b6001600160a01b039094168452602084019290925260408301526060820152608001604051809103906000f080158015620002b0573d6000803e3d6000fd5b50603c80546001600160a01b0319166001600160a01b039290921691909117905533620002e14262ed4e0062000b16565b600080604051620002f29062000997565b6001600160a01b039094168452602084019290925260408301526060820152608001604051809103906000f08015801562000331573d6000803e3d6000fd5b50603d80546001600160a01b0319166001600160a01b0392909216919091179055620003843360c8620003726b014adf4b7320334b90000000601962000b31565b6200037e919062000b53565b6200046d565b603a54620003b0906001600160a01b03166064620003726b014adf4b7320334b90000000600f62000b31565b603b54620003dc906001600160a01b03166064620003726b014adf4b7320334b90000000600562000b31565b6039546200040d9061010090046001600160a01b03166064620003726b014adf4b7320334b90000000600a62000b31565b603c5462000439906001600160a01b03166064620003726b014adf4b7320334b90000000600562000b31565b603d5462000465906001600160a01b031660c8620003726b014adf4b7320334b90000000600562000b31565b505062000c55565b6200047982826200048b565b620004876000838362000596565b5050565b6001600160a01b038216620004e75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b62000503816036546200071260201b62000eec1790919060201c565b6036556001600160a01b0382166000908152603460209081526040909120546200053891839062000eec62000712821b17901c565b6001600160a01b0383166000818152603460205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200058a9085815260200190565b60405180910390a35050565b816001600160a01b0316836001600160a01b031614158015620005b95750600081115b156200070d576001600160a01b0383161562000666576001600160a01b03831660009081526040602081905281205463ffffffff169081620005fd57600062000642565b6001600160a01b0385166000908152603f60205260408120906200062360018562000b76565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9050600062000652848362000b9e565b9050620006628684848462000727565b5050505b6001600160a01b038216156200070d576001600160a01b03821660009081526040602081905281205463ffffffff169081620006a4576000620006e9565b6001600160a01b0384166000908152603f6020526040812090620006ca60018562000b76565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000620006f9848362000b16565b9050620007098584848462000727565b5050505b505050565b600062000720828462000b16565b9392505050565b60006200074e4360405180606001604052806039815260200162002e1460399139620008d5565b905060008463ffffffff16118015620007ab57506001600160a01b0385166000908152603f6020526040812063ffffffff8316916200078f60018862000b76565b63ffffffff908116825260208201929092526040016000205416145b15620007f8576001600160a01b0385166000908152603f602052604081208391620007d860018862000b76565b63ffffffff1681526020810191909152604001600020600101556200088a565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152603f83528581208a851682529092529390209151825463ffffffff1916911617815590516001918201556200085990859062000bb8565b6001600160a01b0386166000908152604060208190529020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b6000816401000000008410620009005760405162461bcd60e51b8152600401620004de919062000be3565b509192915050565b828054620009169062000c18565b90600052602060002090601f0160209004810192826200093a576000855562000985565b82601f106200095557805160ff191683800117855562000985565b8280016001018555821562000985579182015b828111156200098557825182559160200191906001019062000968565b5062000993929150620009a5565b5090565b6106e4806200273083390190565b5b80821115620009935760008155600101620009a6565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620009ef578181015183820152602001620009d5565b83811115620009ff576000848401525b50505050565b600082601f83011262000a1757600080fd5b81516001600160401b038082111562000a345762000a34620009bc565b604051601f8301601f19908116603f0116810190828211818310171562000a5f5762000a5f620009bc565b8160405283815286602085880101111562000a7957600080fd5b62000a8c846020830160208901620009d2565b9695505050505050565b6000806040838503121562000aaa57600080fd5b82516001600160401b038082111562000ac257600080fd5b62000ad08683870162000a05565b9350602085015191508082111562000ae757600080fd5b5062000af68582860162000a05565b9150509250929050565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000b2c5762000b2c62000b00565b500190565b600081600019048311821515161562000b4e5762000b4e62000b00565b500290565b60008262000b7157634e487b7160e01b600052601260045260246000fd5b500490565b600063ffffffff8381169083168181101562000b965762000b9662000b00565b039392505050565b60008282101562000bb35762000bb362000b00565b500390565b600063ffffffff80831681851680830382111562000bda5762000bda62000b00565b01949350505050565b602081526000825180602084015262000c04816040850160208701620009d2565b601f01601f19169190910160400192915050565b600181811c9082168062000c2d57607f821691505b6020821081141562000c4f57634e487b7160e01b600052602260045260246000fd5b50919050565b611acb8062000c656000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063c3cda520116100a2578063f2fde38b11610071578063f2fde38b14610504578063f5d8702014610517578063f7639b1a1461052a578063f9dd76ff1461053d57600080fd5b8063c3cda5201461043a578063dd62ed3e1461044d578063e7a324dc14610486578063f1127ed8146104ad57600080fd5b806395d89b41116100de57806395d89b41146103f9578063a457c2d714610401578063a9059cbb14610414578063b4b5ea571461042757600080fd5b8063715018a6146103ad578063782d6fe1146103b55780637ecebe00146103c85780638da5cb5b146103e857600080fd5b806339509351116101875780635c19a95c116101565780635c19a95c146103215780636331e9ae146103365780636fcfff451461034957806370a082311461038457600080fd5b8063395093511461029f578063479f1ce9146102b25780634cdae7b6146102e2578063587cde1e146102f557600080fd5b806320606b70116101c357806320606b701461023d57806323b872dd14610264578063313ce5671461027757806332cb6b0c1461028c57600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f2610550565b6040516101ff919061169b565b60405180910390f35b61021b61021636600461170c565b6105e2565b60405190151581526020016101ff565b6036545b6040519081526020016101ff565b61022f7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b61021b610272366004611736565b6105f9565b60395460405160ff90911681526020016101ff565b61022f6b014adf4b7320334b9000000081565b61021b6102ad36600461170c565b610662565b6039546102ca9061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016101ff565b603c546102ca906001600160a01b031681565b6102ca610303366004611772565b6001600160a01b039081166000908152603e60205260409020541690565b61033461032f366004611772565b610698565b005b610334610344366004611772565b6106a5565b61036f610357366004611772565b60406020819052600091825290205463ffffffff1681565b60405163ffffffff90911681526020016101ff565b61022f610392366004611772565b6001600160a01b031660009081526034602052604090205490565b610334610766565b61022f6103c336600461170c565b6107da565b61022f6103d6366004611772565b60416020526000908152604090205481565b6033546001600160a01b03166102ca565b6101f2610a44565b61021b61040f36600461170c565b610a53565b61021b61042236600461170c565b610aa2565b61022f610435366004611772565b610aaf565b61033461044836600461178d565b610b24565b61022f61045b3660046117ed565b6001600160a01b03918216600090815260356020908152604080832093909416825291909152205490565b61022f7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6104e86104bb366004611820565b603f6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff90931683526020830191909152016101ff565b610334610512366004611772565b610e01565b603d546102ca906001600160a01b031681565b603b546102ca906001600160a01b031681565b603a546102ca906001600160a01b031681565b60606037805461055f90611860565b80601f016020809104026020016040519081016040528092919081815260200182805461058b90611860565b80156105d85780601f106105ad576101008083540402835291602001916105d8565b820191906000526020600020905b8154815290600101906020018083116105bb57829003601f168201915b5050505050905090565b60006105ef338484610ef8565b5060015b92915050565b600061060684848461101d565b610658843361065385604051806060016040528060288152602001611a10602891396001600160a01b038a1660009081526035602090815260408083203384529091529020549190611038565b610ef8565b5060019392505050565b3360008181526035602090815260408083206001600160a01b038716845290915281205490916105ef9185906106539086610eec565b6106a23382611064565b50565b6033546001600160a01b031633146106d85760405162461bcd60e51b81526004016106cf9061189b565b60405180910390fd5b603d54600160a01b900460ff16156107275760405162461bcd60e51b81526020600482015260126024820152716f6e6c792063616e206d696e74206f6e636560701b60448201526064016106cf565b603d805460ff60a01b1916600160a01b1790556106a281600a6107576b014adf4b7320334b9000000060056118e6565b610761919061191b565b6110e4565b6033546001600160a01b031633146107905760405162461bcd60e51b81526004016106cf9061189b565b6033546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3603380546001600160a01b0319169055565b60004382106108405760405162461bcd60e51b815260206004820152602c60248201527f4661726d546f6b656e3a3a6765745072696f72566f7465733a206e6f7420796560448201526b1d0819195d195c9b5a5b995960a21b60648201526084016106cf565b6001600160a01b03831660009081526040602081905290205463ffffffff168061086e5760009150506105f3565b6001600160a01b0384166000908152603f60205260408120849161089360018561192f565b63ffffffff908116825260208201929092526040016000205416116108fc576001600160a01b0384166000908152603f60205260408120906108d660018461192f565b63ffffffff1663ffffffff168152602001908152602001600020600101549150506105f3565b6001600160a01b0384166000908152603f6020908152604080832083805290915290205463ffffffff168310156109375760009150506105f3565b60008061094560018461192f565b90505b8163ffffffff168163ffffffff161115610a0d576000600261096a848461192f565b6109749190611954565b61097e908361192f565b6001600160a01b0388166000908152603f6020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529192508714156109e1576020015194506105f39350505050565b805163ffffffff168711156109f857819350610a06565b610a0360018361192f565b92505b5050610948565b506001600160a01b0385166000908152603f6020908152604080832063ffffffff9094168352929052206001015491505092915050565b60606038805461055f90611860565b60006105ef338461065385604051806060016040528060258152602001611a71602591393360009081526035602090815260408083206001600160a01b038d1684529091529020549190611038565b60006105ef33848461101d565b6001600160a01b03811660009081526040602081905281205463ffffffff1680610ada576000610b1d565b6001600160a01b0383166000908152603f6020526040812090610afe60018461192f565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610b4f610550565b80519060200120610b5d4690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610c89573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d005760405162461bcd60e51b815260206004820152602b60248201527f4661726d546f6b656e3a3a64656c656761746542795369673a20696e76616c6960448201526a64207369676e617475726560a81b60648201526084016106cf565b6001600160a01b0381166000908152604160205260408120805491610d2483611977565b919050558914610d865760405162461bcd60e51b815260206004820152602760248201527f4661726d546f6b656e3a3a64656c656761746542795369673a20696e76616c6960448201526664206e6f6e636560c81b60648201526084016106cf565b87421115610dea5760405162461bcd60e51b815260206004820152602b60248201527f4661726d546f6b656e3a3a64656c656761746542795369673a207369676e617460448201526a1d5c9948195e1c1a5c995960aa1b60648201526084016106cf565b610df4818b611064565b505050505b505050505050565b6033546001600160a01b03163314610e2b5760405162461bcd60e51b81526004016106cf9061189b565b6001600160a01b038116610e905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106cf565b6033546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b1d8284611992565b6001600160a01b038316610f5a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106cf565b6001600160a01b038216610fbb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106cf565b6001600160a01b0383811660008181526035602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6110288383836110fe565b611033838383611284565b505050565b6000818484111561105c5760405162461bcd60e51b81526004016106cf919061169b565b505050900390565b6001600160a01b038281166000818152603e6020818152604080842080546034845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46110de828483611284565b50505050565b6110ee82826113e3565b6110fa60008383611284565b5050565b6001600160a01b0383166111625760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106cf565b6001600160a01b0382166111c45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106cf565b611201816040518060600160405280602681526020016119ea602691396001600160a01b0386166000908152603460205260409020549190611038565b6001600160a01b0380851660009081526034602052604080822093909355908416815220546112309082610eec565b6001600160a01b0380841660008181526034602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110109085815260200190565b816001600160a01b0316836001600160a01b0316141580156112a65750600081115b15611033576001600160a01b03831615611349576001600160a01b03831660009081526040602081905281205463ffffffff1690816112e6576000611329565b6001600160a01b0385166000908152603f602052604081209061130a60018561192f565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9050600061133784836119aa565b9050611345868484846114c9565b5050505b6001600160a01b03821615611033576001600160a01b03821660009081526040602081905281205463ffffffff1690816113845760006113c7565b6001600160a01b0384166000908152603f60205260408120906113a860018561192f565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006113d58483611992565b9050610df9858484846114c9565b6001600160a01b0382166114395760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106cf565b6036546114469082610eec565b6036556001600160a01b03821660009081526034602052604090205461146c9082610eec565b6001600160a01b0383166000818152603460205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906114bd9085815260200190565b60405180910390a35050565b60006114ed43604051806060016040528060398152602001611a386039913961166b565b905060008463ffffffff1611801561154757506001600160a01b0385166000908152603f6020526040812063ffffffff83169161152b60018861192f565b63ffffffff908116825260208201929092526040016000205416145b15611590576001600160a01b0385166000908152603f60205260408120839161157160018861192f565b63ffffffff168152602081019190915260400160002060010155611620565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152603f83528581208a851682529092529390209151825463ffffffff1916911617815590516001918201556115ef9085906119c1565b6001600160a01b0386166000908152604060208190529020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b60008164010000000084106116935760405162461bcd60e51b81526004016106cf919061169b565b509192915050565b600060208083528351808285015260005b818110156116c8578581018301518582016040015282016116ac565b818111156116da576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461170757600080fd5b919050565b6000806040838503121561171f57600080fd5b611728836116f0565b946020939093013593505050565b60008060006060848603121561174b57600080fd5b611754846116f0565b9250611762602085016116f0565b9150604084013590509250925092565b60006020828403121561178457600080fd5b610b1d826116f0565b60008060008060008060c087890312156117a657600080fd5b6117af876116f0565b95506020870135945060408701359350606087013560ff811681146117d357600080fd5b9598949750929560808101359460a0909101359350915050565b6000806040838503121561180057600080fd5b611809836116f0565b9150611817602084016116f0565b90509250929050565b6000806040838503121561183357600080fd5b61183c836116f0565b9150602083013563ffffffff8116811461185557600080fd5b809150509250929050565b600181811c9082168061187457607f821691505b6020821081141561189557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611900576119006118d0565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261192a5761192a611905565b500490565b600063ffffffff8381169083168181101561194c5761194c6118d0565b039392505050565b600063ffffffff8084168061196b5761196b611905565b92169190910492915050565b600060001982141561198b5761198b6118d0565b5060010190565b600082198211156119a5576119a56118d0565b500190565b6000828210156119bc576119bc6118d0565b500390565b600063ffffffff8083168185168083038211156119e0576119e06118d0565b0194935050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654661726d546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ba3ec8118eec33ee7eeb95975f45f429780dc8a6dbbed51a93318840664bfa9b64736f6c63430008090033608060405234801561001057600080fd5b506040516106e43803806106e483398101604081905261002f916100a5565b6001600160a01b03841661004257600080fd5b8082111561004f57600080fd5b600080546001600160a01b0319166001600160a01b03861617905560038190556100848383610092602090811b61031b17901c565b600155505060025550610116565b600061009e82846100f0565b9392505050565b600080600080608085870312156100bb57600080fd5b84516001600160a01b03811681146100d257600080fd5b60208601516040870151606090970151919890975090945092505050565b6000821982111561011157634e487b7160e01b600052601160045260246000fd5b500190565b6105bf806101256000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063384711cc1161005b578063384711cc146100da57806338af3eed146100ed5780639852595c14610118578063be9a65551461013857600080fd5b80630fb5a6b41461008d57806313d033c0146100a95780631726cbc8146100b257806319165587146100c5575b600080fd5b61009660035481565b6040519081526020015b60405180910390f35b61009660015481565b6100966100c0366004610464565b610141565b6100d86100d3366004610464565b610173565b005b6100966100e8366004610464565b610212565b600054610100906001600160a01b031681565b6040516001600160a01b0390911681526020016100a0565b610096610126366004610464565b60046020526000908152604090205481565b61009660025481565b6001600160a01b03811660009081526004602052604081205461016d9061016784610212565b9061032e565b92915050565b600061017e82610141565b90506000811161018d57600080fd5b6001600160a01b0382166000908152600460205260409020546101b0908261031b565b6001600160a01b0380841660008181526004602052604081209390935591546101db9291168361033a565b6040518181527ffb81f9b30d73d830c3544b34d827c08142579ee75710b490bab0b3995468c5659060200160405180910390a15050565b6040516370a0823160e01b815230600482015260009081906001600160a01b038416906370a082319060240160206040518083038186803b15801561025657600080fd5b505afa15801561026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061028e919061048d565b6001600160a01b038416600090815260046020526040812054919250906102b690839061031b565b90506001544210156102cc575060009392505050565b6003546002546102db9161031b565b42106102e8579392505050565b61031360035461030d6103066002544261032e90919063ffffffff16565b849061044c565b90610458565b949350505050565b600061032782846104bc565b9392505050565b600061032782846104d4565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b179052915160009283929087169161039691906104eb565b6000604051808303816000865af19150503d80600081146103d3576040519150601f19603f3d011682016040523d82523d6000602084013e6103d8565b606091505b50915091508180156104025750805115806104025750808060200190518101906104029190610526565b6104455760405162461bcd60e51b815260206004820152601060248201526f085514905394d1915497d1905253115160821b604482015260640160405180910390fd5b5050505050565b60006103278284610548565b60006103278284610567565b60006020828403121561047657600080fd5b81356001600160a01b038116811461032757600080fd5b60006020828403121561049f57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156104cf576104cf6104a6565b500190565b6000828210156104e6576104e66104a6565b500390565b6000825160005b8181101561050c57602081860181015185830152016104f2565b8181111561051b576000828501525b509190910192915050565b60006020828403121561053857600080fd5b8151801515811461032757600080fd5b6000816000190483118215151615610562576105626104a6565b500290565b60008261058457634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212203e0fb8a543272350e05ff20917e1e35a5218a29660a40fe1e1b80e53c6b89ca864736f6c634300080900334661726d546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a536e6f7720466c616b65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004534e4f5700000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063c3cda520116100a2578063f2fde38b11610071578063f2fde38b14610504578063f5d8702014610517578063f7639b1a1461052a578063f9dd76ff1461053d57600080fd5b8063c3cda5201461043a578063dd62ed3e1461044d578063e7a324dc14610486578063f1127ed8146104ad57600080fd5b806395d89b41116100de57806395d89b41146103f9578063a457c2d714610401578063a9059cbb14610414578063b4b5ea571461042757600080fd5b8063715018a6146103ad578063782d6fe1146103b55780637ecebe00146103c85780638da5cb5b146103e857600080fd5b806339509351116101875780635c19a95c116101565780635c19a95c146103215780636331e9ae146103365780636fcfff451461034957806370a082311461038457600080fd5b8063395093511461029f578063479f1ce9146102b25780634cdae7b6146102e2578063587cde1e146102f557600080fd5b806320606b70116101c357806320606b701461023d57806323b872dd14610264578063313ce5671461027757806332cb6b0c1461028c57600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f2610550565b6040516101ff919061169b565b60405180910390f35b61021b61021636600461170c565b6105e2565b60405190151581526020016101ff565b6036545b6040519081526020016101ff565b61022f7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b61021b610272366004611736565b6105f9565b60395460405160ff90911681526020016101ff565b61022f6b014adf4b7320334b9000000081565b61021b6102ad36600461170c565b610662565b6039546102ca9061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016101ff565b603c546102ca906001600160a01b031681565b6102ca610303366004611772565b6001600160a01b039081166000908152603e60205260409020541690565b61033461032f366004611772565b610698565b005b610334610344366004611772565b6106a5565b61036f610357366004611772565b60406020819052600091825290205463ffffffff1681565b60405163ffffffff90911681526020016101ff565b61022f610392366004611772565b6001600160a01b031660009081526034602052604090205490565b610334610766565b61022f6103c336600461170c565b6107da565b61022f6103d6366004611772565b60416020526000908152604090205481565b6033546001600160a01b03166102ca565b6101f2610a44565b61021b61040f36600461170c565b610a53565b61021b61042236600461170c565b610aa2565b61022f610435366004611772565b610aaf565b61033461044836600461178d565b610b24565b61022f61045b3660046117ed565b6001600160a01b03918216600090815260356020908152604080832093909416825291909152205490565b61022f7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6104e86104bb366004611820565b603f6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff90931683526020830191909152016101ff565b610334610512366004611772565b610e01565b603d546102ca906001600160a01b031681565b603b546102ca906001600160a01b031681565b603a546102ca906001600160a01b031681565b60606037805461055f90611860565b80601f016020809104026020016040519081016040528092919081815260200182805461058b90611860565b80156105d85780601f106105ad576101008083540402835291602001916105d8565b820191906000526020600020905b8154815290600101906020018083116105bb57829003601f168201915b5050505050905090565b60006105ef338484610ef8565b5060015b92915050565b600061060684848461101d565b610658843361065385604051806060016040528060288152602001611a10602891396001600160a01b038a1660009081526035602090815260408083203384529091529020549190611038565b610ef8565b5060019392505050565b3360008181526035602090815260408083206001600160a01b038716845290915281205490916105ef9185906106539086610eec565b6106a23382611064565b50565b6033546001600160a01b031633146106d85760405162461bcd60e51b81526004016106cf9061189b565b60405180910390fd5b603d54600160a01b900460ff16156107275760405162461bcd60e51b81526020600482015260126024820152716f6e6c792063616e206d696e74206f6e636560701b60448201526064016106cf565b603d805460ff60a01b1916600160a01b1790556106a281600a6107576b014adf4b7320334b9000000060056118e6565b610761919061191b565b6110e4565b6033546001600160a01b031633146107905760405162461bcd60e51b81526004016106cf9061189b565b6033546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3603380546001600160a01b0319169055565b60004382106108405760405162461bcd60e51b815260206004820152602c60248201527f4661726d546f6b656e3a3a6765745072696f72566f7465733a206e6f7420796560448201526b1d0819195d195c9b5a5b995960a21b60648201526084016106cf565b6001600160a01b03831660009081526040602081905290205463ffffffff168061086e5760009150506105f3565b6001600160a01b0384166000908152603f60205260408120849161089360018561192f565b63ffffffff908116825260208201929092526040016000205416116108fc576001600160a01b0384166000908152603f60205260408120906108d660018461192f565b63ffffffff1663ffffffff168152602001908152602001600020600101549150506105f3565b6001600160a01b0384166000908152603f6020908152604080832083805290915290205463ffffffff168310156109375760009150506105f3565b60008061094560018461192f565b90505b8163ffffffff168163ffffffff161115610a0d576000600261096a848461192f565b6109749190611954565b61097e908361192f565b6001600160a01b0388166000908152603f6020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529192508714156109e1576020015194506105f39350505050565b805163ffffffff168711156109f857819350610a06565b610a0360018361192f565b92505b5050610948565b506001600160a01b0385166000908152603f6020908152604080832063ffffffff9094168352929052206001015491505092915050565b60606038805461055f90611860565b60006105ef338461065385604051806060016040528060258152602001611a71602591393360009081526035602090815260408083206001600160a01b038d1684529091529020549190611038565b60006105ef33848461101d565b6001600160a01b03811660009081526040602081905281205463ffffffff1680610ada576000610b1d565b6001600160a01b0383166000908152603f6020526040812090610afe60018461192f565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610b4f610550565b80519060200120610b5d4690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610c89573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d005760405162461bcd60e51b815260206004820152602b60248201527f4661726d546f6b656e3a3a64656c656761746542795369673a20696e76616c6960448201526a64207369676e617475726560a81b60648201526084016106cf565b6001600160a01b0381166000908152604160205260408120805491610d2483611977565b919050558914610d865760405162461bcd60e51b815260206004820152602760248201527f4661726d546f6b656e3a3a64656c656761746542795369673a20696e76616c6960448201526664206e6f6e636560c81b60648201526084016106cf565b87421115610dea5760405162461bcd60e51b815260206004820152602b60248201527f4661726d546f6b656e3a3a64656c656761746542795369673a207369676e617460448201526a1d5c9948195e1c1a5c995960aa1b60648201526084016106cf565b610df4818b611064565b505050505b505050505050565b6033546001600160a01b03163314610e2b5760405162461bcd60e51b81526004016106cf9061189b565b6001600160a01b038116610e905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106cf565b6033546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3603380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b1d8284611992565b6001600160a01b038316610f5a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106cf565b6001600160a01b038216610fbb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106cf565b6001600160a01b0383811660008181526035602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6110288383836110fe565b611033838383611284565b505050565b6000818484111561105c5760405162461bcd60e51b81526004016106cf919061169b565b505050900390565b6001600160a01b038281166000818152603e6020818152604080842080546034845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46110de828483611284565b50505050565b6110ee82826113e3565b6110fa60008383611284565b5050565b6001600160a01b0383166111625760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106cf565b6001600160a01b0382166111c45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106cf565b611201816040518060600160405280602681526020016119ea602691396001600160a01b0386166000908152603460205260409020549190611038565b6001600160a01b0380851660009081526034602052604080822093909355908416815220546112309082610eec565b6001600160a01b0380841660008181526034602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110109085815260200190565b816001600160a01b0316836001600160a01b0316141580156112a65750600081115b15611033576001600160a01b03831615611349576001600160a01b03831660009081526040602081905281205463ffffffff1690816112e6576000611329565b6001600160a01b0385166000908152603f602052604081209061130a60018561192f565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9050600061133784836119aa565b9050611345868484846114c9565b5050505b6001600160a01b03821615611033576001600160a01b03821660009081526040602081905281205463ffffffff1690816113845760006113c7565b6001600160a01b0384166000908152603f60205260408120906113a860018561192f565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006113d58483611992565b9050610df9858484846114c9565b6001600160a01b0382166114395760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106cf565b6036546114469082610eec565b6036556001600160a01b03821660009081526034602052604090205461146c9082610eec565b6001600160a01b0383166000818152603460205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906114bd9085815260200190565b60405180910390a35050565b60006114ed43604051806060016040528060398152602001611a386039913961166b565b905060008463ffffffff1611801561154757506001600160a01b0385166000908152603f6020526040812063ffffffff83169161152b60018861192f565b63ffffffff908116825260208201929092526040016000205416145b15611590576001600160a01b0385166000908152603f60205260408120839161157160018861192f565b63ffffffff168152602081019190915260400160002060010155611620565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152603f83528581208a851682529092529390209151825463ffffffff1916911617815590516001918201556115ef9085906119c1565b6001600160a01b0386166000908152604060208190529020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b60008164010000000084106116935760405162461bcd60e51b81526004016106cf919061169b565b509192915050565b600060208083528351808285015260005b818110156116c8578581018301518582016040015282016116ac565b818111156116da576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461170757600080fd5b919050565b6000806040838503121561171f57600080fd5b611728836116f0565b946020939093013593505050565b60008060006060848603121561174b57600080fd5b611754846116f0565b9250611762602085016116f0565b9150604084013590509250925092565b60006020828403121561178457600080fd5b610b1d826116f0565b60008060008060008060c087890312156117a657600080fd5b6117af876116f0565b95506020870135945060408701359350606087013560ff811681146117d357600080fd5b9598949750929560808101359460a0909101359350915050565b6000806040838503121561180057600080fd5b611809836116f0565b9150611817602084016116f0565b90509250929050565b6000806040838503121561183357600080fd5b61183c836116f0565b9150602083013563ffffffff8116811461185557600080fd5b809150509250929050565b600181811c9082168061187457607f821691505b6020821081141561189557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611900576119006118d0565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261192a5761192a611905565b500490565b600063ffffffff8381169083168181101561194c5761194c6118d0565b039392505050565b600063ffffffff8084168061196b5761196b611905565b92169190910492915050565b600060001982141561198b5761198b6118d0565b5060010190565b600082198211156119a5576119a56118d0565b500190565b6000828210156119bc576119bc6118d0565b500390565b600063ffffffff8083168185168083038211156119e0576119e06118d0565b0194935050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654661726d546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ba3ec8118eec33ee7eeb95975f45f429780dc8a6dbbed51a93318840664bfa9b64736f6c63430008090033
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.