ERC-20
Overview
Max Total Supply
100,000,000 POWERBULL
Holders
1,126
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
5,000.050829722764983331 POWERBULLValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Powerbull
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-26 */ // SPDX-License-Identifier: MIT /* _____ ______ ________ _____ ____ _ _ _ _ | __ \ / __ \ \ / / ____| __ \| _ \| | | | | | | | |__) | | | \ \ /\ / /| |__ | |__) | |_) | | | | | | | | ___/| | | |\ \/ \/ / | __| | _ /| _ <| | | | | | | | | | |__| | \ /\ / | |____| | \ \| |_) | |__| | |____| |____ |_| \____/ \/ \/ |______|_| \_\____/ \____/|______|______| The first ever memecoin lottery. Winners drawn every hour! Website: https://powerbull.io Telegram: https://t.me/powerbulltoken Twitter: https://twitter.com/powerbulltoken */ pragma solidity 0.8.20; pragma experimental ABIEncoderV2; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } 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; } 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 Powerbull 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 lotteryWallet; address public teamWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public blacklistRenounced = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 public buyLotteryFee; uint256 public buyLiquidityFee; uint256 public buyTeamFee; uint256 public sellTotalFees; uint256 public sellLotteryFee; uint256 public sellLiquidityFee; uint256 public sellTeamFee; uint256 public tokensForLottery; uint256 public tokensForLiquidity; uint256 public tokensForTeam; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event lotteryWalletUpdated( address indexed newWallet, address indexed oldWallet ); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Powerbull", "POWERBULL") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyLotteryFee = 33; // prevent bots, will be updated before renounce uint256 _buyLiquidityFee = 33; // prevent bots, will be updated before renounce uint256 _buyTeamFee = 33; // prevent bots, will be updated before renounce uint256 _sellLotteryFee = 2; uint256 _sellLiquidityFee = 1; uint256 _sellTeamFee = 1; uint256 totalSupply = 100_000_000 * 1e18; maxTransactionAmount = 1000_000 * 1e18; // 1% maxWallet = 1000_000 * 1e18; // 1% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% buyLotteryFee = _buyLotteryFee; buyLiquidityFee = _buyLiquidityFee; buyTeamFee = _buyTeamFee; buyTotalFees = buyLotteryFee + buyLiquidityFee + buyTeamFee; sellLotteryFee = _sellLotteryFee; sellLiquidityFee = _sellLiquidityFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellLotteryFee + sellLiquidityFee + sellTeamFee; lotteryWallet = address(0xDA3fB87700fb448220f9602E50d689D180993F5F); // set as Lottery wallet teamWallet = owner(); // set as team 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 enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _lotteryFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { buyLotteryFee = _lotteryFee; buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyLotteryFee + buyLiquidityFee + buyTeamFee; require(buyTotalFees <= 50, "Buy fees must be <= 50."); } function updateSellFees( uint256 _lotteryFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { sellLotteryFee = _lotteryFee; sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellLotteryFee + sellLiquidityFee + sellTeamFee; require(sellTotalFees <= 5, "Sell fees must be <= 5."); } 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 updateLotteryWallet(address newLotteryWallet) external onlyOwner { emit lotteryWalletUpdated(newLotteryWallet, lotteryWallet); lotteryWallet = newLotteryWallet; } function updateTeamWallet(address newWallet) external onlyOwner { emit teamWalletUpdated(newWallet, teamWallet); teamWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from],"Sender blacklisted"); require(!blacklisted[to],"Receiver blacklisted"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTeam += (fees * sellTeamFee) / sellTotalFees; tokensForLottery += (fees * sellLotteryFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; tokensForLottery += (fees * buyLotteryFee) / 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 owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForLottery + tokensForTeam; 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 ethForLottery = ethBalance.mul(tokensForLottery).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForLiquidity = ethBalance - ethForLottery - ethForTeam; tokensForLiquidity = 0; tokensForLottery = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(lotteryWallet).call{value: address(this).balance}(""); } function withdrawStuckUnibot() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken(address _token, address _to) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"lotteryWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLotteryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"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":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lotteryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLotteryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLottery","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","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":"_lotteryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newLotteryWallet","type":"address"}],"name":"updateLotteryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lotteryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckUnibot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600b805463ffffffff1916600117905534801562000020575f80fd5b5060405180604001604052806009815260200168141bddd95c989d5b1b60ba1b815250604051806040016040528060098152602001681413d5d1549095531360ba1b815250816003908162000076919062000703565b50600462000085828262000703565b505050620000a26200009c620003b560201b60201c565b620003b9565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c48160016200040a565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200010d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001339190620007cb565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a59190620007cb565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001f0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002169190620007cb565b6001600160a01b031660a0819052620002319060016200040a565b60a0516200024190600162000482565b69d3c21bcecceda10000006008819055600a556021808060026001806a52b7d2dcc80cd2e4000000612710620002798260056200080e565b6200028591906200082e565b600955600e879055600f869055601085905584620002a487896200084e565b620002b091906200084e565b600d5560128490556013839055601482905581620002cf84866200084e565b620002db91906200084e565b601155600680546001600160a01b03191673da3fb87700fb448220f9602e50d689d180993f5f179055620003176005546001600160a01b031690565b600780546001600160a01b0319166001600160a01b039283161790556005546200034491166001620004d5565b62000351306001620004d5565b6200036061dead6001620004d5565b6200037f620003776005546001600160a01b031690565b60016200040a565b6200038c3060016200040a565b6200039b61dead60016200040a565b620003a733826200057d565b505050505050505062000864565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004585760405162461bcd60e51b815260206004820181905260248201525f80516020620037b183398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200051f5760405162461bcd60e51b815260206004820181905260248201525f80516020620037b183398151915260448201526064016200044f565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005d55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200044f565b8060025f828254620005e891906200084e565b90915550506001600160a01b0382165f9081526020819052604081208054839290620006169084906200084e565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200068d57607f821691505b602082108103620006ac57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200065f575f81815260208120601f850160051c81016020861015620006da5750805b601f850160051c820191505b81811015620006fb57828155600101620006e6565b505050505050565b81516001600160401b038111156200071f576200071f62000664565b620007378162000730845462000678565b84620006b2565b602080601f8311600181146200076d575f8415620007555750858301515b5f19600386901b1c1916600185901b178555620006fb565b5f85815260208120601f198616915b828110156200079d578886015182559484019460019091019084016200077c565b5085821015620007bb57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620007dc575f80fd5b81516001600160a01b0381168114620007f3575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620008285762000828620007fa565b92915050565b5f826200084957634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620008285762000828620007fa565b60805160a051612efa620008b75f395f818161057a015281816112b7015261194901525f8181610438015281816128530152818161290a01528181612946015281816129ba01526129e10152612efa5ff3fe608060405260043610610395575f3560e01c80638a8c523c116101de578063c18bc19511610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610a83578063f9f92be414610a06578063fde83a3414610a98578063fe575a8714610aad575f80fd5b8063e2f4560514610a25578063f11a24d314610a3a578063f2fde38b14610a4f578063f637434214610a6e575f80fd5b8063d729715f116100d8578063d729715f14610998578063d85ba063146109ad578063dd62ed3e146109c2578063e19b282314610a06575f80fd5b8063c18bc19514610930578063c8c8ebe41461094f578063cd38890914610964578063d257b34f14610979575f80fd5b8063a457c2d71161017e578063bbc0c7421161014e578063bbc0c742146108b5578063bc205ad3146108d3578063c0246668146108f2578063c17b5b8c14610911575f80fd5b8063a457c2d714610834578063a9059cbb14610853578063a96444ed14610872578063b62496f514610887575f80fd5b806395d89b41116101b957806395d89b41146107cd5780639a7a23d6146107e15780639c2e4ac614610800578063a364b07714610815575f80fd5b80638a8c523c1461077d5780638da5cb5b14610791578063924de9b7146107ae575f80fd5b80634fbee193116102bf57806370a082311161025f57806375e3661e1161022f57806375e3661e146107015780637ca8448a146107205780637cb332bb1461073f5780638095d5641461075e575f80fd5b806370a0823114610686578063715018a6146106ba578063751039fc146106ce5780637571336a146106e2575f80fd5b80635ea92ddd1161029a5780635ea92ddd1461062a5780635f1893611461063e5780636a486a8e146106525780636ddd171314610667575f80fd5b80634fbee193146105b557806359927044146105ec5780635e915db91461060b575f80fd5b806323b872dd116103355780633950935111610305578063395093511461052a5780633dc599ff1461054957806349bd5a5e146105695780634a62bb651461059c575f80fd5b806323b872dd146104c657806327c8f835146104e5578063313ce567146104fa57806334908e5614610515575f80fd5b80631694505e116103705780631694505e1461042757806318160ddd146104725780631a8145bb14610490578063203e727e146104a5575f80fd5b806306fdde03146103a0578063095ea7b3146103ca57806310d5de53146103f9575f80fd5b3661039c57005b5f80fd5b3480156103ab575f80fd5b506103b4610ae4565b6040516103c19190612ab7565b60405180910390f35b3480156103d5575f80fd5b506103e96103e4366004612b16565b610b74565b60405190151581526020016103c1565b348015610404575f80fd5b506103e9610413366004612b40565b60196020525f908152604090205460ff1681565b348015610432575f80fd5b5061045a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103c1565b34801561047d575f80fd5b506002545b6040519081526020016103c1565b34801561049b575f80fd5b5061048260165481565b3480156104b0575f80fd5b506104c46104bf366004612b5b565b610b8a565b005b3480156104d1575f80fd5b506103e96104e0366004612b72565b610c70565b3480156104f0575f80fd5b5061045a61dead81565b348015610505575f80fd5b50604051601281526020016103c1565b348015610520575f80fd5b5061048260125481565b348015610535575f80fd5b506103e9610544366004612b16565b610d18565b348015610554575f80fd5b50600b546103e9906301000000900460ff1681565b348015610574575f80fd5b5061045a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105a7575f80fd5b50600b546103e99060ff1681565b3480156105c0575f80fd5b506103e96105cf366004612b40565b6001600160a01b03165f9081526018602052604090205460ff1690565b3480156105f7575f80fd5b5060075461045a906001600160a01b031681565b348015610616575f80fd5b506104c4610625366004612b40565b610d53565b348015610635575f80fd5b506104c4610dd9565b348015610649575f80fd5b506104c4610ef8565b34801561065d575f80fd5b5061048260115481565b348015610672575f80fd5b50600b546103e99062010000900460ff1681565b348015610691575f80fd5b506104826106a0366004612b40565b6001600160a01b03165f9081526020819052604090205490565b3480156106c5575f80fd5b506104c4610f37565b3480156106d9575f80fd5b506103e9610f6c565b3480156106ed575f80fd5b506104c46106fc366004612bbd565b610fa8565b34801561070c575f80fd5b506104c461071b366004612b40565b610ffc565b34801561072b575f80fd5b506104c461073a366004612b40565b611046565b34801561074a575f80fd5b506104c4610759366004612b40565b6110cb565b348015610769575f80fd5b506104c4610778366004612bf4565b611151565b348015610788575f80fd5b506104c46111f9565b34801561079c575f80fd5b506005546001600160a01b031661045a565b3480156107b9575f80fd5b506104c46107c8366004612c1d565b611236565b3480156107d8575f80fd5b506103b461127c565b3480156107ec575f80fd5b506104c46107fb366004612bbd565b61128b565b34801561080b575f80fd5b5061048260105481565b348015610820575f80fd5b5060065461045a906001600160a01b031681565b34801561083f575f80fd5b506103e961084e366004612b16565b611366565b34801561085e575f80fd5b506103e961086d366004612b16565b6113fe565b34801561087d575f80fd5b5061048260155481565b348015610892575f80fd5b506103e96108a1366004612b40565b601a6020525f908152604090205460ff1681565b3480156108c0575f80fd5b50600b546103e990610100900460ff1681565b3480156108de575f80fd5b506104c46108ed366004612c38565b61140a565b3480156108fd575f80fd5b506104c461090c366004612bbd565b61156c565b34801561091c575f80fd5b506104c461092b366004612bf4565b6115f4565b34801561093b575f80fd5b506104c461094a366004612b5b565b611697565b34801561095a575f80fd5b5061048260085481565b34801561096f575f80fd5b50610482600e5481565b348015610984575f80fd5b506103e9610993366004612b5b565b611768565b3480156109a3575f80fd5b5061048260145481565b3480156109b8575f80fd5b50610482600d5481565b3480156109cd575f80fd5b506104826109dc366004612c38565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a11575f80fd5b506104c4610a20366004612b40565b6118b9565b348015610a30575f80fd5b5061048260095481565b348015610a45575f80fd5b50610482600f5481565b348015610a5a575f80fd5b506104c4610a69366004612b40565b611a2c565b348015610a79575f80fd5b5061048260135481565b348015610a8e575f80fd5b50610482600a5481565b348015610aa3575f80fd5b5061048260175481565b348015610ab8575f80fd5b506103e9610ac7366004612b40565b6001600160a01b03165f908152600c602052604090205460ff1690565b606060038054610af390612c64565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1f90612c64565b8015610b6a5780601f10610b4157610100808354040283529160200191610b6a565b820191905f5260205f20905b815481529060010190602001808311610b4d57829003601f168201915b5050505050905090565b5f610b80338484611ac7565b5060015b92915050565b6005546001600160a01b03163314610bbd5760405162461bcd60e51b8152600401610bb490612c9c565b60405180910390fd5b670de0b6b3a76400006103e8610bd260025490565b610bdd906005612ce5565b610be79190612cfc565b610bf19190612cfc565b811015610c585760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610bb4565b610c6a81670de0b6b3a7640000612ce5565b60085550565b5f610c7c848484611bea565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610d005760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bb4565b610d0d8533858403611ac7565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b80918590610d4e908690612d1b565b611ac7565b6005546001600160a01b03163314610d7d5760405162461bcd60e51b8152600401610bb490612c9c565b6006546040516001600160a01b03918216918316907f47ac97cd4ab0b967bcc8705051164721527b38b7f9d0e7cd01cf37a62ed23f63905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e035760405162461bcd60e51b8152600401610bb490612c9c565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610e3e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e629190612d2e565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610ea6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eca9190612d45565b5060405133904780156108fc02915f818181858888f19350505050158015610ef4573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610f225760405162461bcd60e51b8152600401610bb490612c9c565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610f615760405162461bcd60e51b8152600401610bb490612c9c565b610f6a5f612394565b565b6005545f906001600160a01b03163314610f985760405162461bcd60e51b8152600401610bb490612c9c565b50600b805460ff19169055600190565b6005546001600160a01b03163314610fd25760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110265760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b031633146110705760405162461bcd60e51b8152600401610bb490612c9c565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f81146110b9576040519150601f19603f3d011682016040523d82523d5f602084013e6110be565b606091505b5050905080610ef4575f80fd5b6005546001600160a01b031633146110f55760405162461bcd60e51b8152600401610bb490612c9c565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461117b5760405162461bcd60e51b8152600401610bb490612c9c565b600e839055600f8290556010819055806111958385612d1b565b61119f9190612d1b565b600d819055603210156111f45760405162461bcd60e51b815260206004820152601760248201527f4275792066656573206d757374206265203c3d2035302e0000000000000000006044820152606401610bb4565b505050565b6005546001600160a01b031633146112235760405162461bcd60e51b8152600401610bb490612c9c565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146112605760405162461bcd60e51b8152600401610bb490612c9c565b600b8054911515620100000262ff000019909216919091179055565b606060048054610af390612c64565b6005546001600160a01b031633146112b55760405162461bcd60e51b8152600401610bb490612c9c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361135c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bb4565b610ef482826123e5565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156113e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bb4565b6113f43385858403611ac7565b5060019392505050565b5f610b80338484611bea565b6005546001600160a01b031633146114345760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b03821661148a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bb4565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f29190612d2e565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611542573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115669190612d45565b50505050565b6005546001600160a01b031633146115965760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461161e5760405162461bcd60e51b8152600401610bb490612c9c565b601283905560138290556014819055806116388385612d1b565b6116429190612d1b565b6011819055600510156111f45760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610bb4565b6005546001600160a01b031633146116c15760405162461bcd60e51b8152600401610bb490612c9c565b670de0b6b3a76400006103e86116d660025490565b6116e190600a612ce5565b6116eb9190612cfc565b6116f59190612cfc565b8110156117505760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610bb4565b61176281670de0b6b3a7640000612ce5565b600a5550565b6005545f906001600160a01b031633146117945760405162461bcd60e51b8152600401610bb490612c9c565b620186a06117a160025490565b6117ac906001612ce5565b6117b69190612cfc565b8210156118235760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bb4565b6103e861182f60025490565b61183a906005612ce5565b6118449190612cfc565b8211156118b05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bb4565b50600955600190565b6005546001600160a01b031633146118e35760405162461bcd60e51b8152600401610bb490612c9c565b600b546301000000900460ff16156119475760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610bb4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316141580156119a657506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611a095760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610bb4565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611a565760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b038116611abb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb4565b611ac481612394565b50565b6001600160a01b038316611b295760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bb4565b6001600160a01b038216611b8a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bb4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c105760405162461bcd60e51b8152600401610bb490612d60565b6001600160a01b038216611c365760405162461bcd60e51b8152600401610bb490612da5565b6001600160a01b0383165f908152600c602052604090205460ff1615611c935760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bb4565b6001600160a01b0382165f908152600c602052604090205460ff1615611cf25760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bb4565b805f03611d04576111f483835f612438565b600b5460ff1615612071576005546001600160a01b03848116911614801590611d3b57506005546001600160a01b03838116911614155b8015611d4f57506001600160a01b03821615155b8015611d6657506001600160a01b03821661dead14155b8015611d7c5750600554600160a01b900460ff16155b1561207157600b54610100900460ff16611e12576001600160a01b0383165f9081526018602052604090205460ff1680611dcd57506001600160a01b0382165f9081526018602052604090205460ff165b611e125760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bb4565b6001600160a01b0383165f908152601a602052604090205460ff168015611e5157506001600160a01b0382165f9081526019602052604090205460ff16155b15611f3457600854811115611ec65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bb4565b600a546001600160a01b0383165f90815260208190526040902054611eeb9083612d1b565b1115611f2f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb4565b612071565b6001600160a01b0382165f908152601a602052604090205460ff168015611f7357506001600160a01b0383165f9081526019602052604090205460ff16155b15611fe957600854811115611f2f5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bb4565b6001600160a01b0382165f9081526019602052604090205460ff1661207157600a546001600160a01b0383165f9081526020819052604090205461202d9083612d1b565b11156120715760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb4565b305f908152602081905260409020546009548110801590819061209c5750600b5462010000900460ff165b80156120b25750600554600160a01b900460ff16155b80156120d657506001600160a01b0385165f908152601a602052604090205460ff16155b80156120fa57506001600160a01b0385165f9081526018602052604090205460ff16155b801561211e57506001600160a01b0384165f9081526018602052604090205460ff16155b1561214c576005805460ff60a01b1916600160a01b17905561213e61258a565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526018602052604090205460ff600160a01b90920482161591168061219857506001600160a01b0385165f9081526018602052604090205460ff165b156121a057505f5b5f8115612380576001600160a01b0386165f908152601a602052604090205460ff1680156121cf57505f601154115b1561228a576121f460646121ee601154886127d690919063ffffffff16565b906127e8565b9050601154601354826122079190612ce5565b6122119190612cfc565b60165f8282546122219190612d1b565b90915550506011546014546122369083612ce5565b6122409190612cfc565b60175f8282546122509190612d1b565b90915550506011546012546122659083612ce5565b61226f9190612cfc565b60155f82825461227f9190612d1b565b909155506123629050565b6001600160a01b0387165f908152601a602052604090205460ff1680156122b257505f600d54115b15612362576122d160646121ee600d54886127d690919063ffffffff16565b9050600d54600f54826122e49190612ce5565b6122ee9190612cfc565b60165f8282546122fe9190612d1b565b9091555050600d546010546123139083612ce5565b61231d9190612cfc565b60175f82825461232d9190612d1b565b9091555050600d54600e546123429083612ce5565b61234c9190612cfc565b60155f82825461235c9190612d1b565b90915550505b801561237357612373873083612438565b61237d8186612de8565b94505b61238b878787612438565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661245e5760405162461bcd60e51b8152600401610bb490612d60565b6001600160a01b0382166124845760405162461bcd60e51b8152600401610bb490612da5565b6001600160a01b0383165f90815260208190526040902054818110156124fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bb4565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290612531908490612d1b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161257d91815260200190565b60405180910390a3611566565b305f9081526020819052604081205490505f6017546015546016546125af9190612d1b565b6125b99190612d1b565b90505f8215806125c7575081155b156125d157505050565b6009546125df906014612ce5565b8311156125f7576009546125f4906014612ce5565b92505b5f600283601654866126099190612ce5565b6126139190612cfc565b61261d9190612cfc565b90505f61262a85836127f3565b905047612636826127fe565b5f61264147836127f3565b90505f61266e60026016546126569190612cfc565b6126609089612de8565b6015546121ee9085906127d6565b90505f61269b60026016546126839190612cfc565b61268d908a612de8565b6017546121ee9086906127d6565b90505f816126a98486612de8565b6126b39190612de8565b5f6016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d805f811461270d576040519150601f19603f3d011682016040523d82523d5f602084013e612712565b606091505b5090985050861580159061272557505f81115b156127785761273487826129b4565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f81146127c2576040519150601f19603f3d011682016040523d82523d5f602084013e6127c7565b606091505b50505050505050505050505050565b5f6127e18284612ce5565b9392505050565b5f6127e18284612cfc565b5f6127e18284612de8565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061283157612831612dfb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128d19190612e0f565b816001815181106128e4576128e4612dfb565b60200260200101906001600160a01b031690816001600160a01b03168152505061292f307f000000000000000000000000000000000000000000000000000000000000000084611ac7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906129839085905f90869030904290600401612e2a565b5f604051808303815f87803b15801561299a575f80fd5b505af11580156129ac573d5f803e3d5ffd5b505050505050565b6129df307f000000000000000000000000000000000000000000000000000000000000000084611ac7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80612a256005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612a8b573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612ab09190612e99565b5050505050565b5f6020808352835180828501525f5b81811015612ae257858101830151858201604001528201612ac6565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611ac4575f80fd5b5f8060408385031215612b27575f80fd5b8235612b3281612b02565b946020939093013593505050565b5f60208284031215612b50575f80fd5b81356127e181612b02565b5f60208284031215612b6b575f80fd5b5035919050565b5f805f60608486031215612b84575f80fd5b8335612b8f81612b02565b92506020840135612b9f81612b02565b929592945050506040919091013590565b8015158114611ac4575f80fd5b5f8060408385031215612bce575f80fd5b8235612bd981612b02565b91506020830135612be981612bb0565b809150509250929050565b5f805f60608486031215612c06575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612c2d575f80fd5b81356127e181612bb0565b5f8060408385031215612c49575f80fd5b8235612c5481612b02565b91506020830135612be981612b02565b600181811c90821680612c7857607f821691505b602082108103612c9657634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b8457610b84612cd1565b5f82612d1657634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b8457610b84612cd1565b5f60208284031215612d3e575f80fd5b5051919050565b5f60208284031215612d55575f80fd5b81516127e181612bb0565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b8457610b84612cd1565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612e1f575f80fd5b81516127e181612b02565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612e785784516001600160a01b031683529383019391830191600101612e53565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612eab575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212206d96ba5ff80e69eda9254ea55d364990bc865c6ea5028a1754e19350fd30958f64736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x608060405260043610610395575f3560e01c80638a8c523c116101de578063c18bc19511610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610a83578063f9f92be414610a06578063fde83a3414610a98578063fe575a8714610aad575f80fd5b8063e2f4560514610a25578063f11a24d314610a3a578063f2fde38b14610a4f578063f637434214610a6e575f80fd5b8063d729715f116100d8578063d729715f14610998578063d85ba063146109ad578063dd62ed3e146109c2578063e19b282314610a06575f80fd5b8063c18bc19514610930578063c8c8ebe41461094f578063cd38890914610964578063d257b34f14610979575f80fd5b8063a457c2d71161017e578063bbc0c7421161014e578063bbc0c742146108b5578063bc205ad3146108d3578063c0246668146108f2578063c17b5b8c14610911575f80fd5b8063a457c2d714610834578063a9059cbb14610853578063a96444ed14610872578063b62496f514610887575f80fd5b806395d89b41116101b957806395d89b41146107cd5780639a7a23d6146107e15780639c2e4ac614610800578063a364b07714610815575f80fd5b80638a8c523c1461077d5780638da5cb5b14610791578063924de9b7146107ae575f80fd5b80634fbee193116102bf57806370a082311161025f57806375e3661e1161022f57806375e3661e146107015780637ca8448a146107205780637cb332bb1461073f5780638095d5641461075e575f80fd5b806370a0823114610686578063715018a6146106ba578063751039fc146106ce5780637571336a146106e2575f80fd5b80635ea92ddd1161029a5780635ea92ddd1461062a5780635f1893611461063e5780636a486a8e146106525780636ddd171314610667575f80fd5b80634fbee193146105b557806359927044146105ec5780635e915db91461060b575f80fd5b806323b872dd116103355780633950935111610305578063395093511461052a5780633dc599ff1461054957806349bd5a5e146105695780634a62bb651461059c575f80fd5b806323b872dd146104c657806327c8f835146104e5578063313ce567146104fa57806334908e5614610515575f80fd5b80631694505e116103705780631694505e1461042757806318160ddd146104725780631a8145bb14610490578063203e727e146104a5575f80fd5b806306fdde03146103a0578063095ea7b3146103ca57806310d5de53146103f9575f80fd5b3661039c57005b5f80fd5b3480156103ab575f80fd5b506103b4610ae4565b6040516103c19190612ab7565b60405180910390f35b3480156103d5575f80fd5b506103e96103e4366004612b16565b610b74565b60405190151581526020016103c1565b348015610404575f80fd5b506103e9610413366004612b40565b60196020525f908152604090205460ff1681565b348015610432575f80fd5b5061045a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103c1565b34801561047d575f80fd5b506002545b6040519081526020016103c1565b34801561049b575f80fd5b5061048260165481565b3480156104b0575f80fd5b506104c46104bf366004612b5b565b610b8a565b005b3480156104d1575f80fd5b506103e96104e0366004612b72565b610c70565b3480156104f0575f80fd5b5061045a61dead81565b348015610505575f80fd5b50604051601281526020016103c1565b348015610520575f80fd5b5061048260125481565b348015610535575f80fd5b506103e9610544366004612b16565b610d18565b348015610554575f80fd5b50600b546103e9906301000000900460ff1681565b348015610574575f80fd5b5061045a7f0000000000000000000000008c4e6d5c004d30aac6e849449fd345dcc45bb8f681565b3480156105a7575f80fd5b50600b546103e99060ff1681565b3480156105c0575f80fd5b506103e96105cf366004612b40565b6001600160a01b03165f9081526018602052604090205460ff1690565b3480156105f7575f80fd5b5060075461045a906001600160a01b031681565b348015610616575f80fd5b506104c4610625366004612b40565b610d53565b348015610635575f80fd5b506104c4610dd9565b348015610649575f80fd5b506104c4610ef8565b34801561065d575f80fd5b5061048260115481565b348015610672575f80fd5b50600b546103e99062010000900460ff1681565b348015610691575f80fd5b506104826106a0366004612b40565b6001600160a01b03165f9081526020819052604090205490565b3480156106c5575f80fd5b506104c4610f37565b3480156106d9575f80fd5b506103e9610f6c565b3480156106ed575f80fd5b506104c46106fc366004612bbd565b610fa8565b34801561070c575f80fd5b506104c461071b366004612b40565b610ffc565b34801561072b575f80fd5b506104c461073a366004612b40565b611046565b34801561074a575f80fd5b506104c4610759366004612b40565b6110cb565b348015610769575f80fd5b506104c4610778366004612bf4565b611151565b348015610788575f80fd5b506104c46111f9565b34801561079c575f80fd5b506005546001600160a01b031661045a565b3480156107b9575f80fd5b506104c46107c8366004612c1d565b611236565b3480156107d8575f80fd5b506103b461127c565b3480156107ec575f80fd5b506104c46107fb366004612bbd565b61128b565b34801561080b575f80fd5b5061048260105481565b348015610820575f80fd5b5060065461045a906001600160a01b031681565b34801561083f575f80fd5b506103e961084e366004612b16565b611366565b34801561085e575f80fd5b506103e961086d366004612b16565b6113fe565b34801561087d575f80fd5b5061048260155481565b348015610892575f80fd5b506103e96108a1366004612b40565b601a6020525f908152604090205460ff1681565b3480156108c0575f80fd5b50600b546103e990610100900460ff1681565b3480156108de575f80fd5b506104c46108ed366004612c38565b61140a565b3480156108fd575f80fd5b506104c461090c366004612bbd565b61156c565b34801561091c575f80fd5b506104c461092b366004612bf4565b6115f4565b34801561093b575f80fd5b506104c461094a366004612b5b565b611697565b34801561095a575f80fd5b5061048260085481565b34801561096f575f80fd5b50610482600e5481565b348015610984575f80fd5b506103e9610993366004612b5b565b611768565b3480156109a3575f80fd5b5061048260145481565b3480156109b8575f80fd5b50610482600d5481565b3480156109cd575f80fd5b506104826109dc366004612c38565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a11575f80fd5b506104c4610a20366004612b40565b6118b9565b348015610a30575f80fd5b5061048260095481565b348015610a45575f80fd5b50610482600f5481565b348015610a5a575f80fd5b506104c4610a69366004612b40565b611a2c565b348015610a79575f80fd5b5061048260135481565b348015610a8e575f80fd5b50610482600a5481565b348015610aa3575f80fd5b5061048260175481565b348015610ab8575f80fd5b506103e9610ac7366004612b40565b6001600160a01b03165f908152600c602052604090205460ff1690565b606060038054610af390612c64565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1f90612c64565b8015610b6a5780601f10610b4157610100808354040283529160200191610b6a565b820191905f5260205f20905b815481529060010190602001808311610b4d57829003601f168201915b5050505050905090565b5f610b80338484611ac7565b5060015b92915050565b6005546001600160a01b03163314610bbd5760405162461bcd60e51b8152600401610bb490612c9c565b60405180910390fd5b670de0b6b3a76400006103e8610bd260025490565b610bdd906005612ce5565b610be79190612cfc565b610bf19190612cfc565b811015610c585760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610bb4565b610c6a81670de0b6b3a7640000612ce5565b60085550565b5f610c7c848484611bea565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610d005760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bb4565b610d0d8533858403611ac7565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b80918590610d4e908690612d1b565b611ac7565b6005546001600160a01b03163314610d7d5760405162461bcd60e51b8152600401610bb490612c9c565b6006546040516001600160a01b03918216918316907f47ac97cd4ab0b967bcc8705051164721527b38b7f9d0e7cd01cf37a62ed23f63905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e035760405162461bcd60e51b8152600401610bb490612c9c565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610e3e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e629190612d2e565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610ea6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610eca9190612d45565b5060405133904780156108fc02915f818181858888f19350505050158015610ef4573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610f225760405162461bcd60e51b8152600401610bb490612c9c565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610f615760405162461bcd60e51b8152600401610bb490612c9c565b610f6a5f612394565b565b6005545f906001600160a01b03163314610f985760405162461bcd60e51b8152600401610bb490612c9c565b50600b805460ff19169055600190565b6005546001600160a01b03163314610fd25760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110265760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b031633146110705760405162461bcd60e51b8152600401610bb490612c9c565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f81146110b9576040519150601f19603f3d011682016040523d82523d5f602084013e6110be565b606091505b5050905080610ef4575f80fd5b6005546001600160a01b031633146110f55760405162461bcd60e51b8152600401610bb490612c9c565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461117b5760405162461bcd60e51b8152600401610bb490612c9c565b600e839055600f8290556010819055806111958385612d1b565b61119f9190612d1b565b600d819055603210156111f45760405162461bcd60e51b815260206004820152601760248201527f4275792066656573206d757374206265203c3d2035302e0000000000000000006044820152606401610bb4565b505050565b6005546001600160a01b031633146112235760405162461bcd60e51b8152600401610bb490612c9c565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146112605760405162461bcd60e51b8152600401610bb490612c9c565b600b8054911515620100000262ff000019909216919091179055565b606060048054610af390612c64565b6005546001600160a01b031633146112b55760405162461bcd60e51b8152600401610bb490612c9c565b7f0000000000000000000000008c4e6d5c004d30aac6e849449fd345dcc45bb8f66001600160a01b0316826001600160a01b03160361135c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bb4565b610ef482826123e5565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156113e75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bb4565b6113f43385858403611ac7565b5060019392505050565b5f610b80338484611bea565b6005546001600160a01b031633146114345760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b03821661148a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bb4565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f29190612d2e565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611542573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115669190612d45565b50505050565b6005546001600160a01b031633146115965760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461161e5760405162461bcd60e51b8152600401610bb490612c9c565b601283905560138290556014819055806116388385612d1b565b6116429190612d1b565b6011819055600510156111f45760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610bb4565b6005546001600160a01b031633146116c15760405162461bcd60e51b8152600401610bb490612c9c565b670de0b6b3a76400006103e86116d660025490565b6116e190600a612ce5565b6116eb9190612cfc565b6116f59190612cfc565b8110156117505760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610bb4565b61176281670de0b6b3a7640000612ce5565b600a5550565b6005545f906001600160a01b031633146117945760405162461bcd60e51b8152600401610bb490612c9c565b620186a06117a160025490565b6117ac906001612ce5565b6117b69190612cfc565b8210156118235760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bb4565b6103e861182f60025490565b61183a906005612ce5565b6118449190612cfc565b8211156118b05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bb4565b50600955600190565b6005546001600160a01b031633146118e35760405162461bcd60e51b8152600401610bb490612c9c565b600b546301000000900460ff16156119475760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610bb4565b7f0000000000000000000000008c4e6d5c004d30aac6e849449fd345dcc45bb8f66001600160a01b0316816001600160a01b0316141580156119a657506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611a095760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610bb4565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611a565760405162461bcd60e51b8152600401610bb490612c9c565b6001600160a01b038116611abb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb4565b611ac481612394565b50565b6001600160a01b038316611b295760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bb4565b6001600160a01b038216611b8a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bb4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c105760405162461bcd60e51b8152600401610bb490612d60565b6001600160a01b038216611c365760405162461bcd60e51b8152600401610bb490612da5565b6001600160a01b0383165f908152600c602052604090205460ff1615611c935760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bb4565b6001600160a01b0382165f908152600c602052604090205460ff1615611cf25760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bb4565b805f03611d04576111f483835f612438565b600b5460ff1615612071576005546001600160a01b03848116911614801590611d3b57506005546001600160a01b03838116911614155b8015611d4f57506001600160a01b03821615155b8015611d6657506001600160a01b03821661dead14155b8015611d7c5750600554600160a01b900460ff16155b1561207157600b54610100900460ff16611e12576001600160a01b0383165f9081526018602052604090205460ff1680611dcd57506001600160a01b0382165f9081526018602052604090205460ff165b611e125760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bb4565b6001600160a01b0383165f908152601a602052604090205460ff168015611e5157506001600160a01b0382165f9081526019602052604090205460ff16155b15611f3457600854811115611ec65760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bb4565b600a546001600160a01b0383165f90815260208190526040902054611eeb9083612d1b565b1115611f2f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb4565b612071565b6001600160a01b0382165f908152601a602052604090205460ff168015611f7357506001600160a01b0383165f9081526019602052604090205460ff16155b15611fe957600854811115611f2f5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bb4565b6001600160a01b0382165f9081526019602052604090205460ff1661207157600a546001600160a01b0383165f9081526020819052604090205461202d9083612d1b565b11156120715760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb4565b305f908152602081905260409020546009548110801590819061209c5750600b5462010000900460ff165b80156120b25750600554600160a01b900460ff16155b80156120d657506001600160a01b0385165f908152601a602052604090205460ff16155b80156120fa57506001600160a01b0385165f9081526018602052604090205460ff16155b801561211e57506001600160a01b0384165f9081526018602052604090205460ff16155b1561214c576005805460ff60a01b1916600160a01b17905561213e61258a565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526018602052604090205460ff600160a01b90920482161591168061219857506001600160a01b0385165f9081526018602052604090205460ff165b156121a057505f5b5f8115612380576001600160a01b0386165f908152601a602052604090205460ff1680156121cf57505f601154115b1561228a576121f460646121ee601154886127d690919063ffffffff16565b906127e8565b9050601154601354826122079190612ce5565b6122119190612cfc565b60165f8282546122219190612d1b565b90915550506011546014546122369083612ce5565b6122409190612cfc565b60175f8282546122509190612d1b565b90915550506011546012546122659083612ce5565b61226f9190612cfc565b60155f82825461227f9190612d1b565b909155506123629050565b6001600160a01b0387165f908152601a602052604090205460ff1680156122b257505f600d54115b15612362576122d160646121ee600d54886127d690919063ffffffff16565b9050600d54600f54826122e49190612ce5565b6122ee9190612cfc565b60165f8282546122fe9190612d1b565b9091555050600d546010546123139083612ce5565b61231d9190612cfc565b60175f82825461232d9190612d1b565b9091555050600d54600e546123429083612ce5565b61234c9190612cfc565b60155f82825461235c9190612d1b565b90915550505b801561237357612373873083612438565b61237d8186612de8565b94505b61238b878787612438565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661245e5760405162461bcd60e51b8152600401610bb490612d60565b6001600160a01b0382166124845760405162461bcd60e51b8152600401610bb490612da5565b6001600160a01b0383165f90815260208190526040902054818110156124fb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bb4565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290612531908490612d1b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161257d91815260200190565b60405180910390a3611566565b305f9081526020819052604081205490505f6017546015546016546125af9190612d1b565b6125b99190612d1b565b90505f8215806125c7575081155b156125d157505050565b6009546125df906014612ce5565b8311156125f7576009546125f4906014612ce5565b92505b5f600283601654866126099190612ce5565b6126139190612cfc565b61261d9190612cfc565b90505f61262a85836127f3565b905047612636826127fe565b5f61264147836127f3565b90505f61266e60026016546126569190612cfc565b6126609089612de8565b6015546121ee9085906127d6565b90505f61269b60026016546126839190612cfc565b61268d908a612de8565b6017546121ee9086906127d6565b90505f816126a98486612de8565b6126b39190612de8565b5f6016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d805f811461270d576040519150601f19603f3d011682016040523d82523d5f602084013e612712565b606091505b5090985050861580159061272557505f81115b156127785761273487826129b4565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f81146127c2576040519150601f19603f3d011682016040523d82523d5f602084013e6127c7565b606091505b50505050505050505050505050565b5f6127e18284612ce5565b9392505050565b5f6127e18284612cfc565b5f6127e18284612de8565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061283157612831612dfb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128d19190612e0f565b816001815181106128e4576128e4612dfb565b60200260200101906001600160a01b031690816001600160a01b03168152505061292f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ac7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906129839085905f90869030904290600401612e2a565b5f604051808303815f87803b15801561299a575f80fd5b505af11580156129ac573d5f803e3d5ffd5b505050505050565b6129df307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ac7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80612a256005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612a8b573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612ab09190612e99565b5050505050565b5f6020808352835180828501525f5b81811015612ae257858101830151858201604001528201612ac6565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611ac4575f80fd5b5f8060408385031215612b27575f80fd5b8235612b3281612b02565b946020939093013593505050565b5f60208284031215612b50575f80fd5b81356127e181612b02565b5f60208284031215612b6b575f80fd5b5035919050565b5f805f60608486031215612b84575f80fd5b8335612b8f81612b02565b92506020840135612b9f81612b02565b929592945050506040919091013590565b8015158114611ac4575f80fd5b5f8060408385031215612bce575f80fd5b8235612bd981612b02565b91506020830135612be981612bb0565b809150509250929050565b5f805f60608486031215612c06575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612c2d575f80fd5b81356127e181612bb0565b5f8060408385031215612c49575f80fd5b8235612c5481612b02565b91506020830135612be981612b02565b600181811c90821680612c7857607f821691505b602082108103612c9657634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b8457610b84612cd1565b5f82612d1657634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b8457610b84612cd1565b5f60208284031215612d3e575f80fd5b5051919050565b5f60208284031215612d55575f80fd5b81516127e181612bb0565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b8457610b84612cd1565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612e1f575f80fd5b81516127e181612b02565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612e785784516001600160a01b031683529383019391830191600101612e53565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612eab575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212206d96ba5ff80e69eda9254ea55d364990bc865c6ea5028a1754e19350fd30958f64736f6c63430008140033
Deployed Bytecode Sourcemap
31703:17501:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9662:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11829:169;;;;;;;;;;-1:-1:-1;11829:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11829:169:0;1023:187:1;32967:63:0;;;;;;;;;;-1:-1:-1;32967:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31782:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;31782:51:0;1467:230:1;10782:108:0;;;;;;;;;;-1:-1:-1;10870:12:0;;10782:108;;;1848:25:1;;;1836:2;1821:18;10782:108:0;1702:177:1;32750:33:0;;;;;;;;;;;;;;;;37167:275;;;;;;;;;;-1:-1:-1;37167:275:0;;;;;:::i;:::-;;:::i;:::-;;12480:492;;;;;;;;;;-1:-1:-1;12480:492:0;;;;;:::i;:::-;;:::i;31885:53::-;;;;;;;;;;;;31931:6;31885:53;;10624:93;;;;;;;;;;-1:-1:-1;10624:93:0;;10707:2;2880:36:1;;2868:2;2853:18;10624:93:0;2738:184:1;32603:29:0;;;;;;;;;;;;;;;;13381:215;;;;;;;;;;-1:-1:-1;13381:215:0;;;;;:::i;:::-;;:::i;32281:38::-;;;;;;;;;;-1:-1:-1;32281:38:0;;;;;;;;;;;31840;;;;;;;;;;;;;;;32161:33;;;;;;;;;;-1:-1:-1;32161:33:0;;;;;;;;39965:126;;;;;;;;;;-1:-1:-1;39965:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40055:28:0;40031:4;40055:28;;;:19;:28;;;;;;;;;39965:126;32012:25;;;;;;;;;;-1:-1:-1;32012:25:0;;;;-1:-1:-1;;;;;32012:25:0;;;39594:194;;;;;;;;;;-1:-1:-1;39594:194:0;;;;;:::i;:::-;;:::i;47181:257::-;;;;;;;;;;;;;:::i;47992:90::-;;;;;;;;;;;;;:::i;32568:28::-;;;;;;;;;;;;;;;;32241:31;;;;;;;;;;-1:-1:-1;32241:31:0;;;;;;;;;;;10953:127;;;;;;;;;;-1:-1:-1;10953:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11054:18:0;11027:7;11054:18;;;;;;;;;;;;10953:127;3179:103;;;;;;;;;;;;;:::i;36471:121::-;;;;;;;;;;;;;:::i;37715:167::-;;;;;;;;;;-1:-1:-1;37715:167:0;;;;;:::i;:::-;;:::i;49103:98::-;;;;;;;;;;-1:-1:-1;49103:98:0;;;;;:::i;:::-;;:::i;47742:196::-;;;;;;;;;;-1:-1:-1;47742:196:0;;;;;:::i;:::-;;:::i;39796:161::-;;;;;;;;;;-1:-1:-1;39796:161:0;;;;;:::i;:::-;;:::i;38086:393::-;;;;;;;;;;-1:-1:-1;38086:393:0;;;;;:::i;:::-;;:::i;36299:120::-;;;;;;;;;;;;;:::i;2528:87::-;;;;;;;;;;-1:-1:-1;2601:6:0;;-1:-1:-1;;;;;2601:6:0;2528:87;;37978:100;;;;;;;;;;-1:-1:-1;37978:100:0;;;;;:::i;:::-;;:::i;9881:104::-;;;;;;;;;;;;;:::i;39086:304::-;;;;;;;;;;-1:-1:-1;39086:304:0;;;;;:::i;:::-;;:::i;32534:25::-;;;;;;;;;;;;;;;;31977:28;;;;;;;;;;-1:-1:-1;31977:28:0;;;;-1:-1:-1;;;;;31977:28:0;;;14099:413;;;;;;;;;;-1:-1:-1;14099:413:0;;;;;:::i;:::-;;:::i;11293:175::-;;;;;;;;;;-1:-1:-1;11293:175:0;;;;;:::i;:::-;;:::i;32712:31::-;;;;;;;;;;;;;;;;33188:57;;;;;;;;;;-1:-1:-1;33188:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32201:33;;;;;;;;;;-1:-1:-1;32201:33:0;;;;;;;;;;;47446:288;;;;;;;;;;-1:-1:-1;47446:288:0;;;;;:::i;:::-;;:::i;38896:182::-;;;;;;;;;;-1:-1:-1;38896:182:0;;;;;:::i;:::-;;:::i;38487:401::-;;;;;;;;;;-1:-1:-1;38487:401:0;;;;;:::i;:::-;;:::i;37450:257::-;;;;;;;;;;-1:-1:-1;37450:257:0;;;;;:::i;:::-;;:::i;32046:35::-;;;;;;;;;;;;;;;;32462:28;;;;;;;;;;;;;;;;36662:497;;;;;;;;;;-1:-1:-1;36662:497:0;;;;;:::i;:::-;;:::i;32677:26::-;;;;;;;;;;;;;;;;32428:27;;;;;;;;;;;;;;;;11531:151;;;;;;;;;;-1:-1:-1;11531:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11647:18:0;;;11620:7;11647:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11531:151;48567:403;;;;;;;;;;-1:-1:-1;48567:403:0;;;;;:::i;:::-;;:::i;32088:33::-;;;;;;;;;;;;;;;;32497:30;;;;;;;;;;;;;;;;3437:201;;;;;;;;;;-1:-1:-1;3437:201:0;;;;;:::i;:::-;;:::i;32639:31::-;;;;;;;;;;;;;;;;32128:24;;;;;;;;;;;;;;;;32790:28;;;;;;;;;;;;;;;;40099:113;;;;;;;;;;-1:-1:-1;40099:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;40184:20:0;40160:4;40184:20;;;:11;:20;;;;;;;;;40099:113;9662:100;9716:13;9749:5;9742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9662:100;:::o;11829:169::-;11912:4;11929:39;1475:10;11952:7;11961:6;11929:8;:39::i;:::-;-1:-1:-1;11986:4:0;11829:169;;;;;:::o;37167:275::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;;;;;;;;;37304:4:::1;37296;37275:13;10870:12:::0;;;10782:108;37275:13:::1;:17;::::0;37291:1:::1;37275:17;:::i;:::-;37274:26;;;;:::i;:::-;37273:35;;;;:::i;:::-;37263:6;:45;;37241:142;;;::::0;-1:-1:-1;;;37241:142:0;;5872:2:1;37241:142:0::1;::::0;::::1;5854:21:1::0;5911:2;5891:18;;;5884:30;5950:34;5930:18;;;5923:62;-1:-1:-1;;;6001:18:1;;;5994:45;6056:19;;37241:142:0::1;5670:411:1::0;37241:142:0::1;37417:17;:6:::0;37427::::1;37417:17;:::i;:::-;37394:20;:40:::0;-1:-1:-1;37167:275:0:o;12480:492::-;12620:4;12637:36;12647:6;12655:9;12666:6;12637:9;:36::i;:::-;-1:-1:-1;;;;;12713:19:0;;12686:24;12713:19;;;:11;:19;;;;;;;;1475:10;12713:33;;;;;;;;12765:26;;;;12757:79;;;;-1:-1:-1;;;12757:79:0;;6288:2:1;12757:79:0;;;6270:21:1;6327:2;6307:18;;;6300:30;6366:34;6346:18;;;6339:62;-1:-1:-1;;;6417:18:1;;;6410:38;6465:19;;12757:79:0;6086:404:1;12757:79:0;12872:57;12881:6;1475:10;12922:6;12903:16;:25;12872:8;:57::i;:::-;-1:-1:-1;12960:4:0;;12480:492;-1:-1:-1;;;;12480:492:0:o;13381:215::-;1475:10;13469:4;13518:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13518:34:0;;;;;;;;;;13469:4;;13486:80;;13509:7;;13518:47;;13555:10;;13518:47;:::i;:::-;13486:8;:80::i;39594:194::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;39723:13:::1;::::0;39684:53:::1;::::0;-1:-1:-1;;;;;39723:13:0;;::::1;::::0;39684:53;::::1;::::0;::::1;::::0;39723:13:::1;::::0;39684:53:::1;39748:13;:32:::0;;-1:-1:-1;;;;;;39748:32:0::1;-1:-1:-1::0;;;;;39748:32:0;;;::::1;::::0;;;::::1;::::0;;39594:194::o;47181:257::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;47260:46:::1;::::0;-1:-1:-1;;;47260:46:0;;47275:4:::1;47260:46;::::0;::::1;1640:51:1::0;;;47242:15:0::1;::::0;47260:31:::1;::::0;1613:18:1;;47260:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47317:51;::::0;-1:-1:-1;;;47317:51:0;;47348:10:::1;47317:51;::::0;::::1;6988::1::0;7055:18;;;7048:34;;;47242:64:0;;-1:-1:-1;47332:4:0::1;::::0;47317:30:::1;::::0;6961:18:1;;47317:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;47379:51:0::1;::::0;47387:10:::1;::::0;47408:21:::1;47379:51:::0;::::1;;;::::0;::::1;::::0;;;47408:21;47387:10;47379:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47231:207;47181:257::o:0;47992:90::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;48049:18:::1;:25:::0;;-1:-1:-1;;48049:25:0::1;::::0;::::1;::::0;;47992:90::o;3179:103::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;3244:30:::1;3271:1;3244:18;:30::i;:::-;3179:103::o:0;36471:121::-;2601:6;;36523:4;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;-1:-1:-1;36540:14:0::1;:22:::0;;-1:-1:-1;;36540:22:0::1;::::0;;;36471:121;:::o;37715:167::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37828:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37828:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37715:167::o;49103:98::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49167:18:0::1;49188:5;49167:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;49167:26:0::1;::::0;;49103:98::o;47742:196::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;47815:12:::1;47833:6;-1:-1:-1::0;;;;;47833:11:0::1;47866:21;47833:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47814:89;;;47922:7;47914:16;;;::::0;::::1;39796:161:::0;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;39905:10:::1;::::0;39876:40:::1;::::0;-1:-1:-1;;;;;39905:10:0;;::::1;::::0;39876:40;::::1;::::0;::::1;::::0;39905:10:::1;::::0;39876:40:::1;39927:10;:22:::0;;-1:-1:-1;;;;;;39927:22:0::1;-1:-1:-1::0;;;;;39927:22:0;;;::::1;::::0;;;::::1;::::0;;39796:161::o;38086:393::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;38235:13:::1;:27:::0;;;38273:15:::1;:31:::0;;;38315:10:::1;:21:::0;;;38328:8;38362:31:::1;38291:13:::0;38251:11;38362:31:::1;:::i;:::-;:44;;;;:::i;:::-;38347:12;:59:::0;;;38441:2:::1;-1:-1:-1::0;38425:18:0::1;38417:54;;;::::0;-1:-1:-1;;;38417:54:0;;7755:2:1;38417:54:0::1;::::0;::::1;7737:21:1::0;7794:2;7774:18;;;7767:30;7833:25;7813:18;;;7806:53;7876:18;;38417:54:0::1;7553:347:1::0;38417:54:0::1;38086:393:::0;;;:::o;36299:120::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;36354:13:::1;:20:::0;;-1:-1:-1;;36385:18:0;;;;;36299:120::o;37978:100::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;38049:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;38049:21:0;;::::1;::::0;;;::::1;::::0;;37978:100::o;9881:104::-;9937:13;9970:7;9963:14;;;;;:::i;39086:304::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;39230:13:::1;-1:-1:-1::0;;;;;39222:21:0::1;:4;-1:-1:-1::0;;;;;39222:21:0::1;::::0;39200:128:::1;;;::::0;-1:-1:-1;;;39200:128:0;;8107:2:1;39200:128:0::1;::::0;::::1;8089:21:1::0;8146:2;8126:18;;;8119:30;8185:34;8165:18;;;8158:62;8256:27;8236:18;;;8229:55;8301:19;;39200:128:0::1;7905:421:1::0;39200:128:0::1;39341:41;39370:4;39376:5;39341:28;:41::i;14099:413::-:0;1475:10;14192:4;14236:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14236:34:0;;;;;;;;;;14289:35;;;;14281:85;;;;-1:-1:-1;;;14281:85:0;;8533:2:1;14281:85:0;;;8515:21:1;8572:2;8552:18;;;8545:30;8611:34;8591:18;;;8584:62;-1:-1:-1;;;8662:18:1;;;8655:35;8707:19;;14281:85:0;8331:401:1;14281:85:0;14402:67;1475:10;14425:7;14453:15;14434:16;:34;14402:8;:67::i;:::-;-1:-1:-1;14500:4:0;;14099:413;-1:-1:-1;;;14099:413:0:o;11293:175::-;11379:4;11396:42;1475:10;11420:9;11431:6;11396:9;:42::i;47446:288::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47541:20:0;::::1;47533:59;;;::::0;-1:-1:-1;;;47533:59:0;;8939:2:1;47533:59:0::1;::::0;::::1;8921:21:1::0;8978:2;8958:18;;;8951:30;9017:28;8997:18;;;8990:56;9063:18;;47533:59:0::1;8737:350:1::0;47533:59:0::1;47630:39;::::0;-1:-1:-1;;;47630:39:0;;47663:4:::1;47630:39;::::0;::::1;1640:51:1::0;47603:24:0::1;::::0;-1:-1:-1;;;;;47630:24:0;::::1;::::0;::::1;::::0;1613:18:1;;47630:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47680:46;::::0;-1:-1:-1;;;47680:46:0;;-1:-1:-1;;;;;7006:32:1;;;47680:46:0::1;::::0;::::1;6988:51:1::0;7055:18;;;7048:34;;;47603:66:0;;-1:-1:-1;47680:23:0;;::::1;::::0;::::1;::::0;6961:18:1;;47680:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47522:212;47446:288:::0;;:::o;38896:182::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38981:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38981:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39036:34;;1163:41:1;;;39036:34:0::1;::::0;1136:18:1;39036:34:0::1;;;;;;;38896:182:::0;;:::o;38487:401::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;38637:14:::1;:28:::0;;;38676:16:::1;:32:::0;;;38719:11:::1;:22:::0;;;38733:8;38768:33:::1;38695:13:::0;38654:11;38768:33:::1;:::i;:::-;:47;;;;:::i;:::-;38752:13;:63:::0;;;38851:1:::1;-1:-1:-1::0;38834:18:0::1;38826:54;;;::::0;-1:-1:-1;;;38826:54:0;;9294:2:1;38826:54:0::1;::::0;::::1;9276:21:1::0;9333:2;9313:18;;;9306:30;9372:25;9352:18;;;9345:53;9415:18;;38826:54:0::1;9092:347:1::0;37450:257:0;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;37591:4:::1;37583;37561:13;10870:12:::0;;;10782:108;37561:13:::1;:18;::::0;37577:2:::1;37561:18;:::i;:::-;37560:27;;;;:::i;:::-;37559:36;;;;:::i;:::-;37549:6;:46;;37527:132;;;::::0;-1:-1:-1;;;37527:132:0;;9646:2:1;37527:132:0::1;::::0;::::1;9628:21:1::0;9685:2;9665:18;;;9658:30;9724:34;9704:18;;;9697:62;-1:-1:-1;;;9775:18:1;;;9768:34;9819:19;;37527:132:0::1;9444:400:1::0;37527:132:0::1;37682:17;:6:::0;37692::::1;37682:17;:::i;:::-;37670:9;:29:::0;-1:-1:-1;37450:257:0:o;36662:497::-;2601:6;;36770:4;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;36849:6:::1;36828:13;10870:12:::0;;;10782:108;36828:13:::1;:17;::::0;36844:1:::1;36828:17;:::i;:::-;36827:28;;;;:::i;:::-;36814:9;:41;;36792:144;;;::::0;-1:-1:-1;;;36792:144:0;;10051:2:1;36792:144:0::1;::::0;::::1;10033:21:1::0;10090:2;10070:18;;;10063:30;10129:34;10109:18;;;10102:62;-1:-1:-1;;;10180:18:1;;;10173:51;10241:19;;36792:144:0::1;9849:417:1::0;36792:144:0::1;37004:4;36983:13;10870:12:::0;;;10782:108;36983:13:::1;:17;::::0;36999:1:::1;36983:17;:::i;:::-;36982:26;;;;:::i;:::-;36969:9;:39;;36947:141;;;::::0;-1:-1:-1;;;36947:141:0;;10473:2:1;36947:141:0::1;::::0;::::1;10455:21:1::0;10512:2;10492:18;;;10485:30;10551:34;10531:18;;;10524:62;-1:-1:-1;;;10602:18:1;;;10595:50;10662:19;;36947:141:0::1;10271:416:1::0;36947:141:0::1;-1:-1:-1::0;37099:18:0::1;:30:::0;37147:4:::1;::::0;36662:497::o;48567:403::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;48655:18:::1;::::0;;;::::1;;;48654:19;48646:65;;;::::0;-1:-1:-1;;;48646:65:0;;10894:2:1;48646:65:0::1;::::0;::::1;10876:21:1::0;10933:2;10913:18;;;10906:30;10972:34;10952:18;;;10945:62;-1:-1:-1;;;11023:18:1;;;11016:31;11064:19;;48646:65:0::1;10692:397:1::0;48646:65:0::1;48765:13;-1:-1:-1::0;;;;;48744:35:0::1;:9;-1:-1:-1::0;;;;;48744:35:0::1;;;:103;;;;-1:-1:-1::0;;;;;;48783:64:0;::::1;48804:42;48783:64;;48744:103;48722:200;;;::::0;-1:-1:-1;;;48722:200:0;;11296:2:1;48722:200:0::1;::::0;::::1;11278:21:1::0;11335:2;11315:18;;;11308:30;11374:34;11354:18;;;11347:62;-1:-1:-1;;;11425:18:1;;;11418:44;11479:19;;48722:200:0::1;11094:410:1::0;48722:200:0::1;-1:-1:-1::0;;;;;48933:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;48933:29:0::1;48958:4;48933:29;::::0;;48567:403::o;3437:201::-;2601:6;;-1:-1:-1;;;;;2601:6:0;1475:10;2748:23;2740:68;;;;-1:-1:-1;;;2740:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3526:22:0;::::1;3518:73;;;::::0;-1:-1:-1;;;3518:73:0;;11711:2:1;3518:73:0::1;::::0;::::1;11693:21:1::0;11750:2;11730:18;;;11723:30;11789:34;11769:18;;;11762:62;-1:-1:-1;;;11840:18:1;;;11833:36;11886:19;;3518:73:0::1;11509:402:1::0;3518:73:0::1;3602:28;3621:8;3602:18;:28::i;:::-;3437:201:::0;:::o;17783:380::-;-1:-1:-1;;;;;17919:19:0;;17911:68;;;;-1:-1:-1;;;17911:68:0;;12118:2:1;17911:68:0;;;12100:21:1;12157:2;12137:18;;;12130:30;12196:34;12176:18;;;12169:62;-1:-1:-1;;;12247:18:1;;;12240:34;12291:19;;17911:68:0;11916:400:1;17911:68:0;-1:-1:-1;;;;;17998:21:0;;17990:68;;;;-1:-1:-1;;;17990:68:0;;12523:2:1;17990:68:0;;;12505:21:1;12562:2;12542:18;;;12535:30;12601:34;12581:18;;;12574:62;-1:-1:-1;;;12652:18:1;;;12645:32;12694:19;;17990:68:0;12321:398:1;17990:68:0;-1:-1:-1;;;;;18071:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18123:32;;1848:25:1;;;18123:32:0;;1821:18:1;18123:32:0;;;;;;;17783:380;;;:::o;40220:4060::-;-1:-1:-1;;;;;40352:18:0;;40344:68;;;;-1:-1:-1;;;40344:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40431:16:0;;40423:64;;;;-1:-1:-1;;;40423:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40507:17:0;;;;;;:11;:17;;;;;;;;40506:18;40498:48;;;;-1:-1:-1;;;40498:48:0;;13736:2:1;40498:48:0;;;13718:21:1;13775:2;13755:18;;;13748:30;-1:-1:-1;;;13794:18:1;;;13787:48;13852:18;;40498:48:0;13534:342:1;40498:48:0;-1:-1:-1;;;;;40566:15:0;;;;;;:11;:15;;;;;;;;40565:16;40557:48;;;;-1:-1:-1;;;40557:48:0;;14083:2:1;40557:48:0;;;14065:21:1;14122:2;14102:18;;;14095:30;-1:-1:-1;;;14141:18:1;;;14134:50;14201:18;;40557:48:0;13881:344:1;40557:48:0;40644:6;40654:1;40644:11;40640:93;;40672:28;40688:4;40694:2;40698:1;40672:15;:28::i;40640:93::-;40749:14;;;;40745:1694;;;2601:6;;-1:-1:-1;;;;;40802:15:0;;;2601:6;;40802:15;;;;:49;;-1:-1:-1;2601:6:0;;-1:-1:-1;;;;;40838:13:0;;;2601:6;;40838:13;;40802:49;:86;;;;-1:-1:-1;;;;;;40872:16:0;;;;40802:86;:128;;;;-1:-1:-1;;;;;;40909:21:0;;40923:6;40909:21;;40802:128;:158;;;;-1:-1:-1;40952:8:0;;-1:-1:-1;;;40952:8:0;;;;40951:9;40802:158;40780:1648;;;41000:13;;;;;;;40995:223;;-1:-1:-1;;;;;41072:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41101:23:0;;;;;;:19;:23;;;;;;;;41072:52;41038:160;;;;-1:-1:-1;;;41038:160:0;;14432:2:1;41038:160:0;;;14414:21:1;14471:2;14451:18;;;14444:30;-1:-1:-1;;;14490:18:1;;;14483:52;14552:18;;41038:160:0;14230:346:1;41038:160:0;-1:-1:-1;;;;;41292:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;41349:35:0;;;;;;:31;:35;;;;;;;;41348:36;41292:92;41266:1147;;;41471:20;;41461:6;:30;;41427:169;;;;-1:-1:-1;;;41427:169:0;;14783:2:1;41427:169:0;;;14765:21:1;14822:2;14802:18;;;14795:30;14861:34;14841:18;;;14834:62;-1:-1:-1;;;14912:18:1;;;14905:51;14973:19;;41427:169:0;14581:417:1;41427:169:0;41679:9;;-1:-1:-1;;;;;11054:18:0;;11027:7;11054:18;;;;;;;;;;;41653:22;;:6;:22;:::i;:::-;:35;;41619:140;;;;-1:-1:-1;;;41619:140:0;;15205:2:1;41619:140:0;;;15187:21:1;15244:2;15224:18;;;15217:30;-1:-1:-1;;;15263:18:1;;;15256:49;15322:18;;41619:140:0;15003:343:1;41619:140:0;41266:1147;;;-1:-1:-1;;;;;41857:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41912:37:0;;;;;;:31;:37;;;;;;;;41911:38;41857:92;41831:582;;;42036:20;;42026:6;:30;;41992:170;;;;-1:-1:-1;;;41992:170:0;;15553:2:1;41992:170:0;;;15535:21:1;15592:2;15572:18;;;15565:30;15631:34;15611:18;;;15604:62;-1:-1:-1;;;15682:18:1;;;15675:52;15744:19;;41992:170:0;15351:418:1;41831:582:0;-1:-1:-1;;;;;42193:35:0;;;;;;:31;:35;;;;;;;;42188:225;;42313:9;;-1:-1:-1;;;;;11054:18:0;;11027:7;11054:18;;;;;;;;;;;42287:22;;:6;:22;:::i;:::-;:35;;42253:140;;;;-1:-1:-1;;;42253:140:0;;15205:2:1;42253:140:0;;;15187:21:1;15244:2;15224:18;;;15217:30;-1:-1:-1;;;15263:18:1;;;15256:49;15322:18;;42253:140:0;15003:343:1;42253:140:0;42500:4;42451:28;11054:18;;;;;;;;;;;42558;;42534:42;;;;;;;42607:35;;-1:-1:-1;42631:11:0;;;;;;;42607:35;:61;;;;-1:-1:-1;42660:8:0;;-1:-1:-1;;;42660:8:0;;;;42659:9;42607:61;:110;;;;-1:-1:-1;;;;;;42686:31:0;;;;;;:25;:31;;;;;;;;42685:32;42607:110;:153;;;;-1:-1:-1;;;;;;42735:25:0;;;;;;:19;:25;;;;;;;;42734:26;42607:153;:194;;;;-1:-1:-1;;;;;;42778:23:0;;;;;;:19;:23;;;;;;;;42777:24;42607:194;42589:326;;;42828:8;:15;;-1:-1:-1;;;;42828:15:0;-1:-1:-1;;;42828:15:0;;;42860:10;:8;:10::i;:::-;42887:8;:16;;-1:-1:-1;;;;42887:16:0;;;42589:326;42943:8;;-1:-1:-1;;;;;43053:25:0;;42927:12;43053:25;;;:19;:25;;;;;;42943:8;-1:-1:-1;;;42943:8:0;;;;;42942:9;;43053:25;;:52;;-1:-1:-1;;;;;;43082:23:0;;;;;;:19;:23;;;;;;;;43053:52;43049:100;;;-1:-1:-1;43132:5:0;43049:100;43161:12;43266:7;43262:965;;;-1:-1:-1;;;;;43318:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;43367:1;43351:13;;:17;43318:50;43314:764;;;43396:34;43426:3;43396:25;43407:13;;43396:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;43389:41;;43499:13;;43479:16;;43472:4;:23;;;;:::i;:::-;43471:41;;;;:::i;:::-;43449:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43571:13:0;;43556:11;;43549:18;;:4;:18;:::i;:::-;43548:36;;;;:::i;:::-;43531:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;43649:13:0;;43631:14;;43624:21;;:4;:21;:::i;:::-;43623:39;;;;:::i;:::-;43603:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;43314:764:0;;-1:-1:-1;43314:764:0;;-1:-1:-1;;;;;43724:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43774:1;43759:12;;:16;43724:51;43720:358;;;43803:33;43832:3;43803:24;43814:12;;43803:6;:10;;:24;;;;:::i;:33::-;43796:40;;43904:12;;43885:15;;43878:4;:22;;;;:::i;:::-;43877:39;;;;:::i;:::-;43855:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43974:12:0;;43960:10;;43953:17;;:4;:17;:::i;:::-;43952:34;;;;:::i;:::-;43935:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;44050:12:0;;44033:13;;44026:20;;:4;:20;:::i;:::-;44025:37;;;;:::i;:::-;44005:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;43720:358:0;44098:8;;44094:91;;44127:42;44143:4;44157;44164;44127:15;:42::i;:::-;44201:14;44211:4;44201:14;;:::i;:::-;;;43262:965;44239:33;44255:4;44261:2;44265:6;44239:15;:33::i;:::-;40333:3947;;;;40220:4060;;;:::o;3798:191::-;3891:6;;;-1:-1:-1;;;;;3908:17:0;;;-1:-1:-1;;;;;;3908:17:0;;;;;;;3941:40;;3891:6;;;3908:17;3891:6;;3941:40;;3872:16;;3941:40;3861:128;3798:191;:::o;39398:188::-;-1:-1:-1;;;;;39481:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39481:39:0;;;;;;;;;;39538:40;;39481:39;;:31;39538:40;;;39398:188;;:::o;15002:733::-;-1:-1:-1;;;;;15142:20:0;;15134:70;;;;-1:-1:-1;;;15134:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15223:23:0;;15215:71;;;;-1:-1:-1;;;15215:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15383:17:0;;15359:21;15383:17;;;;;;;;;;;15419:23;;;;15411:74;;;;-1:-1:-1;;;15411:74:0;;16109:2:1;15411:74:0;;;16091:21:1;16148:2;16128:18;;;16121:30;16187:34;16167:18;;;16160:62;-1:-1:-1;;;16238:18:1;;;16231:36;16284:19;;15411:74:0;15907:402:1;15411:74:0;-1:-1:-1;;;;;15521:17:0;;;:9;:17;;;;;;;;;;;15541:22;;;15521:42;;15585:20;;;;;;;;:30;;15557:6;;15521:9;15585:30;;15557:6;;15585:30;:::i;:::-;;;;;;;;15650:9;-1:-1:-1;;;;;15633:35:0;15642:6;-1:-1:-1;;;;;15633:35:0;;15661:6;15633:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;15633:35:0;;;;;;;;15681:46;38086:393;45406:1767;45489:4;45445:23;11054:18;;;;;;;;;;;45445:50;;45506:25;45600:13;;45568:16;;45534:18;;:50;;;;:::i;:::-;:79;;;;:::i;:::-;45506:107;-1:-1:-1;45624:12:0;45653:20;;;:46;;-1:-1:-1;45677:22:0;;45653:46;45649:85;;;45716:7;;;45406:1767::o;45649:85::-;45768:18;;:23;;45789:2;45768:23;:::i;:::-;45750:15;:41;45746:115;;;45826:18;;:23;;45847:2;45826:23;:::i;:::-;45808:41;;45746:115;45922:23;46035:1;46002:17;45967:18;;45949:15;:36;;;;:::i;:::-;45948:71;;;;:::i;:::-;:88;;;;:::i;:::-;45922:114;-1:-1:-1;46047:26:0;46076:36;:15;45922:114;46076:19;:36::i;:::-;46047:65;-1:-1:-1;46153:21:0;46187:36;46047:65;46187:16;:36::i;:::-;46236:18;46257:44;:21;46283:17;46257:25;:44::i;:::-;46236:65;;46314:21;46338:82;46417:1;46396:18;;:22;;;;:::i;:::-;46375:44;;:17;:44;:::i;:::-;46353:16;;46338:32;;:10;;:14;:32::i;:82::-;46314:106;;46441:18;46462:79;46538:1;46517:18;;:22;;;;:::i;:::-;46496:44;;:17;:44;:::i;:::-;46477:13;;46462:29;;:10;;:14;:29::i;:79::-;46441:100;-1:-1:-1;46554:23:0;46441:100;46580:26;46593:13;46580:10;:26;:::i;:::-;:39;;;;:::i;:::-;46653:1;46632:18;:22;;;46665:16;:20;;;46696:13;:17;;;46748:10;;46740:47;;46554:65;;-1:-1:-1;;;;;;46748:10:0;;46772;;46740:47;46653:1;46740:47;46772:10;46748;46740:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46726:61:0;;-1:-1:-1;;46804:19:0;;;;;:42;;;46845:1;46827:15;:19;46804:42;46800:278;;;46863:46;46876:15;46893;46863:12;:46::i;:::-;47033:18;;46929:137;;;16516:25:1;;;16572:2;16557:18;;16550:34;;;16600:18;;;16593:34;;;;46929:137:0;;;;;;16504:2:1;46929:137:0;;;46800:278;47112:13;;47104:61;;-1:-1:-1;;;;;47112:13:0;;;;47139:21;;47104:61;;;;47139:21;47112:13;47104:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;45406:1767:0:o;22915:98::-;22973:7;23000:5;23004:1;23000;:5;:::i;:::-;22993:12;22915:98;-1:-1:-1;;;22915:98:0:o;23314:::-;23372:7;23399:5;23403:1;23399;:5;:::i;22558:98::-;22616:7;22643:5;22647:1;22643;:5;:::i;44288:589::-;44438:16;;;44452:1;44438:16;;;;;;;;44414:21;;44438:16;;;;;;;;;;-1:-1:-1;44438:16:0;44414:40;;44483:4;44465;44470:1;44465:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44465:23:0;;;-1:-1:-1;;;;;44465:23:0;;;;;44509:15;-1:-1:-1;;;;;44509:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44499:4;44504:1;44499:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44499:32:0;;;-1:-1:-1;;;;;44499:32:0;;;;;44544:62;44561:4;44576:15;44594:11;44544:8;:62::i;:::-;44645:224;;-1:-1:-1;;;44645:224:0;;-1:-1:-1;;;;;44645:15:0;:66;;;;:224;;44726:11;;44752:1;;44796:4;;44823;;44843:15;;44645:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44343:534;44288:589;:::o;44885:513::-;45033:62;45050:4;45065:15;45083:11;45033:8;:62::i;:::-;45138:15;-1:-1:-1;;;;;45138:31:0;;45177:9;45210:4;45230:11;45256:1;45299;45342:7;2601:6;;-1:-1:-1;;;;;2601:6:0;;2528:87;45342:7;45138:252;;;;;;-1:-1:-1;;;;;;45138:252:0;;;-1:-1:-1;;;;;18502:15:1;;;45138:252:0;;;18484:34:1;18534:18;;;18527:34;;;;18577:18;;;18570:34;;;;18620:18;;;18613:34;18684:15;;;18663:19;;;18656:44;45364:15:0;18716:19:1;;;18709:35;18418:19;;45138:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44885:513;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:241::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;3922:9;3909:23;3941:28;3963:5;3941:28;:::i;4004:388::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4188:9;4175:23;4207:31;4232:5;4207:31;:::i;:::-;4257:5;-1:-1:-1;4314:2:1;4299:18;;4286:32;4327:33;4286:32;4327:33;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;4782:356::-;4984:2;4966:21;;;5003:18;;;4996:30;5062:34;5057:2;5042:18;;5035:62;5129:2;5114:18;;4782:356::o;5143:127::-;5204:10;5199:3;5195:20;5192:1;5185:31;5235:4;5232:1;5225:15;5259:4;5256:1;5249:15;5275:168;5348:9;;;5379;;5396:15;;;5390:22;;5376:37;5366:71;;5417:18;;:::i;5448:217::-;5488:1;5514;5504:132;;5558:10;5553:3;5549:20;5546:1;5539:31;5593:4;5590:1;5583:15;5621:4;5618:1;5611:15;5504:132;-1:-1:-1;5650:9:1;;5448:217::o;6495:125::-;6560:9;;;6581:10;;;6578:36;;;6594:18;;:::i;6625:184::-;6695:6;6748:2;6736:9;6727:7;6723:23;6719:32;6716:52;;;6764:1;6761;6754:12;6716:52;-1:-1:-1;6787:16:1;;6625:184;-1:-1:-1;6625:184:1:o;7093:245::-;7160:6;7213:2;7201:9;7192:7;7188:23;7184:32;7181:52;;;7229:1;7226;7219:12;7181:52;7261:9;7255:16;7280:28;7302:5;7280:28;:::i;12724:401::-;12926:2;12908:21;;;12965:2;12945:18;;;12938:30;13004:34;12999:2;12984:18;;12977:62;-1:-1:-1;;;13070:2:1;13055:18;;13048:35;13115:3;13100:19;;12724:401::o;13130:399::-;13332:2;13314:21;;;13371:2;13351:18;;;13344:30;13410:34;13405:2;13390:18;;13383:62;-1:-1:-1;;;13476:2:1;13461:18;;13454:33;13519:3;13504:19;;13130:399::o;15774:128::-;15841:9;;;15862:11;;;15859:37;;;15876:18;;:::i;16770:127::-;16831:10;16826:3;16822:20;16819:1;16812:31;16862:4;16859:1;16852:15;16886:4;16883:1;16876:15;16902:251;16972:6;17025:2;17013:9;17004:7;17000:23;16996:32;16993:52;;;17041:1;17038;17031:12;16993:52;17073:9;17067:16;17092:31;17117:5;17092:31;:::i;17158:980::-;17420:4;17468:3;17457:9;17453:19;17499:6;17488:9;17481:25;17525:2;17563:6;17558:2;17547:9;17543:18;17536:34;17606:3;17601:2;17590:9;17586:18;17579:31;17630:6;17665;17659:13;17696:6;17688;17681:22;17734:3;17723:9;17719:19;17712:26;;17773:2;17765:6;17761:15;17747:29;;17794:1;17804:195;17818:6;17815:1;17812:13;17804:195;;;17883:13;;-1:-1:-1;;;;;17879:39:1;17867:52;;17974:15;;;;17939:12;;;;17915:1;17833:9;17804:195;;;-1:-1:-1;;;;;;;18055:32:1;;;;18050:2;18035:18;;18028:60;-1:-1:-1;;;18119:3:1;18104:19;18097:35;18016:3;17158:980;-1:-1:-1;;;17158:980:1:o;18755:306::-;18843:6;18851;18859;18912:2;18900:9;18891:7;18887:23;18883:32;18880:52;;;18928:1;18925;18918:12;18880:52;18957:9;18951:16;18941:26;;19007:2;18996:9;18992:18;18986:25;18976:35;;19051:2;19040:9;19036:18;19030:25;19020:35;;18755:306;;;;;:::o
Swarm Source
ipfs://6d96ba5ff80e69eda9254ea55d364990bc865c6ea5028a1754e19350fd30958f
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.