Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 CBB
Holders
66
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
78,877,781.539952134014768799 CBBValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Cricbetbot
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-17 */ /* Welcome to CricBetBot – Your Ultimate Cricket Betting Experience! Website https://cricbetbot.com BOT - https://t.me/cbbcricbot Telegram - https://t.me/betbotcric Twitter - https://twitter.com/cricbetbot */ 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 Cricbetbot 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 revShareWallet; 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 buyRevShareFee; uint256 public buyLiquidityFee; uint256 public buyTeamFee; uint256 public sellTotalFees; uint256 public sellRevShareFee; uint256 public sellLiquidityFee; uint256 public sellTeamFee; uint256 public tokensForRevShare; 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 revShareWalletUpdated( address indexed newWallet, address indexed oldWallet ); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("CricBet Bot", "CBB") { 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 _buyRevShareFee = 2; uint256 _buyLiquidityFee = 2; uint256 _buyTeamFee = 2; uint256 _sellRevShareFee = 2; uint256 _sellLiquidityFee = 1; uint256 _sellTeamFee = 2; uint256 totalSupply = 100_000_000 * 1e18; maxTransactionAmount = 1000_000 * 1e18; // 1% maxWallet = 1000_000 * 1e18; // 1% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% buyRevShareFee = _buyRevShareFee; buyLiquidityFee = _buyLiquidityFee; buyTeamFee = _buyTeamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; sellRevShareFee = _sellRevShareFee; sellLiquidityFee = _sellLiquidityFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellRevShareFee + sellLiquidityFee + sellTeamFee; revShareWallet = address(0x8A71825D53E56e588F4395041AB63B9DE0716b53); // set as revShare wallet teamWallet = owner(); // set as team wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), 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 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { buyRevShareFee = _revShareFee; buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyRevShareFee + buyLiquidityFee + buyTeamFee; require(buyTotalFees <= 5, "Buy fees must be <= 5."); } function updateSellFees( uint256 _revShareFee, uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { sellRevShareFee = _revShareFee; sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellRevShareFee + 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 updateRevShareWallet(address newRevShareWallet) external onlyOwner { emit revShareWalletUpdated(newRevShareWallet, revShareWallet); revShareWallet = newRevShareWallet; } 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; tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; tokensForRevShare += (fees * buyRevShareFee) / 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 + tokensForRevShare + 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 ethForRevShare = ethBalance.mul(tokensForRevShare).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForLiquidity = ethBalance - ethForRevShare - ethForTeam; tokensForLiquidity = 0; tokensForRevShare = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(revShareWallet).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":"revShareWalletUpdated","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":"buyRevShareFee","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":"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":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRevShareFee","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":"tokensForRevShare","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":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRevShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revShareFee","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
60c0604052600b805463ffffffff1916600117905534801562000020575f80fd5b506040518060400160405280600b81526020016a10dc9a58d0995d08109bdd60aa1b8152506040518060400160405280600381526020016221a12160e91b8152508160039081620000729190620006ef565b506004620000818282620006ef565b5050506200009e62000098620003a160201b60201c565b620003a5565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c0816001620003f6565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000109573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200012f9190620007b7565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a19190620007b7565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001ec573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002129190620007b7565b6001600160a01b031660a08190526200022d906001620003f6565b60a0516200023d9060016200046e565b69d3c21bcecceda10000006008819055600a5560028080806001816a52b7d2dcc80cd2e400000061271062000274826005620007fa565b6200028091906200081a565b600955600e879055600f8690556010859055846200029f87896200083a565b620002ab91906200083a565b600d5560128490556013839055601482905581620002ca84866200083a565b620002d691906200083a565b601155600680546001600160a01b031916738a71825d53e56e588f4395041ab63b9de0716b53179055620003126005546001600160a01b031690565b600780546001600160a01b0319166001600160a01b039283161790556005546200033f91166001620004c1565b6200034c306001620004c1565b6200036b620003636005546001600160a01b031690565b6001620003f6565b62000378306001620003f6565b6200038761dead6001620003f6565b62000393338262000569565b505050505050505062000850565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004445760405162461bcd60e51b815260206004820181905260248201525f805160206200379a83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200050b5760405162461bcd60e51b815260206004820181905260248201525f805160206200379a83398151915260448201526064016200043b565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005c15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200043b565b8060025f828254620005d491906200083a565b90915550506001600160a01b0382165f9081526020819052604081208054839290620006029084906200083a565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200067957607f821691505b6020821081036200069857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200064b575f81815260208120601f850160051c81016020861015620006c65750805b601f850160051c820191505b81811015620006e757828155600101620006d2565b505050505050565b81516001600160401b038111156200070b576200070b62000650565b62000723816200071c845462000664565b846200069e565b602080601f83116001811462000759575f8415620007415750858301515b5f19600386901b1c1916600185901b178555620006e7565b5f85815260208120601f198616915b82811015620007895788860151825594840194600190910190840162000768565b5085821015620007a757878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620007c8575f80fd5b81516001600160a01b0381168114620007df575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620008145762000814620007e6565b92915050565b5f826200083557634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620008145762000814620007e6565b60805160a051612ef7620008a35f395f81816105a80152818161122e015261194601525f818161045b015281816128500152818161290701528181612943015281816129b701526129de0152612ef75ff3fe608060405260043610610395575f3560e01c80637cb332bb116101de578063c17b5b8c11610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610a87578063f9f92be414610a0a578063fde83a3414610a9c578063fe575a8714610ab1575f80fd5b8063e2f4560514610a29578063f11a24d314610a3e578063f2fde38b14610a53578063f637434214610a72575f80fd5b8063d729715f116100d8578063d729715f1461099c578063d85ba063146109b1578063dd62ed3e146109c6578063e19b282314610a0a575f80fd5b8063c17b5b8c1461092a578063c18bc19514610949578063c8c8ebe414610968578063d257b34f1461097d575f80fd5b80639c2e4ac61161017e578063b62496f51161014e578063b62496f5146108a0578063bbc0c742146108ce578063bc205ad3146108ec578063c02466681461090b575f80fd5b80639c2e4ac61461082e578063a457c2d714610843578063a9059cbb14610862578063adee28ff14610881575f80fd5b80638da5cb5b116101b95780638da5cb5b146107bf578063924de9b7146107dc57806395d89b41146107fb5780639a7a23d61461080f575f80fd5b80637cb332bb1461076d5780638095d5641461078c5780638a8c523c146107ab575f80fd5b806349bd5a5e116102bf5780636ddd17131161025f5780637571336a1161022f5780637571336a146106f157806375e3661e14610710578063782c4e991461072f5780637ca8448a1461074e575f80fd5b80636ddd17131461067657806370a0823114610695578063715018a6146106c9578063751039fc146106dd575f80fd5b8063599270441161029a578063599270441461061a5780635ea92ddd146106395780635f1893611461064d5780636a486a8e14610661575f80fd5b806349bd5a5e146105975780634a62bb65146105ca5780634fbee193146105e3575f80fd5b80631a8145bb1161033557806327c8f8351161030557806327c8f83514610528578063313ce5671461053d57806339509351146105585780633dc599ff14610577575f80fd5b80631a8145bb146104be578063203e727e146104d357806323b872dd146104f457806324b9f3c114610513575f80fd5b8063156c2f3511610370578063156c2f35146104275780631694505e1461044a57806318160ddd1461049557806319eab042146104a9575f80fd5b806306fdde03146103a0578063095ea7b3146103ca57806310d5de53146103f9575f80fd5b3661039c57005b5f80fd5b3480156103ab575f80fd5b506103b4610ae8565b6040516103c19190612ab4565b60405180910390f35b3480156103d5575f80fd5b506103e96103e4366004612b13565b610b78565b60405190151581526020016103c1565b348015610404575f80fd5b506103e9610413366004612b3d565b60196020525f908152604090205460ff1681565b348015610432575f80fd5b5061043c600e5481565b6040519081526020016103c1565b348015610455575f80fd5b5061047d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103c1565b3480156104a0575f80fd5b5060025461043c565b3480156104b4575f80fd5b5061043c60125481565b3480156104c9575f80fd5b5061043c60165481565b3480156104de575f80fd5b506104f26104ed366004612b58565b610b8e565b005b3480156104ff575f80fd5b506103e961050e366004612b6f565b610c74565b34801561051e575f80fd5b5061043c60155481565b348015610533575f80fd5b5061047d61dead81565b348015610548575f80fd5b50604051601281526020016103c1565b348015610563575f80fd5b506103e9610572366004612b13565b610d1c565b348015610582575f80fd5b50600b546103e9906301000000900460ff1681565b3480156105a2575f80fd5b5061047d7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105d5575f80fd5b50600b546103e99060ff1681565b3480156105ee575f80fd5b506103e96105fd366004612b3d565b6001600160a01b03165f9081526018602052604090205460ff1690565b348015610625575f80fd5b5060075461047d906001600160a01b031681565b348015610644575f80fd5b506104f2610d57565b348015610658575f80fd5b506104f2610e76565b34801561066c575f80fd5b5061043c60115481565b348015610681575f80fd5b50600b546103e99062010000900460ff1681565b3480156106a0575f80fd5b5061043c6106af366004612b3d565b6001600160a01b03165f9081526020819052604090205490565b3480156106d4575f80fd5b506104f2610eb5565b3480156106e8575f80fd5b506103e9610eea565b3480156106fc575f80fd5b506104f261070b366004612bba565b610f26565b34801561071b575f80fd5b506104f261072a366004612b3d565b610f7a565b34801561073a575f80fd5b5060065461047d906001600160a01b031681565b348015610759575f80fd5b506104f2610768366004612b3d565b610fc4565b348015610778575f80fd5b506104f2610787366004612b3d565b611049565b348015610797575f80fd5b506104f26107a6366004612bf1565b6110cf565b3480156107b6575f80fd5b506104f2611170565b3480156107ca575f80fd5b506005546001600160a01b031661047d565b3480156107e7575f80fd5b506104f26107f6366004612c1a565b6111ad565b348015610806575f80fd5b506103b46111f3565b34801561081a575f80fd5b506104f2610829366004612bba565b611202565b348015610839575f80fd5b5061043c60105481565b34801561084e575f80fd5b506103e961085d366004612b13565b6112dd565b34801561086d575f80fd5b506103e961087c366004612b13565b611375565b34801561088c575f80fd5b506104f261089b366004612b3d565b611381565b3480156108ab575f80fd5b506103e96108ba366004612b3d565b601a6020525f908152604090205460ff1681565b3480156108d9575f80fd5b50600b546103e990610100900460ff1681565b3480156108f7575f80fd5b506104f2610906366004612c35565b611407565b348015610916575f80fd5b506104f2610925366004612bba565b611569565b348015610935575f80fd5b506104f2610944366004612bf1565b6115f1565b348015610954575f80fd5b506104f2610963366004612b58565b611694565b348015610973575f80fd5b5061043c60085481565b348015610988575f80fd5b506103e9610997366004612b58565b611765565b3480156109a7575f80fd5b5061043c60145481565b3480156109bc575f80fd5b5061043c600d5481565b3480156109d1575f80fd5b5061043c6109e0366004612c35565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a15575f80fd5b506104f2610a24366004612b3d565b6118b6565b348015610a34575f80fd5b5061043c60095481565b348015610a49575f80fd5b5061043c600f5481565b348015610a5e575f80fd5b506104f2610a6d366004612b3d565b611a29565b348015610a7d575f80fd5b5061043c60135481565b348015610a92575f80fd5b5061043c600a5481565b348015610aa7575f80fd5b5061043c60175481565b348015610abc575f80fd5b506103e9610acb366004612b3d565b6001600160a01b03165f908152600c602052604090205460ff1690565b606060038054610af790612c61565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2390612c61565b8015610b6e5780601f10610b4557610100808354040283529160200191610b6e565b820191905f5260205f20905b815481529060010190602001808311610b5157829003601f168201915b5050505050905090565b5f610b84338484611ac4565b5060015b92915050565b6005546001600160a01b03163314610bc15760405162461bcd60e51b8152600401610bb890612c99565b60405180910390fd5b670de0b6b3a76400006103e8610bd660025490565b610be1906005612ce2565b610beb9190612cf9565b610bf59190612cf9565b811015610c5c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610bb8565b610c6e81670de0b6b3a7640000612ce2565b60085550565b5f610c80848484611be7565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610d045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bb8565b610d118533858403611ac4565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b84918590610d52908690612d18565b611ac4565b6005546001600160a01b03163314610d815760405162461bcd60e51b8152600401610bb890612c99565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610dbc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610de09190612d2b565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610e24573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e489190612d42565b5060405133904780156108fc02915f818181858888f19350505050158015610e72573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610ea05760405162461bcd60e51b8152600401610bb890612c99565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610edf5760405162461bcd60e51b8152600401610bb890612c99565b610ee85f612391565b565b6005545f906001600160a01b03163314610f165760405162461bcd60e51b8152600401610bb890612c99565b50600b805460ff19169055600190565b6005546001600160a01b03163314610f505760405162461bcd60e51b8152600401610bb890612c99565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fa45760405162461bcd60e51b8152600401610bb890612c99565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b03163314610fee5760405162461bcd60e51b8152600401610bb890612c99565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114611037576040519150601f19603f3d011682016040523d82523d5f602084013e61103c565b606091505b5050905080610e72575f80fd5b6005546001600160a01b031633146110735760405162461bcd60e51b8152600401610bb890612c99565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110f95760405162461bcd60e51b8152600401610bb890612c99565b600e839055600f8290556010819055806111138385612d18565b61111d9190612d18565b600d8190556005101561116b5760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610bb8565b505050565b6005546001600160a01b0316331461119a5760405162461bcd60e51b8152600401610bb890612c99565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146111d75760405162461bcd60e51b8152600401610bb890612c99565b600b8054911515620100000262ff000019909216919091179055565b606060048054610af790612c61565b6005546001600160a01b0316331461122c5760405162461bcd60e51b8152600401610bb890612c99565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036112d35760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bb8565b610e7282826123e2565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561135e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bb8565b61136b3385858403611ac4565b5060019392505050565b5f610b84338484611be7565b6005546001600160a01b031633146113ab5760405162461bcd60e51b8152600401610bb890612c99565b6006546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146114315760405162461bcd60e51b8152600401610bb890612c99565b6001600160a01b0382166114875760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bb8565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114ef9190612d2b565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af115801561153f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115639190612d42565b50505050565b6005546001600160a01b031633146115935760405162461bcd60e51b8152600401610bb890612c99565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461161b5760405162461bcd60e51b8152600401610bb890612c99565b601283905560138290556014819055806116358385612d18565b61163f9190612d18565b60118190556005101561116b5760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610bb8565b6005546001600160a01b031633146116be5760405162461bcd60e51b8152600401610bb890612c99565b670de0b6b3a76400006103e86116d360025490565b6116de90600a612ce2565b6116e89190612cf9565b6116f29190612cf9565b81101561174d5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610bb8565b61175f81670de0b6b3a7640000612ce2565b600a5550565b6005545f906001600160a01b031633146117915760405162461bcd60e51b8152600401610bb890612c99565b620186a061179e60025490565b6117a9906001612ce2565b6117b39190612cf9565b8210156118205760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bb8565b6103e861182c60025490565b611837906005612ce2565b6118419190612cf9565b8211156118ad5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bb8565b50600955600190565b6005546001600160a01b031633146118e05760405162461bcd60e51b8152600401610bb890612c99565b600b546301000000900460ff16156119445760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610bb8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b0316141580156119a357506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611a065760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610bb8565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611a535760405162461bcd60e51b8152600401610bb890612c99565b6001600160a01b038116611ab85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb8565b611ac181612391565b50565b6001600160a01b038316611b265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bb8565b6001600160a01b038216611b875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bb8565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c0d5760405162461bcd60e51b8152600401610bb890612d5d565b6001600160a01b038216611c335760405162461bcd60e51b8152600401610bb890612da2565b6001600160a01b0383165f908152600c602052604090205460ff1615611c905760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bb8565b6001600160a01b0382165f908152600c602052604090205460ff1615611cef5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bb8565b805f03611d015761116b83835f612435565b600b5460ff161561206e576005546001600160a01b03848116911614801590611d3857506005546001600160a01b03838116911614155b8015611d4c57506001600160a01b03821615155b8015611d6357506001600160a01b03821661dead14155b8015611d795750600554600160a01b900460ff16155b1561206e57600b54610100900460ff16611e0f576001600160a01b0383165f9081526018602052604090205460ff1680611dca57506001600160a01b0382165f9081526018602052604090205460ff165b611e0f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bb8565b6001600160a01b0383165f908152601a602052604090205460ff168015611e4e57506001600160a01b0382165f9081526019602052604090205460ff16155b15611f3157600854811115611ec35760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bb8565b600a546001600160a01b0383165f90815260208190526040902054611ee89083612d18565b1115611f2c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb8565b61206e565b6001600160a01b0382165f908152601a602052604090205460ff168015611f7057506001600160a01b0383165f9081526019602052604090205460ff16155b15611fe657600854811115611f2c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bb8565b6001600160a01b0382165f9081526019602052604090205460ff1661206e57600a546001600160a01b0383165f9081526020819052604090205461202a9083612d18565b111561206e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb8565b305f90815260208190526040902054600954811080159081906120995750600b5462010000900460ff165b80156120af5750600554600160a01b900460ff16155b80156120d357506001600160a01b0385165f908152601a602052604090205460ff16155b80156120f757506001600160a01b0385165f9081526018602052604090205460ff16155b801561211b57506001600160a01b0384165f9081526018602052604090205460ff16155b15612149576005805460ff60a01b1916600160a01b17905561213b612587565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526018602052604090205460ff600160a01b90920482161591168061219557506001600160a01b0385165f9081526018602052604090205460ff165b1561219d57505f5b5f811561237d576001600160a01b0386165f908152601a602052604090205460ff1680156121cc57505f601154115b15612287576121f160646121eb601154886127d390919063ffffffff16565b906127e5565b9050601154601354826122049190612ce2565b61220e9190612cf9565b60165f82825461221e9190612d18565b90915550506011546014546122339083612ce2565b61223d9190612cf9565b60175f82825461224d9190612d18565b90915550506011546012546122629083612ce2565b61226c9190612cf9565b60155f82825461227c9190612d18565b9091555061235f9050565b6001600160a01b0387165f908152601a602052604090205460ff1680156122af57505f600d54115b1561235f576122ce60646121eb600d54886127d390919063ffffffff16565b9050600d54600f54826122e19190612ce2565b6122eb9190612cf9565b60165f8282546122fb9190612d18565b9091555050600d546010546123109083612ce2565b61231a9190612cf9565b60175f82825461232a9190612d18565b9091555050600d54600e5461233f9083612ce2565b6123499190612cf9565b60155f8282546123599190612d18565b90915550505b801561237057612370873083612435565b61237a8186612de5565b94505b612388878787612435565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661245b5760405162461bcd60e51b8152600401610bb890612d5d565b6001600160a01b0382166124815760405162461bcd60e51b8152600401610bb890612da2565b6001600160a01b0383165f90815260208190526040902054818110156124f85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bb8565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061252e908490612d18565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161257a91815260200190565b60405180910390a3611563565b305f9081526020819052604081205490505f6017546015546016546125ac9190612d18565b6125b69190612d18565b90505f8215806125c4575081155b156125ce57505050565b6009546125dc906014612ce2565b8311156125f4576009546125f1906014612ce2565b92505b5f600283601654866126069190612ce2565b6126109190612cf9565b61261a9190612cf9565b90505f61262785836127f0565b905047612633826127fb565b5f61263e47836127f0565b90505f61266b60026016546126539190612cf9565b61265d9089612de5565b6015546121eb9085906127d3565b90505f61269860026016546126809190612cf9565b61268a908a612de5565b6017546121eb9086906127d3565b90505f816126a68486612de5565b6126b09190612de5565b5f6016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d805f811461270a576040519150601f19603f3d011682016040523d82523d5f602084013e61270f565b606091505b5090985050861580159061272257505f81115b156127755761273187826129b1565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f81146127bf576040519150601f19603f3d011682016040523d82523d5f602084013e6127c4565b606091505b50505050505050505050505050565b5f6127de8284612ce2565b9392505050565b5f6127de8284612cf9565b5f6127de8284612de5565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061282e5761282e612df8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128ce9190612e0c565b816001815181106128e1576128e1612df8565b60200260200101906001600160a01b031690816001600160a01b03168152505061292c307f000000000000000000000000000000000000000000000000000000000000000084611ac4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906129809085905f90869030904290600401612e27565b5f604051808303815f87803b158015612997575f80fd5b505af11580156129a9573d5f803e3d5ffd5b505050505050565b6129dc307f000000000000000000000000000000000000000000000000000000000000000084611ac4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80612a226005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612a88573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612aad9190612e96565b5050505050565b5f6020808352835180828501525f5b81811015612adf57858101830151858201604001528201612ac3565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611ac1575f80fd5b5f8060408385031215612b24575f80fd5b8235612b2f81612aff565b946020939093013593505050565b5f60208284031215612b4d575f80fd5b81356127de81612aff565b5f60208284031215612b68575f80fd5b5035919050565b5f805f60608486031215612b81575f80fd5b8335612b8c81612aff565b92506020840135612b9c81612aff565b929592945050506040919091013590565b8015158114611ac1575f80fd5b5f8060408385031215612bcb575f80fd5b8235612bd681612aff565b91506020830135612be681612bad565b809150509250929050565b5f805f60608486031215612c03575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612c2a575f80fd5b81356127de81612bad565b5f8060408385031215612c46575f80fd5b8235612c5181612aff565b91506020830135612be681612aff565b600181811c90821680612c7557607f821691505b602082108103612c9357634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b8857610b88612cce565b5f82612d1357634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b8857610b88612cce565b5f60208284031215612d3b575f80fd5b5051919050565b5f60208284031215612d52575f80fd5b81516127de81612bad565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b8857610b88612cce565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612e1c575f80fd5b81516127de81612aff565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612e755784516001600160a01b031683529383019391830191600101612e50565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612ea8575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220dd367c00fc38ee979dba4f28ed685ebca3178fc7756cd3e63c6243e7e73fa60e64736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x608060405260043610610395575f3560e01c80637cb332bb116101de578063c17b5b8c11610108578063e2f456051161009d578063f8b45b051161006d578063f8b45b0514610a87578063f9f92be414610a0a578063fde83a3414610a9c578063fe575a8714610ab1575f80fd5b8063e2f4560514610a29578063f11a24d314610a3e578063f2fde38b14610a53578063f637434214610a72575f80fd5b8063d729715f116100d8578063d729715f1461099c578063d85ba063146109b1578063dd62ed3e146109c6578063e19b282314610a0a575f80fd5b8063c17b5b8c1461092a578063c18bc19514610949578063c8c8ebe414610968578063d257b34f1461097d575f80fd5b80639c2e4ac61161017e578063b62496f51161014e578063b62496f5146108a0578063bbc0c742146108ce578063bc205ad3146108ec578063c02466681461090b575f80fd5b80639c2e4ac61461082e578063a457c2d714610843578063a9059cbb14610862578063adee28ff14610881575f80fd5b80638da5cb5b116101b95780638da5cb5b146107bf578063924de9b7146107dc57806395d89b41146107fb5780639a7a23d61461080f575f80fd5b80637cb332bb1461076d5780638095d5641461078c5780638a8c523c146107ab575f80fd5b806349bd5a5e116102bf5780636ddd17131161025f5780637571336a1161022f5780637571336a146106f157806375e3661e14610710578063782c4e991461072f5780637ca8448a1461074e575f80fd5b80636ddd17131461067657806370a0823114610695578063715018a6146106c9578063751039fc146106dd575f80fd5b8063599270441161029a578063599270441461061a5780635ea92ddd146106395780635f1893611461064d5780636a486a8e14610661575f80fd5b806349bd5a5e146105975780634a62bb65146105ca5780634fbee193146105e3575f80fd5b80631a8145bb1161033557806327c8f8351161030557806327c8f83514610528578063313ce5671461053d57806339509351146105585780633dc599ff14610577575f80fd5b80631a8145bb146104be578063203e727e146104d357806323b872dd146104f457806324b9f3c114610513575f80fd5b8063156c2f3511610370578063156c2f35146104275780631694505e1461044a57806318160ddd1461049557806319eab042146104a9575f80fd5b806306fdde03146103a0578063095ea7b3146103ca57806310d5de53146103f9575f80fd5b3661039c57005b5f80fd5b3480156103ab575f80fd5b506103b4610ae8565b6040516103c19190612ab4565b60405180910390f35b3480156103d5575f80fd5b506103e96103e4366004612b13565b610b78565b60405190151581526020016103c1565b348015610404575f80fd5b506103e9610413366004612b3d565b60196020525f908152604090205460ff1681565b348015610432575f80fd5b5061043c600e5481565b6040519081526020016103c1565b348015610455575f80fd5b5061047d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103c1565b3480156104a0575f80fd5b5060025461043c565b3480156104b4575f80fd5b5061043c60125481565b3480156104c9575f80fd5b5061043c60165481565b3480156104de575f80fd5b506104f26104ed366004612b58565b610b8e565b005b3480156104ff575f80fd5b506103e961050e366004612b6f565b610c74565b34801561051e575f80fd5b5061043c60155481565b348015610533575f80fd5b5061047d61dead81565b348015610548575f80fd5b50604051601281526020016103c1565b348015610563575f80fd5b506103e9610572366004612b13565b610d1c565b348015610582575f80fd5b50600b546103e9906301000000900460ff1681565b3480156105a2575f80fd5b5061047d7f0000000000000000000000002f7bb943299f4a95ed9f8df4156b2e52abba8de381565b3480156105d5575f80fd5b50600b546103e99060ff1681565b3480156105ee575f80fd5b506103e96105fd366004612b3d565b6001600160a01b03165f9081526018602052604090205460ff1690565b348015610625575f80fd5b5060075461047d906001600160a01b031681565b348015610644575f80fd5b506104f2610d57565b348015610658575f80fd5b506104f2610e76565b34801561066c575f80fd5b5061043c60115481565b348015610681575f80fd5b50600b546103e99062010000900460ff1681565b3480156106a0575f80fd5b5061043c6106af366004612b3d565b6001600160a01b03165f9081526020819052604090205490565b3480156106d4575f80fd5b506104f2610eb5565b3480156106e8575f80fd5b506103e9610eea565b3480156106fc575f80fd5b506104f261070b366004612bba565b610f26565b34801561071b575f80fd5b506104f261072a366004612b3d565b610f7a565b34801561073a575f80fd5b5060065461047d906001600160a01b031681565b348015610759575f80fd5b506104f2610768366004612b3d565b610fc4565b348015610778575f80fd5b506104f2610787366004612b3d565b611049565b348015610797575f80fd5b506104f26107a6366004612bf1565b6110cf565b3480156107b6575f80fd5b506104f2611170565b3480156107ca575f80fd5b506005546001600160a01b031661047d565b3480156107e7575f80fd5b506104f26107f6366004612c1a565b6111ad565b348015610806575f80fd5b506103b46111f3565b34801561081a575f80fd5b506104f2610829366004612bba565b611202565b348015610839575f80fd5b5061043c60105481565b34801561084e575f80fd5b506103e961085d366004612b13565b6112dd565b34801561086d575f80fd5b506103e961087c366004612b13565b611375565b34801561088c575f80fd5b506104f261089b366004612b3d565b611381565b3480156108ab575f80fd5b506103e96108ba366004612b3d565b601a6020525f908152604090205460ff1681565b3480156108d9575f80fd5b50600b546103e990610100900460ff1681565b3480156108f7575f80fd5b506104f2610906366004612c35565b611407565b348015610916575f80fd5b506104f2610925366004612bba565b611569565b348015610935575f80fd5b506104f2610944366004612bf1565b6115f1565b348015610954575f80fd5b506104f2610963366004612b58565b611694565b348015610973575f80fd5b5061043c60085481565b348015610988575f80fd5b506103e9610997366004612b58565b611765565b3480156109a7575f80fd5b5061043c60145481565b3480156109bc575f80fd5b5061043c600d5481565b3480156109d1575f80fd5b5061043c6109e0366004612c35565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610a15575f80fd5b506104f2610a24366004612b3d565b6118b6565b348015610a34575f80fd5b5061043c60095481565b348015610a49575f80fd5b5061043c600f5481565b348015610a5e575f80fd5b506104f2610a6d366004612b3d565b611a29565b348015610a7d575f80fd5b5061043c60135481565b348015610a92575f80fd5b5061043c600a5481565b348015610aa7575f80fd5b5061043c60175481565b348015610abc575f80fd5b506103e9610acb366004612b3d565b6001600160a01b03165f908152600c602052604090205460ff1690565b606060038054610af790612c61565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2390612c61565b8015610b6e5780601f10610b4557610100808354040283529160200191610b6e565b820191905f5260205f20905b815481529060010190602001808311610b5157829003601f168201915b5050505050905090565b5f610b84338484611ac4565b5060015b92915050565b6005546001600160a01b03163314610bc15760405162461bcd60e51b8152600401610bb890612c99565b60405180910390fd5b670de0b6b3a76400006103e8610bd660025490565b610be1906005612ce2565b610beb9190612cf9565b610bf59190612cf9565b811015610c5c5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610bb8565b610c6e81670de0b6b3a7640000612ce2565b60085550565b5f610c80848484611be7565b6001600160a01b0384165f90815260016020908152604080832033845290915290205482811015610d045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610bb8565b610d118533858403611ac4565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610b84918590610d52908690612d18565b611ac4565b6005546001600160a01b03163314610d815760405162461bcd60e51b8152600401610bb890612c99565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610dbc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610de09190612d2b565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610e24573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e489190612d42565b5060405133904780156108fc02915f818181858888f19350505050158015610e72573d5f803e3d5ffd5b5050565b6005546001600160a01b03163314610ea05760405162461bcd60e51b8152600401610bb890612c99565b600b805463ff00000019166301000000179055565b6005546001600160a01b03163314610edf5760405162461bcd60e51b8152600401610bb890612c99565b610ee85f612391565b565b6005545f906001600160a01b03163314610f165760405162461bcd60e51b8152600401610bb890612c99565b50600b805460ff19169055600190565b6005546001600160a01b03163314610f505760405162461bcd60e51b8152600401610bb890612c99565b6001600160a01b03919091165f908152601960205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610fa45760405162461bcd60e51b8152600401610bb890612c99565b6001600160a01b03165f908152600c60205260409020805460ff19169055565b6005546001600160a01b03163314610fee5760405162461bcd60e51b8152600401610bb890612c99565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114611037576040519150601f19603f3d011682016040523d82523d5f602084013e61103c565b606091505b5050905080610e72575f80fd5b6005546001600160a01b031633146110735760405162461bcd60e51b8152600401610bb890612c99565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f961668905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146110f95760405162461bcd60e51b8152600401610bb890612c99565b600e839055600f8290556010819055806111138385612d18565b61111d9190612d18565b600d8190556005101561116b5760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610bb8565b505050565b6005546001600160a01b0316331461119a5760405162461bcd60e51b8152600401610bb890612c99565b600b805462ffff00191662010100179055565b6005546001600160a01b031633146111d75760405162461bcd60e51b8152600401610bb890612c99565b600b8054911515620100000262ff000019909216919091179055565b606060048054610af790612c61565b6005546001600160a01b0316331461122c5760405162461bcd60e51b8152600401610bb890612c99565b7f0000000000000000000000002f7bb943299f4a95ed9f8df4156b2e52abba8de36001600160a01b0316826001600160a01b0316036112d35760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610bb8565b610e7282826123e2565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561135e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bb8565b61136b3385858403611ac4565b5060019392505050565b5f610b84338484611be7565b6005546001600160a01b031633146113ab5760405162461bcd60e51b8152600401610bb890612c99565b6006546040516001600160a01b03918216918316907fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146114315760405162461bcd60e51b8152600401610bb890612c99565b6001600160a01b0382166114875760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610bb8565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156114cb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114ef9190612d2b565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af115801561153f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115639190612d42565b50505050565b6005546001600160a01b031633146115935760405162461bcd60e51b8152600401610bb890612c99565b6001600160a01b0382165f81815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461161b5760405162461bcd60e51b8152600401610bb890612c99565b601283905560138290556014819055806116358385612d18565b61163f9190612d18565b60118190556005101561116b5760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610bb8565b6005546001600160a01b031633146116be5760405162461bcd60e51b8152600401610bb890612c99565b670de0b6b3a76400006103e86116d360025490565b6116de90600a612ce2565b6116e89190612cf9565b6116f29190612cf9565b81101561174d5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263312e302560e01b6064820152608401610bb8565b61175f81670de0b6b3a7640000612ce2565b600a5550565b6005545f906001600160a01b031633146117915760405162461bcd60e51b8152600401610bb890612c99565b620186a061179e60025490565b6117a9906001612ce2565b6117b39190612cf9565b8210156118205760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610bb8565b6103e861182c60025490565b611837906005612ce2565b6118419190612cf9565b8211156118ad5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610bb8565b50600955600190565b6005546001600160a01b031633146118e05760405162461bcd60e51b8152600401610bb890612c99565b600b546301000000900460ff16156119445760405162461bcd60e51b815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610bb8565b7f0000000000000000000000002f7bb943299f4a95ed9f8df4156b2e52abba8de36001600160a01b0316816001600160a01b0316141580156119a357506001600160a01b038116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b611a065760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201526d32b91037b9103b19103837b7b61760911b6064820152608401610bb8565b6001600160a01b03165f908152600c60205260409020805460ff19166001179055565b6005546001600160a01b03163314611a535760405162461bcd60e51b8152600401610bb890612c99565b6001600160a01b038116611ab85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb8565b611ac181612391565b50565b6001600160a01b038316611b265760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bb8565b6001600160a01b038216611b875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bb8565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611c0d5760405162461bcd60e51b8152600401610bb890612d5d565b6001600160a01b038216611c335760405162461bcd60e51b8152600401610bb890612da2565b6001600160a01b0383165f908152600c602052604090205460ff1615611c905760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610bb8565b6001600160a01b0382165f908152600c602052604090205460ff1615611cef5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610bb8565b805f03611d015761116b83835f612435565b600b5460ff161561206e576005546001600160a01b03848116911614801590611d3857506005546001600160a01b03838116911614155b8015611d4c57506001600160a01b03821615155b8015611d6357506001600160a01b03821661dead14155b8015611d795750600554600160a01b900460ff16155b1561206e57600b54610100900460ff16611e0f576001600160a01b0383165f9081526018602052604090205460ff1680611dca57506001600160a01b0382165f9081526018602052604090205460ff165b611e0f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610bb8565b6001600160a01b0383165f908152601a602052604090205460ff168015611e4e57506001600160a01b0382165f9081526019602052604090205460ff16155b15611f3157600854811115611ec35760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610bb8565b600a546001600160a01b0383165f90815260208190526040902054611ee89083612d18565b1115611f2c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb8565b61206e565b6001600160a01b0382165f908152601a602052604090205460ff168015611f7057506001600160a01b0383165f9081526019602052604090205460ff16155b15611fe657600854811115611f2c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610bb8565b6001600160a01b0382165f9081526019602052604090205460ff1661206e57600a546001600160a01b0383165f9081526020819052604090205461202a9083612d18565b111561206e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610bb8565b305f90815260208190526040902054600954811080159081906120995750600b5462010000900460ff165b80156120af5750600554600160a01b900460ff16155b80156120d357506001600160a01b0385165f908152601a602052604090205460ff16155b80156120f757506001600160a01b0385165f9081526018602052604090205460ff16155b801561211b57506001600160a01b0384165f9081526018602052604090205460ff16155b15612149576005805460ff60a01b1916600160a01b17905561213b612587565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526018602052604090205460ff600160a01b90920482161591168061219557506001600160a01b0385165f9081526018602052604090205460ff165b1561219d57505f5b5f811561237d576001600160a01b0386165f908152601a602052604090205460ff1680156121cc57505f601154115b15612287576121f160646121eb601154886127d390919063ffffffff16565b906127e5565b9050601154601354826122049190612ce2565b61220e9190612cf9565b60165f82825461221e9190612d18565b90915550506011546014546122339083612ce2565b61223d9190612cf9565b60175f82825461224d9190612d18565b90915550506011546012546122629083612ce2565b61226c9190612cf9565b60155f82825461227c9190612d18565b9091555061235f9050565b6001600160a01b0387165f908152601a602052604090205460ff1680156122af57505f600d54115b1561235f576122ce60646121eb600d54886127d390919063ffffffff16565b9050600d54600f54826122e19190612ce2565b6122eb9190612cf9565b60165f8282546122fb9190612d18565b9091555050600d546010546123109083612ce2565b61231a9190612cf9565b60175f82825461232a9190612d18565b9091555050600d54600e5461233f9083612ce2565b6123499190612cf9565b60155f8282546123599190612d18565b90915550505b801561237057612370873083612435565b61237a8186612de5565b94505b612388878787612435565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661245b5760405162461bcd60e51b8152600401610bb890612d5d565b6001600160a01b0382166124815760405162461bcd60e51b8152600401610bb890612da2565b6001600160a01b0383165f90815260208190526040902054818110156124f85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bb8565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061252e908490612d18565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161257a91815260200190565b60405180910390a3611563565b305f9081526020819052604081205490505f6017546015546016546125ac9190612d18565b6125b69190612d18565b90505f8215806125c4575081155b156125ce57505050565b6009546125dc906014612ce2565b8311156125f4576009546125f1906014612ce2565b92505b5f600283601654866126069190612ce2565b6126109190612cf9565b61261a9190612cf9565b90505f61262785836127f0565b905047612633826127fb565b5f61263e47836127f0565b90505f61266b60026016546126539190612cf9565b61265d9089612de5565b6015546121eb9085906127d3565b90505f61269860026016546126809190612cf9565b61268a908a612de5565b6017546121eb9086906127d3565b90505f816126a68486612de5565b6126b09190612de5565b5f6016819055601581905560178190556007546040519293506001600160a01b031691849181818185875af1925050503d805f811461270a576040519150601f19603f3d011682016040523d82523d5f602084013e61270f565b606091505b5090985050861580159061272257505f81115b156127755761273187826129b1565b601654604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b039091169047905f81818185875af1925050503d805f81146127bf576040519150601f19603f3d011682016040523d82523d5f602084013e6127c4565b606091505b50505050505050505050505050565b5f6127de8284612ce2565b9392505050565b5f6127de8284612cf9565b5f6127de8284612de5565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061282e5761282e612df8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128ce9190612e0c565b816001815181106128e1576128e1612df8565b60200260200101906001600160a01b031690816001600160a01b03168152505061292c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ac4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906129809085905f90869030904290600401612e27565b5f604051808303815f87803b158015612997575f80fd5b505af11580156129a9573d5f803e3d5ffd5b505050505050565b6129dc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ac4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80612a226005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015612a88573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190612aad9190612e96565b5050505050565b5f6020808352835180828501525f5b81811015612adf57858101830151858201604001528201612ac3565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611ac1575f80fd5b5f8060408385031215612b24575f80fd5b8235612b2f81612aff565b946020939093013593505050565b5f60208284031215612b4d575f80fd5b81356127de81612aff565b5f60208284031215612b68575f80fd5b5035919050565b5f805f60608486031215612b81575f80fd5b8335612b8c81612aff565b92506020840135612b9c81612aff565b929592945050506040919091013590565b8015158114611ac1575f80fd5b5f8060408385031215612bcb575f80fd5b8235612bd681612aff565b91506020830135612be681612bad565b809150509250929050565b5f805f60608486031215612c03575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612c2a575f80fd5b81356127de81612bad565b5f8060408385031215612c46575f80fd5b8235612c5181612aff565b91506020830135612be681612aff565b600181811c90821680612c7557607f821691505b602082108103612c9357634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b8857610b88612cce565b5f82612d1357634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b8857610b88612cce565b5f60208284031215612d3b575f80fd5b5051919050565b5f60208284031215612d52575f80fd5b81516127de81612bad565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b8857610b88612cce565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612e1c575f80fd5b81516127de81612aff565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612e755784516001600160a01b031683529383019391830191600101612e50565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612ea8575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220dd367c00fc38ee979dba4f28ed685ebca3178fc7756cd3e63c6243e7e73fa60e64736f6c63430008140033
Deployed Bytecode Sourcemap
31136:17353:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9095:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11262:169;;;;;;;;;;-1:-1:-1;11262:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11262:169:0;1023:187:1;32405:63:0;;;;;;;;;;-1:-1:-1;32405:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31897:29;;;;;;;;;;;;;;;;;;;1613:25:1;;;1601:2;1586:18;31897:29:0;1467:177:1;31216:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;31216:51:0;1649:230:1;10215:108:0;;;;;;;;;;-1:-1:-1;10303:12:0;;10215:108;;32039:30;;;;;;;;;;;;;;;;32188:33;;;;;;;;;;;;;;;;36429:275;;;;;;;;;;-1:-1:-1;36429:275:0;;;;;:::i;:::-;;:::i;:::-;;11913:492;;;;;;;;;;-1:-1:-1;11913:492:0;;;;;:::i;:::-;;:::i;32149:32::-;;;;;;;;;;;;;;;;31319:53;;;;;;;;;;;;31365:6;31319:53;;10057:93;;;;;;;;;;-1:-1:-1;10057:93:0;;10140:2;2880:36:1;;2868:2;2853:18;10057:93:0;2738:184:1;12814:215:0;;;;;;;;;;-1:-1:-1;12814:215:0;;;;;:::i;:::-;;:::i;31716:38::-;;;;;;;;;;-1:-1:-1;31716:38:0;;;;;;;;;;;31274;;;;;;;;;;;;;;;31596:33;;;;;;;;;;-1:-1:-1;31596:33:0;;;;;;;;39240:126;;;;;;;;;;-1:-1:-1;39240:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39330:28:0;39306:4;39330:28;;;:19;:28;;;;;;;;;39240:126;31447:25;;;;;;;;;;-1:-1:-1;31447:25:0;;;;-1:-1:-1;;;;;31447:25:0;;;46466:257;;;;;;;;;;;;;:::i;47277:90::-;;;;;;;;;;;;;:::i;32004:28::-;;;;;;;;;;;;;;;;31676:31;;;;;;;;;;-1:-1:-1;31676:31:0;;;;;;;;;;;10386:127;;;;;;;;;;-1:-1:-1;10386:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10487:18:0;10460:7;10487:18;;;;;;;;;;;;10386:127;2612:103;;;;;;;;;;;;;:::i;35733:121::-;;;;;;;;;;;;;:::i;36977:167::-;;;;;;;;;;-1:-1:-1;36977:167:0;;;;;:::i;:::-;;:::i;48388:98::-;;;;;;;;;;-1:-1:-1;48388:98:0;;;;;:::i;:::-;;:::i;31411:29::-;;;;;;;;;;-1:-1:-1;31411:29:0;;;;-1:-1:-1;;;;;31411:29:0;;;47027:196;;;;;;;;;;-1:-1:-1;47027:196:0;;;;;:::i;:::-;;:::i;39071:161::-;;;;;;;;;;-1:-1:-1;39071:161:0;;;;;:::i;:::-;;:::i;37348:395::-;;;;;;;;;;-1:-1:-1;37348:395:0;;;;;:::i;:::-;;:::i;35561:120::-;;;;;;;;;;;;;:::i;1961:87::-;;;;;;;;;;-1:-1:-1;2034:6:0;;-1:-1:-1;;;;;2034:6:0;1961:87;;37240:100;;;;;;;;;;-1:-1:-1;37240:100:0;;;;;:::i;:::-;;:::i;9314:104::-;;;;;;;;;;;;;:::i;38354:304::-;;;;;;;;;;-1:-1:-1;38354:304:0;;;;;:::i;:::-;;:::i;31970:25::-;;;;;;;;;;;;;;;;13532:413;;;;;;;;;;-1:-1:-1;13532:413:0;;;;;:::i;:::-;;:::i;10726:175::-;;;;;;;;;;-1:-1:-1;10726:175:0;;;;;:::i;:::-;;:::i;38862:201::-;;;;;;;;;;-1:-1:-1;38862:201:0;;;;;:::i;:::-;;:::i;32626:57::-;;;;;;;;;;-1:-1:-1;32626:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31636:33;;;;;;;;;;-1:-1:-1;31636:33:0;;;;;;;;;;;46731:288;;;;;;;;;;-1:-1:-1;46731:288:0;;;;;:::i;:::-;;:::i;38164:182::-;;;;;;;;;;-1:-1:-1;38164:182:0;;;;;:::i;:::-;;:::i;37751:405::-;;;;;;;;;;-1:-1:-1;37751:405:0;;;;;:::i;:::-;;:::i;36712:257::-;;;;;;;;;;-1:-1:-1;36712:257:0;;;;;:::i;:::-;;:::i;31481:35::-;;;;;;;;;;;;;;;;35924:497;;;;;;;;;;-1:-1:-1;35924:497:0;;;;;:::i;:::-;;:::i;32114:26::-;;;;;;;;;;;;;;;;31863:27;;;;;;;;;;;;;;;;10964:151;;;;;;;;;;-1:-1:-1;10964:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11080:18:0;;;11053:7;11080:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10964:151;47852:403;;;;;;;;;;-1:-1:-1;47852:403:0;;;;;:::i;:::-;;:::i;31523:33::-;;;;;;;;;;;;;;;;31933:30;;;;;;;;;;;;;;;;2870:201;;;;;;;;;;-1:-1:-1;2870:201:0;;;;;:::i;:::-;;:::i;32076:31::-;;;;;;;;;;;;;;;;31563:24;;;;;;;;;;;;;;;;32228:28;;;;;;;;;;;;;;;;39374:113;;;;;;;;;;-1:-1:-1;39374:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;39459:20:0;39435:4;39459:20;;;:11;:20;;;;;;;;;39374:113;9095:100;9149:13;9182:5;9175:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9095:100;:::o;11262:169::-;11345:4;11362:39;908:10;11385:7;11394:6;11362:8;:39::i;:::-;-1:-1:-1;11419:4:0;11262:169;;;;;:::o;36429:275::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;;;;;;;;;36566:4:::1;36558;36537:13;10303:12:::0;;;10215:108;36537:13:::1;:17;::::0;36553:1:::1;36537:17;:::i;:::-;36536:26;;;;:::i;:::-;36535:35;;;;:::i;:::-;36525:6;:45;;36503:142;;;::::0;-1:-1:-1;;;36503:142:0;;5872:2:1;36503: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;;36503:142:0::1;5670:411:1::0;36503:142:0::1;36679:17;:6:::0;36689::::1;36679:17;:::i;:::-;36656:20;:40:::0;-1:-1:-1;36429:275:0:o;11913:492::-;12053:4;12070:36;12080:6;12088:9;12099:6;12070:9;:36::i;:::-;-1:-1:-1;;;;;12146:19:0;;12119:24;12146:19;;;:11;:19;;;;;;;;908:10;12146:33;;;;;;;;12198:26;;;;12190:79;;;;-1:-1:-1;;;12190:79:0;;6288:2:1;12190: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;;12190:79:0;6086:404:1;12190:79:0;12305:57;12314:6;908:10;12355:6;12336:16;:25;12305:8;:57::i;:::-;-1:-1:-1;12393:4:0;;11913:492;-1:-1:-1;;;;11913:492:0:o;12814:215::-;908:10;12902:4;12951:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12951:34:0;;;;;;;;;;12902:4;;12919:80;;12942:7;;12951:47;;12988:10;;12951:47;:::i;:::-;12919:8;:80::i;46466:257::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;46545:46:::1;::::0;-1:-1:-1;;;46545:46:0;;46560:4:::1;46545:46;::::0;::::1;1822:51:1::0;;;46527:15:0::1;::::0;46545:31:::1;::::0;1795:18:1;;46545:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46602:51;::::0;-1:-1:-1;;;46602:51:0;;46633:10:::1;46602:51;::::0;::::1;6988::1::0;7055:18;;;7048:34;;;46527:64:0;;-1:-1:-1;46617:4:0::1;::::0;46602:30:::1;::::0;6961:18:1;;46602:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;46664:51:0::1;::::0;46672:10:::1;::::0;46693:21:::1;46664:51:::0;::::1;;;::::0;::::1;::::0;;;46693:21;46672:10;46664:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;46516:207;46466:257::o:0;47277:90::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;47334:18:::1;:25:::0;;-1:-1:-1;;47334:25:0::1;::::0;::::1;::::0;;47277:90::o;2612:103::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;2677:30:::1;2704:1;2677:18;:30::i;:::-;2612:103::o:0;35733:121::-;2034:6;;35785:4;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;-1:-1:-1;35802:14:0::1;:22:::0;;-1:-1:-1;;35802:22:0::1;::::0;;;35733:121;:::o;36977:167::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37090:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37090:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36977:167::o;48388:98::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48452:18:0::1;48473:5;48452:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;48452:26:0::1;::::0;;48388:98::o;47027:196::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;47100:12:::1;47118:6;-1:-1:-1::0;;;;;47118:11:0::1;47151:21;47118:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47099:89;;;47207:7;47199:16;;;::::0;::::1;39071:161:::0;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;39180:10:::1;::::0;39151:40:::1;::::0;-1:-1:-1;;;;;39180:10:0;;::::1;::::0;39151:40;::::1;::::0;::::1;::::0;39180:10:::1;::::0;39151:40:::1;39202:10;:22:::0;;-1:-1:-1;;;;;;39202:22:0::1;-1:-1:-1::0;;;;;39202:22:0;;;::::1;::::0;;;::::1;::::0;;39071:161::o;37348:395::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;37498:14:::1;:29:::0;;;37538:15:::1;:31:::0;;;37580:10:::1;:21:::0;;;37593:8;37627:32:::1;37556:13:::0;37515:12;37627:32:::1;:::i;:::-;:45;;;;:::i;:::-;37612:12;:60:::0;;;37707:1:::1;-1:-1:-1::0;37691:17:0::1;37683:52;;;::::0;-1:-1:-1;;;37683:52:0;;7755:2:1;37683:52:0::1;::::0;::::1;7737:21:1::0;7794:2;7774:18;;;7767:30;-1:-1:-1;;;7813:18:1;;;7806:52;7875:18;;37683:52:0::1;7553:346:1::0;37683:52:0::1;37348:395:::0;;;:::o;35561:120::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;35616:13:::1;:20:::0;;-1:-1:-1;;35647:18:0;;;;;35561:120::o;37240:100::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;37311:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37311:21:0;;::::1;::::0;;;::::1;::::0;;37240:100::o;9314:104::-;9370:13;9403:7;9396:14;;;;;:::i;38354:304::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;38498:13:::1;-1:-1:-1::0;;;;;38490:21:0::1;:4;-1:-1:-1::0;;;;;38490:21:0::1;::::0;38468:128:::1;;;::::0;-1:-1:-1;;;38468:128:0;;8106:2:1;38468:128:0::1;::::0;::::1;8088:21:1::0;8145:2;8125:18;;;8118:30;8184:34;8164:18;;;8157:62;8255:27;8235:18;;;8228:55;8300:19;;38468:128:0::1;7904:421:1::0;38468:128:0::1;38609:41;38638:4;38644:5;38609:28;:41::i;13532:413::-:0;908:10;13625:4;13669:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13669:34:0;;;;;;;;;;13722:35;;;;13714:85;;;;-1:-1:-1;;;13714:85:0;;8532:2:1;13714:85:0;;;8514:21:1;8571:2;8551:18;;;8544:30;8610:34;8590:18;;;8583:62;-1:-1:-1;;;8661:18:1;;;8654:35;8706:19;;13714:85:0;8330:401:1;13714:85:0;13835:67;908:10;13858:7;13886:15;13867:16;:34;13835:8;:67::i;:::-;-1:-1:-1;13933:4:0;;13532:413;-1:-1:-1;;;13532:413:0:o;10726:175::-;10812:4;10829:42;908:10;10853:9;10864:6;10829:9;:42::i;38862:201::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;38995:14:::1;::::0;38954:56:::1;::::0;-1:-1:-1;;;;;38995:14:0;;::::1;::::0;38954:56;::::1;::::0;::::1;::::0;38995:14:::1;::::0;38954:56:::1;39021:14;:34:::0;;-1:-1:-1;;;;;;39021:34:0::1;-1:-1:-1::0;;;;;39021:34:0;;;::::1;::::0;;;::::1;::::0;;38862:201::o;46731:288::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46826:20:0;::::1;46818:59;;;::::0;-1:-1:-1;;;46818:59:0;;8938:2:1;46818:59:0::1;::::0;::::1;8920:21:1::0;8977:2;8957:18;;;8950:30;9016:28;8996:18;;;8989:56;9062:18;;46818:59:0::1;8736:350:1::0;46818:59:0::1;46915:39;::::0;-1:-1:-1;;;46915:39:0;;46948:4:::1;46915:39;::::0;::::1;1822:51:1::0;46888:24:0::1;::::0;-1:-1:-1;;;;;46915:24:0;::::1;::::0;::::1;::::0;1795:18:1;;46915:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46965:46;::::0;-1:-1:-1;;;46965:46:0;;-1:-1:-1;;;;;7006:32:1;;;46965:46:0::1;::::0;::::1;6988:51:1::0;7055:18;;;7048:34;;;46888:66:0;;-1:-1:-1;46965:23:0;;::::1;::::0;::::1;::::0;6961:18:1;;46965:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46807:212;46731:288:::0;;:::o;38164:182::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38249:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38249:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38304:34;;1163:41:1;;;38304:34:0::1;::::0;1136:18:1;38304:34:0::1;;;;;;;38164:182:::0;;:::o;37751:405::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;37902:15:::1;:30:::0;;;37943:16:::1;:32:::0;;;37986:11:::1;:22:::0;;;38000:8;38035:34:::1;37962:13:::0;37920:12;38035:34:::1;:::i;:::-;:48;;;;:::i;:::-;38019:13;:64:::0;;;38119:1:::1;-1:-1:-1::0;38102:18:0::1;38094:54;;;::::0;-1:-1:-1;;;38094:54:0;;9293:2:1;38094:54:0::1;::::0;::::1;9275:21:1::0;9332:2;9312:18;;;9305:30;9371:25;9351:18;;;9344:53;9414:18;;38094:54:0::1;9091:347:1::0;36712:257:0;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;36853:4:::1;36845;36823:13;10303:12:::0;;;10215:108;36823:13:::1;:18;::::0;36839:2:::1;36823:18;:::i;:::-;36822:27;;;;:::i;:::-;36821:36;;;;:::i;:::-;36811:6;:46;;36789:132;;;::::0;-1:-1:-1;;;36789:132:0;;9645:2:1;36789:132:0::1;::::0;::::1;9627:21:1::0;9684:2;9664:18;;;9657:30;9723:34;9703:18;;;9696:62;-1:-1:-1;;;9774:18:1;;;9767:34;9818:19;;36789:132:0::1;9443:400:1::0;36789:132:0::1;36944:17;:6:::0;36954::::1;36944:17;:::i;:::-;36932:9;:29:::0;-1:-1:-1;36712:257:0:o;35924:497::-;2034:6;;36032:4;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;36111:6:::1;36090:13;10303:12:::0;;;10215:108;36090:13:::1;:17;::::0;36106:1:::1;36090:17;:::i;:::-;36089:28;;;;:::i;:::-;36076:9;:41;;36054:144;;;::::0;-1:-1:-1;;;36054:144:0;;10050:2:1;36054:144:0::1;::::0;::::1;10032:21:1::0;10089:2;10069:18;;;10062:30;10128:34;10108:18;;;10101:62;-1:-1:-1;;;10179:18:1;;;10172:51;10240:19;;36054:144:0::1;9848:417:1::0;36054:144:0::1;36266:4;36245:13;10303:12:::0;;;10215:108;36245:13:::1;:17;::::0;36261:1:::1;36245:17;:::i;:::-;36244:26;;;;:::i;:::-;36231:9;:39;;36209:141;;;::::0;-1:-1:-1;;;36209:141:0;;10472:2:1;36209:141:0::1;::::0;::::1;10454:21:1::0;10511:2;10491:18;;;10484:30;10550:34;10530:18;;;10523:62;-1:-1:-1;;;10601:18:1;;;10594:50;10661:19;;36209:141:0::1;10270:416:1::0;36209:141:0::1;-1:-1:-1::0;36361:18:0::1;:30:::0;36409:4:::1;::::0;35924:497::o;47852:403::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;47940:18:::1;::::0;;;::::1;;;47939:19;47931:65;;;::::0;-1:-1:-1;;;47931:65:0;;10893:2:1;47931:65:0::1;::::0;::::1;10875:21:1::0;10932:2;10912:18;;;10905:30;10971:34;10951:18;;;10944:62;-1:-1:-1;;;11022:18:1;;;11015:31;11063:19;;47931:65:0::1;10691:397:1::0;47931:65:0::1;48050:13;-1:-1:-1::0;;;;;48029:35:0::1;:9;-1:-1:-1::0;;;;;48029:35:0::1;;;:103;;;;-1:-1:-1::0;;;;;;48068:64:0;::::1;48089:42;48068:64;;48029:103;48007:200;;;::::0;-1:-1:-1;;;48007:200:0;;11295:2:1;48007:200:0::1;::::0;::::1;11277:21:1::0;11334:2;11314:18;;;11307:30;11373:34;11353:18;;;11346:62;-1:-1:-1;;;11424:18:1;;;11417:44;11478:19;;48007:200:0::1;11093:410:1::0;48007:200:0::1;-1:-1:-1::0;;;;;48218:22:0::1;;::::0;;;:11:::1;:22;::::0;;;;:29;;-1:-1:-1;;48218:29:0::1;48243:4;48218:29;::::0;;47852:403::o;2870:201::-;2034:6;;-1:-1:-1;;;;;2034:6:0;908:10;2181:23;2173:68;;;;-1:-1:-1;;;2173:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2959:22:0;::::1;2951:73;;;::::0;-1:-1:-1;;;2951:73:0;;11710:2:1;2951:73:0::1;::::0;::::1;11692:21:1::0;11749:2;11729:18;;;11722:30;11788:34;11768:18;;;11761:62;-1:-1:-1;;;11839:18:1;;;11832:36;11885:19;;2951:73:0::1;11508:402:1::0;2951:73:0::1;3035:28;3054:8;3035:18;:28::i;:::-;2870:201:::0;:::o;17216:380::-;-1:-1:-1;;;;;17352:19:0;;17344:68;;;;-1:-1:-1;;;17344:68:0;;12117:2:1;17344:68:0;;;12099:21:1;12156:2;12136:18;;;12129:30;12195:34;12175:18;;;12168:62;-1:-1:-1;;;12246:18:1;;;12239:34;12290:19;;17344:68:0;11915:400:1;17344:68:0;-1:-1:-1;;;;;17431:21:0;;17423:68;;;;-1:-1:-1;;;17423:68:0;;12522:2:1;17423:68:0;;;12504:21:1;12561:2;12541:18;;;12534:30;12600:34;12580:18;;;12573:62;-1:-1:-1;;;12651:18:1;;;12644:32;12693:19;;17423:68:0;12320:398:1;17423:68:0;-1:-1:-1;;;;;17504:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17556:32;;1613:25:1;;;17556:32:0;;1586:18:1;17556:32:0;;;;;;;17216:380;;;:::o;39495:4064::-;-1:-1:-1;;;;;39627:18:0;;39619:68;;;;-1:-1:-1;;;39619:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39706:16:0;;39698:64;;;;-1:-1:-1;;;39698:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39782:17:0;;;;;;:11;:17;;;;;;;;39781:18;39773:48;;;;-1:-1:-1;;;39773:48:0;;13735:2:1;39773:48:0;;;13717:21:1;13774:2;13754:18;;;13747:30;-1:-1:-1;;;13793:18:1;;;13786:48;13851:18;;39773:48:0;13533:342:1;39773:48:0;-1:-1:-1;;;;;39841:15:0;;;;;;:11;:15;;;;;;;;39840:16;39832:48;;;;-1:-1:-1;;;39832:48:0;;14082:2:1;39832:48:0;;;14064:21:1;14121:2;14101:18;;;14094:30;-1:-1:-1;;;14140:18:1;;;14133:50;14200:18;;39832:48:0;13880:344:1;39832:48:0;39919:6;39929:1;39919:11;39915:93;;39947:28;39963:4;39969:2;39973:1;39947:15;:28::i;39915:93::-;40024:14;;;;40020:1694;;;2034:6;;-1:-1:-1;;;;;40077:15:0;;;2034:6;;40077:15;;;;:49;;-1:-1:-1;2034:6:0;;-1:-1:-1;;;;;40113:13:0;;;2034:6;;40113:13;;40077:49;:86;;;;-1:-1:-1;;;;;;40147:16:0;;;;40077:86;:128;;;;-1:-1:-1;;;;;;40184:21:0;;40198:6;40184:21;;40077:128;:158;;;;-1:-1:-1;40227:8:0;;-1:-1:-1;;;40227:8:0;;;;40226:9;40077:158;40055:1648;;;40275:13;;;;;;;40270:223;;-1:-1:-1;;;;;40347:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40376:23:0;;;;;;:19;:23;;;;;;;;40347:52;40313:160;;;;-1:-1:-1;;;40313:160:0;;14431:2:1;40313:160:0;;;14413:21:1;14470:2;14450:18;;;14443:30;-1:-1:-1;;;14489:18:1;;;14482:52;14551:18;;40313:160:0;14229:346:1;40313:160:0;-1:-1:-1;;;;;40567:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40624:35:0;;;;;;:31;:35;;;;;;;;40623:36;40567:92;40541:1147;;;40746:20;;40736:6;:30;;40702:169;;;;-1:-1:-1;;;40702:169:0;;14782:2:1;40702:169:0;;;14764:21:1;14821:2;14801:18;;;14794:30;14860:34;14840:18;;;14833:62;-1:-1:-1;;;14911:18:1;;;14904:51;14972:19;;40702:169:0;14580:417:1;40702:169:0;40954:9;;-1:-1:-1;;;;;10487:18:0;;10460:7;10487:18;;;;;;;;;;;40928:22;;:6;:22;:::i;:::-;:35;;40894:140;;;;-1:-1:-1;;;40894:140:0;;15204:2:1;40894:140:0;;;15186:21:1;15243:2;15223:18;;;15216:30;-1:-1:-1;;;15262:18:1;;;15255:49;15321:18;;40894:140:0;15002:343:1;40894:140:0;40541:1147;;;-1:-1:-1;;;;;41132:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41187:37:0;;;;;;:31;:37;;;;;;;;41186:38;41132:92;41106:582;;;41311:20;;41301:6;:30;;41267:170;;;;-1:-1:-1;;;41267:170:0;;15552:2:1;41267:170:0;;;15534:21:1;15591:2;15571:18;;;15564:30;15630:34;15610:18;;;15603:62;-1:-1:-1;;;15681:18:1;;;15674:52;15743:19;;41267:170:0;15350:418:1;41106:582:0;-1:-1:-1;;;;;41468:35:0;;;;;;:31;:35;;;;;;;;41463:225;;41588:9;;-1:-1:-1;;;;;10487:18:0;;10460:7;10487:18;;;;;;;;;;;41562:22;;:6;:22;:::i;:::-;:35;;41528:140;;;;-1:-1:-1;;;41528:140:0;;15204:2:1;41528:140:0;;;15186:21:1;15243:2;15223:18;;;15216:30;-1:-1:-1;;;15262:18:1;;;15255:49;15321:18;;41528:140:0;15002:343:1;41528:140:0;41775:4;41726:28;10487:18;;;;;;;;;;;41833;;41809:42;;;;;;;41882:35;;-1:-1:-1;41906:11:0;;;;;;;41882:35;:61;;;;-1:-1:-1;41935:8:0;;-1:-1:-1;;;41935:8:0;;;;41934:9;41882:61;:110;;;;-1:-1:-1;;;;;;41961:31:0;;;;;;:25;:31;;;;;;;;41960:32;41882:110;:153;;;;-1:-1:-1;;;;;;42010:25:0;;;;;;:19;:25;;;;;;;;42009:26;41882:153;:194;;;;-1:-1:-1;;;;;;42053:23:0;;;;;;:19;:23;;;;;;;;42052:24;41882:194;41864:326;;;42103:8;:15;;-1:-1:-1;;;;42103:15:0;-1:-1:-1;;;42103:15:0;;;42135:10;:8;:10::i;:::-;42162:8;:16;;-1:-1:-1;;;;42162:16:0;;;41864:326;42218:8;;-1:-1:-1;;;;;42328:25:0;;42202:12;42328:25;;;:19;:25;;;;;;42218:8;-1:-1:-1;;;42218:8:0;;;;;42217:9;;42328:25;;:52;;-1:-1:-1;;;;;;42357:23:0;;;;;;:19;:23;;;;;;;;42328:52;42324:100;;;-1:-1:-1;42407:5:0;42324:100;42436:12;42541:7;42537:969;;;-1:-1:-1;;;;;42593:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42642:1;42626:13;;:17;42593:50;42589:768;;;42671:34;42701:3;42671:25;42682:13;;42671:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;42664:41;;42774:13;;42754:16;;42747:4;:23;;;;:::i;:::-;42746:41;;;;:::i;:::-;42724:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42846:13:0;;42831:11;;42824:18;;:4;:18;:::i;:::-;42823:36;;;;:::i;:::-;42806:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;42926:13:0;;42907:15;;42900:22;;:4;:22;:::i;:::-;42899:40;;;;:::i;:::-;42878:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;42589:768:0;;-1:-1:-1;42589:768:0;;-1:-1:-1;;;;;43001:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43051:1;43036:12;;:16;43001:51;42997:360;;;43080:33;43109:3;43080:24;43091:12;;43080:6;:10;;:24;;;;:::i;:33::-;43073:40;;43181:12;;43162:15;;43155:4;:22;;;;:::i;:::-;43154:39;;;;:::i;:::-;43132:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43251:12:0;;43237:10;;43230:17;;:4;:17;:::i;:::-;43229:34;;;;:::i;:::-;43212:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;43329:12:0;;43311:14;;43304:21;;:4;:21;:::i;:::-;43303:38;;;;:::i;:::-;43282:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;42997:360:0;43377:8;;43373:91;;43406:42;43422:4;43436;43443;43406:15;:42::i;:::-;43480:14;43490:4;43480:14;;:::i;:::-;;;42537:969;43518:33;43534:4;43540:2;43544:6;43518:15;:33::i;:::-;39608:3951;;;;39495:4064;;;:::o;3231:191::-;3324:6;;;-1:-1:-1;;;;;3341:17:0;;;-1:-1:-1;;;;;;3341:17:0;;;;;;;3374:40;;3324:6;;;3341:17;3324:6;;3374:40;;3305:16;;3374:40;3294:128;3231:191;:::o;38666:188::-;-1:-1:-1;;;;;38749:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38749:39:0;;;;;;;;;;38806:40;;38749:39;;:31;38806:40;;;38666:188;;:::o;14435:733::-;-1:-1:-1;;;;;14575:20:0;;14567:70;;;;-1:-1:-1;;;14567:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14656:23:0;;14648:71;;;;-1:-1:-1;;;14648:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14816:17:0;;14792:21;14816:17;;;;;;;;;;;14852:23;;;;14844:74;;;;-1:-1:-1;;;14844:74:0;;16108:2:1;14844:74:0;;;16090:21:1;16147:2;16127:18;;;16120:30;16186:34;16166:18;;;16159:62;-1:-1:-1;;;16237:18:1;;;16230:36;16283:19;;14844:74:0;15906:402:1;14844:74:0;-1:-1:-1;;;;;14954:17:0;;;:9;:17;;;;;;;;;;;14974:22;;;14954:42;;15018:20;;;;;;;;:30;;14990:6;;14954:9;15018:30;;14990:6;;15018:30;:::i;:::-;;;;;;;;15083:9;-1:-1:-1;;;;;15066:35:0;15075:6;-1:-1:-1;;;;;15066:35:0;;15094:6;15066:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;15066:35:0;;;;;;;;15114:46;37348:395;44685:1773;44768:4;44724:23;10487:18;;;;;;;;;;;44724:50;;44785:25;44880:13;;44847:17;;44813:18;;:51;;;;:::i;:::-;:80;;;;:::i;:::-;44785:108;-1:-1:-1;44904:12:0;44933:20;;;:46;;-1:-1:-1;44957:22:0;;44933:46;44929:85;;;44996:7;;;44685:1773::o;44929:85::-;45048:18;;:23;;45069:2;45048:23;:::i;:::-;45030:15;:41;45026:115;;;45106:18;;:23;;45127:2;45106:23;:::i;:::-;45088:41;;45026:115;45202:23;45315:1;45282:17;45247:18;;45229:15;:36;;;;:::i;:::-;45228:71;;;;:::i;:::-;:88;;;;:::i;:::-;45202:114;-1:-1:-1;45327:26:0;45356:36;:15;45202:114;45356:19;:36::i;:::-;45327:65;-1:-1:-1;45433:21:0;45467:36;45327:65;45467:16;:36::i;:::-;45516:18;45537:44;:21;45563:17;45537:25;:44::i;:::-;45516:65;;45594:22;45619:83;45699:1;45678:18;;:22;;;;:::i;:::-;45657:44;;:17;:44;:::i;:::-;45634:17;;45619:33;;:10;;:14;:33::i;:83::-;45594:108;;45723:18;45744:79;45820:1;45799:18;;:22;;;;:::i;:::-;45778:44;;:17;:44;:::i;:::-;45759:13;;45744:29;;:10;;:14;:29::i;:79::-;45723:100;-1:-1:-1;45836:23:0;45723:100;45862:27;45875:14;45862:10;:27;:::i;:::-;:40;;;;:::i;:::-;45936:1;45915:18;:22;;;45948:17;:21;;;45980:13;:17;;;46032:10;;46024:47;;45836:66;;-1:-1:-1;;;;;;46032:10:0;;46056;;46024:47;45936:1;46024:47;46056:10;46032;46024:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46010:61:0;;-1:-1:-1;;46088:19:0;;;;;:42;;;46129:1;46111:15;:19;46088:42;46084:278;;;46147:46;46160:15;46177;46147:12;:46::i;:::-;46317:18;;46213:137;;;16515:25:1;;;16571:2;16556:18;;16549:34;;;16599:18;;;16592:34;;;;46213:137:0;;;;;;16503:2:1;46213:137:0;;;46084:278;46396:14;;46388:62;;-1:-1:-1;;;;;46396:14:0;;;;46424:21;;46388:62;;;;46424:21;46396:14;46388:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;44685:1773:0:o;22348:98::-;22406:7;22433:5;22437:1;22433;:5;:::i;:::-;22426:12;22348:98;-1:-1:-1;;;22348:98:0:o;22747:::-;22805:7;22832:5;22836:1;22832;:5;:::i;21991:98::-;22049:7;22076:5;22080:1;22076;:5;:::i;43567:589::-;43717:16;;;43731:1;43717:16;;;;;;;;43693:21;;43717:16;;;;;;;;;;-1:-1:-1;43717:16:0;43693:40;;43762:4;43744;43749:1;43744:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43744:23:0;;;-1:-1:-1;;;;;43744:23:0;;;;;43788:15;-1:-1:-1;;;;;43788:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43778:4;43783:1;43778:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43778:32:0;;;-1:-1:-1;;;;;43778:32:0;;;;;43823:62;43840:4;43855:15;43873:11;43823:8;:62::i;:::-;43924:224;;-1:-1:-1;;;43924:224:0;;-1:-1:-1;;;;;43924:15:0;:66;;;;:224;;44005:11;;44031:1;;44075:4;;44102;;44122:15;;43924:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43622:534;43567:589;:::o;44164:513::-;44312:62;44329:4;44344:15;44362:11;44312:8;:62::i;:::-;44417:15;-1:-1:-1;;;;;44417:31:0;;44456:9;44489:4;44509:11;44535:1;44578;44621:7;2034:6;;-1:-1:-1;;;;;2034:6:0;;1961:87;44621:7;44417:252;;;;;;-1:-1:-1;;;;;;44417:252:0;;;-1:-1:-1;;;;;18501:15:1;;;44417:252:0;;;18483:34:1;18533:18;;;18526:34;;;;18576:18;;;18569:34;;;;18619:18;;;18612:34;18683:15;;;18662:19;;;18655:44;44643:15:0;18715:19:1;;;18708:35;18417:19;;44417:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44164: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;12723:401::-;12925:2;12907:21;;;12964:2;12944:18;;;12937:30;13003:34;12998:2;12983:18;;12976:62;-1:-1:-1;;;13069:2:1;13054:18;;13047:35;13114:3;13099:19;;12723:401::o;13129:399::-;13331:2;13313:21;;;13370:2;13350:18;;;13343:30;13409:34;13404:2;13389:18;;13382:62;-1:-1:-1;;;13475:2:1;13460:18;;13453:33;13518:3;13503:19;;13129:399::o;15773:128::-;15840:9;;;15861:11;;;15858:37;;;15875:18;;:::i;16769:127::-;16830:10;16825:3;16821:20;16818:1;16811:31;16861:4;16858:1;16851:15;16885:4;16882:1;16875:15;16901:251;16971:6;17024:2;17012:9;17003:7;16999:23;16995:32;16992:52;;;17040:1;17037;17030:12;16992:52;17072:9;17066:16;17091:31;17116:5;17091:31;:::i;17157:980::-;17419:4;17467:3;17456:9;17452:19;17498:6;17487:9;17480:25;17524:2;17562:6;17557:2;17546:9;17542:18;17535:34;17605:3;17600:2;17589:9;17585:18;17578:31;17629:6;17664;17658:13;17695:6;17687;17680:22;17733:3;17722:9;17718:19;17711:26;;17772:2;17764:6;17760:15;17746:29;;17793:1;17803:195;17817:6;17814:1;17811:13;17803:195;;;17882:13;;-1:-1:-1;;;;;17878:39:1;17866:52;;17973:15;;;;17938:12;;;;17914:1;17832:9;17803:195;;;-1:-1:-1;;;;;;;18054:32:1;;;;18049:2;18034:18;;18027:60;-1:-1:-1;;;18118:3:1;18103:19;18096:35;18015:3;17157:980;-1:-1:-1;;;17157:980:1:o;18754:306::-;18842:6;18850;18858;18911:2;18899:9;18890:7;18886:23;18882:32;18879:52;;;18927:1;18924;18917:12;18879:52;18956:9;18950:16;18940:26;;19006:2;18995:9;18991:18;18985:25;18975:35;;19050:2;19039:9;19035:18;19029:25;19019:35;;18754:306;;;;;:::o
Swarm Source
ipfs://dd367c00fc38ee979dba4f28ed685ebca3178fc7756cd3e63c6243e7e73fa60e
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.