Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 SNS
Holders
12
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
9,659.189196396317394174 SNSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SNS
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-27 */ /* */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // 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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // 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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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 {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract SNS is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Shibarium Name Service", "SNS") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 10; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 25; uint256 totalSupply = 1 * 1e6 * 1e18; maxTransactionAmount = 2 * 1e4 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = 2 * 1e4 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyLiquidityFee + buyDevFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellLiquidityFee + sellDevFee; devWallet = address(0xfF82634185BC652ff5CBB8929Ee684FdeB4F514A); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateTaxes(uint256 buyDev, uint256 buyLiq, uint256 sellDev, uint256 sellliq) external onlyOwner { buyLiquidityFee = buyLiq; buyDevFee = buyDev; buyTotalFees = buyLiquidityFee + buyDevFee; sellLiquidityFee = sellliq; sellDevFee = sellDev; sellTotalFees = sellLiquidityFee + sellDevFee; require(buyTotalFees + sellTotalFees < 99, "Sanity check"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForDev; tokensForLiquidity = 0; tokensForDev = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(devWallet).call{value: address(this).balance}(""); } }
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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","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":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyDev","type":"uint256"},{"internalType":"uint256","name":"buyLiq","type":"uint256"},{"internalType":"uint256","name":"sellDev","type":"uint256"},{"internalType":"uint256","name":"sellliq","type":"uint256"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600a805462ffffff191660011790553480156200002057600080fd5b506040518060400160405280601681526020017f53686962617269756d204e616d6520536572766963650000000000000000000081525060405180604001604052806003815260200162534e5360e81b81525081600390805190602001906200008b92919062000640565b508051620000a190600490602084019062000640565b505050620000be620000b86200038d60201b60201c565b62000391565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e0816001620003e3565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001519190620006e6565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c59190620006e6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000213573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002399190620006e6565b6001600160a01b031660a081905262000254906001620003e3565b60a051620002649060016200045d565b69043c33c193756480000060078190556009556000600a81601969d3c21bcecceda10000006127106200029882866200072e565b620002a4919062000750565b600855600c859055600d849055620002bd848662000773565b600b55600f8390556010829055620002d6828462000773565b600e55600680546001600160a01b03191673ff82634185bc652ff5cbb8929ee684fdeb4f514a1790556200031e620003166005546001600160a01b031690565b6001620004b1565b6200032b306001620004b1565b6200033a61dead6001620004b1565b62000359620003516005546001600160a01b031690565b6001620003e3565b62000366306001620003e3565b6200037561dead6001620003e3565b6200038133826200055b565b505050505050620007cb565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004325760405162461bcd60e51b8152602060048201819052602482015260008051602062002a4383398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260156020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004fc5760405162461bcd60e51b8152602060048201819052602482015260008051602062002a43833981519152604482015260640162000429565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005b35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000429565b8060026000828254620005c7919062000773565b90915550506001600160a01b03821660009081526020819052604081208054839290620005f690849062000773565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200064e906200078e565b90600052602060002090601f016020900481019282620006725760008555620006bd565b82601f106200068d57805160ff1916838001178555620006bd565b82800160010185558215620006bd579182015b82811115620006bd578251825591602001919060010190620006a0565b50620006cb929150620006cf565b5090565b5b80821115620006cb5760008155600101620006d0565b600060208284031215620006f957600080fd5b81516001600160a01b03811681146200071157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200074b576200074b62000718565b500290565b6000826200076e57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000789576200078962000718565b500190565b600181811c90821680620007a357607f821691505b60208210811415620007c557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516122286200081b600039600081816103fc0152610b0501526000818161030901528181611b7b01528181611c3401528181611c7001528181611cea0152611d5201526122286000f3fe6080604052600436106102605760003560e01c80638ea5220f11610144578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e1461072e578063e2f4560514610774578063f11a24d31461078a578063f2fde38b146107a0578063f6374342146107c0578063f8b45b05146107d657600080fd5b8063bbc0c742146106a3578063c0246668146106c2578063c8c8ebe4146106e2578063d257b34f146106f8578063d85ba0631461071857600080fd5b80639fccce32116101085780639fccce32146105e7578063a0d82dc5146105fd578063a457c2d714610613578063a9059cbb14610633578063adda68ee14610653578063b62496f51461067357600080fd5b80638ea5220f1461055c578063924de9b71461057c57806395d89b411461059c5780639a7a23d6146105b15780639c3b4fdc146105d157600080fd5b806349bd5a5e116101dd57806370a08231116101a157806370a08231146104a7578063715018a6146104dd578063751039fc146104f45780637571336a146105095780638a8c523c146105295780638da5cb5b1461053e57600080fd5b806349bd5a5e146103ea5780634a62bb651461041e5780634fbee193146104385780636a486a8e146104715780636ddd17131461048757600080fd5b80631a8145bb116102245780631a8145bb1461036257806323b872dd1461037857806327c8f83514610398578063313ce567146103ae57806339509351146103ca57600080fd5b806306fdde031461026c578063095ea7b31461029757806310d5de53146102c75780631694505e146102f757806318160ddd1461034357600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107ec565b60405161028e9190611dca565b60405180910390f35b3480156102a357600080fd5b506102b76102b2366004611e34565b61087e565b604051901515815260200161028e565b3480156102d357600080fd5b506102b76102e2366004611e60565b60146020526000908152604090205460ff1681565b34801561030357600080fd5b5061032b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161028e565b34801561034f57600080fd5b506002545b60405190815260200161028e565b34801561036e57600080fd5b5061035460115481565b34801561038457600080fd5b506102b7610393366004611e7d565b610894565b3480156103a457600080fd5b5061032b61dead81565b3480156103ba57600080fd5b506040516012815260200161028e565b3480156103d657600080fd5b506102b76103e5366004611e34565b610943565b3480156103f657600080fd5b5061032b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561042a57600080fd5b50600a546102b79060ff1681565b34801561044457600080fd5b506102b7610453366004611e60565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561047d57600080fd5b50610354600e5481565b34801561049357600080fd5b50600a546102b79062010000900460ff1681565b3480156104b357600080fd5b506103546104c2366004611e60565b6001600160a01b031660009081526020819052604090205490565b3480156104e957600080fd5b506104f261097f565b005b34801561050057600080fd5b506102b76109b5565b34801561051557600080fd5b506104f2610524366004611ece565b6109f2565b34801561053557600080fd5b506104f2610a47565b34801561054a57600080fd5b506005546001600160a01b031661032b565b34801561056857600080fd5b5060065461032b906001600160a01b031681565b34801561058857600080fd5b506104f2610597366004611f03565b610a84565b3480156105a857600080fd5b50610281610aca565b3480156105bd57600080fd5b506104f26105cc366004611ece565b610ad9565b3480156105dd57600080fd5b50610354600d5481565b3480156105f357600080fd5b5061035460125481565b34801561060957600080fd5b5061035460105481565b34801561061f57600080fd5b506102b761062e366004611e34565b610bb9565b34801561063f57600080fd5b506102b761064e366004611e34565b610c52565b34801561065f57600080fd5b506104f261066e366004611f1e565b610c5f565b34801561067f57600080fd5b506102b761068e366004611e60565b60156020526000908152604090205460ff1681565b3480156106af57600080fd5b50600a546102b790610100900460ff1681565b3480156106ce57600080fd5b506104f26106dd366004611ece565b610d0a565b3480156106ee57600080fd5b5061035460075481565b34801561070457600080fd5b506102b7610713366004611f50565b610d93565b34801561072457600080fd5b50610354600b5481565b34801561073a57600080fd5b50610354610749366004611f69565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078057600080fd5b5061035460085481565b34801561079657600080fd5b50610354600c5481565b3480156107ac57600080fd5b506104f26107bb366004611e60565b610eea565b3480156107cc57600080fd5b50610354600f5481565b3480156107e257600080fd5b5061035460095481565b6060600380546107fb90611fa2565b80601f016020809104026020016040519081016040528092919081815260200182805461082790611fa2565b80156108745780601f1061084957610100808354040283529160200191610874565b820191906000526020600020905b81548152906001019060200180831161085757829003601f168201915b5050505050905090565b600061088b338484610f85565b50600192915050565b60006108a18484846110a9565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561092b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109388533858403610f85565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161088b91859061097a908690611ff3565b610f85565b6005546001600160a01b031633146109a95760405162461bcd60e51b81526004016109229061200b565b6109b36000611756565b565b6005546000906001600160a01b031633146109e25760405162461bcd60e51b81526004016109229061200b565b50600a805460ff19169055600190565b6005546001600160a01b03163314610a1c5760405162461bcd60e51b81526004016109229061200b565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a715760405162461bcd60e51b81526004016109229061200b565b600a805462ffff00191662010100179055565b6005546001600160a01b03163314610aae5760405162461bcd60e51b81526004016109229061200b565b600a8054911515620100000262ff000019909216919091179055565b6060600480546107fb90611fa2565b6005546001600160a01b03163314610b035760405162461bcd60e51b81526004016109229061200b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610bab5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610922565b610bb582826117a8565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c3b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610922565b610c483385858403610f85565b5060019392505050565b600061088b3384846110a9565b6005546001600160a01b03163314610c895760405162461bcd60e51b81526004016109229061200b565b600c839055600d849055610c9d8484611ff3565b600b55600f8190556010829055610cb48282611ff3565b600e819055600b54606391610cc891611ff3565b10610d045760405162461bcd60e51b815260206004820152600c60248201526b53616e69747920636865636b60a01b6044820152606401610922565b50505050565b6005546001600160a01b03163314610d345760405162461bcd60e51b81526004016109229061200b565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610dc05760405162461bcd60e51b81526004016109229061200b565b620186a0610dcd60025490565b610dd8906001612040565b610de2919061205f565b821015610e4f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610922565b6103e8610e5b60025490565b610e66906005612040565b610e70919061205f565b821115610edc5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610922565b50600881905560015b919050565b6005546001600160a01b03163314610f145760405162461bcd60e51b81526004016109229061200b565b6001600160a01b038116610f795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610922565b610f8281611756565b50565b6001600160a01b038316610fe75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610922565b6001600160a01b0382166110485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610922565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110cf5760405162461bcd60e51b815260040161092290612081565b6001600160a01b0382166110f55760405162461bcd60e51b8152600401610922906120c6565b8061110b57611106838360006117fc565b505050565b600a5460ff1615611481576005546001600160a01b0384811691161480159061114257506005546001600160a01b03838116911614155b801561115657506001600160a01b03821615155b801561116d57506001600160a01b03821661dead14155b80156111835750600554600160a01b900460ff16155b1561148157600a54610100900460ff1661121b576001600160a01b03831660009081526013602052604090205460ff16806111d657506001600160a01b03821660009081526013602052604090205460ff165b61121b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610922565b6001600160a01b03831660009081526015602052604090205460ff16801561125c57506001600160a01b03821660009081526014602052604090205460ff16155b15611340576007548111156112d15760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610922565b6009546001600160a01b0383166000908152602081905260409020546112f79083611ff3565b111561133b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610922565b611481565b6001600160a01b03821660009081526015602052604090205460ff16801561138157506001600160a01b03831660009081526014602052604090205460ff16155b156113f75760075481111561133b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610922565b6001600160a01b03821660009081526014602052604090205460ff16611481576009546001600160a01b03831660009081526020819052604090205461143d9083611ff3565b11156114815760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610922565b30600090815260208190526040902054600854811080159081906114ad5750600a5462010000900460ff165b80156114c35750600554600160a01b900460ff16155b80156114e857506001600160a01b03851660009081526015602052604090205460ff16155b801561150d57506001600160a01b03851660009081526013602052604090205460ff16155b801561153257506001600160a01b03841660009081526013602052604090205460ff16155b15611560576005805460ff60a01b1916600160a01b179055611552611950565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526013602052604090205460ff600160a01b9092048216159116806115ae57506001600160a01b03851660009081526013602052604090205460ff165b156115b7575060005b60008115611742576001600160a01b03861660009081526015602052604090205460ff1680156115e957506000600e54115b156116775761160e6064611608600e5488611af990919063ffffffff16565b90611b0c565b9050600e54600f54826116219190612040565b61162b919061205f565b6011600082825461163c9190611ff3565b9091555050600e546010546116519083612040565b61165b919061205f565b6012600082825461166c9190611ff3565b909155506117249050565b6001600160a01b03871660009081526015602052604090205460ff1680156116a157506000600b54115b15611724576116c06064611608600b5488611af990919063ffffffff16565b9050600b54600c54826116d39190612040565b6116dd919061205f565b601160008282546116ee9190611ff3565b9091555050600b54600d546117039083612040565b61170d919061205f565b6012600082825461171e9190611ff3565b90915550505b8015611735576117358730836117fc565b61173f8186612109565b94505b61174d8787876117fc565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260156020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166118225760405162461bcd60e51b815260040161092290612081565b6001600160a01b0382166118485760405162461bcd60e51b8152600401610922906120c6565b6001600160a01b038316600090815260208190526040902054818110156118c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610922565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906118f7908490611ff3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161194391815260200190565b60405180910390a3610d04565b30600090815260208190526040812054905060006012546011546119749190611ff3565b90506000821580611983575081155b1561198d57505050565b60085461199b906014612040565b8311156119b3576008546119b0906014612040565b92505b6000600283601154866119c69190612040565b6119d0919061205f565b6119da919061205f565b905060006119e88583611b18565b9050476119f482611b24565b6000611a004783611b18565b90506000611a1d8761160860125485611af990919063ffffffff16565b90506000611a2b8284612109565b6000601181905560125590508515801590611a465750600081115b15611a9957611a558682611ce4565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611ae6576040519150601f19603f3d011682016040523d82523d6000602084013e611aeb565b606091505b505050505050505050505050565b6000611b058284612040565b9392505050565b6000611b05828461205f565b6000611b058284612109565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b5957611b59612120565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfb9190612136565b81600181518110611c0e57611c0e612120565b60200260200101906001600160a01b031690816001600160a01b031681525050611c59307f000000000000000000000000000000000000000000000000000000000000000084610f85565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611cae908590600090869030904290600401612153565b600060405180830381600087803b158015611cc857600080fd5b505af1158015611cdc573d6000803e3d6000fd5b505050505050565b611d0f307f000000000000000000000000000000000000000000000000000000000000000084610f85565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015611d9e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611dc391906121c4565b5050505050565b600060208083528351808285015260005b81811015611df757858101830151858201604001528201611ddb565b81811115611e09576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610f8257600080fd5b60008060408385031215611e4757600080fd5b8235611e5281611e1f565b946020939093013593505050565b600060208284031215611e7257600080fd5b8135611b0581611e1f565b600080600060608486031215611e9257600080fd5b8335611e9d81611e1f565b92506020840135611ead81611e1f565b929592945050506040919091013590565b80358015158114610ee557600080fd5b60008060408385031215611ee157600080fd5b8235611eec81611e1f565b9150611efa60208401611ebe565b90509250929050565b600060208284031215611f1557600080fd5b611b0582611ebe565b60008060008060808587031215611f3457600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215611f6257600080fd5b5035919050565b60008060408385031215611f7c57600080fd5b8235611f8781611e1f565b91506020830135611f9781611e1f565b809150509250929050565b600181811c90821680611fb657607f821691505b60208210811415611fd757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561200657612006611fdd565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600081600019048311821515161561205a5761205a611fdd565b500290565b60008261207c57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561211b5761211b611fdd565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561214857600080fd5b8151611b0581611e1f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121a35784516001600160a01b03168352938301939183019160010161217e565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156121d957600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212208637eedee765d2e4702a690141b144f03a7338363c9a0649b977fb667524060f64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102605760003560e01c80638ea5220f11610144578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e1461072e578063e2f4560514610774578063f11a24d31461078a578063f2fde38b146107a0578063f6374342146107c0578063f8b45b05146107d657600080fd5b8063bbc0c742146106a3578063c0246668146106c2578063c8c8ebe4146106e2578063d257b34f146106f8578063d85ba0631461071857600080fd5b80639fccce32116101085780639fccce32146105e7578063a0d82dc5146105fd578063a457c2d714610613578063a9059cbb14610633578063adda68ee14610653578063b62496f51461067357600080fd5b80638ea5220f1461055c578063924de9b71461057c57806395d89b411461059c5780639a7a23d6146105b15780639c3b4fdc146105d157600080fd5b806349bd5a5e116101dd57806370a08231116101a157806370a08231146104a7578063715018a6146104dd578063751039fc146104f45780637571336a146105095780638a8c523c146105295780638da5cb5b1461053e57600080fd5b806349bd5a5e146103ea5780634a62bb651461041e5780634fbee193146104385780636a486a8e146104715780636ddd17131461048757600080fd5b80631a8145bb116102245780631a8145bb1461036257806323b872dd1461037857806327c8f83514610398578063313ce567146103ae57806339509351146103ca57600080fd5b806306fdde031461026c578063095ea7b31461029757806310d5de53146102c75780631694505e146102f757806318160ddd1461034357600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107ec565b60405161028e9190611dca565b60405180910390f35b3480156102a357600080fd5b506102b76102b2366004611e34565b61087e565b604051901515815260200161028e565b3480156102d357600080fd5b506102b76102e2366004611e60565b60146020526000908152604090205460ff1681565b34801561030357600080fd5b5061032b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161028e565b34801561034f57600080fd5b506002545b60405190815260200161028e565b34801561036e57600080fd5b5061035460115481565b34801561038457600080fd5b506102b7610393366004611e7d565b610894565b3480156103a457600080fd5b5061032b61dead81565b3480156103ba57600080fd5b506040516012815260200161028e565b3480156103d657600080fd5b506102b76103e5366004611e34565b610943565b3480156103f657600080fd5b5061032b7f0000000000000000000000007263204b27a9c1584aa75d66c2e52b516ad3bd1681565b34801561042a57600080fd5b50600a546102b79060ff1681565b34801561044457600080fd5b506102b7610453366004611e60565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561047d57600080fd5b50610354600e5481565b34801561049357600080fd5b50600a546102b79062010000900460ff1681565b3480156104b357600080fd5b506103546104c2366004611e60565b6001600160a01b031660009081526020819052604090205490565b3480156104e957600080fd5b506104f261097f565b005b34801561050057600080fd5b506102b76109b5565b34801561051557600080fd5b506104f2610524366004611ece565b6109f2565b34801561053557600080fd5b506104f2610a47565b34801561054a57600080fd5b506005546001600160a01b031661032b565b34801561056857600080fd5b5060065461032b906001600160a01b031681565b34801561058857600080fd5b506104f2610597366004611f03565b610a84565b3480156105a857600080fd5b50610281610aca565b3480156105bd57600080fd5b506104f26105cc366004611ece565b610ad9565b3480156105dd57600080fd5b50610354600d5481565b3480156105f357600080fd5b5061035460125481565b34801561060957600080fd5b5061035460105481565b34801561061f57600080fd5b506102b761062e366004611e34565b610bb9565b34801561063f57600080fd5b506102b761064e366004611e34565b610c52565b34801561065f57600080fd5b506104f261066e366004611f1e565b610c5f565b34801561067f57600080fd5b506102b761068e366004611e60565b60156020526000908152604090205460ff1681565b3480156106af57600080fd5b50600a546102b790610100900460ff1681565b3480156106ce57600080fd5b506104f26106dd366004611ece565b610d0a565b3480156106ee57600080fd5b5061035460075481565b34801561070457600080fd5b506102b7610713366004611f50565b610d93565b34801561072457600080fd5b50610354600b5481565b34801561073a57600080fd5b50610354610749366004611f69565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078057600080fd5b5061035460085481565b34801561079657600080fd5b50610354600c5481565b3480156107ac57600080fd5b506104f26107bb366004611e60565b610eea565b3480156107cc57600080fd5b50610354600f5481565b3480156107e257600080fd5b5061035460095481565b6060600380546107fb90611fa2565b80601f016020809104026020016040519081016040528092919081815260200182805461082790611fa2565b80156108745780601f1061084957610100808354040283529160200191610874565b820191906000526020600020905b81548152906001019060200180831161085757829003601f168201915b5050505050905090565b600061088b338484610f85565b50600192915050565b60006108a18484846110a9565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561092b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109388533858403610f85565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161088b91859061097a908690611ff3565b610f85565b6005546001600160a01b031633146109a95760405162461bcd60e51b81526004016109229061200b565b6109b36000611756565b565b6005546000906001600160a01b031633146109e25760405162461bcd60e51b81526004016109229061200b565b50600a805460ff19169055600190565b6005546001600160a01b03163314610a1c5760405162461bcd60e51b81526004016109229061200b565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a715760405162461bcd60e51b81526004016109229061200b565b600a805462ffff00191662010100179055565b6005546001600160a01b03163314610aae5760405162461bcd60e51b81526004016109229061200b565b600a8054911515620100000262ff000019909216919091179055565b6060600480546107fb90611fa2565b6005546001600160a01b03163314610b035760405162461bcd60e51b81526004016109229061200b565b7f0000000000000000000000007263204b27a9c1584aa75d66c2e52b516ad3bd166001600160a01b0316826001600160a01b03161415610bab5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610922565b610bb582826117a8565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c3b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610922565b610c483385858403610f85565b5060019392505050565b600061088b3384846110a9565b6005546001600160a01b03163314610c895760405162461bcd60e51b81526004016109229061200b565b600c839055600d849055610c9d8484611ff3565b600b55600f8190556010829055610cb48282611ff3565b600e819055600b54606391610cc891611ff3565b10610d045760405162461bcd60e51b815260206004820152600c60248201526b53616e69747920636865636b60a01b6044820152606401610922565b50505050565b6005546001600160a01b03163314610d345760405162461bcd60e51b81526004016109229061200b565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610dc05760405162461bcd60e51b81526004016109229061200b565b620186a0610dcd60025490565b610dd8906001612040565b610de2919061205f565b821015610e4f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610922565b6103e8610e5b60025490565b610e66906005612040565b610e70919061205f565b821115610edc5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610922565b50600881905560015b919050565b6005546001600160a01b03163314610f145760405162461bcd60e51b81526004016109229061200b565b6001600160a01b038116610f795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610922565b610f8281611756565b50565b6001600160a01b038316610fe75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610922565b6001600160a01b0382166110485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610922565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110cf5760405162461bcd60e51b815260040161092290612081565b6001600160a01b0382166110f55760405162461bcd60e51b8152600401610922906120c6565b8061110b57611106838360006117fc565b505050565b600a5460ff1615611481576005546001600160a01b0384811691161480159061114257506005546001600160a01b03838116911614155b801561115657506001600160a01b03821615155b801561116d57506001600160a01b03821661dead14155b80156111835750600554600160a01b900460ff16155b1561148157600a54610100900460ff1661121b576001600160a01b03831660009081526013602052604090205460ff16806111d657506001600160a01b03821660009081526013602052604090205460ff165b61121b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610922565b6001600160a01b03831660009081526015602052604090205460ff16801561125c57506001600160a01b03821660009081526014602052604090205460ff16155b15611340576007548111156112d15760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610922565b6009546001600160a01b0383166000908152602081905260409020546112f79083611ff3565b111561133b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610922565b611481565b6001600160a01b03821660009081526015602052604090205460ff16801561138157506001600160a01b03831660009081526014602052604090205460ff16155b156113f75760075481111561133b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610922565b6001600160a01b03821660009081526014602052604090205460ff16611481576009546001600160a01b03831660009081526020819052604090205461143d9083611ff3565b11156114815760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610922565b30600090815260208190526040902054600854811080159081906114ad5750600a5462010000900460ff165b80156114c35750600554600160a01b900460ff16155b80156114e857506001600160a01b03851660009081526015602052604090205460ff16155b801561150d57506001600160a01b03851660009081526013602052604090205460ff16155b801561153257506001600160a01b03841660009081526013602052604090205460ff16155b15611560576005805460ff60a01b1916600160a01b179055611552611950565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526013602052604090205460ff600160a01b9092048216159116806115ae57506001600160a01b03851660009081526013602052604090205460ff165b156115b7575060005b60008115611742576001600160a01b03861660009081526015602052604090205460ff1680156115e957506000600e54115b156116775761160e6064611608600e5488611af990919063ffffffff16565b90611b0c565b9050600e54600f54826116219190612040565b61162b919061205f565b6011600082825461163c9190611ff3565b9091555050600e546010546116519083612040565b61165b919061205f565b6012600082825461166c9190611ff3565b909155506117249050565b6001600160a01b03871660009081526015602052604090205460ff1680156116a157506000600b54115b15611724576116c06064611608600b5488611af990919063ffffffff16565b9050600b54600c54826116d39190612040565b6116dd919061205f565b601160008282546116ee9190611ff3565b9091555050600b54600d546117039083612040565b61170d919061205f565b6012600082825461171e9190611ff3565b90915550505b8015611735576117358730836117fc565b61173f8186612109565b94505b61174d8787876117fc565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260156020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166118225760405162461bcd60e51b815260040161092290612081565b6001600160a01b0382166118485760405162461bcd60e51b8152600401610922906120c6565b6001600160a01b038316600090815260208190526040902054818110156118c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610922565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906118f7908490611ff3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161194391815260200190565b60405180910390a3610d04565b30600090815260208190526040812054905060006012546011546119749190611ff3565b90506000821580611983575081155b1561198d57505050565b60085461199b906014612040565b8311156119b3576008546119b0906014612040565b92505b6000600283601154866119c69190612040565b6119d0919061205f565b6119da919061205f565b905060006119e88583611b18565b9050476119f482611b24565b6000611a004783611b18565b90506000611a1d8761160860125485611af990919063ffffffff16565b90506000611a2b8284612109565b6000601181905560125590508515801590611a465750600081115b15611a9957611a558682611ce4565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611ae6576040519150601f19603f3d011682016040523d82523d6000602084013e611aeb565b606091505b505050505050505050505050565b6000611b058284612040565b9392505050565b6000611b05828461205f565b6000611b058284612109565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b5957611b59612120565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfb9190612136565b81600181518110611c0e57611c0e612120565b60200260200101906001600160a01b031690816001600160a01b031681525050611c59307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f85565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611cae908590600090869030904290600401612153565b600060405180830381600087803b158015611cc857600080fd5b505af1158015611cdc573d6000803e3d6000fd5b505050505050565b611d0f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f85565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015611d9e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611dc391906121c4565b5050505050565b600060208083528351808285015260005b81811015611df757858101830151858201604001528201611ddb565b81811115611e09576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610f8257600080fd5b60008060408385031215611e4757600080fd5b8235611e5281611e1f565b946020939093013593505050565b600060208284031215611e7257600080fd5b8135611b0581611e1f565b600080600060608486031215611e9257600080fd5b8335611e9d81611e1f565b92506020840135611ead81611e1f565b929592945050506040919091013590565b80358015158114610ee557600080fd5b60008060408385031215611ee157600080fd5b8235611eec81611e1f565b9150611efa60208401611ebe565b90509250929050565b600060208284031215611f1557600080fd5b611b0582611ebe565b60008060008060808587031215611f3457600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215611f6257600080fd5b5035919050565b60008060408385031215611f7c57600080fd5b8235611f8781611e1f565b91506020830135611f9781611e1f565b809150509250929050565b600181811c90821680611fb657607f821691505b60208210811415611fd757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561200657612006611fdd565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600081600019048311821515161561205a5761205a611fdd565b500290565b60008261207c57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561211b5761211b611fdd565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561214857600080fd5b8151611b0581611e1f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121a35784516001600160a01b03168352938301939183019160010161217e565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156121d957600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212208637eedee765d2e4702a690141b144f03a7338363c9a0649b977fb667524060f64736f6c634300080a0033
Deployed Bytecode Sourcemap
32639:12526:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9567:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11734:169;;;;;;;;;;-1:-1:-1;11734:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11734:169:0;1072:187:1;33599:63:0;;;;;;;;;;-1:-1:-1;33599:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32712:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;32712:51:0;1516:230:1;10687:108:0;;;;;;;;;;-1:-1:-1;10775:12:0;;10687:108;;;1897:25:1;;;1885:2;1870:18;10687:108:0;1751:177:1;33383:33:0;;;;;;;;;;;;;;;;12385:492;;;;;;;;;;-1:-1:-1;12385:492:0;;;;;:::i;:::-;;:::i;32815:53::-;;;;;;;;;;;;32861:6;32815:53;;10529:93;;;;;;;;;;-1:-1:-1;10529:93:0;;10612:2;2744:36:1;;2732:2;2717:18;10529:93:0;2602:184:1;13286:215:0;;;;;;;;;;-1:-1:-1;13286:215:0;;;;;:::i;:::-;;:::i;32770:38::-;;;;;;;;;;;;;;;33055:33;;;;;;;;;;-1:-1:-1;33055:33:0;;;;;;;;38707:126;;;;;;;;;;-1:-1:-1;38707:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38797:28:0;38773:4;38797:28;;;:19;:28;;;;;;;;;38707:126;33279:28;;;;;;;;;;;;;;;;33135:31;;;;;;;;;;-1:-1:-1;33135:31:0;;;;;;;;;;;10858:127;;;;;;;;;;-1:-1:-1;10858:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10959:18:0;10932:7;10959:18;;;;;;;;;;;;10858:127;2802:103;;;;;;;;;;;;;:::i;:::-;;36505:121;;;;;;;;;;;;;:::i;37202:167::-;;;;;;;;;;-1:-1:-1;37202:167:0;;;;;:::i;:::-;;:::i;36341:112::-;;;;;;;;;;;;;:::i;2151:87::-;;;;;;;;;;-1:-1:-1;2224:6:0;;-1:-1:-1;;;;;2224:6:0;2151:87;;32907:24;;;;;;;;;;-1:-1:-1;32907:24:0;;;;-1:-1:-1;;;;;32907:24:0;;;37465:100;;;;;;;;;;-1:-1:-1;37465:100:0;;;;;:::i;:::-;;:::i;9786:104::-;;;;;;;;;;;;;:::i;38199:304::-;;;;;;;;;;-1:-1:-1;38199:304:0;;;;;:::i;:::-;;:::i;33246:24::-;;;;;;;;;;;;;;;;33423:27;;;;;;;;;;;;;;;;33352:25;;;;;;;;;;;;;;;;14004:413;;;;;;;;;;-1:-1:-1;14004:413:0;;;;;:::i;:::-;;:::i;11198:175::-;;;;;;;;;;-1:-1:-1;11198:175:0;;;;;:::i;:::-;;:::i;37573:428::-;;;;;;;;;;-1:-1:-1;37573:428:0;;;;;:::i;:::-;;:::i;33820:57::-;;;;;;;;;;-1:-1:-1;33820:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33095:33;;;;;;;;;;-1:-1:-1;33095:33:0;;;;;;;;;;;38009:182;;;;;;;;;;-1:-1:-1;38009:182:0;;;;;:::i;:::-;;:::i;32940:35::-;;;;;;;;;;;;;;;;36696:497;;;;;;;;;;-1:-1:-1;36696:497:0;;;;;:::i;:::-;;:::i;33175:27::-;;;;;;;;;;;;;;;;11436:151;;;;;;;;;;-1:-1:-1;11436:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11552:18:0;;;11525:7;11552:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11436:151;32982:33;;;;;;;;;;;;;;;;33209:30;;;;;;;;;;;;;;;;3060:201;;;;;;;;;;-1:-1:-1;3060:201:0;;;;;:::i;:::-;;:::i;33314:31::-;;;;;;;;;;;;;;;;33022:24;;;;;;;;;;;;;;;;9567:100;9621:13;9654:5;9647:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9567:100;:::o;11734:169::-;11817:4;11834:39;904:10;11857:7;11866:6;11834:8;:39::i;:::-;-1:-1:-1;11891:4:0;11734:169;;;;:::o;12385:492::-;12525:4;12542:36;12552:6;12560:9;12571:6;12542:9;:36::i;:::-;-1:-1:-1;;;;;12618:19:0;;12591:24;12618:19;;;:11;:19;;;;;;;;904:10;12618:33;;;;;;;;12670:26;;;;12662:79;;;;-1:-1:-1;;;12662:79:0;;5016:2:1;12662:79:0;;;4998:21:1;5055:2;5035:18;;;5028:30;5094:34;5074:18;;;5067:62;-1:-1:-1;;;5145:18:1;;;5138:38;5193:19;;12662:79:0;;;;;;;;;12777:57;12786:6;904:10;12827:6;12808:16;:25;12777:8;:57::i;:::-;-1:-1:-1;12865:4:0;;12385:492;-1:-1:-1;;;;12385:492:0:o;13286:215::-;904:10;13374:4;13423:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13423:34:0;;;;;;;;;;13374:4;;13391:80;;13414:7;;13423:47;;13460:10;;13423:47;:::i;:::-;13391:8;:80::i;2802:103::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;2867:30:::1;2894:1;2867:18;:30::i;:::-;2802:103::o:0;36505:121::-;2224:6;;36557:4;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;-1:-1:-1;36574:14:0::1;:22:::0;;-1:-1:-1;;36574:22:0::1;::::0;;;36505:121;:::o;37202:167::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37315:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37315:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37202:167::o;36341:112::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;36396:13:::1;:20:::0;;-1:-1:-1;;36427:18:0;;;;;36341:112::o;37465:100::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;37536:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37536:21:0;;::::1;::::0;;;::::1;::::0;;37465:100::o;9786:104::-;9842:13;9875:7;9868:14;;;;;:::i;38199:304::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;38343:13:::1;-1:-1:-1::0;;;;;38335:21:0::1;:4;-1:-1:-1::0;;;;;38335:21:0::1;;;38313:128;;;::::0;-1:-1:-1;;;38313:128:0;;6051:2:1;38313:128:0::1;::::0;::::1;6033:21:1::0;6090:2;6070:18;;;6063:30;6129:34;6109:18;;;6102:62;6200:27;6180:18;;;6173:55;6245:19;;38313:128:0::1;5849:421:1::0;38313:128:0::1;38454:41;38483:4;38489:5;38454:28;:41::i;:::-;38199:304:::0;;:::o;14004:413::-;904:10;14097:4;14141:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14141:34:0;;;;;;;;;;14194:35;;;;14186:85;;;;-1:-1:-1;;;14186:85:0;;6477:2:1;14186:85:0;;;6459:21:1;6516:2;6496:18;;;6489:30;6555:34;6535:18;;;6528:62;-1:-1:-1;;;6606:18:1;;;6599:35;6651:19;;14186:85:0;6275:401:1;14186:85:0;14307:67;904:10;14330:7;14358:15;14339:16;:34;14307:8;:67::i;:::-;-1:-1:-1;14405:4:0;;14004:413;-1:-1:-1;;;14004:413:0:o;11198:175::-;11284:4;11301:42;904:10;11325:9;11336:6;11301:9;:42::i;37573:428::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;37690:15:::1;:24:::0;;;37725:9:::1;:18:::0;;;37769:27:::1;37737:6:::0;37708;37769:27:::1;:::i;:::-;37754:12;:42:::0;37809:16:::1;:26:::0;;;37846:10:::1;:20:::0;;;37893:29:::1;37859:7:::0;37828;37893:29:::1;:::i;:::-;37877:13;:45:::0;;;37943:12:::1;::::0;37974:2:::1;::::0;37943:28:::1;::::0;::::1;:::i;:::-;:33;37935:58;;;::::0;-1:-1:-1;;;37935:58:0;;6883:2:1;37935:58:0::1;::::0;::::1;6865:21:1::0;6922:2;6902:18;;;6895:30;-1:-1:-1;;;6941:18:1;;;6934:42;6993:18;;37935:58:0::1;6681:336:1::0;37935:58:0::1;37573:428:::0;;;;:::o;38009:182::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38094:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38094:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38149:34;;1212:41:1;;;38149:34:0::1;::::0;1185:18:1;38149:34:0::1;;;;;;;38009:182:::0;;:::o;36696:497::-;2224:6;;36804:4;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;36883:6:::1;36862:13;10775:12:::0;;;10687:108;36862:13:::1;:17;::::0;36878:1:::1;36862:17;:::i;:::-;36861:28;;;;:::i;:::-;36848:9;:41;;36826:144;;;::::0;-1:-1:-1;;;36826:144:0;;7619:2:1;36826:144:0::1;::::0;::::1;7601:21:1::0;7658:2;7638:18;;;7631:30;7697:34;7677:18;;;7670:62;-1:-1:-1;;;7748:18:1;;;7741:51;7809:19;;36826:144:0::1;7417:417:1::0;36826:144:0::1;37038:4;37017:13;10775:12:::0;;;10687:108;37017:13:::1;:17;::::0;37033:1:::1;37017:17;:::i;:::-;37016:26;;;;:::i;:::-;37003:9;:39;;36981:141;;;::::0;-1:-1:-1;;;36981:141:0;;8041:2:1;36981:141:0::1;::::0;::::1;8023:21:1::0;8080:2;8060:18;;;8053:30;8119:34;8099:18;;;8092:62;-1:-1:-1;;;8170:18:1;;;8163:50;8230:19;;36981:141:0::1;7839:416:1::0;36981:141:0::1;-1:-1:-1::0;37133:18:0::1;:30:::0;;;37181:4:::1;2442:1;36696:497:::0;;;:::o;3060:201::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3149:22:0;::::1;3141:73;;;::::0;-1:-1:-1;;;3141:73:0;;8462:2:1;3141:73:0::1;::::0;::::1;8444:21:1::0;8501:2;8481:18;;;8474:30;8540:34;8520:18;;;8513:62;-1:-1:-1;;;8591:18:1;;;8584:36;8637:19;;3141:73:0::1;8260:402:1::0;3141:73:0::1;3225:28;3244:8;3225:18;:28::i;:::-;3060:201:::0;:::o;17688:380::-;-1:-1:-1;;;;;17824:19:0;;17816:68;;;;-1:-1:-1;;;17816:68:0;;8869:2:1;17816:68:0;;;8851:21:1;8908:2;8888:18;;;8881:30;8947:34;8927:18;;;8920:62;-1:-1:-1;;;8998:18:1;;;8991:34;9042:19;;17816:68:0;8667:400:1;17816:68:0;-1:-1:-1;;;;;17903:21:0;;17895:68;;;;-1:-1:-1;;;17895:68:0;;9274:2:1;17895:68:0;;;9256:21:1;9313:2;9293:18;;;9286:30;9352:34;9332:18;;;9325:62;-1:-1:-1;;;9403:18:1;;;9396:32;9445:19;;17895:68:0;9072:398:1;17895:68:0;-1:-1:-1;;;;;17976:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18028:32;;1897:25:1;;;18028:32:0;;1870:18:1;18028:32:0;;;;;;;17688:380;;;:::o;38841:3778::-;-1:-1:-1;;;;;38973:18:0;;38965:68;;;;-1:-1:-1;;;38965:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39052:16:0;;39044:64;;;;-1:-1:-1;;;39044:64:0;;;;;;;:::i;:::-;39125:11;39121:93;;39153:28;39169:4;39175:2;39179:1;39153:15;:28::i;:::-;38841:3778;;;:::o;39121:93::-;39230:14;;;;39226:1694;;;2224:6;;-1:-1:-1;;;;;39283:15:0;;;2224:6;;39283:15;;;;:49;;-1:-1:-1;2224:6:0;;-1:-1:-1;;;;;39319:13:0;;;2224:6;;39319:13;;39283:49;:86;;;;-1:-1:-1;;;;;;39353:16:0;;;;39283:86;:128;;;;-1:-1:-1;;;;;;39390:21:0;;39404:6;39390:21;;39283:128;:158;;;;-1:-1:-1;39433:8:0;;-1:-1:-1;;;39433:8:0;;;;39432:9;39283:158;39261:1648;;;39481:13;;;;;;;39476:223;;-1:-1:-1;;;;;39553:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39582:23:0;;;;;;:19;:23;;;;;;;;39553:52;39519:160;;;;-1:-1:-1;;;39519:160:0;;10487:2:1;39519:160:0;;;10469:21:1;10526:2;10506:18;;;10499:30;-1:-1:-1;;;10545:18:1;;;10538:52;10607:18;;39519:160:0;10285:346:1;39519:160:0;-1:-1:-1;;;;;39773:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;39830:35:0;;;;;;:31;:35;;;;;;;;39829:36;39773:92;39747:1147;;;39952:20;;39942:6;:30;;39908:169;;;;-1:-1:-1;;;39908:169:0;;10838:2:1;39908:169:0;;;10820:21:1;10877:2;10857:18;;;10850:30;10916:34;10896:18;;;10889:62;-1:-1:-1;;;10967:18:1;;;10960:51;11028:19;;39908:169:0;10636:417:1;39908:169:0;40160:9;;-1:-1:-1;;;;;10959:18:0;;10932:7;10959:18;;;;;;;;;;;40134:22;;:6;:22;:::i;:::-;:35;;40100:140;;;;-1:-1:-1;;;40100:140:0;;11260:2:1;40100:140:0;;;11242:21:1;11299:2;11279:18;;;11272:30;-1:-1:-1;;;11318:18:1;;;11311:49;11377:18;;40100:140:0;11058:343:1;40100:140:0;39747:1147;;;-1:-1:-1;;;;;40338:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40393:37:0;;;;;;:31;:37;;;;;;;;40392:38;40338:92;40312:582;;;40517:20;;40507:6;:30;;40473:170;;;;-1:-1:-1;;;40473:170:0;;11608:2:1;40473:170:0;;;11590:21:1;11647:2;11627:18;;;11620:30;11686:34;11666:18;;;11659:62;-1:-1:-1;;;11737:18:1;;;11730:52;11799:19;;40473:170:0;11406:418:1;40312:582:0;-1:-1:-1;;;;;40674:35:0;;;;;;:31;:35;;;;;;;;40669:225;;40794:9;;-1:-1:-1;;;;;10959:18:0;;10932:7;10959:18;;;;;;;;;;;40768:22;;:6;:22;:::i;:::-;:35;;40734:140;;;;-1:-1:-1;;;40734:140:0;;11260:2:1;40734:140:0;;;11242:21:1;11299:2;11279:18;;;11272:30;-1:-1:-1;;;11318:18:1;;;11311:49;11377:18;;40734:140:0;11058:343:1;40734:140:0;40981:4;40932:28;10959:18;;;;;;;;;;;41039;;41015:42;;;;;;;41088:35;;-1:-1:-1;41112:11:0;;;;;;;41088:35;:61;;;;-1:-1:-1;41141:8:0;;-1:-1:-1;;;41141:8:0;;;;41140:9;41088:61;:110;;;;-1:-1:-1;;;;;;41167:31:0;;;;;;:25;:31;;;;;;;;41166:32;41088:110;:153;;;;-1:-1:-1;;;;;;41216:25:0;;;;;;:19;:25;;;;;;;;41215:26;41088:153;:194;;;;-1:-1:-1;;;;;;41259:23:0;;;;;;:19;:23;;;;;;;;41258:24;41088:194;41070:326;;;41309:8;:15;;-1:-1:-1;;;;41309:15:0;-1:-1:-1;;;41309:15:0;;;41341:10;:8;:10::i;:::-;41368:8;:16;;-1:-1:-1;;;;41368:16:0;;;41070:326;41424:8;;-1:-1:-1;;;;;41534:25:0;;41408:12;41534:25;;;:19;:25;;;;;;41424:8;-1:-1:-1;;;41424:8:0;;;;;41423:9;;41534:25;;:52;;-1:-1:-1;;;;;;41563:23:0;;;;;;:19;:23;;;;;;;;41534:52;41530:100;;;-1:-1:-1;41613:5:0;41530:100;41642:12;41747:7;41743:823;;;-1:-1:-1;;;;;41799:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;41848:1;41832:13;;:17;41799:50;41795:622;;;41877:34;41907:3;41877:25;41888:13;;41877:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;41870:41;;41980:13;;41960:16;;41953:4;:23;;;;:::i;:::-;41952:41;;;;:::i;:::-;41930:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42050:13:0;;42036:10;;42029:17;;:4;:17;:::i;:::-;42028:35;;;;:::i;:::-;42012:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;41795:622:0;;-1:-1:-1;41795:622:0;;-1:-1:-1;;;;;42141:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42191:1;42176:12;;:16;42141:51;42137:280;;;42220:33;42249:3;42220:24;42231:12;;42220:6;:10;;:24;;;;:::i;:33::-;42213:40;;42321:12;;42302:15;;42295:4;:22;;;;:::i;:::-;42294:39;;;;:::i;:::-;42272:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42389:12:0;;42376:9;;42369:16;;:4;:16;:::i;:::-;42368:33;;;;:::i;:::-;42352:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;42137:280:0;42437:8;;42433:91;;42466:42;42482:4;42496;42503;42466:15;:42::i;:::-;42540:14;42550:4;42540:14;;:::i;:::-;;;41743:823;42578:33;42594:4;42600:2;42604:6;42578:15;:33::i;:::-;38954:3665;;;;38841:3778;;;:::o;3421:191::-;3514:6;;;-1:-1:-1;;;;;3531:17:0;;;-1:-1:-1;;;;;;3531:17:0;;;;;;;3564:40;;3514:6;;;3531:17;3514:6;;3564:40;;3495:16;;3564:40;3484:128;3421:191;:::o;38511:188::-;-1:-1:-1;;;;;38594:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38594:39:0;;;;;;;;;;38651:40;;38594:39;;:31;38651:40;;;38511:188;;:::o;14907:733::-;-1:-1:-1;;;;;15047:20:0;;15039:70;;;;-1:-1:-1;;;15039:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15128:23:0;;15120:71;;;;-1:-1:-1;;;15120:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15288:17:0;;15264:21;15288:17;;;;;;;;;;;15324:23;;;;15316:74;;;;-1:-1:-1;;;15316:74:0;;12161:2:1;15316:74:0;;;12143:21:1;12200:2;12180:18;;;12173:30;12239:34;12219:18;;;12212:62;-1:-1:-1;;;12290:18:1;;;12283:36;12336:19;;15316:74:0;11959:402:1;15316:74:0;-1:-1:-1;;;;;15426:17:0;;;:9;:17;;;;;;;;;;;15446:22;;;15426:42;;15490:20;;;;;;;;:30;;15462:6;;15426:9;15490:30;;15462:6;;15490:30;:::i;:::-;;;;;;;;15555:9;-1:-1:-1;;;;;15538:35:0;15547:6;-1:-1:-1;;;;;15538:35:0;;15566:6;15538:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15538:35:0;;;;;;;;15586:46;38841:3778;43747:1413;43830:4;43786:23;10959:18;;;;;;;;;;;43786:50;;43847:25;43896:12;;43875:18;;:33;;;;:::i;:::-;43847:61;-1:-1:-1;43919:12:0;43948:20;;;:46;;-1:-1:-1;43972:22:0;;43948:46;43944:85;;;44011:7;;;43747:1413::o;43944:85::-;44063:18;;:23;;44084:2;44063:23;:::i;:::-;44045:15;:41;44041:115;;;44121:18;;:23;;44142:2;44121:23;:::i;:::-;44103:41;;44041:115;44217:23;44304:1;44284:17;44262:18;;44244:15;:36;;;;:::i;:::-;44243:58;;;;:::i;:::-;:62;;;;:::i;:::-;44217:88;-1:-1:-1;44316:26:0;44345:36;:15;44217:88;44345:19;:36::i;:::-;44316:65;-1:-1:-1;44422:21:0;44456:36;44316:65;44456:16;:36::i;:::-;44505:18;44526:44;:21;44552:17;44526:25;:44::i;:::-;44505:65;;44584:17;44604:51;44637:17;44604:28;44619:12;;44604:10;:14;;:28;;;;:::i;:51::-;44584:71;-1:-1:-1;44668:23:0;44694:22;44584:71;44694:10;:22;:::i;:::-;44750:1;44729:18;:22;;;44762:12;:16;44668:48;-1:-1:-1;44795:19:0;;;;;:42;;;44836:1;44818:15;:19;44795:42;44791:278;;;44854:46;44867:15;44884;44854:12;:46::i;:::-;45024:18;;44920:137;;;12568:25:1;;;12624:2;12609:18;;12602:34;;;12652:18;;;12645:34;;;;44920:137:0;;;;;;12556:2:1;44920:137:0;;;44791:278;45103:9;;45095:57;;-1:-1:-1;;;;;45103:9:0;;;;45126:21;;45095:57;;;;45126:21;45103:9;45095:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;43747:1413:0:o;23141:98::-;23199:7;23226:5;23230:1;23226;:5;:::i;:::-;23219:12;23141:98;-1:-1:-1;;;23141:98:0:o;23540:::-;23598:7;23625:5;23629:1;23625;:5;:::i;22784:98::-;22842:7;22869:5;22873:1;22869;:5;:::i;42627:589::-;42777:16;;;42791:1;42777:16;;;;;;;;42753:21;;42777:16;;;;;;;;;;-1:-1:-1;42777:16:0;42753:40;;42822:4;42804;42809:1;42804:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42804:23:0;;;-1:-1:-1;;;;;42804:23:0;;;;;42848:15;-1:-1:-1;;;;;42848:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42838:4;42843:1;42838:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42838:32:0;;;-1:-1:-1;;;;;42838:32:0;;;;;42883:62;42900:4;42915:15;42933:11;42883:8;:62::i;:::-;42984:224;;-1:-1:-1;;;42984:224:0;;-1:-1:-1;;;;;42984:15:0;:66;;;;:224;;43065:11;;43091:1;;43135:4;;43162;;43182:15;;42984:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42682:534;42627:589;:::o;43224:515::-;43372:62;43389:4;43404:15;43422:11;43372:8;:62::i;:::-;43681:9;;43477:254;;-1:-1:-1;;;43477:254:0;;43549:4;43477:254;;;14746:34:1;14796:18;;;14789:34;;;43595:1:0;14839:18:1;;;14832:34;;;14882:18;;;14875:34;-1:-1:-1;;;;;43681:9:0;;;14925:19:1;;;14918:44;43705:15:0;14978:19:1;;;14971:35;43477:15:0;:31;;;;;;43516:9;;14680:19:1;;43477:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43224:515;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2791:160::-;2856:20;;2912:13;;2905:21;2895:32;;2885:60;;2941:1;2938;2931:12;2956:315;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3137:9;3124:23;3156:31;3181:5;3156:31;:::i;:::-;3206:5;-1:-1:-1;3230:35:1;3261:2;3246:18;;3230:35;:::i;:::-;3220:45;;2956:315;;;;;:::o;3276:180::-;3332:6;3385:2;3373:9;3364:7;3360:23;3356:32;3353:52;;;3401:1;3398;3391:12;3353:52;3424:26;3440:9;3424:26;:::i;3461:385::-;3547:6;3555;3563;3571;3624:3;3612:9;3603:7;3599:23;3595:33;3592:53;;;3641:1;3638;3631:12;3592:53;-1:-1:-1;;3664:23:1;;;3734:2;3719:18;;3706:32;;-1:-1:-1;3785:2:1;3770:18;;3757:32;;3836:2;3821:18;3808:32;;-1:-1:-1;3461:385:1;-1:-1:-1;3461:385:1:o;3851:180::-;3910:6;3963:2;3951:9;3942:7;3938:23;3934:32;3931:52;;;3979:1;3976;3969:12;3931:52;-1:-1:-1;4002:23:1;;3851:180;-1:-1:-1;3851:180:1:o;4036:388::-;4104:6;4112;4165:2;4153:9;4144:7;4140:23;4136:32;4133:52;;;4181:1;4178;4171:12;4133:52;4220:9;4207:23;4239:31;4264:5;4239:31;:::i;:::-;4289:5;-1:-1:-1;4346:2:1;4331:18;;4318:32;4359:33;4318:32;4359:33;:::i;:::-;4411:7;4401:17;;;4036:388;;;;;:::o;4429:380::-;4508:1;4504:12;;;;4551;;;4572:61;;4626:4;4618:6;4614:17;4604:27;;4572:61;4679:2;4671:6;4668:14;4648:18;4645:38;4642:161;;;4725:10;4720:3;4716:20;4713:1;4706:31;4760:4;4757:1;4750:15;4788:4;4785:1;4778:15;4642:161;;4429:380;;;:::o;5223:127::-;5284:10;5279:3;5275:20;5272:1;5265:31;5315:4;5312:1;5305:15;5339:4;5336:1;5329:15;5355:128;5395:3;5426:1;5422:6;5419:1;5416:13;5413:39;;;5432:18;;:::i;:::-;-1:-1:-1;5468:9:1;;5355:128::o;5488:356::-;5690:2;5672:21;;;5709:18;;;5702:30;5768:34;5763:2;5748:18;;5741:62;5835:2;5820:18;;5488:356::o;7022:168::-;7062:7;7128:1;7124;7120:6;7116:14;7113:1;7110:21;7105:1;7098:9;7091:17;7087:45;7084:71;;;7135:18;;:::i;:::-;-1:-1:-1;7175:9:1;;7022:168::o;7195:217::-;7235:1;7261;7251:132;;7305:10;7300:3;7296:20;7293:1;7286:31;7340:4;7337:1;7330:15;7368:4;7365:1;7358:15;7251:132;-1:-1:-1;7397:9:1;;7195:217::o;9475:401::-;9677:2;9659:21;;;9716:2;9696:18;;;9689:30;9755:34;9750:2;9735:18;;9728:62;-1:-1:-1;;;9821:2:1;9806:18;;9799:35;9866:3;9851:19;;9475:401::o;9881:399::-;10083:2;10065:21;;;10122:2;10102:18;;;10095:30;10161:34;10156:2;10141:18;;10134:62;-1:-1:-1;;;10227:2:1;10212:18;;10205:33;10270:3;10255:19;;9881:399::o;11829:125::-;11869:4;11897:1;11894;11891:8;11888:34;;;11902:18;;:::i;:::-;-1:-1:-1;11939:9:1;;11829:125::o;13032:127::-;13093:10;13088:3;13084:20;13081:1;13074:31;13124:4;13121:1;13114:15;13148:4;13145:1;13138:15;13164:251;13234:6;13287:2;13275:9;13266:7;13262:23;13258:32;13255:52;;;13303:1;13300;13293:12;13255:52;13335:9;13329:16;13354:31;13379:5;13354:31;:::i;13420:980::-;13682:4;13730:3;13719:9;13715:19;13761:6;13750:9;13743:25;13787:2;13825:6;13820:2;13809:9;13805:18;13798:34;13868:3;13863:2;13852:9;13848:18;13841:31;13892:6;13927;13921:13;13958:6;13950;13943:22;13996:3;13985:9;13981:19;13974:26;;14035:2;14027:6;14023:15;14009:29;;14056:1;14066:195;14080:6;14077:1;14074:13;14066:195;;;14145:13;;-1:-1:-1;;;;;14141:39:1;14129:52;;14236:15;;;;14201:12;;;;14177:1;14095:9;14066:195;;;-1:-1:-1;;;;;;;14317:32:1;;;;14312:2;14297:18;;14290:60;-1:-1:-1;;;14381:3:1;14366:19;14359:35;14278:3;13420:980;-1:-1:-1;;;13420:980:1:o;15017:306::-;15105:6;15113;15121;15174:2;15162:9;15153:7;15149:23;15145:32;15142:52;;;15190:1;15187;15180:12;15142:52;15219:9;15213:16;15203:26;;15269:2;15258:9;15254:18;15248:25;15238:35;;15313:2;15302:9;15298:18;15292:25;15282:35;;15017:306;;;;;:::o
Swarm Source
ipfs://8637eedee765d2e4702a690141b144f03a7338363c9a0649b977fb667524060f
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.