ERC-20
Overview
Max Total Supply
96,517.62880915775085436 ShoNuff
Holders
53
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.883064444505954089 ShoNuffValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheLastDragon
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-15 */ /* _____ _ __ _ ___ /__ \ |__ ___ / / __ _ ___| |_ / \_ __ __ _ __ _ ___ _ __ / /\/ '_ \ / _ \ / / / _` / __| __| / /\ / '__/ _` |/ _` |/ _ \| '_ \ / / | | | | __/ / /__| (_| \__ \ |_ / /_//| | | (_| | (_| | (_) | | | | \/ |_| |_|\___| \____/\__,_|___/\__| /___,' |_| \__,_|\__, |\___/|_| |_| |___/ Who's The Master? ShoNuff _,,,.._ ,_ .gMMMMMMMMMp,_ `\ .dMMP' ``^YMb..dP dMMP' MMM: YMMb. YMMMb. `YMM/|Mb. ,__ _,,-~`--..-~-'_,/`--,,,____ `\,_,/',_.-~_..-~/' ,/---~~~"""`\ _,_,,,\q\q/' \,,-~'_,/`````-,7. `@v@`\\,,,,__ \,,-~~"__/` ",,/MMMMb. `--''_..-~~\ \,-~~"" `\_,/ `^YMMMMMb.. ,|``-~~--./_,,_ _,,-~~'/_ `YMMMMMMMb. ,/ `\,_,,/`\ `\,___,,,/M/' `YMMMMMMMb ; _,,/__...|MMM/ YMMMMMMMb .' /' dMMM\ !MMMMMMMMb ,-'.-'""~~~--/M|M' \ !MMMMMMMMM ,/ .|...._____/MMM\ b gMMMMMMMMM ,'/'\/ dMMP/' M. ,MMMMMMMMMP / `\;/~~~~----...MP' ,MMb..,dMMMMMMMMM' / ,_ | _/ dMMMMMMMMMMMMMMMMB \ |\,\,,,,___ _/ _,dMMMMMMMMMMMP".emmmb, `.\ gY. / 7MMMMMMMMMMP"..emmMMMMM .dMMMb,-..| `.~~"""```|dMMMMP'MMP' .MMMMP^"""/ .7 , _ \,---~""`^YMMP'MM; _dMMMP' ,' / | |\ \\ } PM^M^b _,' _, \_.._`./ } ; \ \``' __,'_` _ `._ ,-~/'./'| 7`,,__,}` `` `` // _/`| 7``-._`} |_,}__{ {,/' `` `\{_ {,/' `` `` ``` `` `` `` ShoNuff is back to represent "Who's the Master". This is a spoof meme play for all you dragon token lovers. The best part, ShoNuff is a deflationary token where tokens will be removed from the supply on every trasaction (20%). - Anti-whale & bot-flip function. 180 Second Sell Delay Timer. - 2% Max Tx & Max Wallet - 1% Max Sell Tx which will stay for the duration of the project https://t.me/ShoNuffPortal https://medium.com/@shonuffeth/whos-the-master-sho-nuff-4696f14f1f70 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; 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 IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function createPair(address tokenA, address tokenB) external returns (address pair); } 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 swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IUniswapV2Router02 is IUniswapV2Router01 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract TheLastDragon is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; uint256 public maxSellTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public supply; address public marketingAddress; address public liquidityAddress; bool public tradingActive = false; bool public liquidityFeeActive = false; bool public transferDelayActive = true; bool public limitsInEffect = true; bool public swapEnabled = true; bool public _renounceDelayFunction = false; bool public _renounceFeeFunctions = false; bool public _renounceMaxUpdateFunctions = false; bool public _renounceMarketMakerPairChanges = false; bool public _renounceWalletChanges = false; bool public _renounceExcludeInclude = false; mapping(address => uint256) private _holderLastTransferTimestamp; uint256 public buyBurnFee; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyTotalFees; uint256 public sellBurnFee; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellTotalFees; uint256 public feeUnits = 100; uint256 public tokensForBurn; uint256 public tokensForMarketing; uint256 public tokensForDonation; uint256 public tokensForLiquidity; uint256 private _previousBuyLiquidityFee = 0; uint256 private _previousSellLiquidityFee = 0; uint256 public maxWalletTotal; uint256 public maxSellTransaction; uint256 public walletTransferDelayTime; /******************/ // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxSellTransactionAmount; // Store the automatic market maker pair addresses. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity); event updateHolderLastTransferTimestamp(address indexed account, uint256 timestamp); constructor() ERC20("The Last Dragon", "ShoNuff") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxSellTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxSellTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyBurnFee = 1; uint256 _buyMarketingFee = 88; uint256 _buyLiquidityFee = 1; uint256 _sellBurnFee = 1; uint256 _sellMarketingFee = 88; uint256 _sellLiquidityFee = 1; uint256 totalSupply = 100000 * (10 ** 18); supply += totalSupply; maxWallet = 2; maxSellTransaction = 1; walletTransferDelayTime = 0; maxSellTransactionAmount = supply * maxSellTransaction / 100; swapTokensAtAmount = supply * 5 / 100000; // 0.005% swap wallet; maxWalletTotal = supply * maxWallet / 100; buyBurnFee = _buyBurnFee; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyBurnFee + buyMarketingFee + buyLiquidityFee; sellBurnFee = _sellBurnFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellBurnFee + sellMarketingFee + sellLiquidityFee; marketingAddress = 0xF854562Ea99298d552686F7EB64500cE9c322d6f; liquidityAddress = msg.sender; excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxSellTransaction(owner(), true); excludeFromMaxSellTransaction(address(this), true); excludeFromMaxSellTransaction(address(0xdead), true); _approve(owner(), address(uniswapV2Router), totalSupply); _mint(msg.sender, totalSupply); } receive() external payable {} function toggleTransferDelayActive () external onlyOwner { require(!_renounceDelayFunction, "Cannot update wallet transfer delay time after renouncement"); transferDelayActive = !transferDelayActive; } function toggleLiquidityFeeActive () external onlyOwner { require(!_renounceFeeFunctions, "Cannot update fees after renouncemennt"); if (liquidityFeeActive) { _previousBuyLiquidityFee = buyLiquidityFee; _previousSellLiquidityFee = sellLiquidityFee; } buyLiquidityFee = liquidityFeeActive ? 0 : _previousBuyLiquidityFee; sellLiquidityFee = liquidityFeeActive ? 0 : _previousSellLiquidityFee; liquidityFeeActive = !liquidityFeeActive; } function enableTrading() external onlyOwner { buyBurnFee = 1; buyMarketingFee = 88; buyLiquidityFee = 1; buyTotalFees = buyBurnFee + buyMarketingFee + buyLiquidityFee; sellBurnFee = 1; sellMarketingFee = 88; sellLiquidityFee = 1; sellTotalFees = sellBurnFee + sellMarketingFee + sellLiquidityFee; walletTransferDelayTime = 180; tradingActive = true; liquidityFeeActive = true; } function updateMaxSellTransaction(uint256 newNum) external onlyOwner { require(!_renounceMaxUpdateFunctions, "Cannot update max transaction amount after renouncement"); require(newNum >= 1); maxSellTransaction = newNum; updateLimits(); } function updateMaxWallet(uint256 newNum) external onlyOwner { require(!_renounceMaxUpdateFunctions, "Cannot update max transaction amount after renouncement"); require(newNum >= 1); maxWallet = newNum; updateLimits(); } function updateWalletTransferDelayTime(uint256 newNum) external onlyOwner{ require(!_renounceDelayFunction, "Cannot update wallet transfer delay time after renouncement"); walletTransferDelayTime = newNum; } function excludeFromMaxSellTransaction(address updAds, bool isEx) public onlyOwner { require(!_renounceMaxUpdateFunctions, "Cannot update max transaction amount after renouncement"); _isExcludedMaxSellTransactionAmount[updAds] = isEx; } // if want fractional % in future, need to increase the fee units function updateFeeUnits(uint256 newNum) external onlyOwner { require(!_renounceFeeFunctions, "Cannot update fees after renouncement"); feeUnits = newNum; } function updateBuyFees(uint256 _burnFee, uint256 _marketingFee, uint256 _buyLiquidityFee) external onlyOwner { require(!_renounceFeeFunctions, "Cannot update fees after renouncement"); buyBurnFee = _burnFee; buyMarketingFee = _marketingFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyBurnFee + buyMarketingFee + buyLiquidityFee; } function updateSellFees(uint256 _burnFee, uint256 _marketingFee, uint256 _sellLiquidityFee) external onlyOwner { require(!_renounceFeeFunctions, "Cannot update fees after renouncement"); sellBurnFee = _burnFee; sellMarketingFee = _marketingFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellBurnFee + sellMarketingFee + sellLiquidityFee; } function updateMarketingAddress(address newWallet) external onlyOwner { require(!_renounceWalletChanges, "Cannot update wallet after renouncement"); marketingAddress = newWallet; } function updateLiquidityAddress(address newWallet) external onlyOwner { require(!_renounceWalletChanges, "Cannot update wallet after renouncement"); liquidityAddress = newWallet; } function excludeFromFees(address account, bool excluded) public onlyOwner { require(!_renounceExcludeInclude, "Cannot update excluded accounts after renouncement"); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function includeInFees(address account) public onlyOwner { require(!_renounceExcludeInclude, "Cannot update excluded accounts after renouncement"); excludeFromFees(account, false); } function setLiquidityAddress(address newAddress) public onlyOwner { require(!_renounceWalletChanges, "Cannot update wallet after renouncement"); liquidityAddress = newAddress; } function updateLimits() private { maxSellTransactionAmount = supply * maxSellTransaction / 100; swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet; maxWalletTotal = supply * maxWallet / 100; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(!_renounceMarketMakerPairChanges, "Cannot update market maker pairs after renouncement"); require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(amount == 0) { super._transfer(from, to, 0); return; } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } // if the transfer delay is enabled, will block adding to liquidity/sells (transactions to AMM pair) if (transferDelayActive && automatedMarketMakerPairs[to]) { require(block.timestamp >= _holderLastTransferTimestamp[tx.origin] + walletTransferDelayTime, "Transfer delay is active.Only one sell per ~walletTransferDelayTime~ allowed."); } // add the wallet to the _holderLastTransferTimestamp(address, timestamp) map _holderLastTransferTimestamp[tx.origin] = block.timestamp; emit updateHolderLastTransferTimestamp(tx.origin, block.timestamp); //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxSellTransactionAmount[to] && !automatedMarketMakerPairs[to]){ require(amount + balanceOf(to) <= maxWalletTotal, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxSellTransactionAmount[from] && !automatedMarketMakerPairs[from]){ require(amount <= maxSellTransactionAmount, "Sell transfer amount exceeds the maxSellTransactionAmount."); } else if(!_isExcludedMaxSellTransactionAmount[to]){ require(amount + balanceOf(to) <= maxWalletTotal, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && !swapping && swapEnabled && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if(takeFee){ // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount.mul(sellTotalFees).div(feeUnits); tokensForBurn += fees * sellBurnFee / sellTotalFees; tokensForMarketing += fees * sellMarketingFee / sellTotalFees; if (liquidityFeeActive) { tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; } } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(feeUnits); tokensForBurn += fees * buyBurnFee / buyTotalFees; tokensForMarketing += fees * buyMarketingFee / buyTotalFees; if (liquidityFeeActive) { tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; } } if(fees > 0){ super._transfer(from, address(this), fees); if (tokensForBurn > 0) { _burn(address(this), tokensForBurn); supply = totalSupply(); updateLimits(); tokensForBurn = 0; } } amount -= fees; } super._transfer(from, to, amount); } function renounceFeeFunctions () public onlyOwner { require(msg.sender == owner(), "Only the owner can renounce fee functions"); _renounceFeeFunctions = true; } function renounceDelayFunction () public onlyOwner { require(msg.sender == owner(), "Only the owner can renounce delay function"); _renounceDelayFunction = true; } function renounceWalletChanges () public onlyOwner { require(msg.sender == owner(), "Only the owner can renounce wallet changes"); _renounceWalletChanges = true; } function renounceMaxUpdateFunctions () public onlyOwner { require(msg.sender == owner(), "Only the owner can renounce max update functions"); _renounceMaxUpdateFunctions = true; } function renounceMarketMakerPairChanges () public onlyOwner { require(msg.sender == owner(), "Only the owner can renounce market maker pair changes"); _renounceMarketMakerPairChanges = true; } function renounceExcludeInclude () public onlyOwner { require(msg.sender == owner(), "Only the owner can renounce exclude include"); _renounceExcludeInclude = true; } 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 swapBack() private { uint256 contractBalance = balanceOf(address(this)); if(contractBalance == 0) {return;} if(tokensForMarketing > 0) swapForMarketing(tokensForMarketing); if(tokensForLiquidity > 0) swapForLiquidity(tokensForLiquidity); } function swapForMarketing(uint _tokens) private { uint256 initalBalance = address(this).balance; swapTokensForEth(_tokens); uint256 RecievedBalance = address(this).balance - initalBalance; payable(marketingAddress).transfer(RecievedBalance); tokensForMarketing = tokensForMarketing - _tokens; } function swapForLiquidity(uint _tokens) private { uint half = _tokens / 2; uint otherhalf = _tokens - half; uint256 initalBalance = address(this).balance; swapTokensForEth(half); uint256 RecievedBalance = address(this).balance - initalBalance; addLiquidity(otherhalf,RecievedBalance); tokensForLiquidity = tokensForLiquidity - _tokens; } 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 liquidityAddress, block.timestamp ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"updateHolderLastTransferTimestamp","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxSellTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceDelayFunction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceExcludeInclude","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceFeeFunctions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceMarketMakerPairChanges","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceMaxUpdateFunctions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceWalletChanges","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":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"excludeFromMaxSellTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeUnits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","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":"maxWalletTotal","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":"renounceDelayFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceExcludeInclude","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceFeeFunctions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceMarketMakerPairChanges","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceMaxUpdateFunctions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceWalletChanges","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":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setLiquidityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"toggleLiquidityFeeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTransferDelayActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDonation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","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":[],"name":"transferDelayActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateFeeUnits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateLiquidityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateWalletTransferDelayTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletTransferDelayTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600b8054600160a01b600160f81b0319166201010160b01b17905560646015556000601a819055601b553480156200003b57600080fd5b506040518060400160405280600f81526020016e2a3432902630b9ba10223930b3b7b760891b8152506040518060400160405280600781526020016629b437a73ab33360c91b815250816003908162000095919062000a40565b506004620000a4828262000a40565b5050506000620000b96200049560201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200012981600162000499565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000174573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019a919062000b0c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001e8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020e919062000b0c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200025c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000282919062000b0c565b6001600160a01b031660a08190526200029d90600162000499565b60a051620002ad90600162000594565b60098054600191605891839182918491839169152d02c7e14af6800000918291600090620002dd90849062000b4d565b909155505060026008556001601d8190556000601e55600954606491620003049162000b68565b62000310919062000b8a565b600655600954620186a0906200032890600562000b68565b62000334919062000b8a565b6007556008546009546064916200034b9162000b68565b62000357919062000b8a565b601c55600d879055600e869055600f8590558462000376878962000b4d565b62000382919062000b4d565b60105560118490556012839055601382905581620003a1848662000b4d565b620003ad919062000b4d565b601455600a80546001600160a01b031990811673f854562ea99298d552686f7eb64500ce9c322d6f17909155600b80549091163317905562000403620003fb6005546001600160a01b031690565b6001620005e8565b62000410306001620005e8565b6200041f61dead6001620005e8565b6200043e620004366005546001600160a01b031690565b600162000499565b6200044b30600162000499565b6200045a61dead600162000499565b6200047b620004716005546001600160a01b031690565b6080518362000709565b62000487338262000831565b505050505050505062000bad565b3390565b6005546001600160a01b03163314620004e85760405162461bcd60e51b81526020600482018190526024820152600080516020620040f483398151915260448201526064015b60405180910390fd5b600b54600160d81b900460ff16156200056a5760405162461bcd60e51b815260206004820152603760248201527f43616e6e6f7420757064617465206d6178207472616e73616374696f6e20616d60448201527f6f756e742061667465722072656e6f756e63656d656e740000000000000000006064820152608401620004df565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620006335760405162461bcd60e51b81526020600482018190526024820152600080516020620040f48339815191526044820152606401620004df565b600b54600160f01b900460ff1615620006aa5760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f7420757064617465206578636c75646564206163636f756e74732060448201527118599d195c881c995b9bdd5b98d95b595b9d60721b6064820152608401620004df565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0383166200076d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620004df565b6001600160a01b038216620007d05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620004df565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620008895760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004df565b620008a5816002546200093260201b62001cce1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620008d891839062001cce62000932821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b60008062000941838562000b4d565b905083811015620009955760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004df565b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620009c757607f821691505b602082108103620009e857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200092d57600081815260208120601f850160051c8101602086101562000a175750805b601f850160051c820191505b8181101562000a385782815560010162000a23565b505050505050565b81516001600160401b0381111562000a5c5762000a5c6200099c565b62000a748162000a6d8454620009b2565b84620009ee565b602080601f83116001811462000aac576000841562000a935750858301515b600019600386901b1c1916600185901b17855562000a38565b600085815260208120601f198616915b8281101562000add5788860151825594840194600190910190840162000abc565b508582101562000afc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000b1f57600080fd5b81516001600160a01b03811681146200099557600080fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111562000b635762000b6362000b37565b500190565b600081600019048311821515161562000b855762000b8562000b37565b500290565b60008262000ba857634e487b7160e01b600052601260045260246000fd5b500490565b60805160a0516134f762000bfd60003960008181610738015261159401526000818161055501528181612c5101528181612d0a01528181612d4601528181612dc00152612e2801526134f76000f3fe6080604052600436106104405760003560e01c80638095d56411610234578063b680fefb1161012e578063ddf19480116100b6578063f11a24d31161007a578063f11a24d314610c9e578063f2fde38b14610cb4578063f637434214610cd4578063f680f79914610cea578063f8b45b0514610d0057600080fd5b8063ddf1948014610c1c578063e18fc22414610c3d578063e2f4560514610c5d578063e71dc3f514610c73578063ee98ba8414610c8957600080fd5b8063c17b5b8c116100fd578063c17b5b8c14610b69578063c94c2a5214610b89578063d85ba06314610baa578063d8fc65e114610bc0578063dd62ed3e14610bd657600080fd5b8063b680fefb146107b4578063bb647f6514610b13578063bbc0c74214610b28578063c024666814610b4957600080fd5b8063a4d03414116101bc578063ae907c9c11610180578063ae907c9c14610a8e578063b0a95bfa14610aa4578063b1099b8114610ab9578063b116288414610ace578063b62496f514610ae357600080fd5b8063a4d03414146109f7578063a5ece94114610a18578063a9059cbb14610a38578063ac819f5414610a58578063adb873bd14610a7857600080fd5b806395d89b411161020357806395d89b41146109605780639a7a23d614610975578063a333174f14610995578063a457c2d7146109b6578063a4c5ba96146109d657600080fd5b80638095d564146108f75780638a8c523c146109175780638da5cb5b1461092c578063921369131461094a57600080fd5b8063313ce567116103455780635449f2ec116102cd5780636ddd1713116102915780636ddd17131461085557806370a0823114610876578063715018a6146108ac5780637bce5a04146108c15780637d3f84da146108d757600080fd5b80635449f2ec146107d45780635dc08315146107e9578063637845c61461080957806365aaf3701461081e5780636a486a8e1461083f57600080fd5b80633fad50a9116103145780633fad50a91461070557806349bd5a5e146107265780634a62bb651461075a5780634fbee1931461077b578063525fa81f146107b457600080fd5b8063313ce567146106935780633221c93f146106af57806339509351146106cf5780633b13cc16146106ef57600080fd5b806318160ddd116103c85780631d777856116103975780631d777856146106115780631f3fed8f146106275780632369bf831461063d57806323b872dd1461065d57806327c8f8351461067d57600080fd5b806318160ddd146105b15780631a8145bb146105c65780631c499ab0146105dc5780631cd6e871146105fc57600080fd5b806306fdde031161040f57806306fdde03146104d25780630855f25d146104f4578063095ea7b3146105235780631694505e1461054357806316a2f82a1461058f57600080fd5b806302259e9e1461044c578063023ad58114610475578063047fc9aa1461048b578063064f2205146104a157600080fd5b3661044757005b600080fd5b34801561045857600080fd5b5061046260065481565b6040519081526020015b60405180910390f35b34801561048157600080fd5b50610462601c5481565b34801561049757600080fd5b5061046260095481565b3480156104ad57600080fd5b50600b546104c290600160a81b900460ff1681565b604051901515815260200161046c565b3480156104de57600080fd5b506104e7610d16565b60405161046c9190612ea0565b34801561050057600080fd5b506104c261050f366004612f0a565b602080526000908152604090205460ff1681565b34801561052f57600080fd5b506104c261053e366004612f27565b610da8565b34801561054f57600080fd5b506105777f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161046c565b34801561059b57600080fd5b506105af6105aa366004612f0a565b610dbf565b005b3480156105bd57600080fd5b50600254610462565b3480156105d257600080fd5b5061046260195481565b3480156105e857600080fd5b506105af6105f7366004612f53565b610e2a565b34801561060857600080fd5b506105af610e99565b34801561061d57600080fd5b5061046260165481565b34801561063357600080fd5b5061046260175481565b34801561064957600080fd5b506105af610658366004612f0a565b610f44565b34801561066957600080fd5b506104c2610678366004612f6c565b610fba565b34801561068957600080fd5b5061057761dead81565b34801561069f57600080fd5b506040516012815260200161046c565b3480156106bb57600080fd5b50600b54610577906001600160a01b031681565b3480156106db57600080fd5b506104c26106ea366004612f27565b611023565b3480156106fb57600080fd5b50610462601d5481565b34801561071157600080fd5b50600b546104c290600160e01b900460ff1681565b34801561073257600080fd5b506105777f000000000000000000000000000000000000000000000000000000000000000081565b34801561076657600080fd5b50600b546104c290600160b81b900460ff1681565b34801561078757600080fd5b506104c2610796366004612f0a565b6001600160a01b03166000908152601f602052604090205460ff1690565b3480156107c057600080fd5b506105af6107cf366004612f0a565b611059565b3480156107e057600080fd5b506105af6110cf565b3480156107f557600080fd5b506105af610804366004612f53565b61117c565b34801561081557600080fd5b506105af6111eb565b34801561082a57600080fd5b50600b546104c290600160e81b900460ff1681565b34801561084b57600080fd5b5061046260145481565b34801561086157600080fd5b50600b546104c290600160c01b900460ff1681565b34801561088257600080fd5b50610462610891366004612f0a565b6001600160a01b031660009081526020819052604090205490565b3480156108b857600080fd5b506105af6112fc565b3480156108cd57600080fd5b50610462600e5481565b3480156108e357600080fd5b506105af6108f2366004612f53565b611370565b34801561090357600080fd5b506105af610912366004612fad565b6113c9565b34801561092357600080fd5b506105af611449565b34801561093857600080fd5b506005546001600160a01b0316610577565b34801561095657600080fd5b5061046260125481565b34801561096c57600080fd5b506104e76114e3565b34801561098157600080fd5b506105af610990366004612fd9565b6114f2565b3480156109a157600080fd5b50600b546104c290600160f01b900460ff1681565b3480156109c257600080fd5b506104c26109d1366004612f27565b611647565b3480156109e257600080fd5b50600b546104c290600160c81b900460ff1681565b348015610a0357600080fd5b50600b546104c290600160d01b900460ff1681565b348015610a2457600080fd5b50600a54610577906001600160a01b031681565b348015610a4457600080fd5b506104c2610a53366004612f27565b611696565b348015610a6457600080fd5b506105af610a73366004612fd9565b6116a3565b348015610a8457600080fd5b5061046260115481565b348015610a9a57600080fd5b50610462601e5481565b348015610ab057600080fd5b506105af611721565b348015610ac557600080fd5b506105af6117cd565b348015610ada57600080fd5b506105af611884565b348015610aef57600080fd5b506104c2610afe366004612f0a565b60216020526000908152604090205460ff1681565b348015610b1f57600080fd5b506105af611936565b348015610b3457600080fd5b50600b546104c290600160a01b900460ff1681565b348015610b5557600080fd5b506105af610b64366004612fd9565b6119ab565b348015610b7557600080fd5b506105af610b84366004612fad565b611a5e565b348015610b9557600080fd5b50600b546104c290600160d81b900460ff1681565b348015610bb657600080fd5b5061046260105481565b348015610bcc57600080fd5b5061046260185481565b348015610be257600080fd5b50610462610bf1366004613017565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610c2857600080fd5b50600b546104c290600160b01b900460ff1681565b348015610c4957600080fd5b506105af610c58366004612f53565b611ade565b348015610c6957600080fd5b5061046260075481565b348015610c7f57600080fd5b50610462600d5481565b348015610c9557600080fd5b506105af611b37565b348015610caa57600080fd5b50610462600f5481565b348015610cc057600080fd5b506105af610ccf366004612f0a565b611be3565b348015610ce057600080fd5b5061046260135481565b348015610cf657600080fd5b5061046260155481565b348015610d0c57600080fd5b5061046260085481565b606060038054610d2590613045565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5190613045565b8015610d9e5780601f10610d7357610100808354040283529160200191610d9e565b820191906000526020600020905b815481529060010190602001808311610d8157829003601f168201915b5050505050905090565b6000610db5338484611d34565b5060015b92915050565b6005546001600160a01b03163314610df25760405162461bcd60e51b8152600401610de99061307f565b60405180910390fd5b600b54600160f01b900460ff1615610e1c5760405162461bcd60e51b8152600401610de9906130b4565b610e278160006119ab565b50565b6005546001600160a01b03163314610e545760405162461bcd60e51b8152600401610de99061307f565b600b54600160d81b900460ff1615610e7e5760405162461bcd60e51b8152600401610de990613106565b6001811015610e8c57600080fd5b6008819055610e27611e59565b6005546001600160a01b03163314610ec35760405162461bcd60e51b8152600401610de99061307f565b6005546001600160a01b03163314610f2f5760405162461bcd60e51b815260206004820152602960248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206665652060448201526866756e6374696f6e7360b81b6064820152608401610de9565b600b805460ff60d01b1916600160d01b179055565b6005546001600160a01b03163314610f6e5760405162461bcd60e51b8152600401610de99061307f565b600b54600160e81b900460ff1615610f985760405162461bcd60e51b8152600401610de990613163565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610fc7848484611eb8565b611019843361101485604051806060016040528060288152602001613475602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612724565b611d34565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610db59185906110149086611cce565b6005546001600160a01b031633146110835760405162461bcd60e51b8152600401610de99061307f565b600b54600160e81b900460ff16156110ad5760405162461bcd60e51b8152600401610de990613163565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110f95760405162461bcd60e51b8152600401610de99061307f565b6005546001600160a01b031633146111675760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206578636c60448201526a75646520696e636c75646560a81b6064820152608401610de9565b600b805460ff60f01b1916600160f01b179055565b6005546001600160a01b031633146111a65760405162461bcd60e51b8152600401610de99061307f565b600b54600160d81b900460ff16156111d05760405162461bcd60e51b8152600401610de990613106565b60018110156111de57600080fd5b601d819055610e27611e59565b6005546001600160a01b031633146112155760405162461bcd60e51b8152600401610de99061307f565b600b54600160d01b900460ff161561127e5760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f742075706461746520666565732061667465722072656e6f756e63604482015265195b595b9b9d60d21b6064820152608401610de9565b600b54600160a81b900460ff161561129d57600f54601a55601354601b555b600b54600160a81b900460ff166112b657601a546112b9565b60005b600f55600b54600160a81b900460ff166112d557601b546112d8565b60005b601355600b805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6005546001600160a01b031633146113265760405162461bcd60e51b8152600401610de99061307f565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b0316331461139a5760405162461bcd60e51b8152600401610de99061307f565b600b54600160c81b900460ff16156113c45760405162461bcd60e51b8152600401610de9906131aa565b601e55565b6005546001600160a01b031633146113f35760405162461bcd60e51b8152600401610de99061307f565b600b54600160d01b900460ff161561141d5760405162461bcd60e51b8152600401610de990613207565b600d839055600e829055600f819055806114378385613262565b6114419190613262565b601055505050565b6005546001600160a01b031633146114735760405162461bcd60e51b8152600401610de99061307f565b6001600d8190556058600e819055600f8290556114909082613262565b61149a9190613262565b601055600160118190556058601281905560138290556114ba9082613262565b6114c49190613262565b60145560b4601e55600b805461ffff60a01b191661010160a01b179055565b606060048054610d2590613045565b6005546001600160a01b0316331461151c5760405162461bcd60e51b8152600401610de99061307f565b600b54600160e01b900460ff16156115925760405162461bcd60e51b815260206004820152603360248201527f43616e6e6f7420757064617465206d61726b6574206d616b65722070616972736044820152720818599d195c881c995b9bdd5b98d95b595b9d606a1b6064820152608401610de9565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036116395760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610de9565b611643828261275e565b5050565b6000610db533846110148560405180606001604052806025815260200161349d602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612724565b6000610db5338484611eb8565b6005546001600160a01b031633146116cd5760405162461bcd60e51b8152600401610de99061307f565b600b54600160d81b900460ff16156116f75760405162461bcd60e51b8152600401610de990613106565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461174b5760405162461bcd60e51b8152600401610de99061307f565b6005546001600160a01b031633146117b85760405162461bcd60e51b815260206004820152602a60248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e63652077616c6c6044820152696574206368616e67657360b01b6064820152608401610de9565b600b805460ff60e81b1916600160e81b179055565b6005546001600160a01b031633146117f75760405162461bcd60e51b8152600401610de99061307f565b6005546001600160a01b0316331461186f5760405162461bcd60e51b815260206004820152603560248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206d61726b6044820152746574206d616b65722070616972206368616e67657360581b6064820152608401610de9565b600b805460ff60e01b1916600160e01b179055565b6005546001600160a01b031633146118ae5760405162461bcd60e51b8152600401610de99061307f565b6005546001600160a01b031633146119215760405162461bcd60e51b815260206004820152603060248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206d61782060448201526f7570646174652066756e6374696f6e7360801b6064820152608401610de9565b600b805460ff60d81b1916600160d81b179055565b6005546001600160a01b031633146119605760405162461bcd60e51b8152600401610de99061307f565b600b54600160c81b900460ff161561198a5760405162461bcd60e51b8152600401610de9906131aa565b600b805460ff60b01b198116600160b01b9182900460ff1615909102179055565b6005546001600160a01b031633146119d55760405162461bcd60e51b8152600401610de99061307f565b600b54600160f01b900460ff16156119ff5760405162461bcd60e51b8152600401610de9906130b4565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314611a885760405162461bcd60e51b8152600401610de99061307f565b600b54600160d01b900460ff1615611ab25760405162461bcd60e51b8152600401610de990613207565b60118390556012829055601381905580611acc8385613262565b611ad69190613262565b601455505050565b6005546001600160a01b03163314611b085760405162461bcd60e51b8152600401610de99061307f565b600b54600160d01b900460ff1615611b325760405162461bcd60e51b8152600401610de990613207565b601555565b6005546001600160a01b03163314611b615760405162461bcd60e51b8152600401610de99061307f565b6005546001600160a01b03163314611bce5760405162461bcd60e51b815260206004820152602a60248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e63652064656c616044820152693c90333ab731ba34b7b760b11b6064820152608401610de9565b600b805460ff60c81b1916600160c81b179055565b6005546001600160a01b03163314611c0d5760405162461bcd60e51b8152600401610de99061307f565b6001600160a01b038116611c725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610de9565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080611cdb8385613262565b905083811015611d2d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610de9565b9392505050565b6001600160a01b038316611d965760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610de9565b6001600160a01b038216611df75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610de9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6064601d54600954611e6b919061327a565b611e759190613299565b60065560095461271090611e8a90600561327a565b611e949190613299565b600755600854600954606491611ea99161327a565b611eb39190613299565b601c55565b6001600160a01b038316611ede5760405162461bcd60e51b8152600401610de9906132bb565b6001600160a01b038216611f045760405162461bcd60e51b8152600401610de990613300565b80600003611f1d57611f18838360006127b2565b505050565b600b54600160b81b900460ff16156123a0576005546001600160a01b03848116911614801590611f5b57506005546001600160a01b03838116911614155b8015611f6f57506001600160a01b03821615155b8015611f8657506001600160a01b03821661dead14155b8015611f9c5750600554600160a01b900460ff16155b156123a057600b54600160a01b900460ff16612036576001600160a01b0383166000908152601f602052604090205460ff1680611ff157506001600160a01b0382166000908152601f602052604090205460ff165b6120365760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610de9565b600b54600160b01b900460ff16801561206757506001600160a01b03821660009081526021602052604090205460ff165b1561211457601e54326000908152600c60205260409020546120899190613262565b4210156121145760405162461bcd60e51b815260206004820152604d60248201527f5472616e736665722064656c6179206973206163746976652e4f6e6c79206f6e60448201527f652073656c6c20706572207e77616c6c65745472616e7366657244656c61795460648201526c34b6b2bf1030b63637bbb2b21760991b608482015260a401610de9565b326000818152600c6020908152604091829020429081905591519182527fff12548a3ebb8257a10ea929ff01f69da0424c5bb36050f8d6df03452cbd4d00910160405180910390a26001600160a01b03831660009081526021602052604090205460ff16801561219c57506001600160a01b038216600090815260208052604090205460ff16155b80156121c157506001600160a01b03821660009081526021602052604090205460ff16155b1561223557601c546001600160a01b0383166000908152602081905260409020546121ec9083613262565b11156122305760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610de9565b6123a0565b6001600160a01b03821660009081526021602052604090205460ff16801561227557506001600160a01b038316600090815260208052604090205460ff16155b801561229a57506001600160a01b03831660009081526021602052604090205460ff16155b15612317576006548111156122305760405162461bcd60e51b815260206004820152603a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e0000000000006064820152608401610de9565b6001600160a01b038216600090815260208052604090205460ff166123a057601c546001600160a01b03831660009081526020819052604090205461235c9083613262565b11156123a05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610de9565b30600090815260208190526040902054600754811080159081906123ce5750600554600160a01b900460ff16155b80156123e35750600b54600160c01b900460ff165b801561240857506001600160a01b03851660009081526021602052604090205460ff16155b801561242d57506001600160a01b0385166000908152601f602052604090205460ff16155b801561245257506001600160a01b0384166000908152601f602052604090205460ff16155b15612480576005805460ff60a01b1916600160a01b1790556124726128bb565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b9092048216159116806124ce57506001600160a01b0385166000908152601f602052604090205460ff165b156124d7575060005b60008115612710576001600160a01b03861660009081526021602052604090205460ff16801561250957506000601454115b156125da5761252f601554612529601454886128fc90919063ffffffff16565b9061297e565b905060145460115482612542919061327a565b61254c9190613299565b6016600082825461255d9190613262565b9091555050601454601254612572908361327a565b61257c9190613299565b6017600082825461258d9190613262565b9091555050600b54600160a81b900460ff16156125d5576014546013546125b4908361327a565b6125be9190613299565b601960008282546125cf9190613262565b90915550505b6126ca565b6001600160a01b03871660009081526021602052604090205460ff16801561260457506000601054115b156126ca57612624601554612529601054886128fc90919063ffffffff16565b9050601054600d5482612637919061327a565b6126419190613299565b601660008282546126529190613262565b9091555050601054600e54612667908361327a565b6126719190613299565b601760008282546126829190613262565b9091555050600b54600160a81b900460ff16156126ca57601054600f546126a9908361327a565b6126b39190613299565b601960008282546126c49190613262565b90915550505b8015612703576126db8730836127b2565b60165415612703576126ef306016546129c0565b6002546009556126fd611e59565b60006016555b61270d8186613343565b94505b61271b8787876127b2565b50505050505050565b600081848411156127485760405162461bcd60e51b8152600401610de99190612ea0565b5060006127558486613343565b95945050505050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166127d85760405162461bcd60e51b8152600401610de9906132bb565b6001600160a01b0382166127fe5760405162461bcd60e51b8152600401610de990613300565b61283b8160405180606001604052806026815260200161344f602691396001600160a01b0386166000908152602081905260409020549190612724565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461286a9082611cce565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611e4c565b30600090815260208190526040812054908190036128d65750565b601754156128e9576128e9601754612acb565b60195415610e2757610e27601954612b33565b60008260000361290e57506000610db9565b600061291a838561327a565b9050826129278583613299565b14611d2d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610de9565b6000611d2d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b8a565b6001600160a01b038216612a205760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610de9565b612a5d8160405180606001604052806022815260200161342d602291396001600160a01b0385166000908152602081905260409020549190612724565b6001600160a01b038316600090815260208190526040902055600254612a839082612bb8565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b47612ad582612bfa565b6000612ae18247613343565b600a546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612b1c573d6000803e3d6000fd5b5082601754612b2b9190613343565b601755505050565b6000612b40600283613299565b90506000612b4e8284613343565b905047612b5a83612bfa565b6000612b668247613343565b9050612b728382612dba565b84601954612b809190613343565b6019555050505050565b60008183612bab5760405162461bcd60e51b8152600401610de99190612ea0565b5060006127558486613299565b6000611d2d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612724565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612c2f57612c2f61335a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cd19190613370565b81600181518110612ce457612ce461335a565b60200260200101906001600160a01b031690816001600160a01b031681525050612d2f307f000000000000000000000000000000000000000000000000000000000000000084611d34565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612d8490859060009086903090429060040161338d565b600060405180830381600087803b158015612d9e57600080fd5b505af1158015612db2573d6000803e3d6000fd5b505050505050565b612de5307f000000000000000000000000000000000000000000000000000000000000000084611d34565b600b5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015612e74573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612e9991906133fe565b5050505050565b600060208083528351808285015260005b81811015612ecd57858101830151858201604001528201612eb1565b81811115612edf576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610e2757600080fd5b600060208284031215612f1c57600080fd5b8135611d2d81612ef5565b60008060408385031215612f3a57600080fd5b8235612f4581612ef5565b946020939093013593505050565b600060208284031215612f6557600080fd5b5035919050565b600080600060608486031215612f8157600080fd5b8335612f8c81612ef5565b92506020840135612f9c81612ef5565b929592945050506040919091013590565b600080600060608486031215612fc257600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612fec57600080fd5b8235612ff781612ef5565b91506020830135801515811461300c57600080fd5b809150509250929050565b6000806040838503121561302a57600080fd5b823561303581612ef5565b9150602083013561300c81612ef5565b600181811c9082168061305957607f821691505b60208210810361307957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526032908201527f43616e6e6f7420757064617465206578636c75646564206163636f756e74732060408201527118599d195c881c995b9bdd5b98d95b595b9d60721b606082015260800190565b60208082526037908201527f43616e6e6f7420757064617465206d6178207472616e73616374696f6e20616d60408201527f6f756e742061667465722072656e6f756e63656d656e74000000000000000000606082015260800190565b60208082526027908201527f43616e6e6f74207570646174652077616c6c65742061667465722072656e6f756040820152661b98d95b595b9d60ca1b606082015260800190565b6020808252603b908201527f43616e6e6f74207570646174652077616c6c6574207472616e7366657220646560408201527f6c61792074696d652061667465722072656e6f756e63656d656e740000000000606082015260800190565b60208082526025908201527f43616e6e6f742075706461746520666565732061667465722072656e6f756e63604082015264195b595b9d60da1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156132755761327561324c565b500190565b60008160001904831182151516156132945761329461324c565b500290565b6000826132b657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156133555761335561324c565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561338257600080fd5b8151611d2d81612ef5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156133dd5784516001600160a01b0316835293830193918301916001016133b8565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561341357600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220070f621e2fd8318d4144d0ae976f5f0b9c50b92c8b36d594f2a321928847263a64736f6c634300080f00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106104405760003560e01c80638095d56411610234578063b680fefb1161012e578063ddf19480116100b6578063f11a24d31161007a578063f11a24d314610c9e578063f2fde38b14610cb4578063f637434214610cd4578063f680f79914610cea578063f8b45b0514610d0057600080fd5b8063ddf1948014610c1c578063e18fc22414610c3d578063e2f4560514610c5d578063e71dc3f514610c73578063ee98ba8414610c8957600080fd5b8063c17b5b8c116100fd578063c17b5b8c14610b69578063c94c2a5214610b89578063d85ba06314610baa578063d8fc65e114610bc0578063dd62ed3e14610bd657600080fd5b8063b680fefb146107b4578063bb647f6514610b13578063bbc0c74214610b28578063c024666814610b4957600080fd5b8063a4d03414116101bc578063ae907c9c11610180578063ae907c9c14610a8e578063b0a95bfa14610aa4578063b1099b8114610ab9578063b116288414610ace578063b62496f514610ae357600080fd5b8063a4d03414146109f7578063a5ece94114610a18578063a9059cbb14610a38578063ac819f5414610a58578063adb873bd14610a7857600080fd5b806395d89b411161020357806395d89b41146109605780639a7a23d614610975578063a333174f14610995578063a457c2d7146109b6578063a4c5ba96146109d657600080fd5b80638095d564146108f75780638a8c523c146109175780638da5cb5b1461092c578063921369131461094a57600080fd5b8063313ce567116103455780635449f2ec116102cd5780636ddd1713116102915780636ddd17131461085557806370a0823114610876578063715018a6146108ac5780637bce5a04146108c15780637d3f84da146108d757600080fd5b80635449f2ec146107d45780635dc08315146107e9578063637845c61461080957806365aaf3701461081e5780636a486a8e1461083f57600080fd5b80633fad50a9116103145780633fad50a91461070557806349bd5a5e146107265780634a62bb651461075a5780634fbee1931461077b578063525fa81f146107b457600080fd5b8063313ce567146106935780633221c93f146106af57806339509351146106cf5780633b13cc16146106ef57600080fd5b806318160ddd116103c85780631d777856116103975780631d777856146106115780631f3fed8f146106275780632369bf831461063d57806323b872dd1461065d57806327c8f8351461067d57600080fd5b806318160ddd146105b15780631a8145bb146105c65780631c499ab0146105dc5780631cd6e871146105fc57600080fd5b806306fdde031161040f57806306fdde03146104d25780630855f25d146104f4578063095ea7b3146105235780631694505e1461054357806316a2f82a1461058f57600080fd5b806302259e9e1461044c578063023ad58114610475578063047fc9aa1461048b578063064f2205146104a157600080fd5b3661044757005b600080fd5b34801561045857600080fd5b5061046260065481565b6040519081526020015b60405180910390f35b34801561048157600080fd5b50610462601c5481565b34801561049757600080fd5b5061046260095481565b3480156104ad57600080fd5b50600b546104c290600160a81b900460ff1681565b604051901515815260200161046c565b3480156104de57600080fd5b506104e7610d16565b60405161046c9190612ea0565b34801561050057600080fd5b506104c261050f366004612f0a565b602080526000908152604090205460ff1681565b34801561052f57600080fd5b506104c261053e366004612f27565b610da8565b34801561054f57600080fd5b506105777f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161046c565b34801561059b57600080fd5b506105af6105aa366004612f0a565b610dbf565b005b3480156105bd57600080fd5b50600254610462565b3480156105d257600080fd5b5061046260195481565b3480156105e857600080fd5b506105af6105f7366004612f53565b610e2a565b34801561060857600080fd5b506105af610e99565b34801561061d57600080fd5b5061046260165481565b34801561063357600080fd5b5061046260175481565b34801561064957600080fd5b506105af610658366004612f0a565b610f44565b34801561066957600080fd5b506104c2610678366004612f6c565b610fba565b34801561068957600080fd5b5061057761dead81565b34801561069f57600080fd5b506040516012815260200161046c565b3480156106bb57600080fd5b50600b54610577906001600160a01b031681565b3480156106db57600080fd5b506104c26106ea366004612f27565b611023565b3480156106fb57600080fd5b50610462601d5481565b34801561071157600080fd5b50600b546104c290600160e01b900460ff1681565b34801561073257600080fd5b506105777f00000000000000000000000037e0dc81ca5927459b8bc4f6f6674786d72fc01e81565b34801561076657600080fd5b50600b546104c290600160b81b900460ff1681565b34801561078757600080fd5b506104c2610796366004612f0a565b6001600160a01b03166000908152601f602052604090205460ff1690565b3480156107c057600080fd5b506105af6107cf366004612f0a565b611059565b3480156107e057600080fd5b506105af6110cf565b3480156107f557600080fd5b506105af610804366004612f53565b61117c565b34801561081557600080fd5b506105af6111eb565b34801561082a57600080fd5b50600b546104c290600160e81b900460ff1681565b34801561084b57600080fd5b5061046260145481565b34801561086157600080fd5b50600b546104c290600160c01b900460ff1681565b34801561088257600080fd5b50610462610891366004612f0a565b6001600160a01b031660009081526020819052604090205490565b3480156108b857600080fd5b506105af6112fc565b3480156108cd57600080fd5b50610462600e5481565b3480156108e357600080fd5b506105af6108f2366004612f53565b611370565b34801561090357600080fd5b506105af610912366004612fad565b6113c9565b34801561092357600080fd5b506105af611449565b34801561093857600080fd5b506005546001600160a01b0316610577565b34801561095657600080fd5b5061046260125481565b34801561096c57600080fd5b506104e76114e3565b34801561098157600080fd5b506105af610990366004612fd9565b6114f2565b3480156109a157600080fd5b50600b546104c290600160f01b900460ff1681565b3480156109c257600080fd5b506104c26109d1366004612f27565b611647565b3480156109e257600080fd5b50600b546104c290600160c81b900460ff1681565b348015610a0357600080fd5b50600b546104c290600160d01b900460ff1681565b348015610a2457600080fd5b50600a54610577906001600160a01b031681565b348015610a4457600080fd5b506104c2610a53366004612f27565b611696565b348015610a6457600080fd5b506105af610a73366004612fd9565b6116a3565b348015610a8457600080fd5b5061046260115481565b348015610a9a57600080fd5b50610462601e5481565b348015610ab057600080fd5b506105af611721565b348015610ac557600080fd5b506105af6117cd565b348015610ada57600080fd5b506105af611884565b348015610aef57600080fd5b506104c2610afe366004612f0a565b60216020526000908152604090205460ff1681565b348015610b1f57600080fd5b506105af611936565b348015610b3457600080fd5b50600b546104c290600160a01b900460ff1681565b348015610b5557600080fd5b506105af610b64366004612fd9565b6119ab565b348015610b7557600080fd5b506105af610b84366004612fad565b611a5e565b348015610b9557600080fd5b50600b546104c290600160d81b900460ff1681565b348015610bb657600080fd5b5061046260105481565b348015610bcc57600080fd5b5061046260185481565b348015610be257600080fd5b50610462610bf1366004613017565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610c2857600080fd5b50600b546104c290600160b01b900460ff1681565b348015610c4957600080fd5b506105af610c58366004612f53565b611ade565b348015610c6957600080fd5b5061046260075481565b348015610c7f57600080fd5b50610462600d5481565b348015610c9557600080fd5b506105af611b37565b348015610caa57600080fd5b50610462600f5481565b348015610cc057600080fd5b506105af610ccf366004612f0a565b611be3565b348015610ce057600080fd5b5061046260135481565b348015610cf657600080fd5b5061046260155481565b348015610d0c57600080fd5b5061046260085481565b606060038054610d2590613045565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5190613045565b8015610d9e5780601f10610d7357610100808354040283529160200191610d9e565b820191906000526020600020905b815481529060010190602001808311610d8157829003601f168201915b5050505050905090565b6000610db5338484611d34565b5060015b92915050565b6005546001600160a01b03163314610df25760405162461bcd60e51b8152600401610de99061307f565b60405180910390fd5b600b54600160f01b900460ff1615610e1c5760405162461bcd60e51b8152600401610de9906130b4565b610e278160006119ab565b50565b6005546001600160a01b03163314610e545760405162461bcd60e51b8152600401610de99061307f565b600b54600160d81b900460ff1615610e7e5760405162461bcd60e51b8152600401610de990613106565b6001811015610e8c57600080fd5b6008819055610e27611e59565b6005546001600160a01b03163314610ec35760405162461bcd60e51b8152600401610de99061307f565b6005546001600160a01b03163314610f2f5760405162461bcd60e51b815260206004820152602960248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206665652060448201526866756e6374696f6e7360b81b6064820152608401610de9565b600b805460ff60d01b1916600160d01b179055565b6005546001600160a01b03163314610f6e5760405162461bcd60e51b8152600401610de99061307f565b600b54600160e81b900460ff1615610f985760405162461bcd60e51b8152600401610de990613163565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610fc7848484611eb8565b611019843361101485604051806060016040528060288152602001613475602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190612724565b611d34565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610db59185906110149086611cce565b6005546001600160a01b031633146110835760405162461bcd60e51b8152600401610de99061307f565b600b54600160e81b900460ff16156110ad5760405162461bcd60e51b8152600401610de990613163565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110f95760405162461bcd60e51b8152600401610de99061307f565b6005546001600160a01b031633146111675760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206578636c60448201526a75646520696e636c75646560a81b6064820152608401610de9565b600b805460ff60f01b1916600160f01b179055565b6005546001600160a01b031633146111a65760405162461bcd60e51b8152600401610de99061307f565b600b54600160d81b900460ff16156111d05760405162461bcd60e51b8152600401610de990613106565b60018110156111de57600080fd5b601d819055610e27611e59565b6005546001600160a01b031633146112155760405162461bcd60e51b8152600401610de99061307f565b600b54600160d01b900460ff161561127e5760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f742075706461746520666565732061667465722072656e6f756e63604482015265195b595b9b9d60d21b6064820152608401610de9565b600b54600160a81b900460ff161561129d57600f54601a55601354601b555b600b54600160a81b900460ff166112b657601a546112b9565b60005b600f55600b54600160a81b900460ff166112d557601b546112d8565b60005b601355600b805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6005546001600160a01b031633146113265760405162461bcd60e51b8152600401610de99061307f565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b0316331461139a5760405162461bcd60e51b8152600401610de99061307f565b600b54600160c81b900460ff16156113c45760405162461bcd60e51b8152600401610de9906131aa565b601e55565b6005546001600160a01b031633146113f35760405162461bcd60e51b8152600401610de99061307f565b600b54600160d01b900460ff161561141d5760405162461bcd60e51b8152600401610de990613207565b600d839055600e829055600f819055806114378385613262565b6114419190613262565b601055505050565b6005546001600160a01b031633146114735760405162461bcd60e51b8152600401610de99061307f565b6001600d8190556058600e819055600f8290556114909082613262565b61149a9190613262565b601055600160118190556058601281905560138290556114ba9082613262565b6114c49190613262565b60145560b4601e55600b805461ffff60a01b191661010160a01b179055565b606060048054610d2590613045565b6005546001600160a01b0316331461151c5760405162461bcd60e51b8152600401610de99061307f565b600b54600160e01b900460ff16156115925760405162461bcd60e51b815260206004820152603360248201527f43616e6e6f7420757064617465206d61726b6574206d616b65722070616972736044820152720818599d195c881c995b9bdd5b98d95b595b9d606a1b6064820152608401610de9565b7f00000000000000000000000037e0dc81ca5927459b8bc4f6f6674786d72fc01e6001600160a01b0316826001600160a01b0316036116395760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610de9565b611643828261275e565b5050565b6000610db533846110148560405180606001604052806025815260200161349d602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190612724565b6000610db5338484611eb8565b6005546001600160a01b031633146116cd5760405162461bcd60e51b8152600401610de99061307f565b600b54600160d81b900460ff16156116f75760405162461bcd60e51b8152600401610de990613106565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461174b5760405162461bcd60e51b8152600401610de99061307f565b6005546001600160a01b031633146117b85760405162461bcd60e51b815260206004820152602a60248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e63652077616c6c6044820152696574206368616e67657360b01b6064820152608401610de9565b600b805460ff60e81b1916600160e81b179055565b6005546001600160a01b031633146117f75760405162461bcd60e51b8152600401610de99061307f565b6005546001600160a01b0316331461186f5760405162461bcd60e51b815260206004820152603560248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206d61726b6044820152746574206d616b65722070616972206368616e67657360581b6064820152608401610de9565b600b805460ff60e01b1916600160e01b179055565b6005546001600160a01b031633146118ae5760405162461bcd60e51b8152600401610de99061307f565b6005546001600160a01b031633146119215760405162461bcd60e51b815260206004820152603060248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206d61782060448201526f7570646174652066756e6374696f6e7360801b6064820152608401610de9565b600b805460ff60d81b1916600160d81b179055565b6005546001600160a01b031633146119605760405162461bcd60e51b8152600401610de99061307f565b600b54600160c81b900460ff161561198a5760405162461bcd60e51b8152600401610de9906131aa565b600b805460ff60b01b198116600160b01b9182900460ff1615909102179055565b6005546001600160a01b031633146119d55760405162461bcd60e51b8152600401610de99061307f565b600b54600160f01b900460ff16156119ff5760405162461bcd60e51b8152600401610de9906130b4565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314611a885760405162461bcd60e51b8152600401610de99061307f565b600b54600160d01b900460ff1615611ab25760405162461bcd60e51b8152600401610de990613207565b60118390556012829055601381905580611acc8385613262565b611ad69190613262565b601455505050565b6005546001600160a01b03163314611b085760405162461bcd60e51b8152600401610de99061307f565b600b54600160d01b900460ff1615611b325760405162461bcd60e51b8152600401610de990613207565b601555565b6005546001600160a01b03163314611b615760405162461bcd60e51b8152600401610de99061307f565b6005546001600160a01b03163314611bce5760405162461bcd60e51b815260206004820152602a60248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e63652064656c616044820152693c90333ab731ba34b7b760b11b6064820152608401610de9565b600b805460ff60c81b1916600160c81b179055565b6005546001600160a01b03163314611c0d5760405162461bcd60e51b8152600401610de99061307f565b6001600160a01b038116611c725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610de9565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080611cdb8385613262565b905083811015611d2d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610de9565b9392505050565b6001600160a01b038316611d965760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610de9565b6001600160a01b038216611df75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610de9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6064601d54600954611e6b919061327a565b611e759190613299565b60065560095461271090611e8a90600561327a565b611e949190613299565b600755600854600954606491611ea99161327a565b611eb39190613299565b601c55565b6001600160a01b038316611ede5760405162461bcd60e51b8152600401610de9906132bb565b6001600160a01b038216611f045760405162461bcd60e51b8152600401610de990613300565b80600003611f1d57611f18838360006127b2565b505050565b600b54600160b81b900460ff16156123a0576005546001600160a01b03848116911614801590611f5b57506005546001600160a01b03838116911614155b8015611f6f57506001600160a01b03821615155b8015611f8657506001600160a01b03821661dead14155b8015611f9c5750600554600160a01b900460ff16155b156123a057600b54600160a01b900460ff16612036576001600160a01b0383166000908152601f602052604090205460ff1680611ff157506001600160a01b0382166000908152601f602052604090205460ff165b6120365760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610de9565b600b54600160b01b900460ff16801561206757506001600160a01b03821660009081526021602052604090205460ff165b1561211457601e54326000908152600c60205260409020546120899190613262565b4210156121145760405162461bcd60e51b815260206004820152604d60248201527f5472616e736665722064656c6179206973206163746976652e4f6e6c79206f6e60448201527f652073656c6c20706572207e77616c6c65745472616e7366657244656c61795460648201526c34b6b2bf1030b63637bbb2b21760991b608482015260a401610de9565b326000818152600c6020908152604091829020429081905591519182527fff12548a3ebb8257a10ea929ff01f69da0424c5bb36050f8d6df03452cbd4d00910160405180910390a26001600160a01b03831660009081526021602052604090205460ff16801561219c57506001600160a01b038216600090815260208052604090205460ff16155b80156121c157506001600160a01b03821660009081526021602052604090205460ff16155b1561223557601c546001600160a01b0383166000908152602081905260409020546121ec9083613262565b11156122305760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610de9565b6123a0565b6001600160a01b03821660009081526021602052604090205460ff16801561227557506001600160a01b038316600090815260208052604090205460ff16155b801561229a57506001600160a01b03831660009081526021602052604090205460ff16155b15612317576006548111156122305760405162461bcd60e51b815260206004820152603a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e0000000000006064820152608401610de9565b6001600160a01b038216600090815260208052604090205460ff166123a057601c546001600160a01b03831660009081526020819052604090205461235c9083613262565b11156123a05760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610de9565b30600090815260208190526040902054600754811080159081906123ce5750600554600160a01b900460ff16155b80156123e35750600b54600160c01b900460ff165b801561240857506001600160a01b03851660009081526021602052604090205460ff16155b801561242d57506001600160a01b0385166000908152601f602052604090205460ff16155b801561245257506001600160a01b0384166000908152601f602052604090205460ff16155b15612480576005805460ff60a01b1916600160a01b1790556124726128bb565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b9092048216159116806124ce57506001600160a01b0385166000908152601f602052604090205460ff165b156124d7575060005b60008115612710576001600160a01b03861660009081526021602052604090205460ff16801561250957506000601454115b156125da5761252f601554612529601454886128fc90919063ffffffff16565b9061297e565b905060145460115482612542919061327a565b61254c9190613299565b6016600082825461255d9190613262565b9091555050601454601254612572908361327a565b61257c9190613299565b6017600082825461258d9190613262565b9091555050600b54600160a81b900460ff16156125d5576014546013546125b4908361327a565b6125be9190613299565b601960008282546125cf9190613262565b90915550505b6126ca565b6001600160a01b03871660009081526021602052604090205460ff16801561260457506000601054115b156126ca57612624601554612529601054886128fc90919063ffffffff16565b9050601054600d5482612637919061327a565b6126419190613299565b601660008282546126529190613262565b9091555050601054600e54612667908361327a565b6126719190613299565b601760008282546126829190613262565b9091555050600b54600160a81b900460ff16156126ca57601054600f546126a9908361327a565b6126b39190613299565b601960008282546126c49190613262565b90915550505b8015612703576126db8730836127b2565b60165415612703576126ef306016546129c0565b6002546009556126fd611e59565b60006016555b61270d8186613343565b94505b61271b8787876127b2565b50505050505050565b600081848411156127485760405162461bcd60e51b8152600401610de99190612ea0565b5060006127558486613343565b95945050505050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166127d85760405162461bcd60e51b8152600401610de9906132bb565b6001600160a01b0382166127fe5760405162461bcd60e51b8152600401610de990613300565b61283b8160405180606001604052806026815260200161344f602691396001600160a01b0386166000908152602081905260409020549190612724565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461286a9082611cce565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611e4c565b30600090815260208190526040812054908190036128d65750565b601754156128e9576128e9601754612acb565b60195415610e2757610e27601954612b33565b60008260000361290e57506000610db9565b600061291a838561327a565b9050826129278583613299565b14611d2d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610de9565b6000611d2d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612b8a565b6001600160a01b038216612a205760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610de9565b612a5d8160405180606001604052806022815260200161342d602291396001600160a01b0385166000908152602081905260409020549190612724565b6001600160a01b038316600090815260208190526040902055600254612a839082612bb8565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b47612ad582612bfa565b6000612ae18247613343565b600a546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612b1c573d6000803e3d6000fd5b5082601754612b2b9190613343565b601755505050565b6000612b40600283613299565b90506000612b4e8284613343565b905047612b5a83612bfa565b6000612b668247613343565b9050612b728382612dba565b84601954612b809190613343565b6019555050505050565b60008183612bab5760405162461bcd60e51b8152600401610de99190612ea0565b5060006127558486613299565b6000611d2d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612724565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612c2f57612c2f61335a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cd19190613370565b81600181518110612ce457612ce461335a565b60200260200101906001600160a01b031690816001600160a01b031681525050612d2f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d34565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612d8490859060009086903090429060040161338d565b600060405180830381600087803b158015612d9e57600080fd5b505af1158015612db2573d6000803e3d6000fd5b505050505050565b612de5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d34565b600b5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015612e74573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612e9991906133fe565b5050505050565b600060208083528351808285015260005b81811015612ecd57858101830151858201604001528201612eb1565b81811115612edf576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610e2757600080fd5b600060208284031215612f1c57600080fd5b8135611d2d81612ef5565b60008060408385031215612f3a57600080fd5b8235612f4581612ef5565b946020939093013593505050565b600060208284031215612f6557600080fd5b5035919050565b600080600060608486031215612f8157600080fd5b8335612f8c81612ef5565b92506020840135612f9c81612ef5565b929592945050506040919091013590565b600080600060608486031215612fc257600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612fec57600080fd5b8235612ff781612ef5565b91506020830135801515811461300c57600080fd5b809150509250929050565b6000806040838503121561302a57600080fd5b823561303581612ef5565b9150602083013561300c81612ef5565b600181811c9082168061305957607f821691505b60208210810361307957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526032908201527f43616e6e6f7420757064617465206578636c75646564206163636f756e74732060408201527118599d195c881c995b9bdd5b98d95b595b9d60721b606082015260800190565b60208082526037908201527f43616e6e6f7420757064617465206d6178207472616e73616374696f6e20616d60408201527f6f756e742061667465722072656e6f756e63656d656e74000000000000000000606082015260800190565b60208082526027908201527f43616e6e6f74207570646174652077616c6c65742061667465722072656e6f756040820152661b98d95b595b9d60ca1b606082015260800190565b6020808252603b908201527f43616e6e6f74207570646174652077616c6c6574207472616e7366657220646560408201527f6c61792074696d652061667465722072656e6f756e63656d656e740000000000606082015260800190565b60208082526025908201527f43616e6e6f742075706461746520666565732061667465722072656e6f756e63604082015264195b595b9d60da1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156132755761327561324c565b500190565b60008160001904831182151516156132945761329461324c565b500290565b6000826132b657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156133555761335561324c565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561338257600080fd5b8151611d2d81612ef5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156133dd5784516001600160a01b0316835293830193918301916001016133b8565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561341357600080fd5b835192506020840151915060408401519050925092509256fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220070f621e2fd8318d4144d0ae976f5f0b9c50b92c8b36d594f2a321928847263a64736f6c634300080f0033
Deployed Bytecode Sourcemap
25035:17984:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25315:39;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;25315:39:0;;;;;;;;26723:29;;;;;;;;;;;;;;;;25434:21;;;;;;;;;;;;;;;;25582:38;;;;;;;;;;-1:-1:-1;25582:38:0;;;;-1:-1:-1;;;25582:38:0;;;;;;;;;361:14:1;;354:22;336:41;;324:2;309:18;25582:38:0;196:187:1;7173:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26987:68::-;;;;;;;;;;-1:-1:-1;26987:68:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;9340:169;;;;;;;;;;-1:-1:-1;9340:169:0;;;;;:::i;:::-;;:::i;25120:51::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;25120:51:0;1698:230:1;33939:203:0;;;;;;;;;;-1:-1:-1;33939:203:0;;;;;:::i;:::-;;:::i;:::-;;8293:108;;;;;;;;;;-1:-1:-1;8381:12:0;;8293:108;;26576:33;;;;;;;;;;;;;;;;31409:258;;;;;;;;;;-1:-1:-1;31409:258:0;;;;;:::i;:::-;;:::i;39607:183::-;;;;;;;;;;;;;:::i;26462:28::-;;;;;;;;;;;;;;;;26497:33;;;;;;;;;;;;;;;;33235:201;;;;;;;;;;-1:-1:-1;33235:201:0;;;;;:::i;:::-;;:::i;9991:355::-;;;;;;;;;;-1:-1:-1;9991:355:0;;;;;:::i;:::-;;:::i;25223:53::-;;;;;;;;;;;;25269:6;25223:53;;8135:93;;;;;;;;;;-1:-1:-1;8135:93:0;;8218:2;2929:36:1;;2917:2;2902:18;8135:93:0;2787:184:1;25502:31:0;;;;;;;;;;-1:-1:-1;25502:31:0;;;;-1:-1:-1;;;;;25502:31:0;;;10755:218;;;;;;;;;;-1:-1:-1;10755:218:0;;;;;:::i;:::-;;:::i;26759:33::-;;;;;;;;;;;;;;;;25904:51;;;;;;;;;;-1:-1:-1;25904:51:0;;;;-1:-1:-1;;;25904:51:0;;;;;;25178:38;;;;;;;;;;;;;;;25674:33;;;;;;;;;;-1:-1:-1;25674:33:0;;;;-1:-1:-1;;;25674:33:0;;;;;;35152:125;;;;;;;;;;-1:-1:-1;35152:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;35241:28:0;35217:4;35241:28;;;:19;:28;;;;;;;;;35152:125;34150:198;;;;;;;;;;-1:-1:-1;34150:198:0;;;;;:::i;:::-;;:::i;40619:189::-;;;;;;;;;;;;;:::i;31125:276::-;;;;;;;;;;-1:-1:-1;31125:276:0;;;;;:::i;:::-;;:::i;30112:509::-;;;;;;;;;;;;;:::i;25962:42::-;;;;;;;;;;-1:-1:-1;25962:42:0;;;;-1:-1:-1;;;25962:42:0;;;;;;26387:28;;;;;;;;;;;;;;;;25714:30;;;;;;;;;;-1:-1:-1;25714:30:0;;;;-1:-1:-1;;;25714:30:0;;;;;;8464:127;;;;;;;;;;-1:-1:-1;8464:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8565:18:0;8538:7;8565:18;;;;;;;;;;;;8464:127;21634:148;;;;;;;;;;;;;:::i;26168:30::-;;;;;;;;;;;;;;;;31675:228;;;;;;;;;;-1:-1:-1;31675:228:0;;;;;:::i;:::-;;:::i;32431:389::-;;;;;;;;;;-1:-1:-1;32431:389:0;;;;;:::i;:::-;;:::i;30629:488::-;;;;;;;;;;;;;:::i;20992:79::-;;;;;;;;;;-1:-1:-1;21057:6:0;;-1:-1:-1;;;;;21057:6:0;20992:79;;26311:31;;;;;;;;;;;;;;;;7392:104;;;;;;;;;;;;;:::i;34599:349::-;;;;;;;;;;-1:-1:-1;34599:349:0;;;;;:::i;:::-;;:::i;26011:43::-;;;;;;;;;;-1:-1:-1;26011:43:0;;;;-1:-1:-1;;;26011:43:0;;;;;;11476:269;;;;;;;;;;-1:-1:-1;11476:269:0;;;;;:::i;:::-;;:::i;25753:42::-;;;;;;;;;;-1:-1:-1;25753:42:0;;;;-1:-1:-1;;;25753:42:0;;;;;;25802:41;;;;;;;;;;-1:-1:-1;25802:41:0;;;;-1:-1:-1;;;25802:41:0;;;;;;25464:31;;;;;;;;;;-1:-1:-1;25464:31:0;;;;-1:-1:-1;;;;;25464:31:0;;;8804:175;;;;;;;;;;-1:-1:-1;8804:175:0;;;;;:::i;:::-;;:::i;31911:257::-;;;;;;;;;;-1:-1:-1;31911:257:0;;;;;:::i;:::-;;:::i;26278:26::-;;;;;;;;;;;;;;;;26799:38;;;;;;;;;;;;;;;;39992:186;;;;;;;;;;;;;:::i;40396:215::-;;;;;;;;;;;;;:::i;40186:202::-;;;;;;;;;;;;;:::i;27209:58::-;;;;;;;;;;-1:-1:-1;27209:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29882:222;;;;;;;;;;;;;:::i;25542:33::-;;;;;;;;;;-1:-1:-1;25542:33:0;;;;-1:-1:-1;;;25542:33:0;;;;;;33653:278;;;;;;;;;;-1:-1:-1;33653:278:0;;;;;:::i;:::-;;:::i;32828:399::-;;;;;;;;;;-1:-1:-1;32828:399:0;;;;;:::i;:::-;;:::i;25850:47::-;;;;;;;;;;-1:-1:-1;25850:47:0;;;;-1:-1:-1;;;25850:47:0;;;;;;26242:27;;;;;;;;;;;;;;;;26537:32;;;;;;;;;;;;;;;;9042:151;;;;;;;;;;-1:-1:-1;9042:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9158:18:0;;;9131:7;9158:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9042:151;25627:38;;;;;;;;;;-1:-1:-1;25627:38:0;;;;-1:-1:-1;;;25627:38:0;;;;;;32247:176;;;;;;;;;;-1:-1:-1;32247:176:0;;;;;:::i;:::-;;:::i;25361:33::-;;;;;;;;;;;;;;;;26136:25;;;;;;;;;;;;;;;;39798:186;;;;;;;;;;;;;:::i;26205:30::-;;;;;;;;;;;;;;;;21937:244;;;;;;;;;;-1:-1:-1;21937:244:0;;;;;:::i;:::-;;:::i;26349:31::-;;;;;;;;;;;;;;;;26424:29;;;;;;;;;;;;;;;;25401:24;;;;;;;;;;;;;;;;7173:100;7227:13;7260:5;7253:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7173:100;:::o;9340:169::-;9423:4;9440:39;2771:10;9463:7;9472:6;9440:8;:39::i;:::-;-1:-1:-1;9497:4:0;9340:169;;;;;:::o;33939:203::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;;;;;;;;;34014:23:::1;::::0;-1:-1:-1;;;34014:23:0;::::1;;;34013:24;34005:87;;;;-1:-1:-1::0;;;34005:87:0::1;;;;;;;:::i;:::-;34103:31;34119:7;34128:5;34103:15;:31::i;:::-;33939:203:::0;:::o;31409:258::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;31487:27:::1;::::0;-1:-1:-1;;;31487:27:0;::::1;;;31486:28;31478:96;;;;-1:-1:-1::0;;;31478:96:0::1;;;;;;;:::i;:::-;31603:1;31593:6;:11;;31585:20;;;::::0;::::1;;31616:9;:18:::0;;;31645:14:::1;:12;:14::i;39607:183::-:0;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;21057:6;;-1:-1:-1;;;;;21057:6:0;39676:10:::1;:21;39668:75;;;::::0;-1:-1:-1;;;39668:75:0;;5902:2:1;39668:75:0::1;::::0;::::1;5884:21:1::0;5941:2;5921:18;;;5914:30;5980:34;5960:18;;;5953:62;-1:-1:-1;;;6031:18:1;;;6024:39;6080:19;;39668:75:0::1;5700:405:1::0;39668:75:0::1;39754:21;:28:::0;;-1:-1:-1;;;;39754:28:0::1;-1:-1:-1::0;;;39754:28:0::1;::::0;;39607:183::o;33235:201::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;33323:22:::1;::::0;-1:-1:-1;;;33323:22:0;::::1;;;33322:23;33314:75;;;;-1:-1:-1::0;;;33314:75:0::1;;;;;;;:::i;:::-;33400:16;:28:::0;;-1:-1:-1;;;;;;33400:28:0::1;-1:-1:-1::0;;;;;33400:28:0;;;::::1;::::0;;;::::1;::::0;;33235:201::o;9991:355::-;10131:4;10148:36;10158:6;10166:9;10177:6;10148:9;:36::i;:::-;10195:121;10204:6;2771:10;10226:89;10264:6;10226:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10226:19:0;;;;;;:11;:19;;;;;;;;2771:10;10226:33;;;;;;;;;;:37;:89::i;:::-;10195:8;:121::i;:::-;-1:-1:-1;10334:4:0;9991:355;;;;;:::o;10755:218::-;2771:10;10843:4;10892:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10892:34:0;;;;;;;;;;10843:4;;10860:83;;10883:7;;10892:50;;10931:10;10892:38;:50::i;34150:198::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;34234:22:::1;::::0;-1:-1:-1;;;34234:22:0;::::1;;;34233:23;34225:75;;;;-1:-1:-1::0;;;34225:75:0::1;;;;;;;:::i;:::-;34311:16;:29:::0;;-1:-1:-1;;;;;;34311:29:0::1;-1:-1:-1::0;;;;;34311:29:0;;;::::1;::::0;;;::::1;::::0;;34150:198::o;40619:189::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;21057:6;;-1:-1:-1;;;;;21057:6:0;40690:10:::1;:21;40682:77;;;::::0;-1:-1:-1;;;40682:77:0;;6720:2:1;40682:77:0::1;::::0;::::1;6702:21:1::0;6759:2;6739:18;;;6732:30;6798:34;6778:18;;;6771:62;-1:-1:-1;;;6849:18:1;;;6842:41;6900:19;;40682:77:0::1;6518:407:1::0;40682:77:0::1;40770:23;:30:::0;;-1:-1:-1;;;;40770:30:0::1;-1:-1:-1::0;;;40770:30:0::1;::::0;;40619:189::o;31125:276::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;31212:27:::1;::::0;-1:-1:-1;;;31212:27:0;::::1;;;31211:28;31203:96;;;;-1:-1:-1::0;;;31203:96:0::1;;;;;;;:::i;:::-;31328:1;31318:6;:11;;31310:20;;;::::0;::::1;;31341:18;:27:::0;;;31379:14:::1;:12;:14::i;30112:509::-:0;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;30186:21:::1;::::0;-1:-1:-1;;;30186:21:0;::::1;;;30185:22;30177:73;;;::::0;-1:-1:-1;;;30177:73:0;;7132:2:1;30177:73:0::1;::::0;::::1;7114:21:1::0;7171:2;7151:18;;;7144:30;7210:34;7190:18;;;7183:62;-1:-1:-1;;;7261:18:1;;;7254:36;7307:19;;30177:73:0::1;6930:402:1::0;30177:73:0::1;30265:18;::::0;-1:-1:-1;;;30265:18:0;::::1;;;30261:144;;;30323:15;::::0;30296:24:::1;:42:::0;30377:16:::1;::::0;30349:25:::1;:44:::0;30261:144:::1;30433:18;::::0;-1:-1:-1;;;30433:18:0;::::1;;;:49;;30458:24;;30433:49;;;30454:1;30433:49;30415:15;:67:::0;30512:18:::1;::::0;-1:-1:-1;;;30512:18:0;::::1;;;:50;;30537:25;;30512:50;;;30533:1;30512:50;30493:16;:69:::0;30595:18:::1;::::0;;-1:-1:-1;;;;30573:40:0;::::1;-1:-1:-1::0;;;30595:18:0;;;::::1;;;30594:19;30573:40:::0;;::::1;;::::0;;30112:509::o;21634:148::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;21725:6:::1;::::0;21704:40:::1;::::0;21741:1:::1;::::0;-1:-1:-1;;;;;21725:6:0::1;::::0;21704:40:::1;::::0;21741:1;;21704:40:::1;21755:6;:19:::0;;-1:-1:-1;;;;;;21755:19:0::1;::::0;;21634:148::o;31675:228::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;31766:22:::1;::::0;-1:-1:-1;;;31766:22:0;::::1;;;31765:23;31757:95;;;;-1:-1:-1::0;;;31757:95:0::1;;;;;;;:::i;:::-;31863:23;:32:::0;31675:228::o;32431:389::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;32558:21:::1;::::0;-1:-1:-1;;;32558:21:0;::::1;;;32557:22;32549:72;;;;-1:-1:-1::0;;;32549:72:0::1;;;;;;;:::i;:::-;32632:10;:21:::0;;;32664:15:::1;:31:::0;;;32706:15:::1;:34:::0;;;32724:16;32766:28:::1;32682:13:::0;32645:8;32766:28:::1;:::i;:::-;:46;;;;:::i;:::-;32751:12;:61:::0;-1:-1:-1;;;32431:389:0:o;30629:488::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;30697:1:::1;30684:10;:14:::0;;;30727:2:::1;30709:15;:20:::0;;;30740:15:::1;:19:::0;;;30785:28:::1;::::0;30697:1;30785:28:::1;:::i;:::-;:46;;;;:::i;:::-;30770:12;:61:::0;30858:1:::1;30844:11;:15:::0;;;30889:2:::1;30870:16;:21:::0;;;30902:16:::1;:20:::0;;;30949:30:::1;::::0;30858:1;30949:30:::1;:::i;:::-;:49;;;;:::i;:::-;30933:13;:65:::0;31037:3:::1;31011:23;:29:::0;31053:13:::1;:20:::0;;-1:-1:-1;;;;31084:25:0;-1:-1:-1;;;31084:25:0;;;30629:488::o;7392:104::-;7448:13;7481:7;7474:14;;;;;:::i;34599:349::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;34697:31:::1;::::0;-1:-1:-1;;;34697:31:0;::::1;;;34696:32;34688:96;;;::::0;-1:-1:-1;;;34688:96:0;;8638:2:1;34688:96:0::1;::::0;::::1;8620:21:1::0;8677:2;8657:18;;;8650:30;8716:34;8696:18;;;8689:62;-1:-1:-1;;;8767:18:1;;;8760:49;8826:19;;34688:96:0::1;8436:415:1::0;34688:96:0::1;34811:13;-1:-1:-1::0;;;;;34803:21:0::1;:4;-1:-1:-1::0;;;;;34803:21:0::1;::::0;34795:91:::1;;;::::0;-1:-1:-1;;;34795:91:0;;9058:2:1;34795:91:0::1;::::0;::::1;9040:21:1::0;9097:2;9077:18;;;9070:30;9136:34;9116:18;;;9109:62;9207:27;9187:18;;;9180:55;9252:19;;34795:91:0::1;8856:421:1::0;34795:91:0::1;34899:41;34928:4;34934:5;34899:28;:41::i;:::-;34599:349:::0;;:::o;11476:269::-;11569:4;11586:129;2771:10;11609:7;11618:96;11657:15;11618:96;;;;;;;;;;;;;;;;;2771:10;11618:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11618:34:0;;;;;;;;;;;;:38;:96::i;8804:175::-;8890:4;8907:42;2771:10;8931:9;8942:6;8907:9;:42::i;31911:257::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;32012:27:::1;::::0;-1:-1:-1;;;32012:27:0;::::1;;;32011:28;32003:96;;;;-1:-1:-1::0;;;32003:96:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;32110:43:0;;;::::1;;::::0;;;:35:::1;:43:::0;;;;;:50;;-1:-1:-1;;32110:50:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31911:257::o;39992:186::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;21057:6;;-1:-1:-1;;;;;21057:6:0;40062:10:::1;:21;40054:76;;;::::0;-1:-1:-1;;;40054:76:0;;9484:2:1;40054:76:0::1;::::0;::::1;9466:21:1::0;9523:2;9503:18;;;9496:30;9562:34;9542:18;;;9535:62;-1:-1:-1;;;9613:18:1;;;9606:40;9663:19;;40054:76:0::1;9282:406:1::0;40054:76:0::1;40141:22;:29:::0;;-1:-1:-1;;;;40141:29:0::1;-1:-1:-1::0;;;40141:29:0::1;::::0;;39992:186::o;40396:215::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;21057:6;;-1:-1:-1;;;;;21057:6:0;40475:10:::1;:21;40467:87;;;::::0;-1:-1:-1;;;40467:87:0;;9895:2:1;40467:87:0::1;::::0;::::1;9877:21:1::0;9934:2;9914:18;;;9907:30;9973:34;9953:18;;;9946:62;-1:-1:-1;;;10024:18:1;;;10017:51;10085:19;;40467:87:0::1;9693:417:1::0;40467:87:0::1;40565:31;:38:::0;;-1:-1:-1;;;;40565:38:0::1;-1:-1:-1::0;;;40565:38:0::1;::::0;;40396:215::o;40186:202::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;21057:6;;-1:-1:-1;;;;;21057:6:0;40261:10:::1;:21;40253:82;;;::::0;-1:-1:-1;;;40253:82:0;;10317:2:1;40253:82:0::1;::::0;::::1;10299:21:1::0;10356:2;10336:18;;;10329:30;10395:34;10375:18;;;10368:62;-1:-1:-1;;;10446:18:1;;;10439:46;10502:19;;40253:82:0::1;10115:412:1::0;40253:82:0::1;40346:27;:34:::0;;-1:-1:-1;;;;40346:34:0::1;-1:-1:-1::0;;;40346:34:0::1;::::0;;40186:202::o;29882:222::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;29957:22:::1;::::0;-1:-1:-1;;;29957:22:0;::::1;;;29956:23;29948:95;;;;-1:-1:-1::0;;;29948:95:0::1;;;;;;;:::i;:::-;30077:19;::::0;;-1:-1:-1;;;;30054:42:0;::::1;-1:-1:-1::0;;;30077:19:0;;;::::1;;;30076:20;30054:42:::0;;::::1;;::::0;;29882:222::o;33653:278::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;33745:23:::1;::::0;-1:-1:-1;;;33745:23:0;::::1;;;33744:24;33736:87;;;;-1:-1:-1::0;;;33736:87:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;33834:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;33834:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;33889:34;;336:41:1;;;33889:34:0::1;::::0;309:18:1;33889:34:0::1;;;;;;;33653:278:::0;;:::o;32828:399::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;32957:21:::1;::::0;-1:-1:-1;;;32957:21:0;::::1;;;32956:22;32948:72;;;;-1:-1:-1::0;;;32948:72:0::1;;;;;;;:::i;:::-;33031:11;:22:::0;;;33064:16:::1;:32:::0;;;33107:16:::1;:36:::0;;;33126:17;33170:30:::1;33083:13:::0;33045:8;33170:30:::1;:::i;:::-;:49;;;;:::i;:::-;33154:13;:65:::0;-1:-1:-1;;;32828:399:0:o;32247:176::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;32324:21:::1;::::0;-1:-1:-1;;;32324:21:0;::::1;;;32323:22;32315:72;;;;-1:-1:-1::0;;;32315:72:0::1;;;;;;;:::i;:::-;32398:8;:17:::0;32247:176::o;39798:186::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;21057:6;;-1:-1:-1;;;;;21057:6:0;39868:10:::1;:21;39860:76;;;::::0;-1:-1:-1;;;39860:76:0;;10734:2:1;39860:76:0::1;::::0;::::1;10716:21:1::0;10773:2;10753:18;;;10746:30;10812:34;10792:18;;;10785:62;-1:-1:-1;;;10863:18:1;;;10856:40;10913:19;;39860:76:0::1;10532:406:1::0;39860:76:0::1;39947:22;:29:::0;;-1:-1:-1;;;;39947:29:0::1;-1:-1:-1::0;;;39947:29:0::1;::::0;;39798:186::o;21937:244::-;21204:6;;-1:-1:-1;;;;;21204:6:0;2771:10;21204:22;21196:67;;;;-1:-1:-1;;;21196:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22026:22:0;::::1;22018:73;;;::::0;-1:-1:-1;;;22018:73:0;;11145:2:1;22018:73:0::1;::::0;::::1;11127:21:1::0;11184:2;11164:18;;;11157:30;11223:34;11203:18;;;11196:62;-1:-1:-1;;;11274:18:1;;;11267:36;11320:19;;22018:73:0::1;10943:402:1::0;22018:73:0::1;22128:6;::::0;22107:38:::1;::::0;-1:-1:-1;;;;;22107:38:0;;::::1;::::0;22128:6:::1;::::0;22107:38:::1;::::0;22128:6:::1;::::0;22107:38:::1;22156:6;:17:::0;;-1:-1:-1;;;;;;22156:17:0::1;-1:-1:-1::0;;;;;22156:17:0;;;::::1;::::0;;;::::1;::::0;;21937:244::o;16040:181::-;16098:7;;16130:5;16134:1;16130;:5;:::i;:::-;16118:17;;16159:1;16154;:6;;16146:46;;;;-1:-1:-1;;;16146:46:0;;11552:2:1;16146:46:0;;;11534:21:1;11591:2;11571:18;;;11564:30;11630:29;11610:18;;;11603:57;11677:18;;16146:46:0;11350:351:1;16146:46:0;16212:1;16040:181;-1:-1:-1;;;16040:181:0:o;14662:380::-;-1:-1:-1;;;;;14798:19:0;;14790:68;;;;-1:-1:-1;;;14790:68:0;;11908:2:1;14790:68:0;;;11890:21:1;11947:2;11927:18;;;11920:30;11986:34;11966:18;;;11959:62;-1:-1:-1;;;12037:18:1;;;12030:34;12081:19;;14790:68:0;11706:400:1;14790:68:0;-1:-1:-1;;;;;14877:21:0;;14869:68;;;;-1:-1:-1;;;14869:68:0;;12313:2:1;14869:68:0;;;12295:21:1;12352:2;12332:18;;;12325:30;12391:34;12371:18;;;12364:62;-1:-1:-1;;;12442:18:1;;;12435:32;12484:19;;14869:68:0;12111:398:1;14869:68:0;-1:-1:-1;;;;;14950:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15002:32;;160:25:1;;;15002:32:0;;133:18:1;15002:32:0;;;;;;;;14662:380;;;:::o;34356:235::-;34456:3;34435:18;;34426:6;;:27;;;;:::i;:::-;:33;;;;:::i;:::-;34399:24;:60;34491:6;;34504:5;;34491:10;;34500:1;34491:10;:::i;:::-;:18;;;;:::i;:::-;34470;:39;34568:9;;34559:6;;34580:3;;34559:18;;;:::i;:::-;:24;;;;:::i;:::-;34542:14;:41;34356:235::o;35285:4314::-;-1:-1:-1;;;;;35417:18:0;;35409:68;;;;-1:-1:-1;;;35409:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35496:16:0;;35488:64;;;;-1:-1:-1;;;35488:64:0;;;;;;;:::i;:::-;35569:6;35579:1;35569:11;35566:92;;35597:28;35613:4;35619:2;35623:1;35597:15;:28::i;:::-;35285:4314;;;:::o;35566:92::-;35673:14;;-1:-1:-1;;;35673:14:0;;;;35670:1881;;;21057:6;;-1:-1:-1;;;;;35725:15:0;;;21057:6;;35725:15;;;;:49;;-1:-1:-1;21057:6:0;;-1:-1:-1;;;;;35761:13:0;;;21057:6;;35761:13;;35725:49;:86;;;;-1:-1:-1;;;;;;35795:16:0;;;;35725:86;:128;;;;-1:-1:-1;;;;;;35832:21:0;;35846:6;35832:21;;35725:128;:158;;;;-1:-1:-1;35875:8:0;;-1:-1:-1;;;35875:8:0;;;;35874:9;35725:158;35703:1837;;;35921:13;;-1:-1:-1;;;35921:13:0;;;;35917:148;;-1:-1:-1;;;;;35966:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;35995:23:0;;;;;;:19;:23;;;;;;;;35966:52;35958:87;;;;-1:-1:-1;;;35958:87:0;;13921:2:1;35958:87:0;;;13903:21:1;13960:2;13940:18;;;13933:30;-1:-1:-1;;;13979:18:1;;;13972:52;14041:18;;35958:87:0;13719:346:1;35958:87:0;36207:19;;-1:-1:-1;;;36207:19:0;;;;:52;;;;-1:-1:-1;;;;;;36230:29:0;;;;;;:25;:29;;;;;;;;36207:52;36203:279;;;36357:23;;36344:9;36315:39;;;;:28;:39;;;;;;:65;;36357:23;36315:65;:::i;:::-;36296:15;:84;;36288:174;;;;-1:-1:-1;;;36288:174:0;;14272:2:1;36288:174:0;;;14254:21:1;14311:2;14291:18;;;14284:30;14350:34;14330:18;;;14323:62;14421:34;14401:18;;;14394:62;-1:-1:-1;;;14472:19:1;;;14465:44;14526:19;;36288:174:0;14070:481:1;36288:174:0;36626:9;36597:39;;;;:28;:39;;;;;;;;;36639:15;36597:57;;;;36678:61;;160:25:1;;;36678:61:0;;133:18:1;36678:61:0;;;;;;;-1:-1:-1;;;;;36792:31:0;;;;;;:25;:31;;;;;;;;:75;;;;-1:-1:-1;;;;;;36828:39:0;;;;;;:35;:39;;;;;;;;36827:40;36792:75;:109;;;;-1:-1:-1;;;;;;36872:29:0;;;;;;:25;:29;;;;;;;;36871:30;36792:109;36788:737;;;36963:14;;-1:-1:-1;;;;;8565:18:0;;8538:7;8565:18;;;;;;;;;;;36937:22;;:6;:22;:::i;:::-;:40;;36929:72;;;;-1:-1:-1;;;36929:72:0;;14758:2:1;36929:72:0;;;14740:21:1;14797:2;14777:18;;;14770:30;-1:-1:-1;;;14816:18:1;;;14809:49;14875:18;;36929:72:0;14556:343:1;36929:72:0;36788:737;;;-1:-1:-1;;;;;37079:29:0;;;;;;:25;:29;;;;;;;;:75;;;;-1:-1:-1;;;;;;37113:41:0;;;;;;:35;:41;;;;;;;;37112:42;37079:75;:111;;;;-1:-1:-1;;;;;;37159:31:0;;;;;;:25;:31;;;;;;;;37158:32;37079:111;37075:450;;;37236:24;;37226:6;:34;;37218:105;;;;-1:-1:-1;;;37218:105:0;;15106:2:1;37218:105:0;;;15088:21:1;15145:2;15125:18;;;15118:30;15184:34;15164:18;;;15157:62;15255:28;15235:18;;;15228:56;15301:19;;37218:105:0;14904:422:1;37075:450:0;-1:-1:-1;;;;;37370:39:0;;;;;;:35;:39;;;;;;;;37366:159;;37467:14;;-1:-1:-1;;;;;8565:18:0;;8538:7;8565:18;;;;;;;;;;;37441:22;;:6;:22;:::i;:::-;:40;;37433:72;;;;-1:-1:-1;;;37433:72:0;;14758:2:1;37433:72:0;;;14740:21:1;14797:2;14777:18;;;14770:30;-1:-1:-1;;;14816:18:1;;;14809:49;14875:18;;37433:72:0;14556:343:1;37433:72:0;37610:4;37561:28;8565:18;;;;;;;;;;;37668;;37644:42;;;;;;;37716:33;;-1:-1:-1;37741:8:0;;-1:-1:-1;;;37741:8:0;;;;37740:9;37716:33;:61;;;;-1:-1:-1;37766:11:0;;-1:-1:-1;;;37766:11:0;;;;37716:61;:110;;;;-1:-1:-1;;;;;;37795:31:0;;;;;;:25;:31;;;;;;;;37794:32;37716:110;:153;;;;-1:-1:-1;;;;;;37844:25:0;;;;;;:19;:25;;;;;;;;37843:26;37716:153;:194;;;;-1:-1:-1;;;;;;37887:23:0;;;;;;:19;:23;;;;;;;;37886:24;37716:194;37699:325;;;37937:8;:15;;-1:-1:-1;;;;37937:15:0;-1:-1:-1;;;37937:15:0;;;37969:10;:8;:10::i;:::-;37996:8;:16;;-1:-1:-1;;;;37996:16:0;;;37699:325;38052:8;;-1:-1:-1;;;;;38076:25:0;;38036:12;38076:25;;;:19;:25;;;;;;38052:8;-1:-1:-1;;;38052:8:0;;;;;38051:9;;38076:25;;:52;;-1:-1:-1;;;;;;38105:23:0;;;;;;:19;:23;;;;;;;;38076:52;38073:99;;;-1:-1:-1;38155:5:0;38073:99;38184:12;38216:7;38213:1331;;;-1:-1:-1;;;;;38267:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;38316:1;38300:13;;:17;38267:50;38263:896;;;38344:39;38374:8;;38344:25;38355:13;;38344:6;:10;;:25;;;;:::i;:::-;:29;;:39::i;:::-;38337:46;;38440:13;;38426:11;;38419:4;:18;;;;:::i;:::-;:34;;;;:::i;:::-;38402:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;38520:13:0;;38501:16;;38494:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;38472:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;38556:18:0;;-1:-1:-1;;;38556:18:0;;;;38552:128;;;38647:13;;38628:16;;38621:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;38599:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;38552:128:0;38263:896;;;-1:-1:-1;;;;;38742:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;38792:1;38777:12;;:16;38742:51;38739:420;;;38818:38;38847:8;;38818:24;38829:12;;38818:6;:10;;:24;;;;:::i;:38::-;38811:45;;38909:12;;38896:10;;38889:4;:17;;;;:::i;:::-;:32;;;;:::i;:::-;38872:13;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;38987:12:0;;38969:15;;38962:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;38940:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;39022:18:0;;-1:-1:-1;;;39022:18:0;;;;39018:126;;;39112:12;;39094:15;;39087:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;39065:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;39018:126:0;39178:8;;39175:330;;39206:42;39222:4;39236;39243;39206:15;:42::i;:::-;39271:13;;:17;39267:223;;39313:35;39327:4;39334:13;;39313:5;:35::i;:::-;8381:12;;39371:6;:22;39416:14;:12;:14::i;:::-;39469:1;39453:13;:17;39267:223;39518:14;39528:4;39518:14;;:::i;:::-;;;38213:1331;39556:33;39572:4;39578:2;39582:6;39556:15;:33::i;:::-;35398:4201;;;;35285:4314;;;:::o;16943:192::-;17029:7;17065:12;17057:6;;;;17049:29;;;;-1:-1:-1;;;17049:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17089:9:0;17101:5;17105:1;17101;:5;:::i;:::-;17089:17;16943:192;-1:-1:-1;;;;;16943:192:0:o;34956:188::-;-1:-1:-1;;;;;35039:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;35039:39:0;;;;;;;;;;35096:40;;35039:39;;:31;35096:40;;;34956:188;;:::o;12235:573::-;-1:-1:-1;;;;;12375:20:0;;12367:70;;;;-1:-1:-1;;;12367:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12456:23:0;;12448:71;;;;-1:-1:-1;;;12448:71:0;;;;;;;:::i;:::-;12612;12634:6;12612:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12612:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;12592:17:0;;;:9;:17;;;;;;;;;;;:91;;;;12717:20;;;;;;;:32;;12742:6;12717:24;:32::i;:::-;-1:-1:-1;;;;;12694:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;12765:35;160:25:1;;;12694:20:0;;12765:35;;;;;;133:18:1;12765:35:0;14:177:1;41415:302:0;41508:4;41464:23;8565:18;;;;;;;;;;;;41528:20;;;41525:34;;41551:7;41415:302::o;41525:34::-;41574:18;;:22;41571:63;;41598:36;41615:18;;41598:16;:36::i;:::-;41648:18;;:22;41645:64;;41673:36;41690:18;;41673:16;:36::i;17394:471::-;17452:7;17697:1;17702;17697:6;17693:47;;-1:-1:-1;17727:1:0;17720:8;;17693:47;17752:9;17764:5;17768:1;17764;:5;:::i;:::-;17752:17;-1:-1:-1;17797:1:0;17788:5;17792:1;17752:17;17788:5;:::i;:::-;:10;17780:56;;;;-1:-1:-1;;;17780:56:0;;15663:2:1;17780:56:0;;;15645:21:1;15702:2;15682:18;;;15675:30;15741:34;15721:18;;;15714:62;-1:-1:-1;;;15792:18:1;;;15785:31;15833:19;;17780:56:0;15461:397:1;18341:132:0;18399:7;18426:39;18430:1;18433;18426:39;;;;;;;;;;;;;;;;;:3;:39::i;13806:418::-;-1:-1:-1;;;;;13890:21:0;;13882:67;;;;-1:-1:-1;;;13882:67:0;;16065:2:1;13882:67:0;;;16047:21:1;16104:2;16084:18;;;16077:30;16143:34;16123:18;;;16116:62;-1:-1:-1;;;16194:18:1;;;16187:31;16235:19;;13882:67:0;15863:397:1;13882:67:0;14045:68;14068:6;14045:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14045:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;14024:18:0;;:9;:18;;;;;;;;;;:89;14139:12;;:24;;14156:6;14139:16;:24::i;:::-;14124:12;:39;14179:37;;160:25:1;;;14205:1:0;;-1:-1:-1;;;;;14179:37:0;;;;;148:2:1;133:18;14179:37:0;;;;;;;13806:418;;:::o;41725:344::-;41808:21;41840:25;41857:7;41840:16;:25::i;:::-;41876:23;41902:37;41926:13;41902:21;:37;:::i;:::-;41958:16;;41950:51;;41876:63;;-1:-1:-1;;;;;;41958:16:0;;41950:51;;;;;41876:63;;41958:16;41950:51;41958:16;41950:51;41876:63;41958:16;41950:51;;;;;;;;;;;;;;;;;;;;;42054:7;42033:18;;:28;;;;:::i;:::-;42012:18;:49;-1:-1:-1;;;41725:344:0:o;42077:405::-;42136:9;42148:11;42158:1;42148:7;:11;:::i;:::-;42136:23;-1:-1:-1;42170:14:0;42187;42136:23;42187:7;:14;:::i;:::-;42170:31;-1:-1:-1;42236:21:0;42268:22;42285:4;42268:16;:22::i;:::-;42301:23;42327:37;42351:13;42327:21;:37;:::i;:::-;42301:63;;42375:39;42388:9;42398:15;42375:12;:39::i;:::-;42467:7;42446:18;;:28;;;;:::i;:::-;42425:18;:49;-1:-1:-1;;;;;42077:405:0:o;18969:278::-;19055:7;19090:12;19083:5;19075:28;;;;-1:-1:-1;;;19075:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19114:9:0;19126:5;19130:1;19126;:5;:::i;16504:136::-;16562:7;16589:43;16593:1;16596;16589:43;;;;;;;;;;;;;;;;;:3;:43::i;40816:591::-;40966:16;;;40980:1;40966:16;;;;;;;;40942:21;;40966:16;;;;;;;;;;-1:-1:-1;40966:16:0;40942:40;;41011:4;40993;40998:1;40993:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40993:23:0;;;-1:-1:-1;;;;;40993:23:0;;;;;41037:15;-1:-1:-1;;;;;41037:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41027:4;41032:1;41027:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;41027:32:0;;;-1:-1:-1;;;;;41027:32:0;;;;;41072:62;41089:4;41104:15;41122:11;41072:8;:62::i;:::-;41173:224;;-1:-1:-1;;;41173:224:0;;-1:-1:-1;;;;;41173:15:0;:66;;;;:224;;41254:11;;41280:1;;41324:4;;41351;;41371:15;;41173:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40871:536;40816:591;:::o;42492:522::-;42640:62;42657:4;42672:15;42690:11;42640:8;:62::i;:::-;42949:16;;42745:261;;-1:-1:-1;;;42745:261:0;;42817:4;42745:261;;;18111:34:1;18161:18;;;18154:34;;;42863:1:0;18204:18:1;;;18197:34;;;18247:18;;;18240:34;-1:-1:-1;;;;;42949:16:0;;;18290:19:1;;;18283:44;42980:15:0;18343:19:1;;;18336:35;42745:15:0;:31;;;;;;42784:9;;18045:19:1;;42745:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42492:522;;:::o;388:597:1:-;500:4;529:2;558;547:9;540:21;590:6;584:13;633:6;628:2;617:9;613:18;606:34;658:1;668:140;682:6;679:1;676:13;668:140;;;777:14;;;773:23;;767:30;743:17;;;762:2;739:26;732:66;697:10;;668:140;;;826:6;823:1;820:13;817:91;;;896:1;891:2;882:6;871:9;867:22;863:31;856:42;817:91;-1:-1:-1;969:2:1;948:15;-1:-1:-1;;944:29:1;929:45;;;;976:2;925:54;;388:597;-1:-1:-1;;;388:597:1:o;990:131::-;-1:-1:-1;;;;;1065:31:1;;1055:42;;1045:70;;1111:1;1108;1101:12;1126:247;1185:6;1238:2;1226:9;1217:7;1213:23;1209:32;1206:52;;;1254:1;1251;1244:12;1206:52;1293:9;1280:23;1312:31;1337:5;1312:31;:::i;1378:315::-;1446:6;1454;1507:2;1495:9;1486:7;1482:23;1478:32;1475:52;;;1523:1;1520;1513:12;1475:52;1562:9;1549:23;1581:31;1606:5;1581:31;:::i;:::-;1631:5;1683:2;1668:18;;;;1655:32;;-1:-1:-1;;;1378:315:1:o;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:316::-;3053:6;3061;3069;3122:2;3110:9;3101:7;3097:23;3093:32;3090:52;;;3138:1;3135;3128:12;3090:52;-1:-1:-1;;3161:23:1;;;3231:2;3216:18;;3203:32;;-1:-1:-1;3282:2:1;3267:18;;;3254:32;;2976:316;-1:-1:-1;2976:316:1:o;3297:416::-;3362:6;3370;3423:2;3411:9;3402:7;3398:23;3394:32;3391:52;;;3439:1;3436;3429:12;3391:52;3478:9;3465:23;3497:31;3522:5;3497:31;:::i;:::-;3547:5;-1:-1:-1;3604:2:1;3589:18;;3576:32;3646:15;;3639:23;3627:36;;3617:64;;3677:1;3674;3667:12;3617:64;3700:7;3690:17;;;3297:416;;;;;:::o;3718:388::-;3786:6;3794;3847:2;3835:9;3826:7;3822:23;3818:32;3815:52;;;3863:1;3860;3853:12;3815:52;3902:9;3889:23;3921:31;3946:5;3921:31;:::i;:::-;3971:5;-1:-1:-1;4028:2:1;4013:18;;4000:32;4041:33;4000:32;4041:33;:::i;4111:380::-;4190:1;4186:12;;;;4233;;;4254:61;;4308:4;4300:6;4296:17;4286:27;;4254:61;4361:2;4353:6;4350:14;4330:18;4327:38;4324:161;;4407:10;4402:3;4398:20;4395:1;4388:31;4442:4;4439:1;4432:15;4470:4;4467:1;4460:15;4324:161;;4111:380;;;:::o;4496:356::-;4698:2;4680:21;;;4717:18;;;4710:30;4776:34;4771:2;4756:18;;4749:62;4843:2;4828:18;;4496:356::o;4857:414::-;5059:2;5041:21;;;5098:2;5078:18;;;5071:30;5137:34;5132:2;5117:18;;5110:62;-1:-1:-1;;;5203:2:1;5188:18;;5181:48;5261:3;5246:19;;4857:414::o;5276:419::-;5478:2;5460:21;;;5517:2;5497:18;;;5490:30;5556:34;5551:2;5536:18;;5529:62;5627:25;5622:2;5607:18;;5600:53;5685:3;5670:19;;5276:419::o;6110:403::-;6312:2;6294:21;;;6351:2;6331:18;;;6324:30;6390:34;6385:2;6370:18;;6363:62;-1:-1:-1;;;6456:2:1;6441:18;;6434:37;6503:3;6488:19;;6110:403::o;7337:423::-;7539:2;7521:21;;;7578:2;7558:18;;;7551:30;7617:34;7612:2;7597:18;;7590:62;7688:29;7683:2;7668:18;;7661:57;7750:3;7735:19;;7337:423::o;7765:401::-;7967:2;7949:21;;;8006:2;7986:18;;;7979:30;8045:34;8040:2;8025:18;;8018:62;-1:-1:-1;;;8111:2:1;8096:18;;8089:35;8156:3;8141:19;;7765:401::o;8171:127::-;8232:10;8227:3;8223:20;8220:1;8213:31;8263:4;8260:1;8253:15;8287:4;8284:1;8277:15;8303:128;8343:3;8374:1;8370:6;8367:1;8364:13;8361:39;;;8380:18;;:::i;:::-;-1:-1:-1;8416:9:1;;8303:128::o;12514:168::-;12554:7;12620:1;12616;12612:6;12608:14;12605:1;12602:21;12597:1;12590:9;12583:17;12579:45;12576:71;;;12627:18;;:::i;:::-;-1:-1:-1;12667:9:1;;12514:168::o;12687:217::-;12727:1;12753;12743:132;;12797:10;12792:3;12788:20;12785:1;12778:31;12832:4;12829:1;12822:15;12860:4;12857:1;12850:15;12743:132;-1:-1:-1;12889:9:1;;12687:217::o;12909:401::-;13111:2;13093:21;;;13150:2;13130:18;;;13123:30;13189:34;13184:2;13169:18;;13162:62;-1:-1:-1;;;13255:2:1;13240:18;;13233:35;13300:3;13285:19;;12909:401::o;13315:399::-;13517:2;13499:21;;;13556:2;13536:18;;;13529:30;13595:34;13590:2;13575:18;;13568:62;-1:-1:-1;;;13661:2:1;13646:18;;13639:33;13704:3;13689:19;;13315:399::o;15331:125::-;15371:4;15399:1;15396;15393:8;15390:34;;;15404:18;;:::i;:::-;-1:-1:-1;15441:9:1;;15331:125::o;16397:127::-;16458:10;16453:3;16449:20;16446:1;16439:31;16489:4;16486:1;16479:15;16513:4;16510:1;16503:15;16529:251;16599:6;16652:2;16640:9;16631:7;16627:23;16623:32;16620:52;;;16668:1;16665;16658:12;16620:52;16700:9;16694:16;16719:31;16744:5;16719:31;:::i;16785:980::-;17047:4;17095:3;17084:9;17080:19;17126:6;17115:9;17108:25;17152:2;17190:6;17185:2;17174:9;17170:18;17163:34;17233:3;17228:2;17217:9;17213:18;17206:31;17257:6;17292;17286:13;17323:6;17315;17308:22;17361:3;17350:9;17346:19;17339:26;;17400:2;17392:6;17388:15;17374:29;;17421:1;17431:195;17445:6;17442:1;17439:13;17431:195;;;17510:13;;-1:-1:-1;;;;;17506:39:1;17494:52;;17601:15;;;;17566:12;;;;17542:1;17460:9;17431:195;;;-1:-1:-1;;;;;;;17682:32:1;;;;17677:2;17662:18;;17655:60;-1:-1:-1;;;17746:3:1;17731:19;17724:35;17643:3;16785:980;-1:-1:-1;;;16785:980:1:o;18382:306::-;18470:6;18478;18486;18539:2;18527:9;18518:7;18514:23;18510:32;18507:52;;;18555:1;18552;18545:12;18507:52;18584:9;18578:16;18568:26;;18634:2;18623:9;18619:18;18613:25;18603:35;;18678:2;18667:9;18663:18;18657:25;18647:35;;18382:306;;;;;:::o
Swarm Source
ipfs://070f621e2fd8318d4144d0ae976f5f0b9c50b92c8b36d594f2a321928847263a
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.