ERC-20
Overview
Max Total Supply
10,000,000,000 MS
Holders
142
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
12,255,742.451801245338873784 MSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Minions
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-02 */ // SPDX-License-Identifier: MIT 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; 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(), "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; _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 {} } contract Minions is Ownable, ERC20 { bool public limited; bool public enableWhitel; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public blacklists; mapping(address => bool) public whitelists; constructor() ERC20("Minions", "MS") { uint256 _totalSupply = 100 * 10**8 * 10**18; _mint(msg.sender, _totalSupply); enableWhitel = true; whitelists[msg.sender] = true; } function settwhitelist(address[] memory accounts, bool _iswhitelisting) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { whitelists[accounts[i]] = _iswhitelisting; } } function whitelist(address _address, bool _iswhitelisting) external onlyOwner { whitelists[_address] = _iswhitelisting; } function blacklist(address _address, bool _isBlacklisting) external onlyOwner { blacklists[_address] = _isBlacklisting; } function setEnableWhitel(bool isEnableWhitel) external onlyOwner { enableWhitel = isEnableWhitel; } function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; maxHoldingAmount = _maxHoldingAmount; minHoldingAmount = _minHoldingAmount; whitelists[uniswapV2Pair] = true; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(!blacklists[to] && !blacklists[from], "Blacklisted"); if(enableWhitel) { require(whitelists[from]==true && whitelists[to]==true, "whitelist"); } if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "trading is not started"); return; } if (limited && from == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid"); } } }
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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"enableWhitel","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":[{"internalType":"bool","name":"isEnableWhitel","type":"bool"}],"name":"setEnableWhitel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"_iswhitelisting","type":"bool"}],"name":"settwhitelist","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"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_iswhitelisting","type":"bool"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051806040016040528060078152602001664d696e696f6e7360c81b815250604051806040016040528060028152602001614d5360f01b8152506200006762000061620000d260201b60201c565b620000d6565b600462000075838262000535565b50600562000084828262000535565b506b204fce5e3e250261100000009150620000a29050338262000126565b506006805461ff001916610100179055336000908152600b60205260409020805460ff1916600117905562000629565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001825760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b62000190600083836200021d565b8060036000828254620001a4919062000601565b90915550506001600160a01b03821660009081526001602052604081208054839290620001d390849062000601565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166000908152600a602052604090205460ff161580156200026057506001600160a01b0383166000908152600a602052604090205460ff16155b6200029c5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640162000179565b600654610100900460ff161562000332576001600160a01b0383166000908152600b602052604090205460ff1615156001148015620002f857506001600160a01b0382166000908152600b602052604090205460ff1615156001145b620003325760405162461bcd60e51b81526020600482015260096024820152681dda1a5d195b1a5cdd60ba1b604482015260640162000179565b6009546001600160a01b0316620003c0576000546001600160a01b03848116911614806200036d57506000546001600160a01b038381169116145b620003bb5760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f74207374617274656400000000000000000000604482015260640162000179565b505050565b60065460ff168015620003e057506009546001600160a01b038481169116145b15620003bb576007548162000400846200047660201b620006291760201c565b6200040c919062000601565b111580156200043f57506008548162000430846200047660201b620006291760201c565b6200043c919062000601565b10155b620003bb5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640162000179565b6001600160a01b031660009081526001602052604090205490565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004bc57607f821691505b602082108103620004dd57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003bb57600081815260208120601f850160051c810160208610156200050c5750805b601f850160051c820191505b818110156200052d5782815560010162000518565b505050505050565b81516001600160401b0381111562000551576200055162000491565b6200056981620005628454620004a7565b84620004e3565b602080601f831160018114620005a15760008415620005885750858301515b600019600386901b1c1916600185901b1785556200052d565b600085815260208120601f198616915b82811015620005d257888601518255948401946001909101908401620005b1565b5085821015620005f15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200062357634e487b7160e01b600052601160045260246000fd5b92915050565b61120c80620006396000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a457c2d711610097578063d59093f611610071578063d59093f614610352578063dd62ed3e14610365578063f2fde38b1461039e578063f59c3708146103b157600080fd5b8063a457c2d714610319578063a9059cbb1461032c578063abdd77dd1461033f57600080fd5b8063715018a6146102d0578063860a32ec146102d857806389f9a1d3146102e55780638da5cb5b146102ee57806395c45729146102ff57806395d89b411461031157600080fd5b806323b872dd1161014b5780633aa633aa116101255780633aa633aa1461026a578063404e51291461027f57806349bd5a5e1461029257806370a08231146102bd57600080fd5b806323b872dd14610235578063313ce56714610248578063395093511461025757600080fd5b806306fdde0314610193578063095ea7b3146101b157806316c02129146101d457806318160ddd146101f75780631ab99e12146102095780631e7be21014610212575b600080fd5b61019b6103c4565b6040516101a89190610e66565b60405180910390f35b6101c46101bf366004610ed0565b610456565b60405190151581526020016101a8565b6101c46101e2366004610efa565b600a6020526000908152604090205460ff1681565b6003545b6040519081526020016101a8565b6101fb60085481565b6101c4610220366004610efa565b600b6020526000908152604090205460ff1681565b6101c4610243366004610f1c565b61046d565b604051601281526020016101a8565b6101c4610265366004610ed0565b61051c565b61027d610278366004610f68565b610558565b005b61027d61028d366004610faa565b6105d4565b6009546102a5906001600160a01b031681565b6040516001600160a01b0390911681526020016101a8565b6101fb6102cb366004610efa565b610629565b61027d610644565b6006546101c49060ff1681565b6101fb60075481565b6000546001600160a01b03166102a5565b6006546101c490610100900460ff1681565b61019b61067a565b6101c4610327366004610ed0565b610689565b6101c461033a366004610ed0565b610722565b61027d61034d366004610ff3565b61072f565b61027d6103603660046110ca565b6107c5565b6101fb6103733660046110e5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61027d6103ac366004610efa565b610809565b61027d6103bf366004610faa565b6108a4565b6060600480546103d39061110f565b80601f01602080910402602001604051908101604052809291908181526020018280546103ff9061110f565b801561044c5780601f106104215761010080835404028352916020019161044c565b820191906000526020600020905b81548152906001019060200180831161042f57829003601f168201915b5050505050905090565b60006104633384846108f9565b5060015b92915050565b600061047a848484610a1d565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61051185338584036108f9565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161046391859061055390869061115f565b6108f9565b6000546001600160a01b031633146105825760405162461bcd60e51b81526004016104fb90611172565b6006805494151560ff19958616179055600980546001600160a01b039094166001600160a01b0319909416841790556007919091556008556000908152600b6020526040902080549091166001179055565b6000546001600160a01b031633146105fe5760405162461bcd60e51b81526004016104fb90611172565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b0316331461066e5760405162461bcd60e51b81526004016104fb90611172565b6106786000610bf7565b565b6060600580546103d39061110f565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561070b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104fb565b61071833858584036108f9565b5060019392505050565b6000610463338484610a1d565b6000546001600160a01b031633146107595760405162461bcd60e51b81526004016104fb90611172565b60005b82518110156107c05781600b600085848151811061077c5761077c6111a7565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806107b8816111bd565b91505061075c565b505050565b6000546001600160a01b031633146107ef5760405162461bcd60e51b81526004016104fb90611172565b600680549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146108335760405162461bcd60e51b81526004016104fb90611172565b6001600160a01b0381166108985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104fb565b6108a181610bf7565b50565b6000546001600160a01b031633146108ce5760405162461bcd60e51b81526004016104fb90611172565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6001600160a01b03831661095b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104fb565b6001600160a01b0382166109bc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104fb565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a815760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104fb565b6001600160a01b038216610ae35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104fb565b610aee838383610c47565b6001600160a01b03831660009081526001602052604090205481811015610b665760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104fb565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610b9d90849061115f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610be991815260200190565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610c8957506001600160a01b0383166000908152600a602052604090205460ff16155b610cc35760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016104fb565b600654610100900460ff1615610d55576001600160a01b0383166000908152600b602052604090205460ff1615156001148015610d1d57506001600160a01b0382166000908152600b602052604090205460ff1615156001145b610d555760405162461bcd60e51b81526020600482015260096024820152681dda1a5d195b1a5cdd60ba1b60448201526064016104fb565b6009546001600160a01b0316610dd3576000546001600160a01b0384811691161480610d8e57506000546001600160a01b038381169116145b6107c05760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016104fb565b60065460ff168015610df257506009546001600160a01b038481169116145b156107c05760075481610e0484610629565b610e0e919061115f565b11158015610e31575060085481610e2484610629565b610e2e919061115f565b10155b6107c05760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016104fb565b600060208083528351808285015260005b81811015610e9357858101830151858201604001528201610e77565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ecb57600080fd5b919050565b60008060408385031215610ee357600080fd5b610eec83610eb4565b946020939093013593505050565b600060208284031215610f0c57600080fd5b610f1582610eb4565b9392505050565b600080600060608486031215610f3157600080fd5b610f3a84610eb4565b9250610f4860208501610eb4565b9150604084013590509250925092565b80358015158114610ecb57600080fd5b60008060008060808587031215610f7e57600080fd5b610f8785610f58565b9350610f9560208601610eb4565b93969395505050506040820135916060013590565b60008060408385031215610fbd57600080fd5b610fc683610eb4565b9150610fd460208401610f58565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561100657600080fd5b823567ffffffffffffffff8082111561101e57600080fd5b818501915085601f83011261103257600080fd5b813560208282111561104657611046610fdd565b8160051b604051601f19603f8301168101818110868211171561106b5761106b610fdd565b60405292835281830193508481018201928984111561108957600080fd5b948201945b838610156110ae5761109f86610eb4565b8552948201949382019361108e565b96506110bd9050878201610f58565b9450505050509250929050565b6000602082840312156110dc57600080fd5b610f1582610f58565b600080604083850312156110f857600080fd5b61110183610eb4565b9150610fd460208401610eb4565b600181811c9082168061112357607f821691505b60208210810361114357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561046757610467611149565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600182016111cf576111cf611149565b506001019056fea2646970667358221220e6867f4154073665be338e19fedf0798081a4e77b081335e180ec702d5bdc53464736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a457c2d711610097578063d59093f611610071578063d59093f614610352578063dd62ed3e14610365578063f2fde38b1461039e578063f59c3708146103b157600080fd5b8063a457c2d714610319578063a9059cbb1461032c578063abdd77dd1461033f57600080fd5b8063715018a6146102d0578063860a32ec146102d857806389f9a1d3146102e55780638da5cb5b146102ee57806395c45729146102ff57806395d89b411461031157600080fd5b806323b872dd1161014b5780633aa633aa116101255780633aa633aa1461026a578063404e51291461027f57806349bd5a5e1461029257806370a08231146102bd57600080fd5b806323b872dd14610235578063313ce56714610248578063395093511461025757600080fd5b806306fdde0314610193578063095ea7b3146101b157806316c02129146101d457806318160ddd146101f75780631ab99e12146102095780631e7be21014610212575b600080fd5b61019b6103c4565b6040516101a89190610e66565b60405180910390f35b6101c46101bf366004610ed0565b610456565b60405190151581526020016101a8565b6101c46101e2366004610efa565b600a6020526000908152604090205460ff1681565b6003545b6040519081526020016101a8565b6101fb60085481565b6101c4610220366004610efa565b600b6020526000908152604090205460ff1681565b6101c4610243366004610f1c565b61046d565b604051601281526020016101a8565b6101c4610265366004610ed0565b61051c565b61027d610278366004610f68565b610558565b005b61027d61028d366004610faa565b6105d4565b6009546102a5906001600160a01b031681565b6040516001600160a01b0390911681526020016101a8565b6101fb6102cb366004610efa565b610629565b61027d610644565b6006546101c49060ff1681565b6101fb60075481565b6000546001600160a01b03166102a5565b6006546101c490610100900460ff1681565b61019b61067a565b6101c4610327366004610ed0565b610689565b6101c461033a366004610ed0565b610722565b61027d61034d366004610ff3565b61072f565b61027d6103603660046110ca565b6107c5565b6101fb6103733660046110e5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61027d6103ac366004610efa565b610809565b61027d6103bf366004610faa565b6108a4565b6060600480546103d39061110f565b80601f01602080910402602001604051908101604052809291908181526020018280546103ff9061110f565b801561044c5780601f106104215761010080835404028352916020019161044c565b820191906000526020600020905b81548152906001019060200180831161042f57829003601f168201915b5050505050905090565b60006104633384846108f9565b5060015b92915050565b600061047a848484610a1d565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61051185338584036108f9565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161046391859061055390869061115f565b6108f9565b6000546001600160a01b031633146105825760405162461bcd60e51b81526004016104fb90611172565b6006805494151560ff19958616179055600980546001600160a01b039094166001600160a01b0319909416841790556007919091556008556000908152600b6020526040902080549091166001179055565b6000546001600160a01b031633146105fe5760405162461bcd60e51b81526004016104fb90611172565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b0316331461066e5760405162461bcd60e51b81526004016104fb90611172565b6106786000610bf7565b565b6060600580546103d39061110f565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561070b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104fb565b61071833858584036108f9565b5060019392505050565b6000610463338484610a1d565b6000546001600160a01b031633146107595760405162461bcd60e51b81526004016104fb90611172565b60005b82518110156107c05781600b600085848151811061077c5761077c6111a7565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806107b8816111bd565b91505061075c565b505050565b6000546001600160a01b031633146107ef5760405162461bcd60e51b81526004016104fb90611172565b600680549115156101000261ff0019909216919091179055565b6000546001600160a01b031633146108335760405162461bcd60e51b81526004016104fb90611172565b6001600160a01b0381166108985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104fb565b6108a181610bf7565b50565b6000546001600160a01b031633146108ce5760405162461bcd60e51b81526004016104fb90611172565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6001600160a01b03831661095b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104fb565b6001600160a01b0382166109bc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104fb565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a815760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104fb565b6001600160a01b038216610ae35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104fb565b610aee838383610c47565b6001600160a01b03831660009081526001602052604090205481811015610b665760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104fb565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610b9d90849061115f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610be991815260200190565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610c8957506001600160a01b0383166000908152600a602052604090205460ff16155b610cc35760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016104fb565b600654610100900460ff1615610d55576001600160a01b0383166000908152600b602052604090205460ff1615156001148015610d1d57506001600160a01b0382166000908152600b602052604090205460ff1615156001145b610d555760405162461bcd60e51b81526020600482015260096024820152681dda1a5d195b1a5cdd60ba1b60448201526064016104fb565b6009546001600160a01b0316610dd3576000546001600160a01b0384811691161480610d8e57506000546001600160a01b038381169116145b6107c05760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016104fb565b60065460ff168015610df257506009546001600160a01b038481169116145b156107c05760075481610e0484610629565b610e0e919061115f565b11158015610e31575060085481610e2484610629565b610e2e919061115f565b10155b6107c05760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016104fb565b600060208083528351808285015260005b81811015610e9357858101830151858201604001528201610e77565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ecb57600080fd5b919050565b60008060408385031215610ee357600080fd5b610eec83610eb4565b946020939093013593505050565b600060208284031215610f0c57600080fd5b610f1582610eb4565b9392505050565b600080600060608486031215610f3157600080fd5b610f3a84610eb4565b9250610f4860208501610eb4565b9150604084013590509250925092565b80358015158114610ecb57600080fd5b60008060008060808587031215610f7e57600080fd5b610f8785610f58565b9350610f9560208601610eb4565b93969395505050506040820135916060013590565b60008060408385031215610fbd57600080fd5b610fc683610eb4565b9150610fd460208401610f58565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561100657600080fd5b823567ffffffffffffffff8082111561101e57600080fd5b818501915085601f83011261103257600080fd5b813560208282111561104657611046610fdd565b8160051b604051601f19603f8301168101818110868211171561106b5761106b610fdd565b60405292835281830193508481018201928984111561108957600080fd5b948201945b838610156110ae5761109f86610eb4565b8552948201949382019361108e565b96506110bd9050878201610f58565b9450505050509250929050565b6000602082840312156110dc57600080fd5b610f1582610f58565b600080604083850312156110f857600080fd5b61110183610eb4565b9150610fd460208401610eb4565b600181811c9082168061112357607f821691505b60208210810361114357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561046757610467611149565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600182016111cf576111cf611149565b506001019056fea2646970667358221220e6867f4154073665be338e19fedf0798081a4e77b081335e180ec702d5bdc53464736f6c63430008120033
Deployed Bytecode Sourcemap
19103:2219:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9140:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11307:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11307:169:0;1004:187:1;19313:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10260:108;10348:12;;10260:108;;;1533:25:1;;;1521:2;1506:18;10260:108:0;1387:177:1;19240:31:0;;;;;;19362:42;;;;;;:::i;:::-;;;;;;;;;;;;;;;;11958:492;;;;;;:::i;:::-;;:::i;10102:93::-;;;10185:2;2044:36:1;;2032:2;2017:18;10102:93:0;1902:184:1;12859:215:0;;;;;;:::i;:::-;;:::i;20274:346::-;;;;;;:::i;:::-;;:::i;:::-;;20009:135;;;;;;:::i;:::-;;:::i;19278:28::-;;;;;-1:-1:-1;;;;;19278:28:0;;;;;;-1:-1:-1;;;;;3075:32:1;;;3057:51;;3045:2;3030:18;19278:28:0;2911:203:1;10431:127:0;;;;;;:::i;:::-;;:::i;2541:103::-;;;:::i;19145:19::-;;;;;;;;;19202:31;;;;;;1890:87;1936:7;1963:6;-1:-1:-1;;;;;1963:6:0;1890:87;;19171:24;;;;;;;;;;;;9359:104;;;:::i;13577:413::-;;;;;;:::i;:::-;;:::i;10771:175::-;;;;;;:::i;:::-;;:::i;19635:223::-;;;;;;:::i;:::-;;:::i;20152:114::-;;;;;;:::i;:::-;;:::i;11009:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11125:18:0;;;11098:7;11125:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11009:151;2799:201;;;;;;:::i;:::-;;:::i;19866:135::-;;;;;;:::i;:::-;;:::i;9140:100::-;9194:13;9227:5;9220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9140:100;:::o;11307:169::-;11390:4;11407:39;688:10;11430:7;11439:6;11407:8;:39::i;:::-;-1:-1:-1;11464:4:0;11307:169;;;;;:::o;11958:492::-;12098:4;12115:36;12125:6;12133:9;12144:6;12115:9;:36::i;:::-;-1:-1:-1;;;;;12191:19:0;;12164:24;12191:19;;;:11;:19;;;;;;;;688:10;12191:33;;;;;;;;12243:26;;;;12235:79;;;;-1:-1:-1;;;12235:79:0;;5484:2:1;12235:79:0;;;5466:21:1;5523:2;5503:18;;;5496:30;5562:34;5542:18;;;5535:62;-1:-1:-1;;;5613:18:1;;;5606:38;5661:19;;12235:79:0;;;;;;;;;12350:57;12359:6;688:10;12400:6;12381:16;:25;12350:8;:57::i;:::-;-1:-1:-1;12438:4:0;;11958:492;-1:-1:-1;;;;11958:492:0:o;12859:215::-;688:10;12947:4;12996:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12996:34:0;;;;;;;;;;12947:4;;12964:80;;12987:7;;12996:47;;13033:10;;12996:47;:::i;:::-;12964:8;:80::i;20274:346::-;1936:7;1963:6;-1:-1:-1;;;;;1963:6:0;688:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;20414:7:::1;:18:::0;;;::::1;;-1:-1:-1::0;;20414:18:0;;::::1;;::::0;;20443:13:::1;:30:::0;;-1:-1:-1;;;;;20443:30:0;;::::1;-1:-1:-1::0;;;;;;20443:30:0;;::::1;::::0;::::1;::::0;;20484:16:::1;:36:::0;;;;20531:16:::1;:36:::0;20414:7:::1;20580:25:::0;;;:10:::1;:25;::::0;;;;:32;;;;::::1;20414:18:::0;20580:32:::1;::::0;;20274:346::o;20009:135::-;1936:7;1963:6;-1:-1:-1;;;;;1963:6:0;688:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20098:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;20098:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20009:135::o;10431:127::-;-1:-1:-1;;;;;10532:18:0;10505:7;10532:18;;;:9;:18;;;;;;;10431:127::o;2541:103::-;1936:7;1963:6;-1:-1:-1;;;;;1963:6:0;688:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;2606:30:::1;2633:1;2606:18;:30::i;:::-;2541:103::o:0;9359:104::-;9415:13;9448:7;9441:14;;;;;:::i;13577:413::-;688:10;13670:4;13714:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13714:34:0;;;;;;;;;;13767:35;;;;13759:85;;;;-1:-1:-1;;;13759:85:0;;6516:2:1;13759:85:0;;;6498:21:1;6555:2;6535:18;;;6528:30;6594:34;6574:18;;;6567:62;-1:-1:-1;;;6645:18:1;;;6638:35;6690:19;;13759:85:0;6314:401:1;13759:85:0;13880:67;688:10;13903:7;13931:15;13912:16;:34;13880:8;:67::i;:::-;-1:-1:-1;13978:4:0;;13577:413;-1:-1:-1;;;13577:413:0:o;10771:175::-;10857:4;10874:42;688:10;10898:9;10909:6;10874:9;:42::i;19635:223::-;1936:7;1963:6;-1:-1:-1;;;;;1963:6:0;688:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;19742:9:::1;19737:114;19761:8;:15;19757:1;:19;19737:114;;;19824:15;19798:10;:23;19809:8;19818:1;19809:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;19798:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;19798:23:0;:41;;-1:-1:-1;;19798:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19778:3;::::1;::::0;::::1;:::i;:::-;;;;19737:114;;;;19635:223:::0;;:::o;20152:114::-;1936:7;1963:6;-1:-1:-1;;;;;1963:6:0;688:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;20229:12:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;20229:29:0;;::::1;::::0;;;::::1;::::0;;20152:114::o;2799:201::-;1936:7;1963:6;-1:-1:-1;;;;;1963:6:0;688:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2888:22:0;::::1;2880:73;;;::::0;-1:-1:-1;;;2880:73:0;;7194:2:1;2880:73:0::1;::::0;::::1;7176:21:1::0;7233:2;7213:18;;;7206:30;7272:34;7252:18;;;7245:62;-1:-1:-1;;;7323:18:1;;;7316:36;7369:19;;2880:73:0::1;6992:402:1::0;2880:73:0::1;2964:28;2983:8;2964:18;:28::i;:::-;2799:201:::0;:::o;19866:135::-;1936:7;1963:6;-1:-1:-1;;;;;1963:6:0;688:10;2110:23;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19955:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;19955:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19866:135::o;17261:380::-;-1:-1:-1;;;;;17397:19:0;;17389:68;;;;-1:-1:-1;;;17389:68:0;;7601:2:1;17389:68:0;;;7583:21:1;7640:2;7620:18;;;7613:30;7679:34;7659:18;;;7652:62;-1:-1:-1;;;7730:18:1;;;7723:34;7774:19;;17389:68:0;7399:400:1;17389:68:0;-1:-1:-1;;;;;17476:21:0;;17468:68;;;;-1:-1:-1;;;17468:68:0;;8006:2:1;17468:68:0;;;7988:21:1;8045:2;8025:18;;;8018:30;8084:34;8064:18;;;8057:62;-1:-1:-1;;;8135:18:1;;;8128:32;8177:19;;17468:68:0;7804:398:1;17468:68:0;-1:-1:-1;;;;;17549:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17601:32;;1533:25:1;;;17601:32:0;;1506:18:1;17601:32:0;;;;;;;17261:380;;;:::o;14480:733::-;-1:-1:-1;;;;;14620:20:0;;14612:70;;;;-1:-1:-1;;;14612:70:0;;8409:2:1;14612:70:0;;;8391:21:1;8448:2;8428:18;;;8421:30;8487:34;8467:18;;;8460:62;-1:-1:-1;;;8538:18:1;;;8531:35;8583:19;;14612:70:0;8207:401:1;14612:70:0;-1:-1:-1;;;;;14701:23:0;;14693:71;;;;-1:-1:-1;;;14693:71:0;;8815:2:1;14693:71:0;;;8797:21:1;8854:2;8834:18;;;8827:30;8893:34;8873:18;;;8866:62;-1:-1:-1;;;8944:18:1;;;8937:33;8987:19;;14693:71:0;8613:399:1;14693:71:0;14777:47;14798:6;14806:9;14817:6;14777:20;:47::i;:::-;-1:-1:-1;;;;;14861:17:0;;14837:21;14861:17;;;:9;:17;;;;;;14897:23;;;;14889:74;;;;-1:-1:-1;;;14889:74:0;;9219:2:1;14889:74:0;;;9201:21:1;9258:2;9238:18;;;9231:30;9297:34;9277:18;;;9270:62;-1:-1:-1;;;9348:18:1;;;9341:36;9394:19;;14889:74:0;9017:402:1;14889:74:0;-1:-1:-1;;;;;14999:17:0;;;;;;;:9;:17;;;;;;15019:22;;;14999:42;;15063:20;;;;;;;;:30;;15035:6;;14999:17;15063:30;;15035:6;;15063:30;:::i;:::-;;;;;;;;15128:9;-1:-1:-1;;;;;15111:35:0;15120:6;-1:-1:-1;;;;;15111:35:0;;15139:6;15111:35;;;;1533:25:1;;1521:2;1506:18;;1387:177;15111:35:0;;;;;;;;14601:612;14480:733;;;:::o;3160:191::-;3234:16;3253:6;;-1:-1:-1;;;;;3270:17:0;;;-1:-1:-1;;;;;;3270:17:0;;;;;;3303:40;;3253:6;;;;;;;3303:40;;3234:16;3303:40;3223:128;3160:191;:::o;20628:691::-;-1:-1:-1;;;;;20780:14:0;;;;;;:10;:14;;;;;;;;20779:15;:36;;;;-1:-1:-1;;;;;;20799:16:0;;;;;;:10;:16;;;;;;;;20798:17;20779:36;20771:60;;;;-1:-1:-1;;;20771:60:0;;9626:2:1;20771:60:0;;;9608:21:1;9665:2;9645:18;;;9638:30;-1:-1:-1;;;9684:18:1;;;9677:41;9735:18;;20771:60:0;9424:335:1;20771:60:0;20847:12;;;;;;;20844:112;;;-1:-1:-1;;;;;20884:16:0;;;;;;:10;:16;;;;;;;;:22;;:16;:22;:46;;;;-1:-1:-1;;;;;;20910:14:0;;;;;;:10;:14;;;;;;;;:20;;:14;:20;20884:46;20876:68;;;;-1:-1:-1;;;20876:68:0;;9966:2:1;20876:68:0;;;9948:21:1;10005:1;9985:18;;;9978:29;-1:-1:-1;;;10023:18:1;;;10016:39;10072:18;;20876:68:0;9764:332:1;20876:68:0;20972:13;;-1:-1:-1;;;;;20972:13:0;20968:148;;1936:7;1963:6;-1:-1:-1;;;;;21024:15:0;;;1963:6;;21024:15;;:32;;-1:-1:-1;1936:7:0;1963:6;-1:-1:-1;;;;;21043:13:0;;;1963:6;;21043:13;21024:32;21016:67;;;;-1:-1:-1;;;21016:67:0;;10303:2:1;21016:67:0;;;10285:21:1;10342:2;10322:18;;;10315:30;-1:-1:-1;;;10361:18:1;;;10354:52;10423:18;;21016:67:0;10101:346:1;20968:148:0;21132:7;;;;:32;;;;-1:-1:-1;21151:13:0;;-1:-1:-1;;;;;21143:21:0;;;21151:13;;21143:21;21132:32;21128:184;;;21221:16;;21211:6;21189:19;21205:2;21189:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;21273:16;;21263:6;21241:19;21257:2;21241:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;21189:100;21181:119;;;;-1:-1:-1;;;21181:119:0;;10654:2:1;21181:119:0;;;10636:21:1;10693:1;10673:18;;;10666:29;-1:-1:-1;;;10711:18:1;;;10704:36;10757:18;;21181:119:0;10452:329:1;14:548;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:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2091:160::-;2156:20;;2212:13;;2205:21;2195:32;;2185:60;;2241:1;2238;2231:12;2256:391;2339:6;2347;2355;2363;2416:3;2404:9;2395:7;2391:23;2387:33;2384:53;;;2433:1;2430;2423:12;2384:53;2456:26;2472:9;2456:26;:::i;:::-;2446:36;;2501:38;2535:2;2524:9;2520:18;2501:38;:::i;:::-;2256:391;;2491:48;;-1:-1:-1;;;;2586:2:1;2571:18;;2558:32;;2637:2;2622:18;2609:32;;2256:391::o;2652:254::-;2717:6;2725;2778:2;2766:9;2757:7;2753:23;2749:32;2746:52;;;2794:1;2791;2784:12;2746:52;2817:29;2836:9;2817:29;:::i;:::-;2807:39;;2865:35;2896:2;2885:9;2881:18;2865:35;:::i;:::-;2855:45;;2652:254;;;;;:::o;3119:127::-;3180:10;3175:3;3171:20;3168:1;3161:31;3211:4;3208:1;3201:15;3235:4;3232:1;3225:15;3251:1191;3341:6;3349;3402:2;3390:9;3381:7;3377:23;3373:32;3370:52;;;3418:1;3415;3408:12;3370:52;3458:9;3445:23;3487:18;3528:2;3520:6;3517:14;3514:34;;;3544:1;3541;3534:12;3514:34;3582:6;3571:9;3567:22;3557:32;;3627:7;3620:4;3616:2;3612:13;3608:27;3598:55;;3649:1;3646;3639:12;3598:55;3685:2;3672:16;3707:4;3730:2;3726;3723:10;3720:36;;;3736:18;;:::i;:::-;3782:2;3779:1;3775:10;3814:2;3808:9;3877:2;3873:7;3868:2;3864;3860:11;3856:25;3848:6;3844:38;3932:6;3920:10;3917:22;3912:2;3900:10;3897:18;3894:46;3891:72;;;3943:18;;:::i;:::-;3979:2;3972:22;4029:18;;;4063:15;;;;-1:-1:-1;4105:11:1;;;4101:20;;;4133:19;;;4130:39;;;4165:1;4162;4155:12;4130:39;4189:11;;;;4209:148;4225:6;4220:3;4217:15;4209:148;;;4291:23;4310:3;4291:23;:::i;:::-;4279:36;;4242:12;;;;4335;;;;4209:148;;;4376:6;-1:-1:-1;4401:35:1;;-1:-1:-1;4417:18:1;;;4401:35;:::i;:::-;4391:45;;;;;;3251:1191;;;;;:::o;4447:180::-;4503:6;4556:2;4544:9;4535:7;4531:23;4527:32;4524:52;;;4572:1;4569;4562:12;4524:52;4595:26;4611:9;4595:26;:::i;4632:260::-;4700:6;4708;4761:2;4749:9;4740:7;4736:23;4732:32;4729:52;;;4777:1;4774;4767:12;4729:52;4800:29;4819:9;4800:29;:::i;:::-;4790:39;;4848:38;4882:2;4871:9;4867:18;4848:38;:::i;4897:380::-;4976:1;4972:12;;;;5019;;;5040:61;;5094:4;5086:6;5082:17;5072:27;;5040:61;5147:2;5139:6;5136:14;5116:18;5113:38;5110:161;;5193:10;5188:3;5184:20;5181:1;5174:31;5228:4;5225:1;5218:15;5256:4;5253:1;5246:15;5110:161;;4897:380;;;:::o;5691:127::-;5752:10;5747:3;5743:20;5740:1;5733:31;5783:4;5780:1;5773:15;5807:4;5804:1;5797:15;5823:125;5888:9;;;5909:10;;;5906:36;;;5922:18;;:::i;5953:356::-;6155:2;6137:21;;;6174:18;;;6167:30;6233:34;6228:2;6213:18;;6206:62;6300:2;6285:18;;5953:356::o;6720:127::-;6781:10;6776:3;6772:20;6769:1;6762:31;6812:4;6809:1;6802:15;6836:4;6833:1;6826:15;6852:135;6891:3;6912:17;;;6909:43;;6932:18;;:::i;:::-;-1:-1:-1;6979:1:1;6968:13;;6852:135::o
Swarm Source
ipfs://e6867f4154073665be338e19fedf0798081a4e77b081335e180ec702d5bdc534
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.