Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 BOO
Holders
24
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000015061622 BOOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GHOST
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-08 */ /** ░██████╗░██╗░░██╗░█████╗░░██████╗████████╗ ██╔════╝░██║░░██║██╔══██╗██╔════╝╚══██╔══╝ ██║░░██╗░███████║██║░░██║╚█████╗░░░░██║░░░ ██║░░╚██╗██╔══██║██║░░██║░╚═══██╗░░░██║░░░ ╚██████╔╝██║░░██║╚█████╔╝██████╔╝░░░██║░░░ ░╚═════╝░╚═╝░░╚═╝░╚════╝░╚═════╝░░░░╚═╝░░░ 🌐Website: https://ghostsnipe.com 📔Whitepaper: https://www.ghostsnipe.com/Whitepaper.pdf ✉️Telegram: https://t.me/GHOST_ERC */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint 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 (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint 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 (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); 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 (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } 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); } 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); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; 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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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 to 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 {} } library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract GHOST is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address public ghostMKTWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 public buyghostMKTFee; uint256 public buyLiquidityFee; uint256 public buyBurnFee; uint256 public sellTotalFees; uint256 public sellghostMKTFee; uint256 public sellLiquidityFee; uint256 public sellBurnFee; uint256 public tokensForghostMKT; uint256 public tokensForLiquidity; // block number of opened trading uint256 launchedAt; /******************/ // exclude 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 ghostMKTWalletUpdated(address indexed newWallet, address indexed oldWallet); event burnWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event TransferForeignToken(address token, uint256 amount); constructor() ERC20("GHOST", "BOO") { 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 _buyghostMKTFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyBurnFee = 0; uint256 _sellghostMKTFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellBurnFee = 0; uint256 totalSupply = 1000000000 * 1e18; maxTransactionAmount = totalSupply * 1000/ 1000; maxWallet = totalSupply * 1000/ 1000; swapTokensAtAmount = totalSupply * 50 / 10000; buyghostMKTFee = _buyghostMKTFee; buyLiquidityFee = _buyLiquidityFee; buyBurnFee = _buyBurnFee; buyTotalFees = buyghostMKTFee + buyLiquidityFee + buyBurnFee; sellghostMKTFee = _sellghostMKTFee; sellLiquidityFee = _sellLiquidityFee; sellBurnFee = _sellBurnFee; sellTotalFees = sellghostMKTFee + sellLiquidityFee + sellBurnFee; ghostMKTWallet = address(0x278218b7525c2C06DD7a73042cf37ca34f60EEa4); // 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; launchedAt = block.number; } // 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 updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.5%"); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%"); maxWallet = newNum * (10**18); } 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(){ tradingActive = enabled; } function updateBuyFees(uint256 _ghostMKTFee, uint256 _liquidityFee, uint256 _burnFee) external onlyOwner { buyghostMKTFee = _ghostMKTFee; buyLiquidityFee = _liquidityFee; buyBurnFee = _burnFee; buyTotalFees = buyghostMKTFee + buyLiquidityFee + buyBurnFee; require(buyTotalFees <= 5, "Must keep fees at 5% or less"); } function updateSellFees(uint256 _ghostMKTFee, uint256 _liquidityFee, uint256 _burnFee) external onlyOwner { sellghostMKTFee = _ghostMKTFee; sellLiquidityFee = _liquidityFee; sellBurnFee = _burnFee; sellTotalFees = sellghostMKTFee + sellLiquidityFee + sellBurnFee; require(sellTotalFees <= 5, "Must keep fees at 5% or less"); } 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 updateghostMKTWallet(address newghostMKTWallet) external onlyOwner { emit ghostMKTWalletUpdated(newghostMKTWallet, ghostMKTWallet); ghostMKTWallet = newghostMKTWallet; } function transferForeignToken(address _token, address _to) external onlyOwner returns (bool _sent) { require(_token != address(this), "Can't withdraw native tokens"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); _sent = IERC20(_token).transfer(_to, _contractBalance); emit TransferForeignToken(_token, _contractBalance); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); 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 ( 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; uint256 tokensForBurn; 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; tokensForghostMKT += fees * sellghostMKTFee / sellTotalFees; tokensForBurn += fees * sellBurnFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForghostMKT += fees * buyghostMKTFee / buyTotalFees; tokensForBurn += fees * buyBurnFee / buyTotalFees; } if(fees > 0){ super._transfer(from, address(this), fees); } if(tokensForBurn > 0) { super._transfer(address(this), address(0xdead), tokensForBurn); } 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 address(0x0dead), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForghostMKT; 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 ethForghostMKT = ethBalance.mul(tokensForghostMKT).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForghostMKT; tokensForLiquidity = 0; tokensForghostMKT = 0; if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(ghostMKTWallet).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":"sniper","type":"address"}],"name":"BoughtEarly","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":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferForeignToken","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"burnWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"ghostMKTWalletUpdated","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":"buyBurnFee","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":"buyghostMKTFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"name":"ghostMKTWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","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":[],"name":"sellghostMKTFee","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":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForghostMKT","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":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferForeignToken","outputs":[{"internalType":"bool","name":"_sent","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":"uint256","name":"_ghostMKTFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ghostMKTFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","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":"address","name":"newghostMKTWallet","type":"address"}],"name":"updateghostMKTWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600a805461ffff191690553480156200001c57600080fd5b506040518060400160405280600581526020016411d213d4d560da1b81525060405180604001604052806003815260200162424f4f60e81b815250816003908162000068919062000788565b50600462000077828262000788565b50505060006200008c620003fb60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d620000fc816001620003ff565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000147573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016d919062000854565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001bb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e1919062000854565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200022f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000255919062000854565b6001600160a01b031660a081905262000270906001620003ff565b60a0516200028090600162000479565b600080808080806b033b2e3c9fd0803ce80000006103e8620002a3828262000895565b620002af9190620008af565b6007556103e8620002c1828262000895565b620002cd9190620008af565b600955612710620002e082603262000895565b620002ec9190620008af565b600855600c879055600d869055600e859055846200030b8789620008d2565b620003179190620008d2565b600b5560108490556011839055601282905581620003368486620008d2565b620003429190620008d2565b600f55600680546001600160a01b03191673278218b7525c2c06dd7a73042cf37ca34f60eea41790556200038a620003826005546001600160a01b031690565b6001620004cd565b62000397306001620004cd565b620003a661dead6001620004cd565b620003c5620003bd6005546001600160a01b031690565b6001620003ff565b620003d2306001620003ff565b620003e161dead6001620003ff565b620003ed338262000577565b5050505050505050620008e8565b3390565b6005546001600160a01b031633146200044e5760405162461bcd60e51b815260206004820181905260248201526000805160206200322f83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005185760405162461bcd60e51b815260206004820181905260248201526000805160206200322f833981519152604482015260640162000445565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005cf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000445565b620005eb816002546200067860201b620014761790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200061e9183906200147662000678821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b600080620006878385620008d2565b905083811015620006db5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000445565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200070f57607f821691505b6020821081036200073057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200067357600081815260208120601f850160051c810160208610156200075f5750805b601f850160051c820191505b8181101562000780578281556001016200076b565b505050505050565b81516001600160401b03811115620007a457620007a4620006e4565b620007bc81620007b58454620006fa565b8462000736565b602080601f831160018114620007f45760008415620007db5750858301515b600019600386901b1c1916600185901b17855562000780565b600085815260208120601f198616915b82811015620008255788860151825594840194600190910190840162000804565b5085821015620008445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200086757600080fd5b81516001600160a01b0381168114620006db57600080fd5b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006de57620006de6200087f565b600082620008cd57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006de57620006de6200087f565b60805160a0516128f7620009386000396000818161046e0152610f2d0152600081816103590152818161219b01528181612254015281816122900152818161230a015261236701526128f76000f3fe60806040526004361061028c5760003560e01c80638a8c523c1161015a578063c18bc195116100c1578063e2f456051161007a578063e2f456051461080f578063e71dc3f514610825578063f11a24d31461083b578063f2fde38b14610851578063f637434214610871578063f8b45b051461088757600080fd5b8063c18bc19514610747578063c249919214610767578063c8c8ebe41461077d578063d257b34f14610793578063d85ba063146107b3578063dd62ed3e146107c957600080fd5b8063a9059cbb11610113578063a9059cbb14610687578063adb873bd146106a7578063b62496f5146106bd578063bbc0c742146106ed578063c024666814610707578063c17b5b8c1461072757600080fd5b80638a8c523c146105df5780638da5cb5b146105f4578063924de9b71461061257806395d89b41146106325780639a7a23d614610647578063a457c2d71461066757600080fd5b806339509351116101fe578063715018a6116101b7578063715018a6146105345780637571336a146105495780638095d564146105695780638366e79a1461058957806386f99fab146105a95780638a4cfed8146105c957600080fd5b8063395093511461043c57806349bd5a5e1461045c5780634fbee193146104905780636a486a8e146104c95780636ddd1713146104df57806370a08231146104fe57600080fd5b806318160ddd1161025057806318160ddd146103935780631a8145bb146103a8578063203e727e146103be57806323b872dd146103e0578063313ce5671461040057806336c7cdef1461041c57600080fd5b806306fdde0314610298578063095ea7b3146102c357806310d5de53146102f3578063135dea66146103235780631694505e1461034757600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102ad61089d565b6040516102ba9190612413565b60405180910390f35b3480156102cf57600080fd5b506102e36102de366004612479565b61092f565b60405190151581526020016102ba565b3480156102ff57600080fd5b506102e361030e3660046124a5565b60176020526000908152604090205460ff1681565b34801561032f57600080fd5b50610339600c5481565b6040519081526020016102ba565b34801561035357600080fd5b5061037b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102ba565b34801561039f57600080fd5b50600254610339565b3480156103b457600080fd5b5061033960145481565b3480156103ca57600080fd5b506103de6103d93660046124c2565b610946565b005b3480156103ec57600080fd5b506102e36103fb3660046124db565b610a2c565b34801561040c57600080fd5b50604051601281526020016102ba565b34801561042857600080fd5b5060065461037b906001600160a01b031681565b34801561044857600080fd5b506102e3610457366004612479565b610a95565b34801561046857600080fd5b5061037b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561049c57600080fd5b506102e36104ab3660046124a5565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156104d557600080fd5b50610339600f5481565b3480156104eb57600080fd5b50600a546102e390610100900460ff1681565b34801561050a57600080fd5b506103396105193660046124a5565b6001600160a01b031660009081526020819052604090205490565b34801561054057600080fd5b506103de610acb565b34801561055557600080fd5b506103de61056436600461252a565b610b3f565b34801561057557600080fd5b506103de610584366004612563565b610b94565b34801561059557600080fd5b506102e36105a436600461258f565b610c3c565b3480156105b557600080fd5b506103de6105c43660046124a5565b610def565b3480156105d557600080fd5b5061033960105481565b3480156105eb57600080fd5b506103de610e76565b34801561060057600080fd5b506005546001600160a01b031661037b565b34801561061e57600080fd5b506103de61062d3660046125bd565b610eb5565b34801561063e57600080fd5b506102ad610ef2565b34801561065357600080fd5b506103de61066236600461252a565b610f01565b34801561067357600080fd5b506102e3610682366004612479565b610fe0565b34801561069357600080fd5b506102e36106a2366004612479565b61102f565b3480156106b357600080fd5b5061033960125481565b3480156106c957600080fd5b506102e36106d83660046124a5565b60186020526000908152604090205460ff1681565b3480156106f957600080fd5b50600a546102e39060ff1681565b34801561071357600080fd5b506103de61072236600461252a565b61103c565b34801561073357600080fd5b506103de610742366004612563565b6110c5565b34801561075357600080fd5b506103de6107623660046124c2565b611168565b34801561077357600080fd5b5061033960135481565b34801561078957600080fd5b5061033960075481565b34801561079f57600080fd5b506102e36107ae3660046124c2565b611239565b3480156107bf57600080fd5b50610339600b5481565b3480156107d557600080fd5b506103396107e436600461258f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561081b57600080fd5b5061033960085481565b34801561083157600080fd5b50610339600e5481565b34801561084757600080fd5b50610339600d5481565b34801561085d57600080fd5b506103de61086c3660046124a5565b61138b565b34801561087d57600080fd5b5061033960115481565b34801561089357600080fd5b5061033960095481565b6060600380546108ac906125da565b80601f01602080910402602001604051908101604052809291908181526020018280546108d8906125da565b80156109255780601f106108fa57610100808354040283529160200191610925565b820191906000526020600020905b81548152906001019060200180831161090857829003601f168201915b5050505050905090565b600061093c3384846114dc565b5060015b92915050565b6005546001600160a01b031633146109795760405162461bcd60e51b815260040161097090612614565b60405180910390fd5b670de0b6b3a76400006103e861098e60025490565b61099990600561265f565b6109a39190612676565b6109ad9190612676565b811015610a145760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610970565b610a2681670de0b6b3a764000061265f565b60075550565b6000610a39848484611601565b610a8b8433610a8685604051806060016040528060288152602001612875602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611cfe565b6114dc565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161093c918590610a869086611476565b6005546001600160a01b03163314610af55760405162461bcd60e51b815260040161097090612614565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b695760405162461bcd60e51b815260040161097090612614565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610bbe5760405162461bcd60e51b815260040161097090612614565b600c839055600d829055600e81905580610bd88385612698565b610be29190612698565b600b81905560051015610c375760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203525206f72206c657373000000006044820152606401610970565b505050565b6005546000906001600160a01b03163314610c695760405162461bcd60e51b815260040161097090612614565b306001600160a01b03841603610cc15760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610970565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015610d08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2c91906126ab565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af1158015610d7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da391906126c4565b604080516001600160a01b0387168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b6005546001600160a01b03163314610e195760405162461bcd60e51b815260040161097090612614565b6006546040516001600160a01b03918216918316907f99a20c3afb8812eef597662bb0ced745c12b09ad7cc2e494620a3ed98ec6111e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ea05760405162461bcd60e51b815260040161097090612614565b600a805461ffff191661010117905543601555565b6005546001600160a01b03163314610edf5760405162461bcd60e51b815260040161097090612614565b600a805460ff1916911515919091179055565b6060600480546108ac906125da565b6005546001600160a01b03163314610f2b5760405162461bcd60e51b815260040161097090612614565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610fd25760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610970565b610fdc8282611d38565b5050565b600061093c3384610a868560405180606001604052806025815260200161289d602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611cfe565b600061093c338484611601565b6005546001600160a01b031633146110665760405162461bcd60e51b815260040161097090612614565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110ef5760405162461bcd60e51b815260040161097090612614565b601083905560118290556012819055806111098385612698565b6111139190612698565b600f81905560051015610c375760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203525206f72206c657373000000006044820152606401610970565b6005546001600160a01b031633146111925760405162461bcd60e51b815260040161097090612614565b670de0b6b3a76400006103e86111a760025490565b6111b290600561265f565b6111bc9190612676565b6111c69190612676565b8110156112215760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610970565b61123381670de0b6b3a764000061265f565b60095550565b6005546000906001600160a01b031633146112665760405162461bcd60e51b815260040161097090612614565b620186a061127360025490565b61127e90600161265f565b6112889190612676565b8210156112f55760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610970565b6103e861130160025490565b61130c90600561265f565b6113169190612676565b8211156113825760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610970565b50600855600190565b6005546001600160a01b031633146113b55760405162461bcd60e51b815260040161097090612614565b6001600160a01b03811661141a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610970565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806114838385612698565b9050838110156114d55760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610970565b9392505050565b6001600160a01b03831661153e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610970565b6001600160a01b03821661159f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610970565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166116275760405162461bcd60e51b8152600401610970906126e1565b6001600160a01b03821661164d5760405162461bcd60e51b815260040161097090612726565b8060000361166157610c3783836000611d8c565b6005546001600160a01b0384811691161480159061168d57506005546001600160a01b03838116911614155b80156116a157506001600160a01b03821615155b80156116b857506001600160a01b03821661dead14155b80156116ce5750600554600160a01b900460ff16155b156119c757600a5460ff16611761576001600160a01b03831660009081526016602052604090205460ff168061171c57506001600160a01b03821660009081526016602052604090205460ff165b6117615760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610970565b6001600160a01b03831660009081526018602052604090205460ff1680156117a257506001600160a01b03821660009081526017602052604090205460ff16155b15611886576007548111156118175760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610970565b6009546001600160a01b03831660009081526020819052604090205461183d9083612698565b11156118815760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610970565b6119c7565b6001600160a01b03821660009081526018602052604090205460ff1680156118c757506001600160a01b03831660009081526017602052604090205460ff16155b1561193d576007548111156118815760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610970565b6001600160a01b03821660009081526017602052604090205460ff166119c7576009546001600160a01b0383166000908152602081905260409020546119839083612698565b11156119c75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610970565b3060009081526020819052604081205460085490919082108015919082906119f65750600a54610100900460ff165b8015611a0c5750600554600160a01b900460ff16155b8015611a3157506001600160a01b03861660009081526018602052604090205460ff16155b8015611a5657506001600160a01b03861660009081526016602052604090205460ff16155b8015611a7b57506001600160a01b03851660009081526016602052604090205460ff16155b15611aa9576005805460ff60a01b1916600160a01b179055611a9b611e95565b6005805460ff60a01b191690555b6005546001600160a01b03871660009081526016602052604090205460ff600160a01b909204821615911680611af757506001600160a01b03861660009081526016602052604090205460ff165b15611b00575060005b60008115611ce9576001600160a01b03871660009081526018602052604090205460ff168015611b3257506000600f54115b15611be557611b576064611b51600f548961203e90919063ffffffff16565b906120c0565b9050600f5460115482611b6a919061265f565b611b749190612676565b60146000828254611b859190612698565b9091555050600f54601054611b9a908361265f565b611ba49190612676565b60136000828254611bb59190612698565b9091555050600f54601254611bca908361265f565b611bd49190612676565b611bde9084612698565b9250611cb8565b6001600160a01b03881660009081526018602052604090205460ff168015611c0f57506000600b54115b15611cb857611c2e6064611b51600b548961203e90919063ffffffff16565b9050600b54600d5482611c41919061265f565b611c4b9190612676565b60146000828254611c5c9190612698565b9091555050600b54600c54611c71908361265f565b611c7b9190612676565b60136000828254611c8c9190612698565b9091555050600b54600e54611ca1908361265f565b611cab9190612676565b611cb59084612698565b92505b8015611cc957611cc9883083611d8c565b8215611cdc57611cdc3061dead85611d8c565b611ce68187612769565b95505b611cf4888888611d8c565b5050505050505050565b60008184841115611d225760405162461bcd60e51b81526004016109709190612413565b506000611d2f8486612769565b95945050505050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611db25760405162461bcd60e51b8152600401610970906126e1565b6001600160a01b038216611dd85760405162461bcd60e51b815260040161097090612726565b611e158160405180606001604052806026815260200161284f602691396001600160a01b0386166000908152602081905260409020549190611cfe565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611e449082611476565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016115f4565b3060009081526020819052604081205490506000601354601454611eb99190612698565b90506000821580611ec8575081155b15611ed257505050565b600854611ee090601461265f565b831115611ef857600854611ef590601461265f565b92505b600060028360145486611f0b919061265f565b611f159190612676565b611f1f9190612676565b90506000611f2d8583612102565b905047611f3982612144565b6000611f454783612102565b90506000611f6287611b516013548561203e90919063ffffffff16565b90506000611f708284612769565b6000601481905560135590508515801590611f8b5750600081115b15611fde57611f9a8682612304565b601454604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461202b576040519150601f19603f3d011682016040523d82523d6000602084013e612030565b606091505b505050505050505050505050565b60008260000361205057506000610940565b600061205c838561265f565b9050826120698583612676565b146114d55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610970565b60006114d583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506123e5565b60006114d583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cfe565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106121795761217961277c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061221b9190612792565b8160018151811061222e5761222e61277c565b60200260200101906001600160a01b031690816001600160a01b031681525050612279307f0000000000000000000000000000000000000000000000000000000000000000846114dc565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906122ce9085906000908690309042906004016127af565b600060405180830381600087803b1580156122e857600080fd5b505af11580156122fc573d6000803e3d6000fd5b505050505050565b61232f307f0000000000000000000000000000000000000000000000000000000000000000846114dc565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156123b9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906123de9190612820565b5050505050565b600081836124065760405162461bcd60e51b81526004016109709190612413565b506000611d2f8486612676565b600060208083528351808285015260005b8181101561244057858101830151858201604001528201612424565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461247657600080fd5b50565b6000806040838503121561248c57600080fd5b823561249781612461565b946020939093013593505050565b6000602082840312156124b757600080fd5b81356114d581612461565b6000602082840312156124d457600080fd5b5035919050565b6000806000606084860312156124f057600080fd5b83356124fb81612461565b9250602084013561250b81612461565b929592945050506040919091013590565b801515811461247657600080fd5b6000806040838503121561253d57600080fd5b823561254881612461565b915060208301356125588161251c565b809150509250929050565b60008060006060848603121561257857600080fd5b505081359360208301359350604090920135919050565b600080604083850312156125a257600080fd5b82356125ad81612461565b9150602083013561255881612461565b6000602082840312156125cf57600080fd5b81356114d58161251c565b600181811c908216806125ee57607f821691505b60208210810361260e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761094057610940612649565b60008261269357634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561094057610940612649565b6000602082840312156126bd57600080fd5b5051919050565b6000602082840312156126d657600080fd5b81516114d58161251c565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561094057610940612649565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156127a457600080fd5b81516114d581612461565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127ff5784516001600160a01b0316835293830193918301916001016127da565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561283557600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e3dec098ddb0e1e84cfe64a13e490a3c7e2390b8faecbd3285a437a4e76267ec64736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061028c5760003560e01c80638a8c523c1161015a578063c18bc195116100c1578063e2f456051161007a578063e2f456051461080f578063e71dc3f514610825578063f11a24d31461083b578063f2fde38b14610851578063f637434214610871578063f8b45b051461088757600080fd5b8063c18bc19514610747578063c249919214610767578063c8c8ebe41461077d578063d257b34f14610793578063d85ba063146107b3578063dd62ed3e146107c957600080fd5b8063a9059cbb11610113578063a9059cbb14610687578063adb873bd146106a7578063b62496f5146106bd578063bbc0c742146106ed578063c024666814610707578063c17b5b8c1461072757600080fd5b80638a8c523c146105df5780638da5cb5b146105f4578063924de9b71461061257806395d89b41146106325780639a7a23d614610647578063a457c2d71461066757600080fd5b806339509351116101fe578063715018a6116101b7578063715018a6146105345780637571336a146105495780638095d564146105695780638366e79a1461058957806386f99fab146105a95780638a4cfed8146105c957600080fd5b8063395093511461043c57806349bd5a5e1461045c5780634fbee193146104905780636a486a8e146104c95780636ddd1713146104df57806370a08231146104fe57600080fd5b806318160ddd1161025057806318160ddd146103935780631a8145bb146103a8578063203e727e146103be57806323b872dd146103e0578063313ce5671461040057806336c7cdef1461041c57600080fd5b806306fdde0314610298578063095ea7b3146102c357806310d5de53146102f3578063135dea66146103235780631694505e1461034757600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102ad61089d565b6040516102ba9190612413565b60405180910390f35b3480156102cf57600080fd5b506102e36102de366004612479565b61092f565b60405190151581526020016102ba565b3480156102ff57600080fd5b506102e361030e3660046124a5565b60176020526000908152604090205460ff1681565b34801561032f57600080fd5b50610339600c5481565b6040519081526020016102ba565b34801561035357600080fd5b5061037b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102ba565b34801561039f57600080fd5b50600254610339565b3480156103b457600080fd5b5061033960145481565b3480156103ca57600080fd5b506103de6103d93660046124c2565b610946565b005b3480156103ec57600080fd5b506102e36103fb3660046124db565b610a2c565b34801561040c57600080fd5b50604051601281526020016102ba565b34801561042857600080fd5b5060065461037b906001600160a01b031681565b34801561044857600080fd5b506102e3610457366004612479565b610a95565b34801561046857600080fd5b5061037b7f0000000000000000000000007bb6a1587777fbb42e019c5720ebc331d1c7cf2381565b34801561049c57600080fd5b506102e36104ab3660046124a5565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156104d557600080fd5b50610339600f5481565b3480156104eb57600080fd5b50600a546102e390610100900460ff1681565b34801561050a57600080fd5b506103396105193660046124a5565b6001600160a01b031660009081526020819052604090205490565b34801561054057600080fd5b506103de610acb565b34801561055557600080fd5b506103de61056436600461252a565b610b3f565b34801561057557600080fd5b506103de610584366004612563565b610b94565b34801561059557600080fd5b506102e36105a436600461258f565b610c3c565b3480156105b557600080fd5b506103de6105c43660046124a5565b610def565b3480156105d557600080fd5b5061033960105481565b3480156105eb57600080fd5b506103de610e76565b34801561060057600080fd5b506005546001600160a01b031661037b565b34801561061e57600080fd5b506103de61062d3660046125bd565b610eb5565b34801561063e57600080fd5b506102ad610ef2565b34801561065357600080fd5b506103de61066236600461252a565b610f01565b34801561067357600080fd5b506102e3610682366004612479565b610fe0565b34801561069357600080fd5b506102e36106a2366004612479565b61102f565b3480156106b357600080fd5b5061033960125481565b3480156106c957600080fd5b506102e36106d83660046124a5565b60186020526000908152604090205460ff1681565b3480156106f957600080fd5b50600a546102e39060ff1681565b34801561071357600080fd5b506103de61072236600461252a565b61103c565b34801561073357600080fd5b506103de610742366004612563565b6110c5565b34801561075357600080fd5b506103de6107623660046124c2565b611168565b34801561077357600080fd5b5061033960135481565b34801561078957600080fd5b5061033960075481565b34801561079f57600080fd5b506102e36107ae3660046124c2565b611239565b3480156107bf57600080fd5b50610339600b5481565b3480156107d557600080fd5b506103396107e436600461258f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561081b57600080fd5b5061033960085481565b34801561083157600080fd5b50610339600e5481565b34801561084757600080fd5b50610339600d5481565b34801561085d57600080fd5b506103de61086c3660046124a5565b61138b565b34801561087d57600080fd5b5061033960115481565b34801561089357600080fd5b5061033960095481565b6060600380546108ac906125da565b80601f01602080910402602001604051908101604052809291908181526020018280546108d8906125da565b80156109255780601f106108fa57610100808354040283529160200191610925565b820191906000526020600020905b81548152906001019060200180831161090857829003601f168201915b5050505050905090565b600061093c3384846114dc565b5060015b92915050565b6005546001600160a01b031633146109795760405162461bcd60e51b815260040161097090612614565b60405180910390fd5b670de0b6b3a76400006103e861098e60025490565b61099990600561265f565b6109a39190612676565b6109ad9190612676565b811015610a145760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610970565b610a2681670de0b6b3a764000061265f565b60075550565b6000610a39848484611601565b610a8b8433610a8685604051806060016040528060288152602001612875602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611cfe565b6114dc565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161093c918590610a869086611476565b6005546001600160a01b03163314610af55760405162461bcd60e51b815260040161097090612614565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610b695760405162461bcd60e51b815260040161097090612614565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610bbe5760405162461bcd60e51b815260040161097090612614565b600c839055600d829055600e81905580610bd88385612698565b610be29190612698565b600b81905560051015610c375760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203525206f72206c657373000000006044820152606401610970565b505050565b6005546000906001600160a01b03163314610c695760405162461bcd60e51b815260040161097090612614565b306001600160a01b03841603610cc15760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207769746864726177206e617469766520746f6b656e73000000006044820152606401610970565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015610d08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2c91906126ab565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303816000875af1158015610d7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da391906126c4565b604080516001600160a01b0387168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b6005546001600160a01b03163314610e195760405162461bcd60e51b815260040161097090612614565b6006546040516001600160a01b03918216918316907f99a20c3afb8812eef597662bb0ced745c12b09ad7cc2e494620a3ed98ec6111e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610ea05760405162461bcd60e51b815260040161097090612614565b600a805461ffff191661010117905543601555565b6005546001600160a01b03163314610edf5760405162461bcd60e51b815260040161097090612614565b600a805460ff1916911515919091179055565b6060600480546108ac906125da565b6005546001600160a01b03163314610f2b5760405162461bcd60e51b815260040161097090612614565b7f0000000000000000000000007bb6a1587777fbb42e019c5720ebc331d1c7cf236001600160a01b0316826001600160a01b031603610fd25760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610970565b610fdc8282611d38565b5050565b600061093c3384610a868560405180606001604052806025815260200161289d602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611cfe565b600061093c338484611601565b6005546001600160a01b031633146110665760405162461bcd60e51b815260040161097090612614565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146110ef5760405162461bcd60e51b815260040161097090612614565b601083905560118290556012819055806111098385612698565b6111139190612698565b600f81905560051015610c375760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203525206f72206c657373000000006044820152606401610970565b6005546001600160a01b031633146111925760405162461bcd60e51b815260040161097090612614565b670de0b6b3a76400006103e86111a760025490565b6111b290600561265f565b6111bc9190612676565b6111c69190612676565b8110156112215760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610970565b61123381670de0b6b3a764000061265f565b60095550565b6005546000906001600160a01b031633146112665760405162461bcd60e51b815260040161097090612614565b620186a061127360025490565b61127e90600161265f565b6112889190612676565b8210156112f55760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610970565b6103e861130160025490565b61130c90600561265f565b6113169190612676565b8211156113825760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610970565b50600855600190565b6005546001600160a01b031633146113b55760405162461bcd60e51b815260040161097090612614565b6001600160a01b03811661141a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610970565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806114838385612698565b9050838110156114d55760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610970565b9392505050565b6001600160a01b03831661153e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610970565b6001600160a01b03821661159f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610970565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166116275760405162461bcd60e51b8152600401610970906126e1565b6001600160a01b03821661164d5760405162461bcd60e51b815260040161097090612726565b8060000361166157610c3783836000611d8c565b6005546001600160a01b0384811691161480159061168d57506005546001600160a01b03838116911614155b80156116a157506001600160a01b03821615155b80156116b857506001600160a01b03821661dead14155b80156116ce5750600554600160a01b900460ff16155b156119c757600a5460ff16611761576001600160a01b03831660009081526016602052604090205460ff168061171c57506001600160a01b03821660009081526016602052604090205460ff165b6117615760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610970565b6001600160a01b03831660009081526018602052604090205460ff1680156117a257506001600160a01b03821660009081526017602052604090205460ff16155b15611886576007548111156118175760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610970565b6009546001600160a01b03831660009081526020819052604090205461183d9083612698565b11156118815760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610970565b6119c7565b6001600160a01b03821660009081526018602052604090205460ff1680156118c757506001600160a01b03831660009081526017602052604090205460ff16155b1561193d576007548111156118815760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610970565b6001600160a01b03821660009081526017602052604090205460ff166119c7576009546001600160a01b0383166000908152602081905260409020546119839083612698565b11156119c75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610970565b3060009081526020819052604081205460085490919082108015919082906119f65750600a54610100900460ff165b8015611a0c5750600554600160a01b900460ff16155b8015611a3157506001600160a01b03861660009081526018602052604090205460ff16155b8015611a5657506001600160a01b03861660009081526016602052604090205460ff16155b8015611a7b57506001600160a01b03851660009081526016602052604090205460ff16155b15611aa9576005805460ff60a01b1916600160a01b179055611a9b611e95565b6005805460ff60a01b191690555b6005546001600160a01b03871660009081526016602052604090205460ff600160a01b909204821615911680611af757506001600160a01b03861660009081526016602052604090205460ff165b15611b00575060005b60008115611ce9576001600160a01b03871660009081526018602052604090205460ff168015611b3257506000600f54115b15611be557611b576064611b51600f548961203e90919063ffffffff16565b906120c0565b9050600f5460115482611b6a919061265f565b611b749190612676565b60146000828254611b859190612698565b9091555050600f54601054611b9a908361265f565b611ba49190612676565b60136000828254611bb59190612698565b9091555050600f54601254611bca908361265f565b611bd49190612676565b611bde9084612698565b9250611cb8565b6001600160a01b03881660009081526018602052604090205460ff168015611c0f57506000600b54115b15611cb857611c2e6064611b51600b548961203e90919063ffffffff16565b9050600b54600d5482611c41919061265f565b611c4b9190612676565b60146000828254611c5c9190612698565b9091555050600b54600c54611c71908361265f565b611c7b9190612676565b60136000828254611c8c9190612698565b9091555050600b54600e54611ca1908361265f565b611cab9190612676565b611cb59084612698565b92505b8015611cc957611cc9883083611d8c565b8215611cdc57611cdc3061dead85611d8c565b611ce68187612769565b95505b611cf4888888611d8c565b5050505050505050565b60008184841115611d225760405162461bcd60e51b81526004016109709190612413565b506000611d2f8486612769565b95945050505050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611db25760405162461bcd60e51b8152600401610970906126e1565b6001600160a01b038216611dd85760405162461bcd60e51b815260040161097090612726565b611e158160405180606001604052806026815260200161284f602691396001600160a01b0386166000908152602081905260409020549190611cfe565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611e449082611476565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016115f4565b3060009081526020819052604081205490506000601354601454611eb99190612698565b90506000821580611ec8575081155b15611ed257505050565b600854611ee090601461265f565b831115611ef857600854611ef590601461265f565b92505b600060028360145486611f0b919061265f565b611f159190612676565b611f1f9190612676565b90506000611f2d8583612102565b905047611f3982612144565b6000611f454783612102565b90506000611f6287611b516013548561203e90919063ffffffff16565b90506000611f708284612769565b6000601481905560135590508515801590611f8b5750600081115b15611fde57611f9a8682612304565b601454604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461202b576040519150601f19603f3d011682016040523d82523d6000602084013e612030565b606091505b505050505050505050505050565b60008260000361205057506000610940565b600061205c838561265f565b9050826120698583612676565b146114d55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610970565b60006114d583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506123e5565b60006114d583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cfe565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106121795761217961277c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061221b9190612792565b8160018151811061222e5761222e61277c565b60200260200101906001600160a01b031690816001600160a01b031681525050612279307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114dc565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906122ce9085906000908690309042906004016127af565b600060405180830381600087803b1580156122e857600080fd5b505af11580156122fc573d6000803e3d6000fd5b505050505050565b61232f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114dc565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156123b9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906123de9190612820565b5050505050565b600081836124065760405162461bcd60e51b81526004016109709190612413565b506000611d2f8486612676565b600060208083528351808285015260005b8181101561244057858101830151858201604001528201612424565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461247657600080fd5b50565b6000806040838503121561248c57600080fd5b823561249781612461565b946020939093013593505050565b6000602082840312156124b757600080fd5b81356114d581612461565b6000602082840312156124d457600080fd5b5035919050565b6000806000606084860312156124f057600080fd5b83356124fb81612461565b9250602084013561250b81612461565b929592945050506040919091013590565b801515811461247657600080fd5b6000806040838503121561253d57600080fd5b823561254881612461565b915060208301356125588161251c565b809150509250929050565b60008060006060848603121561257857600080fd5b505081359360208301359350604090920135919050565b600080604083850312156125a257600080fd5b82356125ad81612461565b9150602083013561255881612461565b6000602082840312156125cf57600080fd5b81356114d58161251c565b600181811c908216806125ee57607f821691505b60208210810361260e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761094057610940612649565b60008261269357634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561094057610940612649565b6000602082840312156126bd57600080fd5b5051919050565b6000602082840312156126d657600080fd5b81516114d58161251c565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561094057610940612649565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156127a457600080fd5b81516114d581612461565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127ff5784516001600160a01b0316835293830193918301916001016127da565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561283557600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e3dec098ddb0e1e84cfe64a13e490a3c7e2390b8faecbd3285a437a4e76267ec64736f6c63430008110033
Deployed Bytecode Sourcemap
30231:13886:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8329:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10503:169;;;;;;;;;;-1:-1:-1;10503:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;10503:169:0;1023:187:1;31270:64:0;;;;;;;;;;-1:-1:-1;31270:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30725:29;;;;;;;;;;;;;;;;;;;1613:25:1;;;1601:2;1586:18;30725:29:0;1467:177:1;30307:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;30307:51:0;1649:230:1;9452:108:0;;;;;;;;;;-1:-1:-1;9540:12:0;;9452:108;;31018:33;;;;;;;;;;;;;;;;34983:234;;;;;;;;;;-1:-1:-1;34983:234:0;;;;;:::i;:::-;;:::i;:::-;;11155:355;;;;;;;;;;-1:-1:-1;11155:355:0;;;;;:::i;:::-;;:::i;9293:93::-;;;;;;;;;;-1:-1:-1;9293:93:0;;9376:2;2672:36:1;;2660:2;2645:18;9293:93:0;2530:184:1;30444:29:0;;;;;;;;;;-1:-1:-1;30444:29:0;;;;-1:-1:-1;;;;;30444:29:0;;;11920:218;;;;;;;;;;-1:-1:-1;11920:218:0;;;;;:::i;:::-;;:::i;30365:38::-;;;;;;;;;;;;;;;37816:125;;;;;;;;;;-1:-1:-1;37816:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;37905:28:0;37881:4;37905:28;;;:19;:28;;;;;;;;;37816:125;30833:28;;;;;;;;;;;;;;;;30647:31;;;;;;;;;;-1:-1:-1;30647:31:0;;;;;;;;;;;9624:127;;;;;;;;;;-1:-1:-1;9624:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9725:18:0;9698:7;9725:18;;;;;;;;;;;;9624:127;22831:148;;;;;;;;;;;;;:::i;35450:144::-;;;;;;;;;;-1:-1:-1;35450:144:0;;;;;:::i;:::-;;:::i;35803:367::-;;;;;;;;;;-1:-1:-1;35803:367:0;;;;;:::i;:::-;;:::i;37419:386::-;;;;;;;;;;-1:-1:-1;37419:386:0;;;;;:::i;:::-;;:::i;37210:201::-;;;;;;;;;;-1:-1:-1;37210:201:0;;;;;:::i;:::-;;:::i;30868:30::-;;;;;;;;;;;;;;;;34365:148;;;;;;;;;;;;;:::i;22187:79::-;;;;;;;;;;-1:-1:-1;22252:6:0;;-1:-1:-1;;;;;22252:6:0;22187:79;;35691:103;;;;;;;;;;-1:-1:-1;35691:103:0;;;;;:::i;:::-;;:::i;8549:104::-;;;;;;;;;;;;;:::i;36758:245::-;;;;;;;;;;-1:-1:-1;36758:245:0;;;;;:::i;:::-;;:::i;12642:269::-;;;;;;;;;;-1:-1:-1;12642:269:0;;;;;:::i;:::-;;:::i;9965:175::-;;;;;;;;;;-1:-1:-1;9965:175:0;;;;;:::i;:::-;;:::i;30943:26::-;;;;;;;;;;;;;;;;31493:58;;;;;;;;;;-1:-1:-1;31493:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30607:33;;;;;;;;;;-1:-1:-1;30607:33:0;;;;;;;;36564:182;;;;;;;;;;-1:-1:-1;36564:182:0;;;;;:::i;:::-;;:::i;36179:376::-;;;;;;;;;;-1:-1:-1;36179:376:0;;;;;:::i;:::-;;:::i;35226:215::-;;;;;;;;;;-1:-1:-1;35226:215:0;;;;;:::i;:::-;;:::i;30979:32::-;;;;;;;;;;;;;;;;30489:35;;;;;;;;;;;;;;;;34588:386;;;;;;;;;;-1:-1:-1;34588:386:0;;;;;:::i;:::-;;:::i;30691:27::-;;;;;;;;;;;;;;;;10204:151;;;;;;;;;;-1:-1:-1;10204:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10320:18:0;;;10293:7;10320:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10204:151;30531:33;;;;;;;;;;;;;;;;30798:25;;;;;;;;;;;;;;;;30761:30;;;;;;;;;;;;;;;;23135:244;;;;;;;;;;-1:-1:-1;23135:244:0;;;;;:::i;:::-;;:::i;30905:31::-;;;;;;;;;;;;;;;;30571:24;;;;;;;;;;;;;;;;8329:100;8383:13;8416:5;8409:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8329:100;:::o;10503:169::-;10586:4;10603:39;1100:10;10626:7;10635:6;10603:8;:39::i;:::-;-1:-1:-1;10660:4:0;10503:169;;;;;:::o;34983:234::-;22400:6;;-1:-1:-1;;;;;22400:6:0;1100:10;22400:22;22392:67;;;;-1:-1:-1;;;22392:67:0;;;;;;;:::i;:::-;;;;;;;;;35102:4:::1;35096;35076:13;9540:12:::0;;;9452:108;35076:13:::1;:17;::::0;35092:1:::1;35076:17;:::i;:::-;:24;;;;:::i;:::-;35075:31;;;;:::i;:::-;35065:6;:41;;35057:101;;;::::0;-1:-1:-1;;;35057:101:0;;5872:2:1;35057:101:0::1;::::0;::::1;5854:21:1::0;5911:2;5891:18;;;5884:30;5950:34;5930:18;;;5923:62;-1:-1:-1;;;6001:18:1;;;5994:45;6056:19;;35057:101:0::1;5670:411:1::0;35057:101:0::1;35192:17;:6:::0;35202::::1;35192:17;:::i;:::-;35169:20;:40:::0;-1:-1:-1;34983:234:0:o;11155:355::-;11295:4;11312:36;11322:6;11330:9;11341:6;11312:9;:36::i;:::-;11359:121;11368:6;1100:10;11390:89;11428:6;11390:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11390:19:0;;;;;;:11;:19;;;;;;;;1100:10;11390:33;;;;;;;;;;:37;:89::i;:::-;11359:8;:121::i;:::-;-1:-1:-1;11498:4:0;11155:355;;;;;:::o;11920:218::-;1100:10;12008:4;12057:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12057:34:0;;;;;;;;;;12008:4;;12025:83;;12048:7;;12057:50;;12096:10;12057:38;:50::i;22831:148::-;22400:6;;-1:-1:-1;;;;;22400:6:0;1100:10;22400:22;22392:67;;;;-1:-1:-1;;;22392:67:0;;;;;;;:::i;:::-;22922:6:::1;::::0;22901:40:::1;::::0;22938:1:::1;::::0;-1:-1:-1;;;;;22922:6:0::1;::::0;22901:40:::1;::::0;22938:1;;22901:40:::1;22952:6;:19:::0;;-1:-1:-1;;;;;;22952:19:0::1;::::0;;22831:148::o;35450:144::-;22400:6;;-1:-1:-1;;;;;22400:6:0;1100:10;22400:22;22392:67;;;;-1:-1:-1;;;22392:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35540:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;35540:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35450:144::o;35803:367::-;22400:6;;-1:-1:-1;;;;;22400:6:0;1100:10;22400:22;22392:67;;;;-1:-1:-1;;;22392:67:0;;;;;;;:::i;:::-;35919:14:::1;:29:::0;;;35959:15:::1;:31:::0;;;36001:10:::1;:21:::0;;;36014:8;36048:32:::1;35977:13:::0;35936:12;36048:32:::1;:::i;:::-;:45;;;;:::i;:::-;36033:12;:60:::0;;;36128:1:::1;-1:-1:-1::0;36112:17:0::1;36104:58;;;::::0;-1:-1:-1;;;36104:58:0;;6418:2:1;36104:58:0::1;::::0;::::1;6400:21:1::0;6457:2;6437:18;;;6430:30;6496;6476:18;;;6469:58;6544:18;;36104:58:0::1;6216:352:1::0;36104:58:0::1;35803:367:::0;;;:::o;37419:386::-;22400:6;;37506:10;;-1:-1:-1;;;;;22400:6:0;1100:10;22400:22;22392:67;;;;-1:-1:-1;;;22392:67:0;;;;;;;:::i;:::-;37555:4:::1;-1:-1:-1::0;;;;;37537:23:0;::::1;::::0;37529:64:::1;;;::::0;-1:-1:-1;;;37529:64:0;;6775:2:1;37529:64:0::1;::::0;::::1;6757:21:1::0;6814:2;6794:18;;;6787:30;6853;6833:18;;;6826:58;6901:18;;37529:64:0::1;6573:352:1::0;37529:64:0::1;37631:39;::::0;-1:-1:-1;;;37631:39:0;;37664:4:::1;37631:39;::::0;::::1;1822:51:1::0;37604:24:0::1;::::0;-1:-1:-1;;;;;37631:24:0;::::1;::::0;::::1;::::0;1795:18:1;;37631:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37689:46;::::0;-1:-1:-1;;;37689:46:0;;-1:-1:-1;;;;;7311:32:1;;;37689:46:0::1;::::0;::::1;7293:51:1::0;7360:18;;;7353:34;;;37604:66:0;;-1:-1:-1;37689:23:0;;::::1;::::0;::::1;::::0;7266:18:1;;37689:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37751;::::0;;-1:-1:-1;;;;;7311:32:1;;7293:51;;7375:2;7360:18;;7353:34;;;37681:54:0;;-1:-1:-1;37751:46:0::1;::::0;7266:18:1;37751:46:0::1;;;;;;;37518:287;37419:386:::0;;;;:::o;37210:201::-;22400:6;;-1:-1:-1;;;;;22400:6:0;1100:10;22400:22;22392:67;;;;-1:-1:-1;;;22392:67:0;;;;;;;:::i;:::-;37343:14:::1;::::0;37302:56:::1;::::0;-1:-1:-1;;;;;37343:14:0;;::::1;::::0;37302:56;::::1;::::0;::::1;::::0;37343:14:::1;::::0;37302:56:::1;37369:14;:34:::0;;-1:-1:-1;;;;;;37369:34:0::1;-1:-1:-1::0;;;;;37369:34:0;;;::::1;::::0;;;::::1;::::0;;37210:201::o;34365:148::-;22400:6;;-1:-1:-1;;;;;22400:6:0;1100:10;22400:22;22392:67;;;;-1:-1:-1;;;22392:67:0;;;;;;;:::i;:::-;34420:13:::1;:20:::0;;-1:-1:-1;;34451:18:0;;;;;34493:12:::1;34480:10;:25:::0;34365:148::o;35691:103::-;22400:6;;-1:-1:-1;;;;;22400:6:0;1100:10;22400:22;22392:67;;;;-1:-1:-1;;;22392:67:0;;;;;;;:::i;:::-;35763:13:::1;:23:::0;;-1:-1:-1;;35763:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35691:103::o;8549:104::-;8605:13;8638:7;8631:14;;;;;:::i;36758:245::-;22400:6;;-1:-1:-1;;;;;22400:6:0;1100:10;22400:22;22392:67;;;;-1:-1:-1;;;22392:67:0;;;;;;;:::i;:::-;36865:13:::1;-1:-1:-1::0;;;;;36857:21:0::1;:4;-1:-1:-1::0;;;;;36857:21:0::1;::::0;36849:91:::1;;;::::0;-1:-1:-1;;;36849:91:0;;7850:2:1;36849:91:0::1;::::0;::::1;7832:21:1::0;7889:2;7869:18;;;7862:30;7928:34;7908:18;;;7901:62;7999:27;7979:18;;;7972:55;8044:19;;36849:91:0::1;7648:421:1::0;36849:91:0::1;36954:41;36983:4;36989:5;36954:28;:41::i;:::-;36758:245:::0;;:::o;12642:269::-;12735:4;12752:129;1100:10;12775:7;12784:96;12823:15;12784:96;;;;;;;;;;;;;;;;;1100:10;12784:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12784:34:0;;;;;;;;;;;;:38;:96::i;9965:175::-;10051:4;10068:42;1100:10;10092:9;10103:6;10068:9;:42::i;36564:182::-;22400:6;;-1:-1:-1;;;;;22400:6:0;1100:10;22400:22;22392:67;;;;-1:-1:-1;;;22392:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36649:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;36649:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36704:34;;1163:41:1;;;36704:34:0::1;::::0;1136:18:1;36704:34:0::1;;;;;;;36564:182:::0;;:::o;36179:376::-;22400:6;;-1:-1:-1;;;;;22400:6:0;1100:10;22400:22;22392:67;;;;-1:-1:-1;;;22392:67:0;;;;;;;:::i;:::-;36296:15:::1;:30:::0;;;36337:16:::1;:32:::0;;;36380:11:::1;:22:::0;;;36394:8;36429:34:::1;36356:13:::0;36314:12;36429:34:::1;:::i;:::-;:48;;;;:::i;:::-;36413:13;:64:::0;;;36513:1:::1;-1:-1:-1::0;36496:18:0::1;36488:59;;;::::0;-1:-1:-1;;;36488:59:0;;6418:2:1;36488:59:0::1;::::0;::::1;6400:21:1::0;6457:2;6437:18;;;6430:30;6496;6476:18;;;6469:58;6544:18;;36488:59:0::1;6216:352:1::0;35226:215:0;22400:6;;-1:-1:-1;;;;;22400:6:0;1100:10;22400:22;22392:67;;;;-1:-1:-1;;;22392:67:0;;;;;;;:::i;:::-;35348:4:::1;35342;35322:13;9540:12:::0;;;9452:108;35322:13:::1;:17;::::0;35338:1:::1;35322:17;:::i;:::-;:24;;;;:::i;:::-;35321:31;;;;:::i;:::-;35311:6;:41;;35303:90;;;::::0;-1:-1:-1;;;35303:90:0;;8276:2:1;35303:90:0::1;::::0;::::1;8258:21:1::0;8315:2;8295:18;;;8288:30;8354:34;8334:18;;;8327:62;-1:-1:-1;;;8405:18:1;;;8398:34;8449:19;;35303:90:0::1;8074:400:1::0;35303:90:0::1;35416:17;:6:::0;35426::::1;35416:17;:::i;:::-;35404:9;:29:::0;-1:-1:-1;35226:215:0:o;34588:386::-;22400:6;;34669:4;;-1:-1:-1;;;;;22400:6:0;1100:10;22400:22;22392:67;;;;-1:-1:-1;;;22392:67:0;;;;;;;:::i;:::-;34726:6:::1;34706:13;9540:12:::0;;;9452:108;34706:13:::1;:17;::::0;34722:1:::1;34706:17;:::i;:::-;:26;;;;:::i;:::-;34693:9;:39;;34685:105;;;::::0;-1:-1:-1;;;34685:105:0;;8681:2:1;34685:105:0::1;::::0;::::1;8663:21:1::0;8720:2;8700:18;;;8693:30;8759:34;8739:18;;;8732:62;-1:-1:-1;;;8810:18:1;;;8803:51;8871:19;;34685:105:0::1;8479:417:1::0;34685:105:0::1;34842:4;34822:13;9540:12:::0;;;9452:108;34822:13:::1;:17;::::0;34838:1:::1;34822:17;:::i;:::-;:24;;;;:::i;:::-;34809:9;:37;;34801:102;;;::::0;-1:-1:-1;;;34801:102:0;;9103:2:1;34801:102:0::1;::::0;::::1;9085:21:1::0;9142:2;9122:18;;;9115:30;9181:34;9161:18;;;9154:62;-1:-1:-1;;;9232:18:1;;;9225:50;9292:19;;34801:102:0::1;8901:416:1::0;34801:102:0::1;-1:-1:-1::0;34914:18:0::1;:30:::0;34962:4:::1;::::0;34588:386::o;23135:244::-;22400:6;;-1:-1:-1;;;;;22400:6:0;1100:10;22400:22;22392:67;;;;-1:-1:-1;;;22392:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23224:22:0;::::1;23216:73;;;::::0;-1:-1:-1;;;23216:73:0;;9524:2:1;23216:73:0::1;::::0;::::1;9506:21:1::0;9563:2;9543:18;;;9536:30;9602:34;9582:18;;;9575:62;-1:-1:-1;;;9653:18:1;;;9646:36;9699:19;;23216:73:0::1;9322:402:1::0;23216:73:0::1;23326:6;::::0;23305:38:::1;::::0;-1:-1:-1;;;;;23305:38:0;;::::1;::::0;23326:6:::1;::::0;23305:38:::1;::::0;23326:6:::1;::::0;23305:38:::1;23354:6;:17:::0;;-1:-1:-1;;;;;;23354:17:0::1;-1:-1:-1::0;;;;;23354:17:0;;;::::1;::::0;;;::::1;::::0;;23135:244::o;17219:182::-;17277:7;;17309:5;17313:1;17309;:5;:::i;:::-;17297:17;;17338:1;17333;:6;;17325:46;;;;-1:-1:-1;;;17325:46:0;;9931:2:1;17325:46:0;;;9913:21:1;9970:2;9950:18;;;9943:30;10009:29;9989:18;;;9982:57;10056:18;;17325:46:0;9729:351:1;17325:46:0;17392:1;17219:182;-1:-1:-1;;;17219:182:0:o;15838:381::-;-1:-1:-1;;;;;15974:19:0;;15966:68;;;;-1:-1:-1;;;15966:68:0;;10287:2:1;15966:68:0;;;10269:21:1;10326:2;10306:18;;;10299:30;10365:34;10345:18;;;10338:62;-1:-1:-1;;;10416:18:1;;;10409:34;10460:19;;15966:68:0;10085:400:1;15966:68:0;-1:-1:-1;;;;;16053:21:0;;16045:68;;;;-1:-1:-1;;;16045:68:0;;10692:2:1;16045:68:0;;;10674:21:1;10731:2;10711:18;;;10704:30;10770:34;10750:18;;;10743:62;-1:-1:-1;;;10821:18:1;;;10814:32;10863:19;;16045:68:0;10490:398:1;16045:68:0;-1:-1:-1;;;;;16127:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16179:32;;1613:25:1;;;16179:32:0;;1586:18:1;16179:32:0;;;;;;;;15838:381;;;:::o;38001:3589::-;-1:-1:-1;;;;;38133:18:0;;38125:68;;;;-1:-1:-1;;;38125:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38212:16:0;;38204:64;;;;-1:-1:-1;;;38204:64:0;;;;;;;:::i;:::-;38283:6;38293:1;38283:11;38280:92;;38311:28;38327:4;38333:2;38337:1;38311:15;:28::i;38280:92::-;22252:6;;-1:-1:-1;;;;;38411:15:0;;;22252:6;;38411:15;;;;:49;;-1:-1:-1;22252:6:0;;-1:-1:-1;;;;;38447:13:0;;;22252:6;;38447:13;;38411:49;:86;;;;-1:-1:-1;;;;;;38481:16:0;;;;38411:86;:128;;;;-1:-1:-1;;;;;;38518:21:0;;38532:6;38518:21;;38411:128;:158;;;;-1:-1:-1;38561:8:0;;-1:-1:-1;;;38561:8:0;;;;38560:9;38411:158;38389:1189;;;38607:13;;;;38603:148;;-1:-1:-1;;;;;38652:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;38681:23:0;;;;;;:19;:23;;;;;;;;38652:52;38644:87;;;;-1:-1:-1;;;38644:87:0;;11905:2:1;38644:87:0;;;11887:21:1;11944:2;11924:18;;;11917:30;-1:-1:-1;;;11963:18:1;;;11956:52;12025:18;;38644:87:0;11703:346:1;38644:87:0;-1:-1:-1;;;;;38804:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;38840:35:0;;;;;;:31;:35;;;;;;;;38839:36;38804:71;38800:763;;;38922:20;;38912:6;:30;;38904:96;;;;-1:-1:-1;;;38904:96:0;;12256:2:1;38904:96:0;;;12238:21:1;12295:2;12275:18;;;12268:30;12334:34;12314:18;;;12307:62;-1:-1:-1;;;12385:18:1;;;12378:51;12446:19;;38904:96:0;12054:417:1;38904:96:0;39061:9;;-1:-1:-1;;;;;9725:18:0;;9698:7;9725:18;;;;;;;;;;;39035:22;;:6;:22;:::i;:::-;:35;;39027:67;;;;-1:-1:-1;;;39027:67:0;;12678:2:1;39027:67:0;;;12660:21:1;12717:2;12697:18;;;12690:30;-1:-1:-1;;;12736:18:1;;;12729:49;12795:18;;39027:67:0;12476:343:1;39027:67:0;38800:763;;;-1:-1:-1;;;;;39173:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;39207:37:0;;;;;;:31;:37;;;;;;;;39206:38;39173:71;39169:394;;;39291:20;;39281:6;:30;;39273:97;;;;-1:-1:-1;;;39273:97:0;;13026:2:1;39273:97:0;;;13008:21:1;13065:2;13045:18;;;13038:30;13104:34;13084:18;;;13077:62;-1:-1:-1;;;13155:18:1;;;13148:52;13217:19;;39273:97:0;12824:418:1;39169:394:0;-1:-1:-1;;;;;39417:35:0;;;;;;:31;:35;;;;;;;;39413:150;;39510:9;;-1:-1:-1;;;;;9725:18:0;;9698:7;9725:18;;;;;;;;;;;39484:22;;:6;:22;:::i;:::-;:35;;39476:67;;;;-1:-1:-1;;;39476:67:0;;12678:2:1;39476:67:0;;;12660:21:1;12717:2;12697:18;;;12690:30;-1:-1:-1;;;12736:18:1;;;12729:49;12795:18;;39476:67:0;12476:343:1;39476:67:0;39648:4;39599:28;9725:18;;;;;;;;;;;39704;;9725;;39680:42;;;;;;39599:28;39680:42;;39785:35;;-1:-1:-1;39809:11:0;;;;;;;39785:35;:61;;;;-1:-1:-1;39838:8:0;;-1:-1:-1;;;39838:8:0;;;;39837:9;39785:61;:110;;;;-1:-1:-1;;;;;;39864:31:0;;;;;;:25;:31;;;;;;;;39863:32;39785:110;:153;;;;-1:-1:-1;;;;;;39913:25:0;;;;;;:19;:25;;;;;;;;39912:26;39785:153;:194;;;;-1:-1:-1;;;;;;39956:23:0;;;;;;:19;:23;;;;;;;;39955:24;39785:194;39767:328;;;40006:8;:15;;-1:-1:-1;;;;40006:15:0;-1:-1:-1;;;40006:15:0;;;40039:10;:8;:10::i;:::-;40067:8;:16;;-1:-1:-1;;;;40067:16:0;;;39767:328;40124:8;;-1:-1:-1;;;;;40234:25:0;;40108:12;40234:25;;;:19;:25;;;;;;40124:8;-1:-1:-1;;;40124:8:0;;;;;40123:9;;40234:25;;:52;;-1:-1:-1;;;;;;40263:23:0;;;;;;:19;:23;;;;;;;;40234:52;40231:99;;;-1:-1:-1;40313:5:0;40231:99;40343:12;40447:7;40444:1092;;;-1:-1:-1;;;;;40498:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;40547:1;40531:13;;:17;40498:50;40494:765;;;40575:34;40605:3;40575:25;40586:13;;40575:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;40568:41;;40676:13;;40657:16;;40650:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40628:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;40754:13:0;;40736:15;;40729:22;;:4;:22;:::i;:::-;:38;;;;:::i;:::-;40708:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;40824:13:0;;40810:11;;40803:18;;:4;:18;:::i;:::-;:34;;;;:::i;:::-;40786:51;;;;:::i;:::-;;;40494:765;;;-1:-1:-1;;;;;40904:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;40954:1;40939:12;;:16;40904:51;40901:358;;;40983:33;41012:3;40983:24;40994:12;;40983:6;:10;;:24;;;;:::i;:33::-;40976:40;;41082:12;;41064:15;;41057:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41035:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;41158:12:0;;41141:14;;41134:21;;:4;:21;:::i;:::-;:36;;;;:::i;:::-;41113:17;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;41226:12:0;;41213:10;;41206:17;;:4;:17;:::i;:::-;:32;;;;:::i;:::-;41189:49;;;;:::i;:::-;;;40901:358;41278:8;;41275:93;;41310:42;41326:4;41340;41347;41310:15;:42::i;:::-;41387:17;;41384:120;;41426:62;41450:4;41465:6;41474:13;41426:15;:62::i;:::-;41520:14;41530:4;41520:14;;:::i;:::-;;;40444:1092;41549:33;41565:4;41571:2;41575:6;41549:15;:33::i;:::-;38114:3476;;;;;38001:3589;;;:::o;18125:193::-;18211:7;18247:12;18239:6;;;;18231:29;;;;-1:-1:-1;;;18231:29:0;;;;;;;;:::i;:::-;-1:-1:-1;18271:9:0;18283:5;18287:1;18283;:5;:::i;:::-;18271:17;18125:193;-1:-1:-1;;;;;18125:193:0:o;37012:189::-;-1:-1:-1;;;;;37095:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37095:39:0;;;;;;;;;;37153:40;;37095:39;;:31;37153:40;;;37012:189;;:::o;13402:575::-;-1:-1:-1;;;;;13542:20:0;;13534:70;;;;-1:-1:-1;;;13534:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13623:23:0;;13615:71;;;;-1:-1:-1;;;13615:71:0;;;;;;;:::i;:::-;13781;13803:6;13781:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13781:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13761:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13886:20;;;;;;;:32;;13911:6;13886:24;:32::i;:::-;-1:-1:-1;;;;;13863:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13934:35;1613:25:1;;;13863:20:0;;13934:35;;;;;;1586:18:1;13934:35:0;1467:177:1;42737:1375:0;42820:4;42776:23;9725:18;;;;;;;;;;;42776:50;;42837:25;42886:17;;42865:18;;:38;;;;:::i;:::-;42837:66;-1:-1:-1;42914:12:0;42943:20;;;:46;;-1:-1:-1;42967:22:0;;42943:46;42940:60;;;42992:7;;;42737:1375::o;42940:60::-;43034:18;;:23;;43055:2;43034:23;:::i;:::-;43016:15;:41;43013:111;;;43089:18;;:23;;43110:2;43089:23;:::i;:::-;43071:41;;43013:111;43186:23;43271:1;43251:17;43230:18;;43212:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;43186:86;-1:-1:-1;43283:26:0;43312:36;:15;43186:86;43312:19;:36::i;:::-;43283:65;-1:-1:-1;43390:21:0;43425:36;43283:65;43425:16;:36::i;:::-;43476:18;43497:44;:21;43523:17;43497:25;:44::i;:::-;43476:65;;43565:22;43590:56;43628:17;43590:33;43605:17;;43590:10;:14;;:33;;;;:::i;:56::-;43565:81;-1:-1:-1;43657:23:0;43683:27;43565:81;43683:10;:27;:::i;:::-;43752:1;43731:18;:22;;;43764:17;:21;43657:53;-1:-1:-1;43809:19:0;;;;;:42;;;43850:1;43832:15;:19;43809:42;43806:210;;;43867:46;43880:15;43897;43867:12;:46::i;:::-;43985:18;;43933:71;;;13582:25:1;;;13638:2;13623:18;;13616:34;;;13666:18;;;13659:34;;;;43933:71:0;;;;;;13570:2:1;43933:71:0;;;43806:210;44050:14;;44042:62;;-1:-1:-1;;;;;44050:14:0;;;;44078:21;;44042:62;;;;44078:21;44050:14;44042:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;42737:1375:0:o;18578:473::-;18636:7;18881:1;18886;18881:6;18877:47;;-1:-1:-1;18911:1:0;18904:8;;18877:47;18937:9;18949:5;18953:1;18949;:5;:::i;:::-;18937:17;-1:-1:-1;18982:1:0;18973:5;18977:1;18937:17;18973:5;:::i;:::-;:10;18965:56;;;;-1:-1:-1;;;18965:56:0;;14116:2:1;18965:56:0;;;14098:21:1;14155:2;14135:18;;;14128:30;14194:34;14174:18;;;14167:62;-1:-1:-1;;;14245:18:1;;;14238:31;14286:19;;18965:56:0;13914:397:1;19528:132:0;19586:7;19613:39;19617:1;19620;19613:39;;;;;;;;;;;;;;;;;:3;:39::i;17685:136::-;17743:7;17770:43;17774:1;17777;17770:43;;;;;;;;;;;;;;;;;:3;:43::i;41599:597::-;41752:16;;;41766:1;41752:16;;;;;;;;41728:21;;41752:16;;;;;;;;;;-1:-1:-1;41752:16:0;41728:40;;41797:4;41779;41784:1;41779:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41779:23:0;;;-1:-1:-1;;;;;41779:23:0;;;;;41823:15;-1:-1:-1;;;;;41823:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41813:4;41818:1;41813:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;41813:32:0;;;-1:-1:-1;;;;;41813:32:0;;;;;41859:62;41876:4;41891:15;41909:11;41859:8;:62::i;:::-;41961:224;;-1:-1:-1;;;41961:224:0;;-1:-1:-1;;;;;41961:15:0;:66;;;;:224;;42042:11;;42068:1;;42112:4;;42139;;42159:15;;41961:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41654:542;41599:597;:::o;42205:523::-;42353:62;42370:4;42385:15;42403:11;42353:8;:62::i;:::-;42459:261;;-1:-1:-1;;;42459:261:0;;42531:4;42459:261;;;16162:34:1;16212:18;;;16205:34;;;42577:1:0;16255:18:1;;;16248:34;;;16298:18;;;16291:34;42671:7:0;16341:19:1;;;16334:44;42694:15:0;16394:19:1;;;16387:35;42459:15:0;-1:-1:-1;;;;;42459:31:0;;;;42498:9;;16096:19:1;;42459:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42205:523;;:::o;20157:279::-;20243:7;20278:12;20271:5;20263:28;;;;-1:-1:-1;;;20263:28:0;;;;;;;;:::i;:::-;-1:-1:-1;20302:9:0;20314:5;20318:1;20314;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:388::-;3826:6;3834;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:31;3986:5;3961:31;:::i;:::-;4011:5;-1:-1:-1;4068:2:1;4053:18;;4040:32;4081:33;4040:32;4081:33;:::i;4151:241::-;4207:6;4260:2;4248:9;4239:7;4235:23;4231:32;4228:52;;;4276:1;4273;4266:12;4228:52;4315:9;4302:23;4334:28;4356:5;4334:28;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;4782:356::-;4984:2;4966:21;;;5003:18;;;4996:30;5062:34;5057:2;5042:18;;5035:62;5129:2;5114:18;;4782:356::o;5143:127::-;5204:10;5199:3;5195:20;5192:1;5185:31;5235:4;5232:1;5225:15;5259:4;5256:1;5249:15;5275:168;5348:9;;;5379;;5396:15;;;5390:22;;5376:37;5366:71;;5417:18;;:::i;5448:217::-;5488:1;5514;5504:132;;5558:10;5553:3;5549:20;5546:1;5539:31;5593:4;5590:1;5583:15;5621:4;5618:1;5611:15;5504:132;-1:-1:-1;5650:9:1;;5448:217::o;6086:125::-;6151:9;;;6172:10;;;6169:36;;;6185:18;;:::i;6930:184::-;7000:6;7053:2;7041:9;7032:7;7028:23;7024:32;7021:52;;;7069:1;7066;7059:12;7021:52;-1:-1:-1;7092:16:1;;6930:184;-1:-1:-1;6930:184:1:o;7398:245::-;7465:6;7518:2;7506:9;7497:7;7493:23;7489:32;7486:52;;;7534:1;7531;7524:12;7486:52;7566:9;7560:16;7585:28;7607:5;7585:28;:::i;10893:401::-;11095:2;11077:21;;;11134:2;11114:18;;;11107:30;11173:34;11168:2;11153:18;;11146:62;-1:-1:-1;;;11239:2:1;11224:18;;11217:35;11284:3;11269:19;;10893:401::o;11299:399::-;11501:2;11483:21;;;11540:2;11520:18;;;11513:30;11579:34;11574:2;11559:18;;11552:62;-1:-1:-1;;;11645:2:1;11630:18;;11623:33;11688:3;11673:19;;11299:399::o;13247:128::-;13314:9;;;13335:11;;;13332:37;;;13349:18;;:::i;14448:127::-;14509:10;14504:3;14500:20;14497:1;14490:31;14540:4;14537:1;14530:15;14564:4;14561:1;14554:15;14580:251;14650:6;14703:2;14691:9;14682:7;14678:23;14674:32;14671:52;;;14719:1;14716;14709:12;14671:52;14751:9;14745:16;14770:31;14795:5;14770:31;:::i;14836:980::-;15098:4;15146:3;15135:9;15131:19;15177:6;15166:9;15159:25;15203:2;15241:6;15236:2;15225:9;15221:18;15214:34;15284:3;15279:2;15268:9;15264:18;15257:31;15308:6;15343;15337:13;15374:6;15366;15359:22;15412:3;15401:9;15397:19;15390:26;;15451:2;15443:6;15439:15;15425:29;;15472:1;15482:195;15496:6;15493:1;15490:13;15482:195;;;15561:13;;-1:-1:-1;;;;;15557:39:1;15545:52;;15652:15;;;;15617:12;;;;15593:1;15511:9;15482:195;;;-1:-1:-1;;;;;;;15733:32:1;;;;15728:2;15713:18;;15706:60;-1:-1:-1;;;15797:3:1;15782:19;15775:35;15694:3;14836:980;-1:-1:-1;;;14836:980:1:o;16433:306::-;16521:6;16529;16537;16590:2;16578:9;16569:7;16565:23;16561:32;16558:52;;;16606:1;16603;16596:12;16558:52;16635:9;16629:16;16619:26;;16685:2;16674:9;16670:18;16664:25;16654:35;;16729:2;16718:9;16714:18;16708:25;16698:35;;16433:306;;;;;:::o
Swarm Source
ipfs://e3dec098ddb0e1e84cfe64a13e490a3c7e2390b8faecbd3285a437a4e76267ec
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.