ERC-20
Overview
Max Total Supply
1,000,000,000 𝙼𝙴𝚃𝙷
Holders
41
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
16,249,082.783873035776762589 𝙼𝙴𝚃𝙷Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SPEED
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-25 */ // SPDX-License-Identifier: MIT pragma solidity >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; /** * @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. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0x000000000000000000000000000000000000dEaD), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract SPEED is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public MarketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 1; // 25 = .25% bool public lpBurnEnabled = false; uint256 public lpBurnFrequency = 3000 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 60 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradeOn = false; bool public swappingsActivated = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = false; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event MarketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Methamphetamine", unicode"𝙼𝙴𝚃𝙷") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH());(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 20; uint256 _buyLiquidityFee = 0; uint256 _buydevfee = 0; uint256 _sellMarketingFee = 40; uint256 _sellLiquidityFee = 0; uint256 _selldevfee = 0; uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = 5_000_000 * 1e18; // 0.1% from total supply maxTransactionAmountTxn maxWallet = 15_000_000 * 1e18; // 1.5% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buydevfee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _selldevfee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; devWallet = address(0xeF6AEF793900581f90046A22D32d82DdF887bcDa); // set as dev wallet MarketingWallet = address(0xeF6AEF793900581f90046A22D32d82DdF887bcDa); // set as mkt wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function openTrading() external onlyOwner { swappingsActivated = true; tradeOn = true; lastLpBurnTime = block.timestamp; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 10000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function setMaxTxnAmt(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot change maxTransactionAmount lower than 0.2%" ); maxTransactionAmount = newNum * (10**18); } function setMaxWalletSize(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot change maxWallet lower than 1%" ); maxWallet = newNum * (10**18); } function removeLimits() external onlyOwner{ maxTransactionAmount = totalSupply(); maxWallet = totalSupply(); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 49, "Must keep fees at 35% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 99, "Must keep fees at 99% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit MarketingWalletUpdated(newMarketingWallet, MarketingWallet); MarketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event isbot(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradeOn) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swappingsActivated && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(MarketingWallet).call{ value: address(this).balance }(""); } function updateAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
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":[],"name":"AutoNukeLP","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"isbot","type":"event"},{"inputs":[],"name":"MarketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxTxnAmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swappingsActivated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"tradeOn","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":"transferDelayEnabled","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":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"updateAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b819055600c805460ff19908116909155610bb8600d55610e10600f556011805462ffffff19169092179091556013805490911690553480156200004a57600080fd5b50604080518082018252600f81526e4d657468616d70686574616d696e6560881b60208083019182528351808501909452601084526ff09d99bcf09d99b4f09d9a83f09d99b760801b908401528151919291620000aa9160039162000694565b508051620000c090600490602084019062000694565b505050620000dd620000d7620003e260201b60201c565b620003e6565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ff81600162000438565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200014a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017091906200073a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e491906200073a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000232573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025891906200073a565b6001600160a01b031660a081905262000273906001620004b1565b6a0422ca8b0a00a4250000006008556a0c685fa11e01ec6f000000600a556014600080602881806b033b2e3c9fd0803ce8000000612710620002b782600562000782565b620002c39190620007a4565b60095560158790556016869055601785905584620002e28789620007c7565b620002ee9190620007c7565b6014556019849055601a839055601b829055816200030d8486620007c7565b620003199190620007c7565b6018556007805473ef6aef793900581f90046a22d32d82ddf887bcda6001600160a01b0319918216811790925560068054909116909117905562000371620003696005546001600160a01b031690565b600162000505565b6200037e30600162000505565b6200038d61dead600162000505565b620003ac620003a46005546001600160a01b031690565b600162000438565b620003b930600162000438565b620003c861dead600162000438565b620003d43382620005af565b50505050505050506200081f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004875760405162461bcd60e51b815260206004820181905260248201526000805160206200395b83398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005505760405162461bcd60e51b815260206004820181905260248201526000805160206200395b83398151915260448201526064016200047e565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006075760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200047e565b80600260008282546200061b9190620007c7565b90915550506001600160a01b038216600090815260208190526040812080548392906200064a908490620007c7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006a290620007e2565b90600052602060002090601f016020900481019282620006c6576000855562000711565b82601f10620006e157805160ff191683800117855562000711565b8280016001018555821562000711579182015b8281111562000711578251825591602001919060010190620006f4565b506200071f92915062000723565b5090565b5b808211156200071f576000815560010162000724565b6000602082840312156200074d57600080fd5b81516001600160a01b03811681146200076557600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200079f576200079f6200076c565b500290565b600082620007c257634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007dd57620007dd6200076c565b500190565b600181811c90821680620007f757607f821691505b602082108114156200081957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516130b4620008a7600039600081816105f501528181610ff601528181611830015281816118cb015281816118f701528181611c9401528181612807015281816128a901526128d501526000818161044e01528181611c56015281816129df01528181612a9801528181612ad401528181612b4e0152612bab01526130b46000f3fe6080604052600436106103a65760003560e01c80638ea5220f116101e7578063c17b5b8c1161010d578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610a9e578063f637434214610abe578063f8b45b0514610ad4578063fe72b27a14610aea57600080fd5b8063e2f4560514610a3d578063e884f26014610a53578063ea1644d514610a68578063f11a24d314610a8857600080fd5b8063d257b34f116100dc578063d257b34f146109a1578063d85ba063146109c1578063dcb5650b146109d7578063dd62ed3e146109f757600080fd5b8063c17b5b8c1461093c578063c876d0b91461095c578063c8c8ebe414610976578063c9567bf91461098c57600080fd5b80639fccce3211610185578063a9059cbb11610154578063a9059cbb146108ac578063aacebbe3146108cc578063b62496f5146108ec578063c02466681461091c57600080fd5b80639fccce321461084a578063a0d82dc514610860578063a457c2d714610876578063a4c82a001461089657600080fd5b8063979bdfcc116101c1578063979bdfcc146107de5780639a7a23d6146107fe5780639c3b4fdc1461081e5780639ec22c0e1461083457600080fd5b80638ea5220f1461079357806392136913146107b357806395d89b41146107c957600080fd5b8063313ce567116102cc5780636a486a8e1161026a5780637571336a116102395780637571336a1461071f5780637bce5a041461073f5780638095d564146107555780638da5cb5b1461077557600080fd5b80636a486a8e146106a957806370a08231146106bf578063715018a6146106f5578063751039fc1461070a57600080fd5b80634a62bb65116102a65780634a62bb65146106175780634fbee193146106315780635cbd45531461066a5780636440f7191461068957600080fd5b8063313ce567146105a757806339509351146105c357806349bd5a5e146105e357600080fd5b8063199ffc72116103445780632598cdb2116103135780632598cdb21461054157806327c8f835146105615780632c3e486c146105775780632e82f1a01461058d57600080fd5b8063199ffc72146104df5780631a8145bb146104f55780631f3fed8f1461050b57806323b872dd1461052157600080fd5b80631694505e116103805780631694505e1461043c57806318160ddd146104885780631816467f146104a7578063184c16c5146104c957600080fd5b806306fdde03146103b2578063095ea7b3146103dd57806310d5de531461040d57600080fd5b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610b0a565b6040516103d49190612c29565b60405180910390f35b3480156103e957600080fd5b506103fd6103f8366004612c93565b610b9c565b60405190151581526020016103d4565b34801561041957600080fd5b506103fd610428366004612cbf565b602080526000908152604090205460ff1681565b34801561044857600080fd5b506104707f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103d4565b34801561049457600080fd5b506002545b6040519081526020016103d4565b3480156104b357600080fd5b506104c76104c2366004612cbf565b610bb2565b005b3480156104d557600080fd5b50610499600f5481565b3480156104eb57600080fd5b50610499600b5481565b34801561050157600080fd5b50610499601d5481565b34801561051757600080fd5b50610499601c5481565b34801561052d57600080fd5b506103fd61053c366004612cdc565b610c42565b34801561054d57600080fd5b50600654610470906001600160a01b031681565b34801561056d57600080fd5b5061047061dead81565b34801561058357600080fd5b50610499600d5481565b34801561059957600080fd5b50600c546103fd9060ff1681565b3480156105b357600080fd5b50604051601281526020016103d4565b3480156105cf57600080fd5b506103fd6105de366004612c93565b610cec565b3480156105ef57600080fd5b506104707f000000000000000000000000000000000000000000000000000000000000000081565b34801561062357600080fd5b506011546103fd9060ff1681565b34801561063d57600080fd5b506103fd61064c366004612cbf565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561067657600080fd5b506011546103fd90610100900460ff1681565b34801561069557600080fd5b506104c76106a4366004612d2d565b610d28565b3480156106b557600080fd5b5061049960185481565b3480156106cb57600080fd5b506104996106da366004612cbf565b6001600160a01b031660009081526020819052604090205490565b34801561070157600080fd5b506104c7610e51565b34801561071657600080fd5b506104c7610e87565b34801561072b57600080fd5b506104c761073a366004612d62565b610ebf565b34801561074b57600080fd5b5061049960155481565b34801561076157600080fd5b506104c7610770366004612d97565b610f13565b34801561078157600080fd5b506005546001600160a01b0316610470565b34801561079f57600080fd5b50600754610470906001600160a01b031681565b3480156107bf57600080fd5b5061049960195481565b3480156107d557600080fd5b506103c7610fbb565b3480156107ea57600080fd5b506011546103fd9062010000900460ff1681565b34801561080a57600080fd5b506104c7610819366004612d62565b610fca565b34801561082a57600080fd5b5061049960175481565b34801561084057600080fd5b5061049960105481565b34801561085657600080fd5b50610499601e5481565b34801561086c57600080fd5b50610499601b5481565b34801561088257600080fd5b506103fd610891366004612c93565b6110aa565b3480156108a257600080fd5b50610499600e5481565b3480156108b857600080fd5b506103fd6108c7366004612c93565b611143565b3480156108d857600080fd5b506104c76108e7366004612cbf565b611150565b3480156108f857600080fd5b506103fd610907366004612cbf565b60216020526000908152604090205460ff1681565b34801561092857600080fd5b506104c7610937366004612d62565b6111d7565b34801561094857600080fd5b506104c7610957366004612d97565b611260565b34801561096857600080fd5b506013546103fd9060ff1681565b34801561098257600080fd5b5061049960085481565b34801561099857600080fd5b506104c7611303565b3480156109ad57600080fd5b506103fd6109bc366004612dc3565b611344565b3480156109cd57600080fd5b5061049960145481565b3480156109e357600080fd5b506104c76109f2366004612dc3565b61149a565b348015610a0357600080fd5b50610499610a12366004612ddc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a4957600080fd5b5061049960095481565b348015610a5f57600080fd5b506103fd61157a565b348015610a7457600080fd5b506104c7610a83366004612dc3565b6115b7565b348015610a9457600080fd5b5061049960165481565b348015610aaa57600080fd5b506104c7610ab9366004612cbf565b61168a565b348015610aca57600080fd5b50610499601a5481565b348015610ae057600080fd5b50610499600a5481565b348015610af657600080fd5b506103fd610b05366004612dc3565b611725565b606060038054610b1990612e15565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4590612e15565b8015610b925780601f10610b6757610100808354040283529160200191610b92565b820191906000526020600020905b815481529060010190602001808311610b7557829003601f168201915b5050505050905090565b6000610ba933848461199f565b50600192915050565b6005546001600160a01b03163314610be55760405162461bcd60e51b8152600401610bdc90612e50565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c4f848484611ac3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cd45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bdc565b610ce1853385840361199f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ba9918590610d23908690612e9b565b61199f565b6005546001600160a01b03163314610d525760405162461bcd60e51b8152600401610bdc90612e50565b610258831015610dc05760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610bdc565b6103e88211158015610dd0575060015b610e355760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610bdc565b600d92909255600b55600c805460ff1916911515919091179055565b6005546001600160a01b03163314610e7b5760405162461bcd60e51b8152600401610bdc90612e50565b610e856000612398565b565b6005546001600160a01b03163314610eb15760405162461bcd60e51b8152600401610bdc90612e50565b600254600855600254600a55565b6005546001600160a01b03163314610ee95760405162461bcd60e51b8152600401610bdc90612e50565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f3d5760405162461bcd60e51b8152600401610bdc90612e50565b60158390556016829055601781905580610f578385612e9b565b610f619190612e9b565b601481905560311015610fb65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333525206f72206c6573730000006044820152606401610bdc565b505050565b606060048054610b1990612e15565b6005546001600160a01b03163314610ff45760405162461bcd60e51b8152600401610bdc90612e50565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141561109c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bdc565b6110a682826123ea565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561112c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bdc565b611139338585840361199f565b5060019392505050565b6000610ba9338484611ac3565b6005546001600160a01b0316331461117a5760405162461bcd60e51b8152600401610bdc90612e50565b6006546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112015760405162461bcd60e51b8152600401610bdc90612e50565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461128a5760405162461bcd60e51b8152600401610bdc90612e50565b6019839055601a829055601b819055806112a48385612e9b565b6112ae9190612e9b565b601881905560631015610fb65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610bdc565b6005546001600160a01b0316331461132d5760405162461bcd60e51b8152600401610bdc90612e50565b6011805462ffff0019166201010017905542600e55565b6005546000906001600160a01b031633146113715760405162461bcd60e51b8152600401610bdc90612e50565b61271061137d60025490565b611388906001612eb3565b6113929190612ed2565b8210156113ff5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bdc565b6103e861140b60025490565b611416906005612eb3565b6114209190612ed2565b82111561148c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bdc565b50600981905560015b919050565b6005546001600160a01b031633146114c45760405162461bcd60e51b8152600401610bdc90612e50565b670de0b6b3a76400006103e86114d960025490565b6114e4906005612eb3565b6114ee9190612ed2565b6114f89190612ed2565b8110156115625760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f74206368616e6765206d61785472616e73616374696f6e416d6f756044820152716e74206c6f776572207468616e20302e322560701b6064820152608401610bdc565b61157481670de0b6b3a7640000612eb3565b60085550565b6005546000906001600160a01b031633146115a75760405162461bcd60e51b8152600401610bdc90612e50565b506013805460ff19169055600190565b6005546001600160a01b031633146115e15760405162461bcd60e51b8152600401610bdc90612e50565b670de0b6b3a76400006103e86115f660025490565b61160190600a612eb3565b61160b9190612ed2565b6116159190612ed2565b8110156116725760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206368616e6765206d617857616c6c6574206c6f776572207468604482015264616e20312560d81b6064820152608401610bdc565b61168481670de0b6b3a7640000612eb3565b600a5550565b6005546001600160a01b031633146116b45760405162461bcd60e51b8152600401610bdc90612e50565b6001600160a01b0381166117195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bdc565b61172281612398565b50565b6005546000906001600160a01b031633146117525760405162461bcd60e51b8152600401610bdc90612e50565b600f546010546117629190612e9b565b42116117b05760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610bdc565b6103e88211156118155760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610bdc565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015611880573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a49190612ef4565b905060006118be6127106118b8848761243e565b90612451565b905080156118f3576118f37f000000000000000000000000000000000000000000000000000000000000000061dead8361245d565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561195357600080fd5b505af1158015611967573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611a015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bdc565b6001600160a01b038216611a625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bdc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611ae95760405162461bcd60e51b8152600401610bdc90612f0d565b6001600160a01b038216611b0f5760405162461bcd60e51b8152600401610bdc90612f52565b80611b2057610fb68383600061245d565b60115460ff1615611fda576005546001600160a01b03848116911614801590611b5757506005546001600160a01b03838116911614155b8015611b6b57506001600160a01b03821615155b8015611b8257506001600160a01b03821661dead14155b8015611b985750600554600160a01b900460ff16155b15611fda57601154610100900460ff16611c30576001600160a01b0383166000908152601f602052604090205460ff1680611beb57506001600160a01b0382166000908152601f602052604090205460ff165b611c305760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bdc565b60135460ff1615611d77576005546001600160a01b03838116911614801590611c8b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611cc957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611d7757326000908152601260205260409020544311611d645760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bdc565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611db757506001600160a01b038216600090815260208052604090205460ff16155b15611e9b57600854811115611e2c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bdc565b600a546001600160a01b038316600090815260208190526040902054611e529083612e9b565b1115611e965760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bdc565b611fda565b6001600160a01b03821660009081526021602052604090205460ff168015611edb57506001600160a01b038316600090815260208052604090205460ff16155b15611f5157600854811115611e965760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bdc565b6001600160a01b038216600090815260208052604090205460ff16611fda57600a546001600160a01b038316600090815260208190526040902054611f969083612e9b565b1115611fda5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bdc565b3060009081526020819052604090205460095481108015908190612006575060115462010000900460ff165b801561201c5750600554600160a01b900460ff16155b801561204157506001600160a01b03851660009081526021602052604090205460ff16155b801561206657506001600160a01b0385166000908152601f602052604090205460ff16155b801561208b57506001600160a01b0384166000908152601f602052604090205460ff16155b156120b9576005805460ff60a01b1916600160a01b1790556120ab6125b2565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156120eb57506001600160a01b03841660009081526021602052604090205460ff165b80156120f95750600c5460ff165b80156121145750600d54600e546121109190612e9b565b4210155b801561213957506001600160a01b0385166000908152601f602052604090205460ff16155b15612148576121466127ec565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061219657506001600160a01b0385166000908152601f602052604090205460ff165b1561219f575060005b60008115612384576001600160a01b03861660009081526021602052604090205460ff1680156121d157506000601854115b15612289576121f060646118b86018548861243e90919063ffffffff16565b9050601854601a54826122039190612eb3565b61220d9190612ed2565b601d600082825461221e9190612e9b565b9091555050601854601b546122339083612eb3565b61223d9190612ed2565b601e600082825461224e9190612e9b565b90915550506018546019546122639083612eb3565b61226d9190612ed2565b601c600082825461227e9190612e9b565b909155506123669050565b6001600160a01b03871660009081526021602052604090205460ff1680156122b357506000601454115b15612366576122d260646118b86014548861243e90919063ffffffff16565b9050601454601654826122e59190612eb3565b6122ef9190612ed2565b601d60008282546123009190612e9b565b90915550506014546017546123159083612eb3565b61231f9190612ed2565b601e60008282546123309190612e9b565b90915550506014546015546123459083612eb3565b61234f9190612ed2565b601c60008282546123609190612e9b565b90915550505b80156123775761237787308361245d565b6123818186612f95565b94505b61238f87878761245d565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600061244a8284612eb3565b9392505050565b600061244a8284612ed2565b6001600160a01b0383166124835760405162461bcd60e51b8152600401610bdc90612f0d565b6001600160a01b0382166124a95760405162461bcd60e51b8152600401610bdc90612f52565b6001600160a01b038316600090815260208190526040902054818110156125215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bdc565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612558908490612e9b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125a491815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546125d99190612e9b565b6125e39190612e9b565b905060008215806125f2575081155b156125fc57505050565b60095461260a906014612eb3565b8311156126225760095461261f906014612eb3565b92505b6000600283601d54866126359190612eb3565b61263f9190612ed2565b6126499190612ed2565b90506000612657858361297c565b90504761266382612988565b600061266f478361297c565b9050600061268c876118b8601c548561243e90919063ffffffff16565b905060006126a9886118b8601e548661243e90919063ffffffff16565b90506000816126b88486612f95565b6126c29190612f95565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461271f576040519150601f19603f3d011682016040523d82523d6000602084013e612724565b606091505b509098505086158015906127385750600081115b1561278b576127478782612b48565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146127d8576040519150601f19603f3d011682016040523d82523d6000602084013e6127dd565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa158015612859573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287d9190612ef4565b9050600061289c6127106118b8600b548561243e90919063ffffffff16565b905080156128d1576128d17f000000000000000000000000000000000000000000000000000000000000000061dead8361245d565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561293157600080fd5b505af1158015612945573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b600061244a8284612f95565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106129bd576129bd612fac565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a5f9190612fc2565b81600181518110612a7257612a72612fac565b60200260200101906001600160a01b031690816001600160a01b031681525050612abd307f00000000000000000000000000000000000000000000000000000000000000008461199f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612b12908590600090869030904290600401612fdf565b600060405180830381600087803b158015612b2c57600080fd5b505af1158015612b40573d6000803e3d6000fd5b505050505050565b612b73307f00000000000000000000000000000000000000000000000000000000000000008461199f565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612bfd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c229190613050565b5050505050565b600060208083528351808285015260005b81811015612c5657858101830151858201604001528201612c3a565b81811115612c68576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461172257600080fd5b60008060408385031215612ca657600080fd5b8235612cb181612c7e565b946020939093013593505050565b600060208284031215612cd157600080fd5b813561244a81612c7e565b600080600060608486031215612cf157600080fd5b8335612cfc81612c7e565b92506020840135612d0c81612c7e565b929592945050506040919091013590565b8035801515811461149557600080fd5b600080600060608486031215612d4257600080fd5b8335925060208401359150612d5960408501612d1d565b90509250925092565b60008060408385031215612d7557600080fd5b8235612d8081612c7e565b9150612d8e60208401612d1d565b90509250929050565b600080600060608486031215612dac57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612dd557600080fd5b5035919050565b60008060408385031215612def57600080fd5b8235612dfa81612c7e565b91506020830135612e0a81612c7e565b809150509250929050565b600181811c90821680612e2957607f821691505b60208210811415612e4a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612eae57612eae612e85565b500190565b6000816000190483118215151615612ecd57612ecd612e85565b500290565b600082612eef57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612f0657600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612fa757612fa7612e85565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612fd457600080fd5b815161244a81612c7e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561302f5784516001600160a01b03168352938301939183019160010161300a565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561306557600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212202f8cec80225beb0b5f837b9c9fb02a57366fd1e4867cd3e017397a800789f7d764736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106103a65760003560e01c80638ea5220f116101e7578063c17b5b8c1161010d578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610a9e578063f637434214610abe578063f8b45b0514610ad4578063fe72b27a14610aea57600080fd5b8063e2f4560514610a3d578063e884f26014610a53578063ea1644d514610a68578063f11a24d314610a8857600080fd5b8063d257b34f116100dc578063d257b34f146109a1578063d85ba063146109c1578063dcb5650b146109d7578063dd62ed3e146109f757600080fd5b8063c17b5b8c1461093c578063c876d0b91461095c578063c8c8ebe414610976578063c9567bf91461098c57600080fd5b80639fccce3211610185578063a9059cbb11610154578063a9059cbb146108ac578063aacebbe3146108cc578063b62496f5146108ec578063c02466681461091c57600080fd5b80639fccce321461084a578063a0d82dc514610860578063a457c2d714610876578063a4c82a001461089657600080fd5b8063979bdfcc116101c1578063979bdfcc146107de5780639a7a23d6146107fe5780639c3b4fdc1461081e5780639ec22c0e1461083457600080fd5b80638ea5220f1461079357806392136913146107b357806395d89b41146107c957600080fd5b8063313ce567116102cc5780636a486a8e1161026a5780637571336a116102395780637571336a1461071f5780637bce5a041461073f5780638095d564146107555780638da5cb5b1461077557600080fd5b80636a486a8e146106a957806370a08231146106bf578063715018a6146106f5578063751039fc1461070a57600080fd5b80634a62bb65116102a65780634a62bb65146106175780634fbee193146106315780635cbd45531461066a5780636440f7191461068957600080fd5b8063313ce567146105a757806339509351146105c357806349bd5a5e146105e357600080fd5b8063199ffc72116103445780632598cdb2116103135780632598cdb21461054157806327c8f835146105615780632c3e486c146105775780632e82f1a01461058d57600080fd5b8063199ffc72146104df5780631a8145bb146104f55780631f3fed8f1461050b57806323b872dd1461052157600080fd5b80631694505e116103805780631694505e1461043c57806318160ddd146104885780631816467f146104a7578063184c16c5146104c957600080fd5b806306fdde03146103b2578063095ea7b3146103dd57806310d5de531461040d57600080fd5b366103ad57005b600080fd5b3480156103be57600080fd5b506103c7610b0a565b6040516103d49190612c29565b60405180910390f35b3480156103e957600080fd5b506103fd6103f8366004612c93565b610b9c565b60405190151581526020016103d4565b34801561041957600080fd5b506103fd610428366004612cbf565b602080526000908152604090205460ff1681565b34801561044857600080fd5b506104707f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103d4565b34801561049457600080fd5b506002545b6040519081526020016103d4565b3480156104b357600080fd5b506104c76104c2366004612cbf565b610bb2565b005b3480156104d557600080fd5b50610499600f5481565b3480156104eb57600080fd5b50610499600b5481565b34801561050157600080fd5b50610499601d5481565b34801561051757600080fd5b50610499601c5481565b34801561052d57600080fd5b506103fd61053c366004612cdc565b610c42565b34801561054d57600080fd5b50600654610470906001600160a01b031681565b34801561056d57600080fd5b5061047061dead81565b34801561058357600080fd5b50610499600d5481565b34801561059957600080fd5b50600c546103fd9060ff1681565b3480156105b357600080fd5b50604051601281526020016103d4565b3480156105cf57600080fd5b506103fd6105de366004612c93565b610cec565b3480156105ef57600080fd5b506104707f00000000000000000000000043eefec9bf650f68ef4894f829edc547350fdd1981565b34801561062357600080fd5b506011546103fd9060ff1681565b34801561063d57600080fd5b506103fd61064c366004612cbf565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561067657600080fd5b506011546103fd90610100900460ff1681565b34801561069557600080fd5b506104c76106a4366004612d2d565b610d28565b3480156106b557600080fd5b5061049960185481565b3480156106cb57600080fd5b506104996106da366004612cbf565b6001600160a01b031660009081526020819052604090205490565b34801561070157600080fd5b506104c7610e51565b34801561071657600080fd5b506104c7610e87565b34801561072b57600080fd5b506104c761073a366004612d62565b610ebf565b34801561074b57600080fd5b5061049960155481565b34801561076157600080fd5b506104c7610770366004612d97565b610f13565b34801561078157600080fd5b506005546001600160a01b0316610470565b34801561079f57600080fd5b50600754610470906001600160a01b031681565b3480156107bf57600080fd5b5061049960195481565b3480156107d557600080fd5b506103c7610fbb565b3480156107ea57600080fd5b506011546103fd9062010000900460ff1681565b34801561080a57600080fd5b506104c7610819366004612d62565b610fca565b34801561082a57600080fd5b5061049960175481565b34801561084057600080fd5b5061049960105481565b34801561085657600080fd5b50610499601e5481565b34801561086c57600080fd5b50610499601b5481565b34801561088257600080fd5b506103fd610891366004612c93565b6110aa565b3480156108a257600080fd5b50610499600e5481565b3480156108b857600080fd5b506103fd6108c7366004612c93565b611143565b3480156108d857600080fd5b506104c76108e7366004612cbf565b611150565b3480156108f857600080fd5b506103fd610907366004612cbf565b60216020526000908152604090205460ff1681565b34801561092857600080fd5b506104c7610937366004612d62565b6111d7565b34801561094857600080fd5b506104c7610957366004612d97565b611260565b34801561096857600080fd5b506013546103fd9060ff1681565b34801561098257600080fd5b5061049960085481565b34801561099857600080fd5b506104c7611303565b3480156109ad57600080fd5b506103fd6109bc366004612dc3565b611344565b3480156109cd57600080fd5b5061049960145481565b3480156109e357600080fd5b506104c76109f2366004612dc3565b61149a565b348015610a0357600080fd5b50610499610a12366004612ddc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a4957600080fd5b5061049960095481565b348015610a5f57600080fd5b506103fd61157a565b348015610a7457600080fd5b506104c7610a83366004612dc3565b6115b7565b348015610a9457600080fd5b5061049960165481565b348015610aaa57600080fd5b506104c7610ab9366004612cbf565b61168a565b348015610aca57600080fd5b50610499601a5481565b348015610ae057600080fd5b50610499600a5481565b348015610af657600080fd5b506103fd610b05366004612dc3565b611725565b606060038054610b1990612e15565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4590612e15565b8015610b925780601f10610b6757610100808354040283529160200191610b92565b820191906000526020600020905b815481529060010190602001808311610b7557829003601f168201915b5050505050905090565b6000610ba933848461199f565b50600192915050565b6005546001600160a01b03163314610be55760405162461bcd60e51b8152600401610bdc90612e50565b60405180910390fd5b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c4f848484611ac3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610cd45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bdc565b610ce1853385840361199f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ba9918590610d23908690612e9b565b61199f565b6005546001600160a01b03163314610d525760405162461bcd60e51b8152600401610bdc90612e50565b610258831015610dc05760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610bdc565b6103e88211158015610dd0575060015b610e355760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610bdc565b600d92909255600b55600c805460ff1916911515919091179055565b6005546001600160a01b03163314610e7b5760405162461bcd60e51b8152600401610bdc90612e50565b610e856000612398565b565b6005546001600160a01b03163314610eb15760405162461bcd60e51b8152600401610bdc90612e50565b600254600855600254600a55565b6005546001600160a01b03163314610ee95760405162461bcd60e51b8152600401610bdc90612e50565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610f3d5760405162461bcd60e51b8152600401610bdc90612e50565b60158390556016829055601781905580610f578385612e9b565b610f619190612e9b565b601481905560311015610fb65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420333525206f72206c6573730000006044820152606401610bdc565b505050565b606060048054610b1990612e15565b6005546001600160a01b03163314610ff45760405162461bcd60e51b8152600401610bdc90612e50565b7f00000000000000000000000043eefec9bf650f68ef4894f829edc547350fdd196001600160a01b0316826001600160a01b0316141561109c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bdc565b6110a682826123ea565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561112c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bdc565b611139338585840361199f565b5060019392505050565b6000610ba9338484611ac3565b6005546001600160a01b0316331461117a5760405162461bcd60e51b8152600401610bdc90612e50565b6006546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146112015760405162461bcd60e51b8152600401610bdc90612e50565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461128a5760405162461bcd60e51b8152600401610bdc90612e50565b6019839055601a829055601b819055806112a48385612e9b565b6112ae9190612e9b565b601881905560631015610fb65760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420393925206f72206c6573730000006044820152606401610bdc565b6005546001600160a01b0316331461132d5760405162461bcd60e51b8152600401610bdc90612e50565b6011805462ffff0019166201010017905542600e55565b6005546000906001600160a01b031633146113715760405162461bcd60e51b8152600401610bdc90612e50565b61271061137d60025490565b611388906001612eb3565b6113929190612ed2565b8210156113ff5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bdc565b6103e861140b60025490565b611416906005612eb3565b6114209190612ed2565b82111561148c5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bdc565b50600981905560015b919050565b6005546001600160a01b031633146114c45760405162461bcd60e51b8152600401610bdc90612e50565b670de0b6b3a76400006103e86114d960025490565b6114e4906005612eb3565b6114ee9190612ed2565b6114f89190612ed2565b8110156115625760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f74206368616e6765206d61785472616e73616374696f6e416d6f756044820152716e74206c6f776572207468616e20302e322560701b6064820152608401610bdc565b61157481670de0b6b3a7640000612eb3565b60085550565b6005546000906001600160a01b031633146115a75760405162461bcd60e51b8152600401610bdc90612e50565b506013805460ff19169055600190565b6005546001600160a01b031633146115e15760405162461bcd60e51b8152600401610bdc90612e50565b670de0b6b3a76400006103e86115f660025490565b61160190600a612eb3565b61160b9190612ed2565b6116159190612ed2565b8110156116725760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206368616e6765206d617857616c6c6574206c6f776572207468604482015264616e20312560d81b6064820152608401610bdc565b61168481670de0b6b3a7640000612eb3565b600a5550565b6005546001600160a01b031633146116b45760405162461bcd60e51b8152600401610bdc90612e50565b6001600160a01b0381166117195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bdc565b61172281612398565b50565b6005546000906001600160a01b031633146117525760405162461bcd60e51b8152600401610bdc90612e50565b600f546010546117629190612e9b565b42116117b05760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610bdc565b6103e88211156118155760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610bdc565b426010556040516370a0823160e01b81526001600160a01b037f00000000000000000000000043eefec9bf650f68ef4894f829edc547350fdd1916600482015260009030906370a0823190602401602060405180830381865afa158015611880573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a49190612ef4565b905060006118be6127106118b8848761243e565b90612451565b905080156118f3576118f37f00000000000000000000000043eefec9bf650f68ef4894f829edc547350fdd1961dead8361245d565b60007f00000000000000000000000043eefec9bf650f68ef4894f829edc547350fdd199050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561195357600080fd5b505af1158015611967573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611a015760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bdc565b6001600160a01b038216611a625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bdc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611ae95760405162461bcd60e51b8152600401610bdc90612f0d565b6001600160a01b038216611b0f5760405162461bcd60e51b8152600401610bdc90612f52565b80611b2057610fb68383600061245d565b60115460ff1615611fda576005546001600160a01b03848116911614801590611b5757506005546001600160a01b03838116911614155b8015611b6b57506001600160a01b03821615155b8015611b8257506001600160a01b03821661dead14155b8015611b985750600554600160a01b900460ff16155b15611fda57601154610100900460ff16611c30576001600160a01b0383166000908152601f602052604090205460ff1680611beb57506001600160a01b0382166000908152601f602052604090205460ff165b611c305760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bdc565b60135460ff1615611d77576005546001600160a01b03838116911614801590611c8b57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611cc957507f00000000000000000000000043eefec9bf650f68ef4894f829edc547350fdd196001600160a01b0316826001600160a01b031614155b15611d7757326000908152601260205260409020544311611d645760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610bdc565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611db757506001600160a01b038216600090815260208052604090205460ff16155b15611e9b57600854811115611e2c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bdc565b600a546001600160a01b038316600090815260208190526040902054611e529083612e9b565b1115611e965760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bdc565b611fda565b6001600160a01b03821660009081526021602052604090205460ff168015611edb57506001600160a01b038316600090815260208052604090205460ff16155b15611f5157600854811115611e965760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bdc565b6001600160a01b038216600090815260208052604090205460ff16611fda57600a546001600160a01b038316600090815260208190526040902054611f969083612e9b565b1115611fda5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bdc565b3060009081526020819052604090205460095481108015908190612006575060115462010000900460ff165b801561201c5750600554600160a01b900460ff16155b801561204157506001600160a01b03851660009081526021602052604090205460ff16155b801561206657506001600160a01b0385166000908152601f602052604090205460ff16155b801561208b57506001600160a01b0384166000908152601f602052604090205460ff16155b156120b9576005805460ff60a01b1916600160a01b1790556120ab6125b2565b6005805460ff60a01b191690555b600554600160a01b900460ff161580156120eb57506001600160a01b03841660009081526021602052604090205460ff165b80156120f95750600c5460ff165b80156121145750600d54600e546121109190612e9b565b4210155b801561213957506001600160a01b0385166000908152601f602052604090205460ff16155b15612148576121466127ec565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061219657506001600160a01b0385166000908152601f602052604090205460ff165b1561219f575060005b60008115612384576001600160a01b03861660009081526021602052604090205460ff1680156121d157506000601854115b15612289576121f060646118b86018548861243e90919063ffffffff16565b9050601854601a54826122039190612eb3565b61220d9190612ed2565b601d600082825461221e9190612e9b565b9091555050601854601b546122339083612eb3565b61223d9190612ed2565b601e600082825461224e9190612e9b565b90915550506018546019546122639083612eb3565b61226d9190612ed2565b601c600082825461227e9190612e9b565b909155506123669050565b6001600160a01b03871660009081526021602052604090205460ff1680156122b357506000601454115b15612366576122d260646118b86014548861243e90919063ffffffff16565b9050601454601654826122e59190612eb3565b6122ef9190612ed2565b601d60008282546123009190612e9b565b90915550506014546017546123159083612eb3565b61231f9190612ed2565b601e60008282546123309190612e9b565b90915550506014546015546123459083612eb3565b61234f9190612ed2565b601c60008282546123609190612e9b565b90915550505b80156123775761237787308361245d565b6123818186612f95565b94505b61238f87878761245d565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600061244a8284612eb3565b9392505050565b600061244a8284612ed2565b6001600160a01b0383166124835760405162461bcd60e51b8152600401610bdc90612f0d565b6001600160a01b0382166124a95760405162461bcd60e51b8152600401610bdc90612f52565b6001600160a01b038316600090815260208190526040902054818110156125215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bdc565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612558908490612e9b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125a491815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546125d99190612e9b565b6125e39190612e9b565b905060008215806125f2575081155b156125fc57505050565b60095461260a906014612eb3565b8311156126225760095461261f906014612eb3565b92505b6000600283601d54866126359190612eb3565b61263f9190612ed2565b6126499190612ed2565b90506000612657858361297c565b90504761266382612988565b600061266f478361297c565b9050600061268c876118b8601c548561243e90919063ffffffff16565b905060006126a9886118b8601e548661243e90919063ffffffff16565b90506000816126b88486612f95565b6126c29190612f95565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461271f576040519150601f19603f3d011682016040523d82523d6000602084013e612724565b606091505b509098505086158015906127385750600081115b1561278b576127478782612b48565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146127d8576040519150601f19603f3d011682016040523d82523d6000602084013e6127dd565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f00000000000000000000000043eefec9bf650f68ef4894f829edc547350fdd19166004820152600090819030906370a0823190602401602060405180830381865afa158015612859573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287d9190612ef4565b9050600061289c6127106118b8600b548561243e90919063ffffffff16565b905080156128d1576128d17f00000000000000000000000043eefec9bf650f68ef4894f829edc547350fdd1961dead8361245d565b60007f00000000000000000000000043eefec9bf650f68ef4894f829edc547350fdd199050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561293157600080fd5b505af1158015612945573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b600061244a8284612f95565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106129bd576129bd612fac565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a5f9190612fc2565b81600181518110612a7257612a72612fac565b60200260200101906001600160a01b031690816001600160a01b031681525050612abd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461199f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612b12908590600090869030904290600401612fdf565b600060405180830381600087803b158015612b2c57600080fd5b505af1158015612b40573d6000803e3d6000fd5b505050505050565b612b73307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461199f565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612bfd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c229190613050565b5050505050565b600060208083528351808285015260005b81811015612c5657858101830151858201604001528201612c3a565b81811115612c68576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461172257600080fd5b60008060408385031215612ca657600080fd5b8235612cb181612c7e565b946020939093013593505050565b600060208284031215612cd157600080fd5b813561244a81612c7e565b600080600060608486031215612cf157600080fd5b8335612cfc81612c7e565b92506020840135612d0c81612c7e565b929592945050506040919091013590565b8035801515811461149557600080fd5b600080600060608486031215612d4257600080fd5b8335925060208401359150612d5960408501612d1d565b90509250925092565b60008060408385031215612d7557600080fd5b8235612d8081612c7e565b9150612d8e60208401612d1d565b90509250929050565b600080600060608486031215612dac57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612dd557600080fd5b5035919050565b60008060408385031215612def57600080fd5b8235612dfa81612c7e565b91506020830135612e0a81612c7e565b809150509250929050565b600181811c90821680612e2957607f821691505b60208210811415612e4a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612eae57612eae612e85565b500190565b6000816000190483118215151615612ecd57612ecd612e85565b500290565b600082612eef57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612f0657600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612fa757612fa7612e85565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612fd457600080fd5b815161244a81612c7e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561302f5784516001600160a01b03168352938301939183019160010161300a565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561306557600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212202f8cec80225beb0b5f837b9c9fb02a57366fd1e4867cd3e017397a800789f7d764736f6c634300080a0033
Deployed Bytecode Sourcemap
29616:19224:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9170:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11337:169;;;;;;;;;;-1:-1:-1;11337:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11337:169:0;1072:187:1;31244:63:0;;;;;;;;;;-1:-1:-1;31244:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29691:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;29691:51:0;1516:230:1;10290:108:0;;;;;;;;;;-1:-1:-1;10378:12:0;;10290:108;;;1897:25:1;;;1885:2;1870:18;10290:108:0;1751:177:1;38170:157:0;;;;;;;;;;-1:-1:-1;38170:157:0;;;;;:::i;:::-;;:::i;:::-;;30256:47;;;;;;;;;;;;;;;;30071:35;;;;;;;;;;;;;;;;31028:33;;;;;;;;;;;;;;;;30988;;;;;;;;;;;;;;;;11988:492;;;;;;;;;;-1:-1:-1;11988:492:0;;;;;:::i;:::-;;:::i;29886:30::-;;;;;;;;;;-1:-1:-1;29886:30:0;;;;-1:-1:-1;;;;;29886:30:0;;;29794:53;;;;;;;;;;;;29840:6;29794:53;;30166:45;;;;;;;;;;;;;;;;30126:33;;;;;;;;;;-1:-1:-1;30126:33:0;;;;;;;;10132:93;;;;;;;;;;-1:-1:-1;10132:93:0;;10215:2;2744:36:1;;2732:2;2717:18;10132:93:0;2602:184:1;12889:215:0;;;;;;;;;;-1:-1:-1;12889:215:0;;;;;:::i;:::-;;:::i;29749:38::-;;;;;;;;;;;;;;;30354:33;;;;;;;;;;-1:-1:-1;30354:33:0;;;;;;;;38335:126;;;;;;;;;;-1:-1:-1;38335:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38425:28:0;38401:4;38425:28;;;:19;:28;;;;;;;;;38335:126;30394:27;;;;;;;;;;-1:-1:-1;30394:27:0;;;;;;;;;;;46419:558;;;;;;;;;;-1:-1:-1;46419:558:0;;;;;:::i;:::-;;:::i;30843:28::-;;;;;;;;;;;;;;;;10461:127;;;;;;;;;;-1:-1:-1;10461:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10562:18:0;10535:7;10562:18;;;;;;;;;;;;10461:127;2405:103;;;;;;;;;;;;;:::i;36086:133::-;;;;;;;;;;;;;:::i;36227:167::-;;;;;;;;;;-1:-1:-1;36227:167:0;;;;;:::i;:::-;;:::i;30736:30::-;;;;;;;;;;;;;;;;36402:403;;;;;;;;;;-1:-1:-1;36402:403:0;;;;;:::i;:::-;;:::i;2097:87::-;;;;;;;;;;-1:-1:-1;2170:6:0;;-1:-1:-1;;;;;2170:6:0;2097:87;;29923:24;;;;;;;;;;-1:-1:-1;29923:24:0;;;;-1:-1:-1;;;;;29923:24:0;;;30878:31;;;;;;;;;;;;;;;;9389:104;;;;;;;;;;;;;:::i;30428:38::-;;;;;;;;;;-1:-1:-1;30428:38:0;;;;;;;;;;;37423:304;;;;;;;;;;-1:-1:-1;37423:304:0;;;;;:::i;:::-;;:::i;30810:24::-;;;;;;;;;;;;;;;;30310:35;;;;;;;;;;;;;;;;31068:27;;;;;;;;;;;;;;;;30954:25;;;;;;;;;;;;;;;;13607:413;;;;;;;;;;-1:-1:-1;13607:413:0;;;;;:::i;:::-;;:::i;30218:29::-;;;;;;;;;;;;;;;;10801:175;;;;;;;;;;-1:-1:-1;10801:175:0;;;;;:::i;:::-;;:::i;37931:231::-;;;;;;;;;;-1:-1:-1;37931:231:0;;;;;:::i;:::-;;:::i;31465:57::-;;;;;;;;;;-1:-1:-1;31465:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37233:182;;;;;;;;;;-1:-1:-1;37233:182:0;;;;;:::i;:::-;;:::i;36813:412::-;;;;;;;;;;-1:-1:-1;36813:412:0;;;;;:::i;:::-;;:::i;30653:40::-;;;;;;;;;;-1:-1:-1;30653:40:0;;;;;;;;29956:35;;;;;;;;;;;;;;;;34621:154;;;;;;;;;;;;;:::i;35041:496::-;;;;;;;;;;-1:-1:-1;35041:496:0;;;;;:::i;:::-;;:::i;30702:27::-;;;;;;;;;;;;;;;;35545:272;;;;;;;;;;-1:-1:-1;35545:272:0;;;;;:::i;:::-;;:::i;11039:151::-;;;;;;;;;;-1:-1:-1;11039:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11155:18:0;;;11128:7;11155:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11039:151;29998:33;;;;;;;;;;;;;;;;34836:135;;;;;;;;;;;;;:::i;35825:253::-;;;;;;;;;;-1:-1:-1;35825:253:0;;;;;:::i;:::-;;:::i;30773:30::-;;;;;;;;;;;;;;;;2663:201;;;;;;;;;;-1:-1:-1;2663:201:0;;;;;:::i;:::-;;:::i;30916:31::-;;;;;;;;;;;;;;;;30038:24;;;;;;;;;;;;;;;;47781:1056;;;;;;;;;;-1:-1:-1;47781:1056:0;;;;;:::i;:::-;;:::i;9170:100::-;9224:13;9257:5;9250:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9170:100;:::o;11337:169::-;11420:4;11437:39;888:10;11460:7;11469:6;11437:8;:39::i;:::-;-1:-1:-1;11494:4:0;11337:169;;;;:::o;38170:157::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;;;;;;;;;38277:9:::1;::::0;38249:38:::1;::::0;-1:-1:-1;;;;;38277:9:0;;::::1;::::0;38249:38;::::1;::::0;::::1;::::0;38277:9:::1;::::0;38249:38:::1;38298:9;:21:::0;;-1:-1:-1;;;;;;38298:21:0::1;-1:-1:-1::0;;;;;38298:21:0;;;::::1;::::0;;;::::1;::::0;;38170:157::o;11988:492::-;12128:4;12145:36;12155:6;12163:9;12174:6;12145:9;:36::i;:::-;-1:-1:-1;;;;;12221:19:0;;12194:24;12221:19;;;:11;:19;;;;;;;;888:10;12221:33;;;;;;;;12273:26;;;;12265:79;;;;-1:-1:-1;;;12265:79:0;;5444:2:1;12265:79:0;;;5426:21:1;5483:2;5463:18;;;5456:30;5522:34;5502:18;;;5495:62;-1:-1:-1;;;5573:18:1;;;5566:38;5621:19;;12265:79:0;5242:404:1;12265:79:0;12380:57;12389:6;888:10;12430:6;12411:16;:25;12380:8;:57::i;:::-;-1:-1:-1;12468:4:0;;11988:492;-1:-1:-1;;;;11988:492:0:o;12889:215::-;888:10;12977:4;13026:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13026:34:0;;;;;;;;;;12977:4;;12994:80;;13017:7;;13026:47;;13063:10;;13026:47;:::i;:::-;12994:8;:80::i;46419:558::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;46624:3:::1;46601:19;:26;;46579:127;;;::::0;-1:-1:-1;;;46579:127:0;;6118:2:1;46579:127:0::1;::::0;::::1;6100:21:1::0;6157:2;6137:18;;;6130:30;6196:34;6176:18;;;6169:62;-1:-1:-1;;;6247:18:1;;;6240:49;6306:19;;46579:127:0::1;5916:415:1::0;46579:127:0::1;46751:4;46739:8;:16;;:33;;;;-1:-1:-1::0;46759:13:0;46739:33:::1;46717:131;;;::::0;-1:-1:-1;;;46717:131:0;;6538:2:1;46717:131:0::1;::::0;::::1;6520:21:1::0;6577:2;6557:18;;;6550:30;6616:34;6596:18;;;6589:62;-1:-1:-1;;;6667:18:1;;;6660:46;6723:19;;46717:131:0::1;6336:412:1::0;46717:131:0::1;46859:15;:37:::0;;;;46907:16:::1;:27:::0;46945:13:::1;:24:::0;;-1:-1:-1;;46945:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46419:558::o;2405:103::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;2470:30:::1;2497:1;2470:18;:30::i;:::-;2405:103::o:0;36086:133::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;10378:12;;36139:20:::1;:36:::0;10378:12;;36186:9:::1;:25:::0;36086:133::o;36227:167::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36340:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;36340:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36227:167::o;36402:403::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;36552:15:::1;:31:::0;;;36594:15:::1;:31:::0;;;36636:9:::1;:19:::0;;;36648:7;36681:33:::1;36612:13:::0;36570;36681:33:::1;:::i;:::-;:45;;;;:::i;:::-;36666:12;:60:::0;;;36761:2:::1;-1:-1:-1::0;36745:18:0::1;36737:60;;;::::0;-1:-1:-1;;;36737:60:0;;6955:2:1;36737:60:0::1;::::0;::::1;6937:21:1::0;6994:2;6974:18;;;6967:30;7033:31;7013:18;;;7006:59;7082:18;;36737:60:0::1;6753:353:1::0;36737:60:0::1;36402:403:::0;;;:::o;9389:104::-;9445:13;9478:7;9471:14;;;;;:::i;37423:304::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;37567:13:::1;-1:-1:-1::0;;;;;37559:21:0::1;:4;-1:-1:-1::0;;;;;37559:21:0::1;;;37537:128;;;::::0;-1:-1:-1;;;37537:128:0;;7313:2:1;37537:128:0::1;::::0;::::1;7295:21:1::0;7352:2;7332:18;;;7325:30;7391:34;7371:18;;;7364:62;7462:27;7442:18;;;7435:55;7507:19;;37537:128:0::1;7111:421:1::0;37537:128:0::1;37678:41;37707:4;37713:5;37678:28;:41::i;:::-;37423:304:::0;;:::o;13607:413::-;888:10;13700:4;13744:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13744:34:0;;;;;;;;;;13797:35;;;;13789:85;;;;-1:-1:-1;;;13789:85:0;;7739:2:1;13789:85:0;;;7721:21:1;7778:2;7758:18;;;7751:30;7817:34;7797:18;;;7790:62;-1:-1:-1;;;7868:18:1;;;7861:35;7913:19;;13789:85:0;7537:401:1;13789:85:0;13910:67;888:10;13933:7;13961:15;13942:16;:34;13910:8;:67::i;:::-;-1:-1:-1;14008:4:0;;13607:413;-1:-1:-1;;;13607:413:0:o;10801:175::-;10887:4;10904:42;888:10;10928:9;10939:6;10904:9;:42::i;37931:231::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;38091:15:::1;::::0;38048:59:::1;::::0;-1:-1:-1;;;;;38091:15:0;;::::1;::::0;38048:59;::::1;::::0;::::1;::::0;38091:15:::1;::::0;38048:59:::1;38118:15;:36:::0;;-1:-1:-1;;;;;;38118:36:0::1;-1:-1:-1::0;;;;;38118:36:0;;;::::1;::::0;;;::::1;::::0;;37931:231::o;37233:182::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37318:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37318:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37373:34;;1212:41:1;;;37373:34:0::1;::::0;1185:18:1;37373:34:0::1;;;;;;;37233:182:::0;;:::o;36813:412::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;36964:16:::1;:32:::0;;;37007:16:::1;:32:::0;;;37050:10:::1;:20:::0;;;37063:7;37097:35:::1;37026:13:::0;36983;37097:35:::1;:::i;:::-;:48;;;;:::i;:::-;37081:13;:64:::0;;;37181:2:::1;-1:-1:-1::0;37164:19:0::1;37156:61;;;::::0;-1:-1:-1;;;37156:61:0;;8145:2:1;37156:61:0::1;::::0;::::1;8127:21:1::0;8184:2;8164:18;;;8157:30;8223:31;8203:18;;;8196:59;8272:18;;37156:61:0::1;7943:353:1::0;34621:154:0;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;34674:18:::1;:25:::0;;-1:-1:-1;;34710:14:0;;;;;34752:15:::1;34735:14;:32:::0;34621:154::o;35041:496::-;2170:6;;35149:4;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;35228:5:::1;35207:13;10378:12:::0;;;10290:108;35207:13:::1;:17;::::0;35223:1:::1;35207:17;:::i;:::-;35206:27;;;;:::i;:::-;35193:9;:40;;35171:143;;;::::0;-1:-1:-1;;;35171:143:0;;8898:2:1;35171:143:0::1;::::0;::::1;8880:21:1::0;8937:2;8917:18;;;8910:30;8976:34;8956:18;;;8949:62;-1:-1:-1;;;9027:18:1;;;9020:51;9088:19;;35171:143:0::1;8696:417:1::0;35171:143:0::1;35382:4;35361:13;10378:12:::0;;;10290:108;35361:13:::1;:17;::::0;35377:1:::1;35361:17;:::i;:::-;35360:26;;;;:::i;:::-;35347:9;:39;;35325:141;;;::::0;-1:-1:-1;;;35325:141:0;;9320:2:1;35325:141:0::1;::::0;::::1;9302:21:1::0;9359:2;9339:18;;;9332:30;9398:34;9378:18;;;9371:62;-1:-1:-1;;;9449:18:1;;;9442:50;9509:19;;35325:141:0::1;9118:416:1::0;35325:141:0::1;-1:-1:-1::0;35477:18:0::1;:30:::0;;;35525:4:::1;2388:1;35041:496:::0;;;:::o;35545:272::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;35676:4:::1;35668;35647:13;10378:12:::0;;;10290:108;35647:13:::1;:17;::::0;35663:1:::1;35647:17;:::i;:::-;35646:26;;;;:::i;:::-;35645:35;;;;:::i;:::-;35635:6;:45;;35613:145;;;::::0;-1:-1:-1;;;35613:145:0;;9741:2:1;35613:145:0::1;::::0;::::1;9723:21:1::0;9780:2;9760:18;;;9753:30;9819:34;9799:18;;;9792:62;-1:-1:-1;;;9870:18:1;;;9863:48;9928:19;;35613:145:0::1;9539:414:1::0;35613:145:0::1;35792:17;:6:::0;35802::::1;35792:17;:::i;:::-;35769:20;:40:::0;-1:-1:-1;35545:272:0:o;34836:135::-;2170:6;;34896:4;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;-1:-1:-1;34913:20:0::1;:28:::0;;-1:-1:-1;;34913:28:0::1;::::0;;;34836:135;:::o;35825:253::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;35961:4:::1;35953;35931:13;10378:12:::0;;;10290:108;35931:13:::1;:18;::::0;35947:2:::1;35931:18;:::i;:::-;35930:27;;;;:::i;:::-;35929:36;;;;:::i;:::-;35919:6;:46;;35897:133;;;::::0;-1:-1:-1;;;35897:133:0;;10160:2:1;35897:133:0::1;::::0;::::1;10142:21:1::0;10199:2;10179:18;;;10172:30;10238:34;10218:18;;;10211:62;-1:-1:-1;;;10289:18:1;;;10282:35;10334:19;;35897:133:0::1;9958:401:1::0;35897:133:0::1;36053:17;:6:::0;36063::::1;36053:17;:::i;:::-;36041:9;:29:::0;-1:-1:-1;35825:253:0:o;2663:201::-;2170:6;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2752:22:0;::::1;2744:73;;;::::0;-1:-1:-1;;;2744:73:0;;10566:2:1;2744:73:0::1;::::0;::::1;10548:21:1::0;10605:2;10585:18;;;10578:30;10644:34;10624:18;;;10617:62;-1:-1:-1;;;10695:18:1;;;10688:36;10741:19;;2744:73:0::1;10364:402:1::0;2744:73:0::1;2828:28;2847:8;2828:18;:28::i;:::-;2663:201:::0;:::o;47781:1056::-;2170:6;;47892:4;;-1:-1:-1;;;;;2170:6:0;888:10;2317:23;2309:68;;;;-1:-1:-1;;;2309:68:0;;;;;;;:::i;:::-;47977:19:::1;;47954:20;;:42;;;;:::i;:::-;47936:15;:60;47914:142;;;::::0;-1:-1:-1;;;47914:142:0;;10973:2:1;47914:142:0::1;::::0;::::1;10955:21:1::0;;;10992:18;;;10985:30;11051:34;11031:18;;;11024:62;11103:18;;47914:142:0::1;10771:356:1::0;47914:142:0::1;48086:4;48075:7;:15;;48067:70;;;::::0;-1:-1:-1;;;48067:70:0;;11334:2:1;48067:70:0::1;::::0;::::1;11316:21:1::0;11373:2;11353:18;;;11346:30;11412:34;11392:18;;;11385:62;-1:-1:-1;;;11463:18:1;;;11456:40;11513:19;;48067:70:0::1;11132:406:1::0;48067:70:0::1;48171:15;48148:20;:38:::0;48272:29:::1;::::0;-1:-1:-1;;;48272:29:0;;-1:-1:-1;;;;;48287:13:0::1;1707:32:1::0;48272:29:0::1;::::0;::::1;1689:51:1::0;48241:28:0::1;::::0;48272:4:::1;::::0;:14:::1;::::0;1662:18:1;;48272:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48241:60:::0;-1:-1:-1;48351:20:0::1;48374:44;48412:5;48374:33;48241:60:::0;48399:7;48374:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;48351:67:::0;-1:-1:-1;48523:16:0;;48519:110:::1;;48556:61;48572:13;48595:6;48604:12;48556:15;:61::i;:::-;48704:19;48741:13;48704:51;;48766:4;-1:-1:-1::0;;;;;48766:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48793:14:0::1;::::0;::::1;::::0;-1:-1:-1;48793:14:0;;-1:-1:-1;48793:14:0::1;-1:-1:-1::0;48825:4:0::1;::::0;47781:1056;-1:-1:-1;;;;47781:1056:0:o;17332:380::-;-1:-1:-1;;;;;17468:19:0;;17460:68;;;;-1:-1:-1;;;17460:68:0;;11934:2:1;17460:68:0;;;11916:21:1;11973:2;11953:18;;;11946:30;12012:34;11992:18;;;11985:62;-1:-1:-1;;;12063:18:1;;;12056:34;12107:19;;17460:68:0;11732:400:1;17460:68:0;-1:-1:-1;;;;;17547:21:0;;17539:68;;;;-1:-1:-1;;;17539:68:0;;12339:2:1;17539:68:0;;;12321:21:1;12378:2;12358:18;;;12351:30;12417:34;12397:18;;;12390:62;-1:-1:-1;;;12468:18:1;;;12461:32;12510:19;;17539:68:0;12137:398:1;17539:68:0;-1:-1:-1;;;;;17620:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17672:32;;1897:25:1;;;17672:32:0;;1870:18:1;17672:32:0;;;;;;;17332:380;;;:::o;38513:5012::-;-1:-1:-1;;;;;38645:18:0;;38637:68;;;;-1:-1:-1;;;38637:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38724:16:0;;38716:64;;;;-1:-1:-1;;;38716:64:0;;;;;;;:::i;:::-;38797:11;38793:93;;38825:28;38841:4;38847:2;38851:1;38825:15;:28::i;38793:93::-;38902:14;;;;38898:2481;;;2170:6;;-1:-1:-1;;;;;38955:15:0;;;2170:6;;38955:15;;;;:49;;-1:-1:-1;2170:6:0;;-1:-1:-1;;;;;38991:13:0;;;2170:6;;38991:13;;38955:49;:86;;;;-1:-1:-1;;;;;;39025:16:0;;;;38955:86;:128;;;;-1:-1:-1;;;;;;39062:21:0;;39076:6;39062:21;;38955:128;:158;;;;-1:-1:-1;39105:8:0;;-1:-1:-1;;;39105:8:0;;;;39104:9;38955:158;38933:2435;;;39153:7;;;;;;;39148:217;;-1:-1:-1;;;;;39219:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39248:23:0;;;;;;:19;:23;;;;;;;;39219:52;39185:160;;;;-1:-1:-1;;;39185:160:0;;13552:2:1;39185:160:0;;;13534:21:1;13591:2;13571:18;;;13564:30;-1:-1:-1;;;13610:18:1;;;13603:52;13672:18;;39185:160:0;13350:346:1;39185:160:0;39521:20;;;;39517:641;;;2170:6;;-1:-1:-1;;;;;39596:13:0;;;2170:6;;39596:13;;;;:72;;;39652:15;-1:-1:-1;;;;;39638:30:0;:2;-1:-1:-1;;;;;39638:30:0;;;39596:72;:129;;;;;39711:13;-1:-1:-1;;;;;39697:28:0;:2;-1:-1:-1;;;;;39697:28:0;;;39596:129;39566:573;;;39843:9;39814:39;;;;:28;:39;;;;;;39889:12;-1:-1:-1;39776:258:0;;;;-1:-1:-1;;;39776:258:0;;13903:2:1;39776:258:0;;;13885:21:1;13942:2;13922:18;;;13915:30;13981:34;13961:18;;;13954:62;14052:34;14032:18;;;14025:62;-1:-1:-1;;;14103:19:1;;;14096:40;14153:19;;39776:258:0;13701:477:1;39776:258:0;40090:9;40061:39;;;;:28;:39;;;;;40103:12;40061:54;;39566:573;-1:-1:-1;;;;;40232:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40289:35:0;;;;;;:31;:35;;;;;;;;40288:36;40232:92;40206:1147;;;40411:20;;40401:6;:30;;40367:169;;;;-1:-1:-1;;;40367:169:0;;14385:2:1;40367:169:0;;;14367:21:1;14424:2;14404:18;;;14397:30;14463:34;14443:18;;;14436:62;-1:-1:-1;;;14514:18:1;;;14507:51;14575:19;;40367:169:0;14183:417:1;40367:169:0;40619:9;;-1:-1:-1;;;;;10562:18:0;;10535:7;10562:18;;;;;;;;;;;40593:22;;:6;:22;:::i;:::-;:35;;40559:140;;;;-1:-1:-1;;;40559:140:0;;14807:2:1;40559:140:0;;;14789:21:1;14846:2;14826:18;;;14819:30;-1:-1:-1;;;14865:18:1;;;14858:49;14924:18;;40559:140:0;14605:343:1;40559:140:0;40206:1147;;;-1:-1:-1;;;;;40797:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40852:37:0;;;;;;:31;:37;;;;;;;;40851:38;40797:92;40771:582;;;40976:20;;40966:6;:30;;40932:170;;;;-1:-1:-1;;;40932:170:0;;15155:2:1;40932:170:0;;;15137:21:1;15194:2;15174:18;;;15167:30;15233:34;15213:18;;;15206:62;-1:-1:-1;;;15284:18:1;;;15277:52;15346:19;;40932:170:0;14953:418:1;40771:582:0;-1:-1:-1;;;;;41133:35:0;;;;;;:31;:35;;;;;;;;41128:225;;41253:9;;-1:-1:-1;;;;;10562:18:0;;10535:7;10562:18;;;;;;;;;;;41227:22;;:6;:22;:::i;:::-;:35;;41193:140;;;;-1:-1:-1;;;41193:140:0;;14807:2:1;41193:140:0;;;14789:21:1;14846:2;14826:18;;;14819:30;-1:-1:-1;;;14865:18:1;;;14858:49;14924:18;;41193:140:0;14605:343:1;41193:140:0;41440:4;41391:28;10562:18;;;;;;;;;;;41498;;41474:42;;;;;;;41547;;-1:-1:-1;41571:18:0;;;;;;;41547:42;:68;;;;-1:-1:-1;41607:8:0;;-1:-1:-1;;;41607:8:0;;;;41606:9;41547:68;:117;;;;-1:-1:-1;;;;;;41633:31:0;;;;;;:25;:31;;;;;;;;41632:32;41547:117;:160;;;;-1:-1:-1;;;;;;41682:25:0;;;;;;:19;:25;;;;;;;;41681:26;41547:160;:201;;;;-1:-1:-1;;;;;;41725:23:0;;;;;;:19;:23;;;;;;;;41724:24;41547:201;41529:333;;;41775:8;:15;;-1:-1:-1;;;;41775:15:0;-1:-1:-1;;;41775:15:0;;;41807:10;:8;:10::i;:::-;41834:8;:16;;-1:-1:-1;;;;41834:16:0;;;41529:333;41893:8;;-1:-1:-1;;;41893:8:0;;;;41892:9;:55;;;;-1:-1:-1;;;;;;41918:29:0;;;;;;:25;:29;;;;;;;;41892:55;:85;;;;-1:-1:-1;41964:13:0;;;;41892:85;:153;;;;;42030:15;;42013:14;;:32;;;;:::i;:::-;41994:15;:51;;41892:153;:196;;;;-1:-1:-1;;;;;;42063:25:0;;;;;;:19;:25;;;;;;;;42062:26;41892:196;41874:282;;;42115:29;:27;:29::i;:::-;;41874:282;42184:8;;-1:-1:-1;;;;;42294:25:0;;42168:12;42294:25;;;:19;:25;;;;;;42184:8;-1:-1:-1;;;42184:8:0;;;;;42183:9;;42294:25;;:52;;-1:-1:-1;;;;;;42323:23:0;;;;;;:19;:23;;;;;;;;42294:52;42290:100;;;-1:-1:-1;42373:5:0;42290:100;42402:12;42507:7;42503:969;;;-1:-1:-1;;;;;42559:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42608:1;42592:13;;:17;42559:50;42555:768;;;42637:34;42667:3;42637:25;42648:13;;42637:6;:10;;:25;;;;:::i;:34::-;42630:41;;42740:13;;42720:16;;42713:4;:23;;;;:::i;:::-;42712:41;;;;:::i;:::-;42690:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42810:13:0;;42796:10;;42789:17;;:4;:17;:::i;:::-;42788:35;;;;:::i;:::-;42772:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;42892:13:0;;42872:16;;42865:23;;:4;:23;:::i;:::-;42864:41;;;;:::i;:::-;42842:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;42555:768:0;;-1:-1:-1;42555:768:0;;-1:-1:-1;;;;;42967:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43017:1;43002:12;;:16;42967:51;42963:360;;;43046:33;43075:3;43046:24;43057:12;;43046:6;:10;;:24;;;;:::i;:33::-;43039:40;;43147:12;;43128:15;;43121:4;:22;;;;:::i;:::-;43120:39;;;;:::i;:::-;43098:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43215:12:0;;43202:9;;43195:16;;:4;:16;:::i;:::-;43194:33;;;;:::i;:::-;43178:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43295:12:0;;43276:15;;43269:22;;:4;:22;:::i;:::-;43268:39;;;;:::i;:::-;43246:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42963:360:0;43343:8;;43339:91;;43372:42;43388:4;43402;43409;43372:15;:42::i;:::-;43446:14;43456:4;43446:14;;:::i;:::-;;;42503:969;43484:33;43500:4;43506:2;43510:6;43484:15;:33::i;:::-;38626:4899;;;;38513:5012;;;:::o;3024:191::-;3117:6;;;-1:-1:-1;;;;;3134:17:0;;;-1:-1:-1;;;;;;3134:17:0;;;;;;;3167:40;;3117:6;;;3134:17;3117:6;;3167:40;;3098:16;;3167:40;3087:128;3024:191;:::o;37735:188::-;-1:-1:-1;;;;;37818:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37818:39:0;;;;;;;;;;37875:40;;37818:39;;:31;37875:40;;;37735:188;;:::o;22785:98::-;22843:7;22870:5;22874:1;22870;:5;:::i;:::-;22863:12;22785:98;-1:-1:-1;;;22785:98:0:o;23184:::-;23242:7;23269:5;23273:1;23269;:5;:::i;14510:733::-;-1:-1:-1;;;;;14650:20:0;;14642:70;;;;-1:-1:-1;;;14642:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14731:23:0;;14723:71;;;;-1:-1:-1;;;14723:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14891:17:0;;14867:21;14891:17;;;;;;;;;;;14927:23;;;;14919:74;;;;-1:-1:-1;;;14919:74:0;;15708:2:1;14919:74:0;;;15690:21:1;15747:2;15727:18;;;15720:30;15786:34;15766:18;;;15759:62;-1:-1:-1;;;15837:18:1;;;15830:36;15883:19;;14919:74:0;15506:402:1;14919:74:0;-1:-1:-1;;;;;15029:17:0;;;:9;:17;;;;;;;;;;;15049:22;;;15029:42;;15093:20;;;;;;;;:30;;15065:6;;15029:9;15093:30;;15065:6;;15093:30;:::i;:::-;;;;;;;;15158:9;-1:-1:-1;;;;;15141:35:0;15150:6;-1:-1:-1;;;;;15141:35:0;;15169:6;15141:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15141:35:0;;;;;;;;14631:612;14510:733;;;:::o;44655:1756::-;44738:4;44694:23;10562:18;;;;;;;;;;;44694:50;;44755:25;44851:12;;44817:18;;44783;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;44755:108;-1:-1:-1;44874:12:0;44903:20;;;:46;;-1:-1:-1;44927:22:0;;44903:46;44899:85;;;44966:7;;;44655:1756::o;44899:85::-;45018:18;;:23;;45039:2;45018:23;:::i;:::-;45000:15;:41;44996:115;;;45076:18;;:23;;45097:2;45076:23;:::i;:::-;45058:41;;44996:115;45172:23;45285:1;45252:17;45217:18;;45199:15;:36;;;;:::i;:::-;45198:71;;;;:::i;:::-;:88;;;;:::i;:::-;45172:114;-1:-1:-1;45297:26:0;45326:36;:15;45172:114;45326:19;:36::i;:::-;45297:65;-1:-1:-1;45403:21:0;45437:36;45297:65;45437:16;:36::i;:::-;45486:18;45507:44;:21;45533:17;45507:25;:44::i;:::-;45486:65;;45564:23;45590:81;45643:17;45590:34;45605:18;;45590:10;:14;;:34;;;;:::i;:81::-;45564:107;;45682:17;45702:51;45735:17;45702:28;45717:12;;45702:10;:14;;:28;;;;:::i;:51::-;45682:71;-1:-1:-1;45766:23:0;45682:71;45792:28;45805:15;45792:10;:28;:::i;:::-;:40;;;;:::i;:::-;45866:1;45845:18;:22;;;45878:18;:22;;;45911:12;:16;;;45962:9;;45954:45;;45766:66;;-1:-1:-1;;;;;;45962:9:0;;45985;;45954:45;45866:1;45954:45;45985:9;45962;45954:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45940:59:0;;-1:-1:-1;;46016:19:0;;;;;:42;;;46057:1;46039:15;:19;46016:42;46012:278;;;46075:46;46088:15;46105;46075:12;:46::i;:::-;46245:18;;46141:137;;;16325:25:1;;;16381:2;16366:18;;16359:34;;;16409:18;;;16402:34;;;;46141:137:0;;;;;;16313:2:1;46141:137:0;;;46012:278;46324:15;;46316:87;;-1:-1:-1;;;;;46324:15:0;;;;46367:21;;46316:87;;;;46367:21;46324:15;46316:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;44655:1756:0:o;46985:788::-;47076:15;47059:14;:32;47177:29;;-1:-1:-1;;;47177:29:0;;-1:-1:-1;;;;;47192:13:0;1707:32:1;47177:29:0;;;1689:51:1;47042:4:0;;;;47177;;:14;;1662:18:1;;47177:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47146:60;;47256:20;47279:77;47340:5;47279:42;47304:16;;47279:20;:24;;:42;;;;:::i;:77::-;47256:100;-1:-1:-1;47461:16:0;;47457:110;;47494:61;47510:13;47533:6;47542:12;47494:15;:61::i;:::-;47642:19;47679:13;47642:51;;47704:4;-1:-1:-1;;;;;47704:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47731:12:0;;;;-1:-1:-1;47731:12:0;;-1:-1:-1;47731:12:0;47761:4;47754:11;;;;;46985:788;:::o;22428:98::-;22486:7;22513:5;22517:1;22513;:5;:::i;43533:589::-;43683:16;;;43697:1;43683:16;;;;;;;;43659:21;;43683:16;;;;;;;;;;-1:-1:-1;43683:16:0;43659:40;;43728:4;43710;43715:1;43710:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43710:23:0;;;-1:-1:-1;;;;;43710:23:0;;;;;43754:15;-1:-1:-1;;;;;43754:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43744:4;43749:1;43744:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43744:32:0;;;-1:-1:-1;;;;;43744:32:0;;;;;43789:62;43806:4;43821:15;43839:11;43789:8;:62::i;:::-;43890:224;;-1:-1:-1;;;43890:224:0;;-1:-1:-1;;;;;43890:15:0;:66;;;;:224;;43971:11;;43997:1;;44041:4;;44068;;44088:15;;43890:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43588:534;43533:589;:::o;44130:517::-;44278:62;44295:4;44310:15;44328:11;44278:8;:62::i;:::-;44383:256;;-1:-1:-1;;;44383:256:0;;44455:4;44383:256;;;18293:34:1;18343:18;;;18336:34;;;44501:1:0;18386:18:1;;;18379:34;;;18429:18;;;18422:34;29840:6:0;18472:19:1;;;18465:44;44613:15:0;18525:19:1;;;18518:35;44383:15:0;-1:-1:-1;;;;;44383:31:0;;;;44422:9;;18227:19:1;;44383:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44130:517;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2791:160::-;2856:20;;2912:13;;2905:21;2895:32;;2885:60;;2941:1;2938;2931:12;2956:316;3030:6;3038;3046;3099:2;3087:9;3078:7;3074:23;3070:32;3067:52;;;3115:1;3112;3105:12;3067:52;3151:9;3138:23;3128:33;;3208:2;3197:9;3193:18;3180:32;3170:42;;3231:35;3262:2;3251:9;3247:18;3231:35;:::i;:::-;3221:45;;2956:316;;;;;:::o;3277:315::-;3342:6;3350;3403:2;3391:9;3382:7;3378:23;3374:32;3371:52;;;3419:1;3416;3409:12;3371:52;3458:9;3445:23;3477:31;3502:5;3477:31;:::i;:::-;3527:5;-1:-1:-1;3551:35:1;3582:2;3567:18;;3551:35;:::i;:::-;3541:45;;3277:315;;;;;:::o;3597:316::-;3674:6;3682;3690;3743:2;3731:9;3722:7;3718:23;3714:32;3711:52;;;3759:1;3756;3749:12;3711:52;-1:-1:-1;;3782:23:1;;;3852:2;3837:18;;3824:32;;-1:-1:-1;3903:2:1;3888:18;;;3875:32;;3597:316;-1:-1:-1;3597:316:1:o;3918:180::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;-1:-1:-1;4069:23:1;;3918:180;-1:-1:-1;3918:180:1:o;4103:388::-;4171:6;4179;4232:2;4220:9;4211:7;4207:23;4203:32;4200:52;;;4248:1;4245;4238:12;4200:52;4287:9;4274:23;4306:31;4331:5;4306:31;:::i;:::-;4356:5;-1:-1:-1;4413:2:1;4398:18;;4385:32;4426:33;4385:32;4426:33;:::i;:::-;4478:7;4468:17;;;4103:388;;;;;:::o;4496:380::-;4575:1;4571:12;;;;4618;;;4639:61;;4693:4;4685:6;4681:17;4671:27;;4639:61;4746:2;4738:6;4735:14;4715:18;4712:38;4709:161;;;4792:10;4787:3;4783:20;4780:1;4773:31;4827:4;4824:1;4817:15;4855:4;4852:1;4845:15;4709:161;;4496:380;;;:::o;4881:356::-;5083:2;5065:21;;;5102:18;;;5095:30;5161:34;5156:2;5141:18;;5134:62;5228:2;5213:18;;4881:356::o;5651:127::-;5712:10;5707:3;5703:20;5700:1;5693:31;5743:4;5740:1;5733:15;5767:4;5764:1;5757:15;5783:128;5823:3;5854:1;5850:6;5847:1;5844:13;5841:39;;;5860:18;;:::i;:::-;-1:-1:-1;5896:9:1;;5783:128::o;8301:168::-;8341:7;8407:1;8403;8399:6;8395:14;8392:1;8389:21;8384:1;8377:9;8370:17;8366:45;8363:71;;;8414:18;;:::i;:::-;-1:-1:-1;8454:9:1;;8301:168::o;8474:217::-;8514:1;8540;8530:132;;8584:10;8579:3;8575:20;8572:1;8565:31;8619:4;8616:1;8609:15;8647:4;8644:1;8637:15;8530:132;-1:-1:-1;8676:9:1;;8474:217::o;11543:184::-;11613:6;11666:2;11654:9;11645:7;11641:23;11637:32;11634:52;;;11682:1;11679;11672:12;11634:52;-1:-1:-1;11705:16:1;;11543:184;-1:-1:-1;11543:184:1:o;12540:401::-;12742:2;12724:21;;;12781:2;12761:18;;;12754:30;12820:34;12815:2;12800:18;;12793:62;-1:-1:-1;;;12886:2:1;12871:18;;12864:35;12931:3;12916:19;;12540:401::o;12946:399::-;13148:2;13130:21;;;13187:2;13167:18;;;13160:30;13226:34;13221:2;13206:18;;13199:62;-1:-1:-1;;;13292:2:1;13277:18;;13270:33;13335:3;13320:19;;12946:399::o;15376:125::-;15416:4;15444:1;15441;15438:8;15435:34;;;15449:18;;:::i;:::-;-1:-1:-1;15486:9:1;;15376:125::o;16579:127::-;16640:10;16635:3;16631:20;16628:1;16621:31;16671:4;16668:1;16661:15;16695:4;16692:1;16685:15;16711:251;16781:6;16834:2;16822:9;16813:7;16809:23;16805:32;16802:52;;;16850:1;16847;16840:12;16802:52;16882:9;16876:16;16901:31;16926:5;16901:31;:::i;16967:980::-;17229:4;17277:3;17266:9;17262:19;17308:6;17297:9;17290:25;17334:2;17372:6;17367:2;17356:9;17352:18;17345:34;17415:3;17410:2;17399:9;17395:18;17388:31;17439:6;17474;17468:13;17505:6;17497;17490:22;17543:3;17532:9;17528:19;17521:26;;17582:2;17574:6;17570:15;17556:29;;17603:1;17613:195;17627:6;17624:1;17621:13;17613:195;;;17692:13;;-1:-1:-1;;;;;17688:39:1;17676:52;;17783:15;;;;17748:12;;;;17724:1;17642:9;17613:195;;;-1:-1:-1;;;;;;;17864:32:1;;;;17859:2;17844:18;;17837:60;-1:-1:-1;;;17928:3:1;17913:19;17906:35;17825:3;16967:980;-1:-1:-1;;;16967:980:1:o;18564:306::-;18652:6;18660;18668;18721:2;18709:9;18700:7;18696:23;18692:32;18689:52;;;18737:1;18734;18727:12;18689:52;18766:9;18760:16;18750:26;;18816:2;18805:9;18801:18;18795:25;18785:35;;18860:2;18849:9;18845:18;18839:25;18829:35;;18564:306;;;;;:::o
Swarm Source
ipfs://2f8cec80225beb0b5f837b9c9fb02a57366fd1e4867cd3e017397a800789f7d7
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.