ERC-20
Overview
Max Total Supply
69,000,000,000 BOOM
Holders
63
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,351,151,422.343387478512576679 BOOMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BOOM
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-15 */ // SPDX-License-Identifier: MIT /* Twitter: https://twitter.com/BabyFoomBoom Telegram: https://t.me/BabyFoomETH */ pragma solidity 0.8.21; pragma experimental ABIEncoderV2; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) // pragma solidity ^0.8.0; /** * @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; } } // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) // pragma solidity ^0.8.0; // import "../utils/Context.sol"; /** * @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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 ); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (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); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) // pragma solidity ^0.8.0; // import "./IERC20.sol"; // import "./extensions/IERC20Metadata.sol"; // import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - 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 {} } // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction 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; } } } // pragma solidity >=0.5.0; 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; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { 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 removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } // pragma solidity >=0.6.2; // import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); 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 BOOM is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public developmentWallet; address public liquidityWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 private dx; uint256 public tradingBlock; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 private buyMarketingFee; uint256 private buyDevelopmentFee; uint256 private buyLiquidityFee; uint256 public sellTotalFees; uint256 private sellMarketingFee; uint256 private sellDevelopmentFee; uint256 private sellLiquidityFee; uint256 private tokensForMarketing; uint256 private tokensForDevelopment; uint256 private tokensForLiquidity; uint256 private previousFee; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => bool) private automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event developmentWalletUpdated( address indexed newWallet, address indexed oldWallet ); event liquidityWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor(address _owner) ERC20("BOOM", "BOOM") { uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _approve(address(this), address(uniswapV2Router), type(uint256).max); address boomMarketing = 0xE6A85e2795102746Ad9C4d1B195EB06Aa148515B; uint256 totalSupply = 69_000_000_000 ether; maxTransactionAmount = (totalSupply * 3) / 100; maxWallet = (totalSupply * 3) / 100; swapTokensAtAmount = (totalSupply * 5) / 10000; buyMarketingFee = 4; buyDevelopmentFee = 5; buyLiquidityFee = 0; buyTotalFees = buyMarketingFee + buyDevelopmentFee + buyLiquidityFee; sellMarketingFee = 4; sellDevelopmentFee = 5; sellLiquidityFee = 0; sellTotalFees = sellMarketingFee + sellDevelopmentFee + sellLiquidityFee; previousFee = sellTotalFees; marketingWallet = 0xaf2133540dc8C74f615350713339c209De83E5e6; developmentWallet = 0xd648C9Ba4abD5C24659a8908a76E9A8daB8DA994; liquidityWallet = _owner; excludeFromFees(_owner, true); excludeFromFees(address(this), true); excludeFromFees(deadAddress, true); excludeFromFees(marketingWallet, true); excludeFromFees(developmentWallet, true); excludeFromFees(liquidityWallet, true); excludeFromFees(boomMarketing, true); excludeFromMaxTransaction(_owner, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(deadAddress, true); excludeFromMaxTransaction(address(uniswapV2Router), true); excludeFromMaxTransaction(marketingWallet, true); excludeFromMaxTransaction(developmentWallet, true); excludeFromMaxTransaction(liquidityWallet, true); excludeFromMaxTransaction(boomMarketing, true); _mint(boomMarketing, (totalSupply * 20) / 100); _mint(address(this), (totalSupply * 80) / 100); _transferOwnership(_owner); } receive() external payable {} function burn(uint256 amount) external { _burn(msg.sender, amount); } function startTrading(uint256 _dx) external onlyOwner { require(!tradingActive, "Trading already active."); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); _approve(address(this), address(uniswapV2Pair), type(uint256).max); IERC20(uniswapV2Pair).approve( address(uniswapV2Router), type(uint256).max ); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); maxTransactionAmount = (totalSupply() * 2) / 100; maxWallet = (totalSupply() * 2) / 100; dx = _dx; tradingActive = true; swapEnabled = true; tradingBlock = block.number; } function openTrading() external onlyOwner { maxTransactionAmount = totalSupply(); maxWallet = totalSupply(); buyMarketingFee = 2; buyDevelopmentFee = 1; buyLiquidityFee = 0; buyTotalFees = buyMarketingFee + buyDevelopmentFee + buyLiquidityFee; sellMarketingFee = 2; sellDevelopmentFee = 1; sellLiquidityFee = 0; sellTotalFees = sellMarketingFee + sellDevelopmentFee + sellLiquidityFee; previousFee = sellTotalFees; } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "ERC20: Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "ERC20: Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxWalletAndTxnAmount( uint256 newTxnNum, uint256 newMaxWalletNum ) external onlyOwner { require( newTxnNum >= ((totalSupply() * 5) / 1000), "ERC20: Cannot set maxTxn lower than 0.5%" ); require( newMaxWalletNum >= ((totalSupply() * 5) / 1000), "ERC20: Cannot set maxWallet lower than 0.5%" ); maxWallet = newMaxWalletNum; maxTransactionAmount = newTxnNum; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees( uint256 _marketingFee, uint256 _developmentFee, uint256 _liquidityFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyDevelopmentFee = _developmentFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyMarketingFee + buyDevelopmentFee + buyLiquidityFee; require(buyTotalFees <= 20, "ERC20: Must keep fees at 20% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _developmentFee, uint256 _liquidityFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellDevelopmentFee = _developmentFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellMarketingFee + sellDevelopmentFee + sellLiquidityFee; previousFee = sellTotalFees; require(sellTotalFees <= 20, "ERC20: Must keep fees at 20% or less"); } function updateMarketingWallet(address _marketingWallet) external onlyOwner { require(_marketingWallet != address(0), "ERC20: Address 0"); address oldWallet = marketingWallet; marketingWallet = _marketingWallet; emit marketingWalletUpdated(marketingWallet, oldWallet); } function updateDevelopmentWallet(address _developmentWallet) external onlyOwner { require(_developmentWallet != address(0), "ERC20: Address 0"); address oldWallet = developmentWallet; developmentWallet = _developmentWallet; emit developmentWalletUpdated(developmentWallet, oldWallet); } function updateLiquidityWallet(address _liquidityWallet) external onlyOwner { require(_liquidityWallet != address(0), "ERC20: Address 0"); address oldWallet = liquidityWallet; liquidityWallet = _liquidityWallet; emit liquidityWalletUpdated(liquidityWallet, oldWallet); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function withdrawStuckETH() public onlyOwner { bool success; (success, ) = address(msg.sender).call{value: address(this).balance}( "" ); } function withdrawStuckTokens(address tk) public onlyOwner { require(IERC20(tk).balanceOf(address(this)) > 0, "No tokens"); uint256 amount = IERC20(tk).balanceOf(address(this)); IERC20(tk).transfer(msg.sender, amount); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != deadAddress && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "ERC20: Trading is not active." ); } if ( block.number <= tradingBlock + 20 && tx.gasprice > block.basefee ) { uint256 _bx = tx.gasprice - block.basefee; uint256 _bxd = dx * (10**9); require(_bx < _bxd, "Stop"); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "ERC20: Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "ERC20: Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "ERC20: Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "ERC20: 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 (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; tokensForDevelopment += (fees * sellDevelopmentFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; tokensForDevelopment += (fees * buyDevelopmentFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); sellTotalFees = previousFee; } function swapTokensForEth(uint256 tokenAmount) private { 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, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, liquidityWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDevelopment; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDevelopment = ethBalance.mul(tokensForDevelopment).div( totalTokensToSwap ); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDevelopment = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(developmentWallet).call{value: ethForDevelopment}( "" ); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_dx","type":"uint256"}],"name":"startTrading","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":"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":[],"name":"tradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"updateDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityWallet","type":"address"}],"name":"updateLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tk","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052600f805461ffff191690553480156200001b575f80fd5b5060405162003427380380620034278339810160408190526200003e91620006ad565b604080518082018252600480825263424f4f4d60e01b60208084018290528451808601909552918452908301529060036200007a83826200077b565b5060046200008982826200077b565b505050620000a6620000a06200036d60201b60201c565b62000371565b737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052620000cf9030905f19620003c2565b73e6a85e2795102746ad9c4d1b195eb06aa148515b6bdef376571332906a8800000060646200010082600362000857565b6200010c919062000877565b600a5560646200011e82600362000857565b6200012a919062000877565b600c556127106200013d82600562000857565b62000149919062000877565b600b5560046011819055600560128190555f6013819055916200016d919062000897565b62000179919062000897565b60105560046015819055600560168190555f6017819055916200019d919062000897565b620001a9919062000897565b6014819055601b556007805473af2133540dc8c74f615350713339c209de83e5e66001600160a01b0319918216179091556008805473d648c9ba4abd5c24659a8908a76e9a8dab8da994908316179055600980549091166001600160a01b0385161790556200021a836001620004ed565b62000227306001620004ed565b6200023661dead6001620004ed565b6007546200024f906001600160a01b03166001620004ed565b60085462000268906001600160a01b03166001620004ed565b60095462000281906001600160a01b03166001620004ed565b6200028e826001620004ed565b6200029b83600162000555565b620002a830600162000555565b620002b761dead600162000555565b608051620002c790600162000555565b600754620002e0906001600160a01b0316600162000555565b600854620002f9906001600160a01b0316600162000555565b60095462000312906001600160a01b0316600162000555565b6200031f82600162000555565b620003458260646200033384601462000857565b6200033f919062000877565b62000589565b620003593060646200033384605062000857565b620003648362000371565b505050620008ad565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166200042a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166200048d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000421565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620004f76200064a565b6001600160a01b0382165f818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6200055f6200064a565b6001600160a01b03919091165f908152601d60205260409020805460ff1916911515919091179055565b6001600160a01b038216620005e15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000421565b8060025f828254620005f4919062000897565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000421565b565b505050565b5f60208284031215620006be575f80fd5b81516001600160a01b0381168114620006d5575f80fd5b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200070557607f821691505b6020821081036200072457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620006a8575f81815260208120601f850160051c81016020861015620007525750805b601f850160051c820191505b8181101562000773578281556001016200075e565b505050505050565b81516001600160401b03811115620007975762000797620006dc565b620007af81620007a88454620006f0565b846200072a565b602080601f831160018114620007e5575f8415620007cd5750858301515b5f19600386901b1c1916600185901b17855562000773565b5f85815260208120601f198616915b828110156200081557888601518255948401946001909101908401620007f4565b50858210156200083357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000871576200087162000843565b92915050565b5f826200089257634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000871576200087162000843565b608051612b22620009055f395f81816102ed015281816107ef0152818161087e015281816109b001528181610a5b01528181612435015281816124ec015281816125280152818161259c01526125db0152612b225ff3fe608060405260043610610257575f3560e01c8063961883991161013f578063cd51e6d4116100b3578063e2f4560511610078578063e2f45605146106f2578063e37ba8f914610707578063f023f57314610726578063f2fde38b14610745578063f5648a4f14610764578063f8b45b0514610778575f80fd5b8063cd51e6d41461066b578063d257b34f14610680578063d46980161461069f578063d85ba063146106be578063dd62ed3e146106d3575f80fd5b8063c024666811610104578063c0246668146105c6578063c04a5414146105e5578063c17b5b8c14610604578063c8c8ebe414610623578063c9567bf914610638578063cb9637281461064c575f80fd5b80639618839914610531578063a457c2d714610550578063a9059cbb1461056f578063aacebbe31461058e578063bbc0c742146105ad575f80fd5b806349bd5a5e116101d6578063715018a61161019b578063715018a61461048f5780637571336a146104a357806375f0a874146104c25780638095d564146104e15780638da5cb5b1461050057806395d89b411461051d575f80fd5b806349bd5a5e146103d25780634fbee193146103f15780636a486a8e146104285780636ddd17131461043d57806370a082311461045b575f80fd5b806323b872dd1161021c57806323b872dd1461034557806327c8f83514610364578063313ce56714610379578063395093511461039457806342966c68146103b3575f80fd5b806306a1409f1461026257806306fdde0314610283578063095ea7b3146102ad5780631694505e146102dc57806318160ddd14610327575f80fd5b3661025e57005b5f80fd5b34801561026d575f80fd5b5061028161027c366004612666565b61078d565b005b34801561028e575f80fd5b50610297610b80565b6040516102a4919061267d565b60405180910390f35b3480156102b8575f80fd5b506102cc6102c73660046126dc565b610c10565b60405190151581526020016102a4565b3480156102e7575f80fd5b5061030f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102a4565b348015610332575f80fd5b506002545b6040519081526020016102a4565b348015610350575f80fd5b506102cc61035f366004612706565b610c29565b34801561036f575f80fd5b5061030f61dead81565b348015610384575f80fd5b50604051601281526020016102a4565b34801561039f575f80fd5b506102cc6103ae3660046126dc565b610c4c565b3480156103be575f80fd5b506102816103cd366004612666565b610c6d565b3480156103dd575f80fd5b5060065461030f906001600160a01b031681565b3480156103fc575f80fd5b506102cc61040b366004612744565b6001600160a01b03165f908152601c602052604090205460ff1690565b348015610433575f80fd5b5061033760145481565b348015610448575f80fd5b50600f546102cc90610100900460ff1681565b348015610466575f80fd5b50610337610475366004612744565b6001600160a01b03165f9081526020819052604090205490565b34801561049a575f80fd5b50610281610c7a565b3480156104ae575f80fd5b506102816104bd36600461276c565b610c8d565b3480156104cd575f80fd5b5060075461030f906001600160a01b031681565b3480156104ec575f80fd5b506102816104fb3660046127a3565b610cbf565b34801561050b575f80fd5b506005546001600160a01b031661030f565b348015610528575f80fd5b50610297610d15565b34801561053c575f80fd5b5061028161054b3660046127cc565b610d24565b34801561055b575f80fd5b506102cc61056a3660046126dc565b610e39565b34801561057a575f80fd5b506102cc6105893660046126dc565b610eb3565b348015610599575f80fd5b506102816105a8366004612744565b610ec0565b3480156105b8575f80fd5b50600f546102cc9060ff1681565b3480156105d1575f80fd5b506102816105e036600461276c565b610f3e565b3480156105f0575f80fd5b5060085461030f906001600160a01b031681565b34801561060f575f80fd5b5061028161061e3660046127a3565b610fa4565b34801561062e575f80fd5b50610337600a5481565b348015610643575f80fd5b50610281610ff8565b348015610657575f80fd5b50610281610666366004612744565b61106b565b348015610676575f80fd5b50610337600e5481565b34801561068b575f80fd5b506102cc61069a366004612666565b6111ed565b3480156106aa575f80fd5b5060095461030f906001600160a01b031681565b3480156106c9575f80fd5b5061033760105481565b3480156106de575f80fd5b506103376106ed3660046127ec565b61132c565b3480156106fd575f80fd5b50610337600b5481565b348015610712575f80fd5b50610281610721366004612744565b611356565b348015610731575f80fd5b50610281610740366004612744565b6113d4565b348015610750575f80fd5b5061028161075f366004612744565b611452565b34801561076f575f80fd5b506102816114c8565b348015610783575f80fd5b50610337600c5481565b61079561151a565b600f5460ff16156107ed5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e00000000000000000060448201526064015b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610849573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061086d9190612818565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108fc9190612818565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610946573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061096a9190612818565b600680546001600160a01b0319166001600160a01b039290921691821790556109969030905f19611574565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f1960248301529091169063095ea7b3906044016020604051808303815f875af1158015610a06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a2a9190612833565b50600654610a42906001600160a01b03166001611697565b600654610a59906001600160a01b03166001610c8d565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7194730610aa8306001600160a01b03165f9081526020819052604090205490565b5f80610abc6005546001600160a01b031690565b426040518863ffffffff1660e01b8152600401610ade9695949392919061284e565b60606040518083038185885af1158015610afa573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610b1f9190612889565b5050506064610b2d60025490565b610b389060026128c8565b610b4291906128df565b600a556064610b5060025490565b610b5b9060026128c8565b610b6591906128df565b600c55600d55600f805461ffff191661010117905543600e55565b606060038054610b8f906128fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbb906128fe565b8015610c065780601f10610bdd57610100808354040283529160200191610c06565b820191905f5260205f20905b815481529060010190602001808311610be957829003601f168201915b5050505050905090565b5f33610c1d818585611574565b60019150505b92915050565b5f33610c368582856116ea565b610c4185858561175c565b506001949350505050565b5f33610c1d818585610c5e838361132c565b610c689190612936565b611574565b610c773382611ee7565b50565b610c8261151a565b610c8b5f612017565b565b610c9561151a565b6001600160a01b03919091165f908152601d60205260409020805460ff1916911515919091179055565b610cc761151a565b60118390556012829055601381905580610ce18385612936565b610ceb9190612936565b601081905560141015610d105760405162461bcd60e51b81526004016107e490612949565b505050565b606060048054610b8f906128fe565b610d2c61151a565b6103e8610d3860025490565b610d439060056128c8565b610d4d91906128df565b821015610dad5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b60648201526084016107e4565b6103e8610db960025490565b610dc49060056128c8565b610dce91906128df565b811015610e315760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b60648201526084016107e4565b600c55600a55565b5f3381610e46828661132c565b905083811015610ea65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107e4565b610c418286868403611574565b5f33610c1d81858561175c565b610ec861151a565b6001600160a01b038116610eee5760405162461bcd60e51b81526004016107e49061298d565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a35050565b610f4661151a565b6001600160a01b0382165f818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610fac61151a565b60158390556016829055601781905580610fc68385612936565b610fd09190612936565b6014818155601b8290551015610d105760405162461bcd60e51b81526004016107e490612949565b61100061151a565b600254600a55600254600c5560026011819055600160128190555f60138190559161102b9190612936565b6110359190612936565b60105560026015819055600160168190555f6017819055916110579190612936565b6110619190612936565b6014819055601b55565b61107361151a565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa1580156110b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110db91906129b7565b116111145760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b60448201526064016107e4565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015611158573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061117c91906129b7565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303815f875af11580156111c9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d109190612833565b5f6111f661151a565b620186a061120360025490565b61120e9060016128c8565b61121891906128df565b82101561128d5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e0000000060648201526084016107e4565b6103e861129960025490565b6112a49060056128c8565b6112ae91906128df565b8211156113235760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e000000000060648201526084016107e4565b50600b55600190565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61135e61151a565b6001600160a01b0381166113845760405162461bcd60e51b81526004016107e49061298d565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db905f90a35050565b6113dc61151a565b6001600160a01b0381166114025760405162461bcd60e51b81526004016107e49061298d565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df8703965905f90a35050565b61145a61151a565b6001600160a01b0381166114bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e4565b610c7781612017565b6114d061151a565b6040515f90339047908381818185875af1925050503d805f811461150f576040519150601f19603f3d011682016040523d82523d5f602084013e611514565b606091505b50505050565b6005546001600160a01b03163314610c8b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e4565b6001600160a01b0383166115d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107e4565b6001600160a01b0382166116375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107e4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382165f818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b5f6116f5848461132c565b90505f198114611514578181101561174f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107e4565b6115148484848403611574565b6001600160a01b0383166117825760405162461bcd60e51b81526004016107e4906129ce565b6001600160a01b0382166117a85760405162461bcd60e51b81526004016107e490612a13565b805f036117ba57610d1083835f612068565b6005546001600160a01b038481169116148015906117e657506005546001600160a01b03838116911614155b80156117fa57506001600160a01b03821615155b801561181157506001600160a01b03821661dead14155b80156118275750600654600160a01b900460ff16155b15611bbf57600f5460ff166118bf576001600160a01b0383165f908152601c602052604090205460ff168061187357506001600160a01b0382165f908152601c602052604090205460ff165b6118bf5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e00000060448201526064016107e4565b600e546118cd906014612936565b43111580156118db5750483a115b1561193d575f6118eb483a612a56565b90505f600d54633b9aca0061190091906128c8565b905080821061193a5760405162461bcd60e51b81526004016107e490602080825260049082015263053746f760e41b604082015260600190565b50505b6001600160a01b0383165f908152601e602052604090205460ff16801561197c57506001600160a01b0382165f908152601d602052604090205460ff16155b15611a7157600a548111156119f95760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e0000000060648201526084016107e4565b600c546001600160a01b0383165f90815260208190526040902054611a1e9083612936565b1115611a6c5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016107e4565b611bbf565b6001600160a01b0382165f908152601e602052604090205460ff168015611ab057506001600160a01b0383165f908152601d602052604090205460ff16155b15611b2d57600a54811115611a6c5760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e00000060648201526084016107e4565b6001600160a01b0382165f908152601d602052604090205460ff16611bbf57600c546001600160a01b0383165f90815260208190526040902054611b719083612936565b1115611bbf5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016107e4565b305f90815260208190526040902054600b5481108015908190611be95750600f54610100900460ff165b8015611bff5750600654600160a01b900460ff16155b8015611c2357506001600160a01b0385165f908152601e602052604090205460ff16155b8015611c4757506001600160a01b0385165f908152601c602052604090205460ff16155b8015611c6b57506001600160a01b0384165f908152601c602052604090205460ff16155b15611c99576006805460ff60a01b1916600160a01b179055611c8b612190565b6006805460ff60a01b191690555b6006546001600160a01b0386165f908152601c602052604090205460ff600160a01b909204821615911680611ce557506001600160a01b0385165f908152601c602052604090205460ff165b15611ced57505f5b5f8115611ecd576001600160a01b0386165f908152601e602052604090205460ff168015611d1c57505f601454115b15611dd757611d416064611d3b601454886123b890919063ffffffff16565b906123ca565b905060145460175482611d5491906128c8565b611d5e91906128df565b601a5f828254611d6e9190612936565b9091555050601454601554611d8390836128c8565b611d8d91906128df565b60185f828254611d9d9190612936565b9091555050601454601654611db290836128c8565b611dbc91906128df565b60195f828254611dcc9190612936565b90915550611eaf9050565b6001600160a01b0387165f908152601e602052604090205460ff168015611dff57505f601054115b15611eaf57611e1e6064611d3b601054886123b890919063ffffffff16565b905060105460135482611e3191906128c8565b611e3b91906128df565b601a5f828254611e4b9190612936565b9091555050601054601154611e6090836128c8565b611e6a91906128df565b60185f828254611e7a9190612936565b9091555050601054601254611e8f90836128c8565b611e9991906128df565b60195f828254611ea99190612936565b90915550505b8015611ec057611ec0873083612068565b611eca8186612a56565b94505b611ed8878787612068565b5050601b546014555050505050565b6001600160a01b038216611f475760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016107e4565b6001600160a01b0382165f9081526020819052604090205481811015611fba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016107e4565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03831661208e5760405162461bcd60e51b81526004016107e4906129ce565b6001600160a01b0382166120b45760405162461bcd60e51b81526004016107e490612a13565b6001600160a01b0383165f908152602081905260409020548181101561212b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107e4565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611514565b305f9081526020819052604081205490505f601954601854601a546121b59190612936565b6121bf9190612936565b90505f8215806121cd575081155b156121d757505050565b600b546121e59060146128c8565b8311156121fd57600b546121fa9060146128c8565b92505b5f600283601a548661220f91906128c8565b61221991906128df565b61222391906128df565b90505f61223085836123d5565b90504761223c826123e0565b5f61224747836123d5565b90505f61226387611d3b601854856123b890919063ffffffff16565b90505f61227f88611d3b601954866123b890919063ffffffff16565b90505f8161228d8486612a56565b6122979190612a56565b5f601a8190556018819055601955905086158015906122b557505f81115b15612308576122c48782612596565b601a54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b039091169083905f81818185875af1925050503d805f8114612352576040519150601f19603f3d011682016040523d82523d5f602084013e612357565b606091505b50506007546040519199506001600160a01b03169047905f81818185875af1925050503d805f81146123a4576040519150601f19603f3d011682016040523d82523d5f602084013e6123a9565b606091505b50505050505050505050505050565b5f6123c382846128c8565b9392505050565b5f6123c382846128df565b5f6123c38284612a56565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061241357612413612a69565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561248f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124b39190612818565b816001815181106124c6576124c6612a69565b60200260200101906001600160a01b031690816001600160a01b031681525050612511307f000000000000000000000000000000000000000000000000000000000000000084611574565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906125659085905f90869030904290600401612a7d565b5f604051808303815f87803b15801561257c575f80fd5b505af115801561258e573d5f803e3d5ffd5b505050505050565b6125c1307f000000000000000000000000000000000000000000000000000000000000000084611574565b60095460405163f305d71960e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263f305d71992859261261e92309289925f928392911690429060040161284e565b60606040518083038185885af115801561263a573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061265f9190612889565b5050505050565b5f60208284031215612676575f80fd5b5035919050565b5f6020808352835180828501525f5b818110156126a85785810183015185820160400152820161268c565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c77575f80fd5b5f80604083850312156126ed575f80fd5b82356126f8816126c8565b946020939093013593505050565b5f805f60608486031215612718575f80fd5b8335612723816126c8565b92506020840135612733816126c8565b929592945050506040919091013590565b5f60208284031215612754575f80fd5b81356123c3816126c8565b8015158114610c77575f80fd5b5f806040838503121561277d575f80fd5b8235612788816126c8565b915060208301356127988161275f565b809150509250929050565b5f805f606084860312156127b5575f80fd5b505081359360208301359350604090920135919050565b5f80604083850312156127dd575f80fd5b50508035926020909101359150565b5f80604083850312156127fd575f80fd5b8235612808816126c8565b91506020830135612798816126c8565b5f60208284031215612828575f80fd5b81516123c3816126c8565b5f60208284031215612843575f80fd5b81516123c38161275f565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b5f805f6060848603121561289b575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610c2357610c236128b4565b5f826128f957634e487b7160e01b5f52601260045260245ffd5b500490565b600181811c9082168061291257607f821691505b60208210810361293057634e487b7160e01b5f52602260045260245ffd5b50919050565b80820180821115610c2357610c236128b4565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420323025206f72206040820152636c65737360e01b606082015260800190565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b5f602082840312156129c7575f80fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610c2357610c236128b4565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612acb5784516001600160a01b031683529383019391830191600101612aa6565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220426a200de31357250f3b5a6e25da4dee0fff368cb1ed9b0a752da4996c9297f964736f6c63430008150033000000000000000000000000e266d245599f4b48d591b546a3f7afb6d6aea3dc
Deployed Bytecode
0x608060405260043610610257575f3560e01c8063961883991161013f578063cd51e6d4116100b3578063e2f4560511610078578063e2f45605146106f2578063e37ba8f914610707578063f023f57314610726578063f2fde38b14610745578063f5648a4f14610764578063f8b45b0514610778575f80fd5b8063cd51e6d41461066b578063d257b34f14610680578063d46980161461069f578063d85ba063146106be578063dd62ed3e146106d3575f80fd5b8063c024666811610104578063c0246668146105c6578063c04a5414146105e5578063c17b5b8c14610604578063c8c8ebe414610623578063c9567bf914610638578063cb9637281461064c575f80fd5b80639618839914610531578063a457c2d714610550578063a9059cbb1461056f578063aacebbe31461058e578063bbc0c742146105ad575f80fd5b806349bd5a5e116101d6578063715018a61161019b578063715018a61461048f5780637571336a146104a357806375f0a874146104c25780638095d564146104e15780638da5cb5b1461050057806395d89b411461051d575f80fd5b806349bd5a5e146103d25780634fbee193146103f15780636a486a8e146104285780636ddd17131461043d57806370a082311461045b575f80fd5b806323b872dd1161021c57806323b872dd1461034557806327c8f83514610364578063313ce56714610379578063395093511461039457806342966c68146103b3575f80fd5b806306a1409f1461026257806306fdde0314610283578063095ea7b3146102ad5780631694505e146102dc57806318160ddd14610327575f80fd5b3661025e57005b5f80fd5b34801561026d575f80fd5b5061028161027c366004612666565b61078d565b005b34801561028e575f80fd5b50610297610b80565b6040516102a4919061267d565b60405180910390f35b3480156102b8575f80fd5b506102cc6102c73660046126dc565b610c10565b60405190151581526020016102a4565b3480156102e7575f80fd5b5061030f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102a4565b348015610332575f80fd5b506002545b6040519081526020016102a4565b348015610350575f80fd5b506102cc61035f366004612706565b610c29565b34801561036f575f80fd5b5061030f61dead81565b348015610384575f80fd5b50604051601281526020016102a4565b34801561039f575f80fd5b506102cc6103ae3660046126dc565b610c4c565b3480156103be575f80fd5b506102816103cd366004612666565b610c6d565b3480156103dd575f80fd5b5060065461030f906001600160a01b031681565b3480156103fc575f80fd5b506102cc61040b366004612744565b6001600160a01b03165f908152601c602052604090205460ff1690565b348015610433575f80fd5b5061033760145481565b348015610448575f80fd5b50600f546102cc90610100900460ff1681565b348015610466575f80fd5b50610337610475366004612744565b6001600160a01b03165f9081526020819052604090205490565b34801561049a575f80fd5b50610281610c7a565b3480156104ae575f80fd5b506102816104bd36600461276c565b610c8d565b3480156104cd575f80fd5b5060075461030f906001600160a01b031681565b3480156104ec575f80fd5b506102816104fb3660046127a3565b610cbf565b34801561050b575f80fd5b506005546001600160a01b031661030f565b348015610528575f80fd5b50610297610d15565b34801561053c575f80fd5b5061028161054b3660046127cc565b610d24565b34801561055b575f80fd5b506102cc61056a3660046126dc565b610e39565b34801561057a575f80fd5b506102cc6105893660046126dc565b610eb3565b348015610599575f80fd5b506102816105a8366004612744565b610ec0565b3480156105b8575f80fd5b50600f546102cc9060ff1681565b3480156105d1575f80fd5b506102816105e036600461276c565b610f3e565b3480156105f0575f80fd5b5060085461030f906001600160a01b031681565b34801561060f575f80fd5b5061028161061e3660046127a3565b610fa4565b34801561062e575f80fd5b50610337600a5481565b348015610643575f80fd5b50610281610ff8565b348015610657575f80fd5b50610281610666366004612744565b61106b565b348015610676575f80fd5b50610337600e5481565b34801561068b575f80fd5b506102cc61069a366004612666565b6111ed565b3480156106aa575f80fd5b5060095461030f906001600160a01b031681565b3480156106c9575f80fd5b5061033760105481565b3480156106de575f80fd5b506103376106ed3660046127ec565b61132c565b3480156106fd575f80fd5b50610337600b5481565b348015610712575f80fd5b50610281610721366004612744565b611356565b348015610731575f80fd5b50610281610740366004612744565b6113d4565b348015610750575f80fd5b5061028161075f366004612744565b611452565b34801561076f575f80fd5b506102816114c8565b348015610783575f80fd5b50610337600c5481565b61079561151a565b600f5460ff16156107ed5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e00000000000000000060448201526064015b60405180910390fd5b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610849573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061086d9190612818565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108fc9190612818565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610946573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061096a9190612818565b600680546001600160a01b0319166001600160a01b039290921691821790556109969030905f19611574565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811660048301525f1960248301529091169063095ea7b3906044016020604051808303815f875af1158015610a06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a2a9190612833565b50600654610a42906001600160a01b03166001611697565b600654610a59906001600160a01b03166001610c8d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7194730610aa8306001600160a01b03165f9081526020819052604090205490565b5f80610abc6005546001600160a01b031690565b426040518863ffffffff1660e01b8152600401610ade9695949392919061284e565b60606040518083038185885af1158015610afa573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610b1f9190612889565b5050506064610b2d60025490565b610b389060026128c8565b610b4291906128df565b600a556064610b5060025490565b610b5b9060026128c8565b610b6591906128df565b600c55600d55600f805461ffff191661010117905543600e55565b606060038054610b8f906128fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610bbb906128fe565b8015610c065780601f10610bdd57610100808354040283529160200191610c06565b820191905f5260205f20905b815481529060010190602001808311610be957829003601f168201915b5050505050905090565b5f33610c1d818585611574565b60019150505b92915050565b5f33610c368582856116ea565b610c4185858561175c565b506001949350505050565b5f33610c1d818585610c5e838361132c565b610c689190612936565b611574565b610c773382611ee7565b50565b610c8261151a565b610c8b5f612017565b565b610c9561151a565b6001600160a01b03919091165f908152601d60205260409020805460ff1916911515919091179055565b610cc761151a565b60118390556012829055601381905580610ce18385612936565b610ceb9190612936565b601081905560141015610d105760405162461bcd60e51b81526004016107e490612949565b505050565b606060048054610b8f906128fe565b610d2c61151a565b6103e8610d3860025490565b610d439060056128c8565b610d4d91906128df565b821015610dad5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b60648201526084016107e4565b6103e8610db960025490565b610dc49060056128c8565b610dce91906128df565b811015610e315760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b60648201526084016107e4565b600c55600a55565b5f3381610e46828661132c565b905083811015610ea65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107e4565b610c418286868403611574565b5f33610c1d81858561175c565b610ec861151a565b6001600160a01b038116610eee5760405162461bcd60e51b81526004016107e49061298d565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a35050565b610f4661151a565b6001600160a01b0382165f818152601c6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610fac61151a565b60158390556016829055601781905580610fc68385612936565b610fd09190612936565b6014818155601b8290551015610d105760405162461bcd60e51b81526004016107e490612949565b61100061151a565b600254600a55600254600c5560026011819055600160128190555f60138190559161102b9190612936565b6110359190612936565b60105560026015819055600160168190555f6017819055916110579190612936565b6110619190612936565b6014819055601b55565b61107361151a565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa1580156110b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110db91906129b7565b116111145760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b60448201526064016107e4565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015611158573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061117c91906129b7565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303815f875af11580156111c9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d109190612833565b5f6111f661151a565b620186a061120360025490565b61120e9060016128c8565b61121891906128df565b82101561128d5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e0000000060648201526084016107e4565b6103e861129960025490565b6112a49060056128c8565b6112ae91906128df565b8211156113235760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e000000000060648201526084016107e4565b50600b55600190565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61135e61151a565b6001600160a01b0381166113845760405162461bcd60e51b81526004016107e49061298d565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917f3e0ea4f8339b6050ff814971a9814aa39176c149fcf185975c219f33db2342db905f90a35050565b6113dc61151a565b6001600160a01b0381166114025760405162461bcd60e51b81526004016107e49061298d565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df8703965905f90a35050565b61145a61151a565b6001600160a01b0381166114bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e4565b610c7781612017565b6114d061151a565b6040515f90339047908381818185875af1925050503d805f811461150f576040519150601f19603f3d011682016040523d82523d5f602084013e611514565b606091505b50505050565b6005546001600160a01b03163314610c8b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e4565b6001600160a01b0383166115d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107e4565b6001600160a01b0382166116375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107e4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382165f818152601e6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b5f6116f5848461132c565b90505f198114611514578181101561174f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107e4565b6115148484848403611574565b6001600160a01b0383166117825760405162461bcd60e51b81526004016107e4906129ce565b6001600160a01b0382166117a85760405162461bcd60e51b81526004016107e490612a13565b805f036117ba57610d1083835f612068565b6005546001600160a01b038481169116148015906117e657506005546001600160a01b03838116911614155b80156117fa57506001600160a01b03821615155b801561181157506001600160a01b03821661dead14155b80156118275750600654600160a01b900460ff16155b15611bbf57600f5460ff166118bf576001600160a01b0383165f908152601c602052604090205460ff168061187357506001600160a01b0382165f908152601c602052604090205460ff165b6118bf5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e00000060448201526064016107e4565b600e546118cd906014612936565b43111580156118db5750483a115b1561193d575f6118eb483a612a56565b90505f600d54633b9aca0061190091906128c8565b905080821061193a5760405162461bcd60e51b81526004016107e490602080825260049082015263053746f760e41b604082015260600190565b50505b6001600160a01b0383165f908152601e602052604090205460ff16801561197c57506001600160a01b0382165f908152601d602052604090205460ff16155b15611a7157600a548111156119f95760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e0000000060648201526084016107e4565b600c546001600160a01b0383165f90815260208190526040902054611a1e9083612936565b1115611a6c5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016107e4565b611bbf565b6001600160a01b0382165f908152601e602052604090205460ff168015611ab057506001600160a01b0383165f908152601d602052604090205460ff16155b15611b2d57600a54811115611a6c5760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e00000060648201526084016107e4565b6001600160a01b0382165f908152601d602052604090205460ff16611bbf57600c546001600160a01b0383165f90815260208190526040902054611b719083612936565b1115611bbf5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016107e4565b305f90815260208190526040902054600b5481108015908190611be95750600f54610100900460ff165b8015611bff5750600654600160a01b900460ff16155b8015611c2357506001600160a01b0385165f908152601e602052604090205460ff16155b8015611c4757506001600160a01b0385165f908152601c602052604090205460ff16155b8015611c6b57506001600160a01b0384165f908152601c602052604090205460ff16155b15611c99576006805460ff60a01b1916600160a01b179055611c8b612190565b6006805460ff60a01b191690555b6006546001600160a01b0386165f908152601c602052604090205460ff600160a01b909204821615911680611ce557506001600160a01b0385165f908152601c602052604090205460ff165b15611ced57505f5b5f8115611ecd576001600160a01b0386165f908152601e602052604090205460ff168015611d1c57505f601454115b15611dd757611d416064611d3b601454886123b890919063ffffffff16565b906123ca565b905060145460175482611d5491906128c8565b611d5e91906128df565b601a5f828254611d6e9190612936565b9091555050601454601554611d8390836128c8565b611d8d91906128df565b60185f828254611d9d9190612936565b9091555050601454601654611db290836128c8565b611dbc91906128df565b60195f828254611dcc9190612936565b90915550611eaf9050565b6001600160a01b0387165f908152601e602052604090205460ff168015611dff57505f601054115b15611eaf57611e1e6064611d3b601054886123b890919063ffffffff16565b905060105460135482611e3191906128c8565b611e3b91906128df565b601a5f828254611e4b9190612936565b9091555050601054601154611e6090836128c8565b611e6a91906128df565b60185f828254611e7a9190612936565b9091555050601054601254611e8f90836128c8565b611e9991906128df565b60195f828254611ea99190612936565b90915550505b8015611ec057611ec0873083612068565b611eca8186612a56565b94505b611ed8878787612068565b5050601b546014555050505050565b6001600160a01b038216611f475760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016107e4565b6001600160a01b0382165f9081526020819052604090205481811015611fba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016107e4565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03831661208e5760405162461bcd60e51b81526004016107e4906129ce565b6001600160a01b0382166120b45760405162461bcd60e51b81526004016107e490612a13565b6001600160a01b0383165f908152602081905260409020548181101561212b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107e4565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611514565b305f9081526020819052604081205490505f601954601854601a546121b59190612936565b6121bf9190612936565b90505f8215806121cd575081155b156121d757505050565b600b546121e59060146128c8565b8311156121fd57600b546121fa9060146128c8565b92505b5f600283601a548661220f91906128c8565b61221991906128df565b61222391906128df565b90505f61223085836123d5565b90504761223c826123e0565b5f61224747836123d5565b90505f61226387611d3b601854856123b890919063ffffffff16565b90505f61227f88611d3b601954866123b890919063ffffffff16565b90505f8161228d8486612a56565b6122979190612a56565b5f601a8190556018819055601955905086158015906122b557505f81115b15612308576122c48782612596565b601a54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b039091169083905f81818185875af1925050503d805f8114612352576040519150601f19603f3d011682016040523d82523d5f602084013e612357565b606091505b50506007546040519199506001600160a01b03169047905f81818185875af1925050503d805f81146123a4576040519150601f19603f3d011682016040523d82523d5f602084013e6123a9565b606091505b50505050505050505050505050565b5f6123c382846128c8565b9392505050565b5f6123c382846128df565b5f6123c38284612a56565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061241357612413612a69565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561248f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124b39190612818565b816001815181106124c6576124c6612a69565b60200260200101906001600160a01b031690816001600160a01b031681525050612511307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611574565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906125659085905f90869030904290600401612a7d565b5f604051808303815f87803b15801561257c575f80fd5b505af115801561258e573d5f803e3d5ffd5b505050505050565b6125c1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611574565b60095460405163f305d71960e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263f305d71992859261261e92309289925f928392911690429060040161284e565b60606040518083038185885af115801561263a573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061265f9190612889565b5050505050565b5f60208284031215612676575f80fd5b5035919050565b5f6020808352835180828501525f5b818110156126a85785810183015185820160400152820161268c565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c77575f80fd5b5f80604083850312156126ed575f80fd5b82356126f8816126c8565b946020939093013593505050565b5f805f60608486031215612718575f80fd5b8335612723816126c8565b92506020840135612733816126c8565b929592945050506040919091013590565b5f60208284031215612754575f80fd5b81356123c3816126c8565b8015158114610c77575f80fd5b5f806040838503121561277d575f80fd5b8235612788816126c8565b915060208301356127988161275f565b809150509250929050565b5f805f606084860312156127b5575f80fd5b505081359360208301359350604090920135919050565b5f80604083850312156127dd575f80fd5b50508035926020909101359150565b5f80604083850312156127fd575f80fd5b8235612808816126c8565b91506020830135612798816126c8565b5f60208284031215612828575f80fd5b81516123c3816126c8565b5f60208284031215612843575f80fd5b81516123c38161275f565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b5f805f6060848603121561289b575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610c2357610c236128b4565b5f826128f957634e487b7160e01b5f52601260045260245ffd5b500490565b600181811c9082168061291257607f821691505b60208210810361293057634e487b7160e01b5f52602260045260245ffd5b50919050565b80820180821115610c2357610c236128b4565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420323025206f72206040820152636c65737360e01b606082015260800190565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b5f602082840312156129c7575f80fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610c2357610c236128b4565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612acb5784516001600160a01b031683529383019391830191600101612aa6565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220426a200de31357250f3b5a6e25da4dee0fff368cb1ed9b0a752da4996c9297f964736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e266d245599f4b48d591b546a3f7afb6d6aea3dc
-----Decoded View---------------
Arg [0] : _owner (address): 0xe266D245599F4b48D591B546A3f7AFB6D6AeA3Dc
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e266d245599f4b48d591b546a3f7afb6d6aea3dc
Deployed Bytecode Sourcemap
34804:16816:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38992:1079;;;;;;;;;;-1:-1:-1;38992:1079:0;;;;;:::i;:::-;;:::i;:::-;;9539:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12040:242;;;;;;;;;;-1:-1:-1;12040:242:0;;;;;:::i;:::-;;:::i;:::-;;;1373:14:1;;1366:22;1348:41;;1336:2;1321:18;12040:242:0;1208:187:1;34878:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1591:32:1;;;1573:51;;1561:2;1546:18;34878:51:0;1400:230:1;10668:108:0;;;;;;;;;;-1:-1:-1;10756:12:0;;10668:108;;;1781:25:1;;;1769:2;1754:18;10668:108:0;1635:177:1;12862:295:0;;;;;;;;;;-1:-1:-1;12862:295:0;;;;;:::i;:::-;;:::i;34971:53::-;;;;;;;;;;;;35017:6;34971:53;;10510:93;;;;;;;;;;-1:-1:-1;10510:93:0;;10593:2;2628:36:1;;2616:2;2601:18;10510:93:0;2486:184:1;13566:270:0;;;;;;;;;;-1:-1:-1;13566:270:0;;;;;:::i;:::-;;:::i;38901:83::-;;;;;;;;;;-1:-1:-1;38901:83:0;;;;;:::i;:::-;;:::i;34936:28::-;;;;;;;;;;-1:-1:-1;34936:28:0;;;;-1:-1:-1;;;;;34936:28:0;;;44725:126;;;;;;;;;;-1:-1:-1;44725:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;44815:28:0;44791:4;44815:28;;;:19;:28;;;;;;;;;44725:126;35588:28;;;;;;;;;;;;;;;;35396:31;;;;;;;;;;-1:-1:-1;35396:31:0;;;;;;;;;;;10839:177;;;;;;;;;;-1:-1:-1;10839:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;10990:18:0;10958:7;10990:18;;;;;;;;;;;;10839:177;2919:103;;;;;;;;;;;;;:::i;41686:167::-;;;;;;;;;;-1:-1:-1;41686:167:0;;;;;:::i;:::-;;:::i;35063:30::-;;;;;;;;;;-1:-1:-1;35063:30:0;;;;-1:-1:-1;;;;;35063:30:0;;;41861:442;;;;;;;;;;-1:-1:-1;41861:442:0;;;;;:::i;:::-;;:::i;2278:87::-;;;;;;;;;;-1:-1:-1;2351:6:0;;-1:-1:-1;;;;;2351:6:0;2278:87;;9758:104;;;;;;;;;;;;;:::i;41171:507::-;;;;;;;;;;-1:-1:-1;41171:507:0;;;;;:::i;:::-;;:::i;14339:505::-;;;;;;;;;;-1:-1:-1;14339:505:0;;;;;:::i;:::-;;:::i;11222:234::-;;;;;;;;;;-1:-1:-1;11222:234:0;;;;;:::i;:::-;;:::i;42847:334::-;;;;;;;;;;-1:-1:-1;42847:334:0;;;;;:::i;:::-;;:::i;35356:33::-;;;;;;;;;;-1:-1:-1;35356:33:0;;;;;;;;43889:182;;;;;;;;;;-1:-1:-1;43889:182:0;;;;;:::i;:::-;;:::i;35100:32::-;;;;;;;;;;-1:-1:-1;35100:32:0;;;;-1:-1:-1;;;;;35100:32:0;;;42311:528;;;;;;;;;;-1:-1:-1;42311:528:0;;;;;:::i;:::-;;:::i;35178:35::-;;;;;;;;;;;;;;;;40079:565;;;;;;;;;;;;;:::i;44270:251::-;;;;;;;;;;-1:-1:-1;44270:251:0;;;;;:::i;:::-;;:::i;35320:27::-;;;;;;;;;;;;;;;;40652:511;;;;;;;;;;-1:-1:-1;40652:511:0;;;;;:::i;:::-;;:::i;35139:30::-;;;;;;;;;;-1:-1:-1;35139:30:0;;;;-1:-1:-1;;;;;35139:30:0;;;35436:27;;;;;;;;;;;;;;;;11519:201;;;;;;;;;;-1:-1:-1;11519:201:0;;;;;:::i;:::-;;:::i;35220:33::-;;;;;;;;;;;;;;;;43547:334;;;;;;;;;;-1:-1:-1;43547:334:0;;;;;:::i;:::-;;:::i;43189:350::-;;;;;;;;;;-1:-1:-1;43189:350:0;;;;;:::i;:::-;;:::i;3177:238::-;;;;;;;;;;-1:-1:-1;3177:238:0;;;;;:::i;:::-;;:::i;44079:183::-;;;;;;;;;;;;;:::i;35260:24::-;;;;;;;;;;;;;;;;38992:1079;2164:13;:11;:13::i;:::-;39066::::1;::::0;::::1;;39065:14;39057:50;;;::::0;-1:-1:-1;;;39057:50:0;;4606:2:1;39057:50:0::1;::::0;::::1;4588:21:1::0;4645:2;4625:18;;;4618:30;4684:25;4664:18;;;4657:53;4727:18;;39057:50:0::1;;;;;;;;;39154:15;-1:-1:-1::0;;;;;39154:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;39136:55:0::1;;39214:4;39234:15;-1:-1:-1::0;;;;;39234:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39136:131;::::0;-1:-1:-1;;;;;;39136:131:0::1;::::0;;;;;;-1:-1:-1;;;;;5242:15:1;;;39136:131:0::1;::::0;::::1;5224:34:1::0;5294:15;;5274:18;;;5267:43;5159:18;;39136:131:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39120:13;:147:::0;;-1:-1:-1;;;;;;39120:147:0::1;-1:-1:-1::0;;;;;39120:147:0;;;::::1;::::0;;::::1;::::0;;39278:66:::1;::::0;39295:4:::1;::::0;-1:-1:-1;;39278:8:0::1;:66::i;:::-;39362:13;::::0;39355:111:::1;::::0;-1:-1:-1;;;39355:111:0;;-1:-1:-1;;;;;39407:15:0::1;5513:32:1::0;;39355:111:0::1;::::0;::::1;5495:51:1::0;-1:-1:-1;;5562:18:1;;;5555:34;39362:13:0;;::::1;::::0;39355:29:::1;::::0;5468:18:1;;39355:111:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;39516:13:0::1;::::0;39479:58:::1;::::0;-1:-1:-1;;;;;39516:13:0::1;::::0;39479:28:::1;:58::i;:::-;39582:13;::::0;39548:55:::1;::::0;-1:-1:-1;;;;;39582:13:0::1;::::0;39548:25:::1;:55::i;:::-;39616:15;-1:-1:-1::0;;;;;39616:31:0::1;;39655:21;39700:4;39720:24;39738:4;-1:-1:-1::0;;;;;10990:18:0;10958:7;10990:18;;;;;;;;;;;;10839:177;39720:24:::1;39759:1;39775::::0;39791:7:::1;2351:6:::0;;-1:-1:-1;;;;;2351:6:0;;2278:87;39791:7:::1;39813:15;39616:223;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;39895:3;39874:13;10756:12:::0;;;10668:108;39874:13:::1;:17;::::0;39890:1:::1;39874:17;:::i;:::-;39873:25;;;;:::i;:::-;39850:20;:48:::0;39943:3:::1;39922:13;10756:12:::0;;;10668:108;39922:13:::1;:17;::::0;39938:1:::1;39922:17;:::i;:::-;39921:25;;;;:::i;:::-;39909:9;:37:::0;39957:2:::1;:8:::0;39976:13:::1;:20:::0;;-1:-1:-1;;40007:18:0;;;;;40051:12:::1;40036;:27:::0;38992:1079::o;9539:100::-;9593:13;9626:5;9619:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9539:100;:::o;12040:242::-;12159:4;903:10;12220:32;903:10;12236:7;12245:6;12220:8;:32::i;:::-;12270:4;12263:11;;;12040:242;;;;;:::o;12862:295::-;12993:4;903:10;13051:38;13067:4;903:10;13082:6;13051:15;:38::i;:::-;13100:27;13110:4;13116:2;13120:6;13100:9;:27::i;:::-;-1:-1:-1;13145:4:0;;12862:295;-1:-1:-1;;;;12862:295:0:o;13566:270::-;13681:4;903:10;13742:64;903:10;13758:7;13795:10;13767:25;903:10;13758:7;13767:9;:25::i;:::-;:38;;;;:::i;:::-;13742:8;:64::i;38901:83::-;38951:25;38957:10;38969:6;38951:5;:25::i;:::-;38901:83;:::o;2919:103::-;2164:13;:11;:13::i;:::-;2984:30:::1;3011:1;2984:18;:30::i;:::-;2919:103::o:0;41686:167::-;2164:13;:11;:13::i;:::-;-1:-1:-1;;;;;41799:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;41799:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41686:167::o;41861:442::-;2164:13;:11;:13::i;:::-;42019:15:::1;:31:::0;;;42061:17:::1;:35:::0;;;42107:15:::1;:31:::0;;;42125:13;42164:35:::1;42081:15:::0;42037:13;42164:35:::1;:::i;:::-;:53;;;;:::i;:::-;42149:12;:68:::0;;;42252:2:::1;-1:-1:-1::0;42236:18:0::1;42228:67;;;;-1:-1:-1::0;;;42228:67:0::1;;;;;;;:::i;:::-;41861:442:::0;;;:::o;9758:104::-;9814:13;9847:7;9840:14;;;;;:::i;41171:507::-;2164:13;:11;:13::i;:::-;41365:4:::1;41344:13;10756:12:::0;;;10668:108;41344:13:::1;:17;::::0;41360:1:::1;41344:17;:::i;:::-;41343:26;;;;:::i;:::-;41329:9;:41;;41307:131;;;::::0;-1:-1:-1;;;41307:131:0;;8422:2:1;41307:131:0::1;::::0;::::1;8404:21:1::0;8461:2;8441:18;;;8434:30;8500:34;8480:18;;;8473:62;-1:-1:-1;;;8551:18:1;;;8544:38;8599:19;;41307:131:0::1;8220:404:1::0;41307:131:0::1;41513:4;41492:13;10756:12:::0;;;10668:108;41492:13:::1;:17;::::0;41508:1:::1;41492:17;:::i;:::-;41491:26;;;;:::i;:::-;41471:15;:47;;41449:140;;;::::0;-1:-1:-1;;;41449:140:0;;8831:2:1;41449:140:0::1;::::0;::::1;8813:21:1::0;8870:2;8850:18;;;8843:30;8909:34;8889:18;;;8882:62;-1:-1:-1;;;8960:18:1;;;8953:41;9011:19;;41449:140:0::1;8629:407:1::0;41449:140:0::1;41600:9;:27:::0;41638:20:::1;:32:::0;41171:507::o;14339:505::-;14459:4;903:10;14459:4;14547:25;903:10;14564:7;14547:9;:25::i;:::-;14520:52;;14625:15;14605:16;:35;;14583:122;;;;-1:-1:-1;;;14583:122:0;;9243:2:1;14583:122:0;;;9225:21:1;9282:2;9262:18;;;9255:30;9321:34;9301:18;;;9294:62;-1:-1:-1;;;9372:18:1;;;9365:35;9417:19;;14583:122:0;9041:401:1;14583:122:0;14741:60;14750:5;14757:7;14785:15;14766:16;:34;14741:8;:60::i;11222:234::-;11337:4;903:10;11398:28;903:10;11415:2;11419:6;11398:9;:28::i;42847:334::-;2164:13;:11;:13::i;:::-;-1:-1:-1;;;;;42965:30:0;::::1;42957:59;;;;-1:-1:-1::0;;;42957:59:0::1;;;;;;;:::i;:::-;43047:15;::::0;;-1:-1:-1;;;;;43073:34:0;;::::1;-1:-1:-1::0;;;;;;43073:34:0;::::1;::::0;::::1;::::0;;;43123:50:::1;::::0;43047:15;::::1;::::0;;;43123:50:::1;::::0;43027:17:::1;::::0;43123:50:::1;42946:235;42847:334:::0;:::o;43889:182::-;2164:13;:11;:13::i;:::-;-1:-1:-1;;;;;43974:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;43974:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;44029:34;;1348:41:1;;;44029:34:0::1;::::0;1321:18:1;44029:34:0::1;;;;;;;43889:182:::0;;:::o;42311:528::-;2164:13;:11;:13::i;:::-;42470:16:::1;:32:::0;;;42513:18:::1;:36:::0;;;42560:16:::1;:32:::0;;;42579:13;42632:50:::1;42534:15:::0;42489:13;42632:50:::1;:::i;:::-;:82;;;;:::i;:::-;42603:13;:111:::0;;;42725:11:::1;:27:::0;;;-1:-1:-1;42771:19:0::1;42763:68;;;;-1:-1:-1::0;;;42763:68:0::1;;;;;;;:::i;40079:565::-:0;2164:13;:11;:13::i;:::-;10756:12;;40132:20:::1;:36:::0;10756:12;;40179:9:::1;:25:::0;40235:1:::1;40217:15;:19:::0;;;40267:1:::1;40247:17;:21:::0;;;-1:-1:-1;40279:15:0::1;:19:::0;;;-1:-1:-1;40324:35:0::1;::::0;40267:1;40324:35:::1;:::i;:::-;:53;;;;:::i;:::-;40309:12;:68:::0;40409:1:::1;40390:16;:20:::0;;;40442:1:::1;40421:18;:22:::0;;;-1:-1:-1;40454:16:0::1;:20:::0;;;-1:-1:-1;40514:50:0::1;::::0;40442:1;40514:50:::1;:::i;:::-;:82;;;;:::i;:::-;40485:13;:111:::0;;;40609:11:::1;:27:::0;40079:565::o;44270:251::-;2164:13;:11;:13::i;:::-;44347:35:::1;::::0;-1:-1:-1;;;44347:35:0;;44376:4:::1;44347:35;::::0;::::1;1573:51:1::0;44385:1:0::1;::::0;-1:-1:-1;;;;;44347:20:0;::::1;::::0;::::1;::::0;1546:18:1;;44347:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;44339:61;;;::::0;-1:-1:-1;;;44339:61:0;;10183:2:1;44339:61:0::1;::::0;::::1;10165:21:1::0;10222:1;10202:18;;;10195:29;-1:-1:-1;;;10240:18:1;;;10233:39;10289:18;;44339:61:0::1;9981:332:1::0;44339:61:0::1;44428:35;::::0;-1:-1:-1;;;44428:35:0;;44457:4:::1;44428:35;::::0;::::1;1573:51:1::0;44411:14:0::1;::::0;-1:-1:-1;;;;;44428:20:0;::::1;::::0;::::1;::::0;1546:18:1;;44428:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44474:39;::::0;-1:-1:-1;;;44474:39:0;;44494:10:::1;44474:39;::::0;::::1;5495:51:1::0;5562:18;;;5555:34;;;44411:52:0;;-1:-1:-1;;;;;;44474:19:0;::::1;::::0;::::1;::::0;5468:18:1;;44474:39:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;40652:511::-:0;40760:4;2164:13;:11;:13::i;:::-;40839:6:::1;40818:13;10756:12:::0;;;10668:108;40818:13:::1;:17;::::0;40834:1:::1;40818:17;:::i;:::-;40817:28;;;;:::i;:::-;40804:9;:41;;40782:151;;;::::0;-1:-1:-1;;;40782:151:0;;10520:2:1;40782:151:0::1;::::0;::::1;10502:21:1::0;10559:2;10539:18;;;10532:30;10598:34;10578:18;;;10571:62;10669:30;10649:18;;;10642:58;10717:19;;40782:151:0::1;10318:424:1::0;40782:151:0::1;41001:4;40980:13;10756:12:::0;;;10668:108;40980:13:::1;:17;::::0;40996:1:::1;40980:17;:::i;:::-;40979:26;;;;:::i;:::-;40966:9;:39;;40944:148;;;::::0;-1:-1:-1;;;40944:148:0;;10949:2:1;40944:148:0::1;::::0;::::1;10931:21:1::0;10988:2;10968:18;;;10961:30;11027:34;11007:18;;;11000:62;11098:29;11078:18;;;11071:57;11145:19;;40944:148:0::1;10747:423:1::0;40944:148:0::1;-1:-1:-1::0;41103:18:0::1;:30:::0;41151:4:::1;::::0;40652:511::o;11519:201::-;-1:-1:-1;;;;;11685:18:0;;;11653:7;11685:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11519:201::o;43547:334::-;2164:13;:11;:13::i;:::-;-1:-1:-1;;;;;43665:30:0;::::1;43657:59;;;;-1:-1:-1::0;;;43657:59:0::1;;;;;;;:::i;:::-;43747:15;::::0;;-1:-1:-1;;;;;43773:34:0;;::::1;-1:-1:-1::0;;;;;;43773:34:0;::::1;::::0;::::1;::::0;;;43823:50:::1;::::0;43747:15;::::1;::::0;;;43823:50:::1;::::0;43727:17:::1;::::0;43823:50:::1;43646:235;43547:334:::0;:::o;43189:350::-;2164:13;:11;:13::i;:::-;-1:-1:-1;;;;;43311:32:0;::::1;43303:61;;;;-1:-1:-1::0;;;43303:61:0::1;;;;;;;:::i;:::-;43395:17;::::0;;-1:-1:-1;;;;;43423:38:0;;::::1;-1:-1:-1::0;;;;;;43423:38:0;::::1;::::0;::::1;::::0;;;43477:54:::1;::::0;43395:17;::::1;::::0;;;43477:54:::1;::::0;43375:17:::1;::::0;43477:54:::1;43292:247;43189:350:::0;:::o;3177:238::-;2164:13;:11;:13::i;:::-;-1:-1:-1;;;;;3280:22:0;::::1;3258:110;;;::::0;-1:-1:-1;;;3258:110:0;;11377:2:1;3258:110:0::1;::::0;::::1;11359:21:1::0;11416:2;11396:18;;;11389:30;11455:34;11435:18;;;11428:62;-1:-1:-1;;;11506:18:1;;;11499:36;11552:19;;3258:110:0::1;11175:402:1::0;3258:110:0::1;3379:28;3398:8;3379:18;:28::i;44079:183::-:0;2164:13;:11;:13::i;:::-;44172:82:::1;::::0;44135:12:::1;::::0;44180:10:::1;::::0;44204:21:::1;::::0;44135:12;44172:82;44135:12;44172:82;44204:21;44180:10;44172:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;44079:183:0:o;2443:132::-;2351:6;;-1:-1:-1;;;;;2351:6:0;903:10;2507:23;2499:68;;;;-1:-1:-1;;;2499:68:0;;11994:2:1;2499:68:0;;;11976:21:1;;;12013:18;;;12006:30;12072:34;12052:18;;;12045:62;12124:18;;2499:68:0;11792:356:1;18472:380:0;-1:-1:-1;;;;;18608:19:0;;18600:68;;;;-1:-1:-1;;;18600:68:0;;12355:2:1;18600:68:0;;;12337:21:1;12394:2;12374:18;;;12367:30;12433:34;12413:18;;;12406:62;-1:-1:-1;;;12484:18:1;;;12477:34;12528:19;;18600:68:0;12153:400:1;18600:68:0;-1:-1:-1;;;;;18687:21:0;;18679:68;;;;-1:-1:-1;;;18679:68:0;;12760:2:1;18679:68:0;;;12742:21:1;12799:2;12779:18;;;12772:30;12838:34;12818:18;;;12811:62;-1:-1:-1;;;12889:18:1;;;12882:32;12931:19;;18679:68:0;12558:398:1;18679:68:0;-1:-1:-1;;;;;18760:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18812:32;;1781:25:1;;;18812:32:0;;1754:18:1;18812:32:0;;;;;;;18472:380;;;:::o;44529:188::-;-1:-1:-1;;;;;44612:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;44612:39:0;;;;;;;;;;44669:40;;44612:39;;:31;44669:40;;;44529:188;;:::o;19143:502::-;19278:24;19305:25;19315:5;19322:7;19305:9;:25::i;:::-;19278:52;;-1:-1:-1;;19345:16:0;:37;19341:297;;19445:6;19425:16;:26;;19399:117;;;;-1:-1:-1;;;19399:117:0;;13163:2:1;19399:117:0;;;13145:21:1;13202:2;13182:18;;;13175:30;13241:31;13221:18;;;13214:59;13290:18;;19399:117:0;12961:353:1;19399:117:0;19560:51;19569:5;19576:7;19604:6;19585:16;:25;19560:8;:51::i;44859:4024::-;-1:-1:-1;;;;;44991:18:0;;44983:68;;;;-1:-1:-1;;;44983:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45070:16:0;;45062:64;;;;-1:-1:-1;;;45062:64:0;;;;;;;:::i;:::-;45143:6;45153:1;45143:11;45139:93;;45171:28;45187:4;45193:2;45197:1;45171:15;:28::i;45139:93::-;2351:6;;-1:-1:-1;;;;;45262:15:0;;;2351:6;;45262:15;;;;:45;;-1:-1:-1;2351:6:0;;-1:-1:-1;;;;;45294:13:0;;;2351:6;;45294:13;;45262:45;:78;;;;-1:-1:-1;;;;;;45324:16:0;;;;45262:78;:112;;;;-1:-1:-1;;;;;;45357:17:0;;35017:6;45357:17;;45262:112;:138;;;;-1:-1:-1;45392:8:0;;-1:-1:-1;;;45392:8:0;;;;45391:9;45262:138;45244:1797;;;45432:13;;;;45427:210;;-1:-1:-1;;;;;45496:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;45525:23:0;;;;;;:19;:23;;;;;;;;45496:52;45466:155;;;;-1:-1:-1;;;45466:155:0;;14331:2:1;45466:155:0;;;14313:21:1;14370:2;14350:18;;;14343:30;14409:31;14389:18;;;14382:59;14458:18;;45466:155:0;14129:353:1;45466:155:0;45691:12;;:17;;45706:2;45691:17;:::i;:::-;45675:12;:33;;:64;;;;;45726:13;45712:11;:27;45675:64;45653:270;;;45774:11;45788:27;45802:13;45788:11;:27;:::i;:::-;45774:41;;45834:12;45849:2;;45855:5;45849:12;;;;:::i;:::-;45834:27;;45894:4;45888:3;:10;45880:27;;;;-1:-1:-1;;;45880:27:0;;;;;;14822:2:1;14804:21;;;14861:1;14841:18;;;14834:29;-1:-1:-1;;;14894:2:1;14879:18;;14872:34;14938:2;14923:18;;14620:327;45880:27:0;45755:168;;45653:270;-1:-1:-1;;;;;45985:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;46038:35:0;;;;;;:31;:35;;;;;;;;46037:36;45985:88;45963:1067;;;46148:20;;46138:6;:30;;46108:164;;;;-1:-1:-1;;;46108:164:0;;15154:2:1;46108:164:0;;;15136:21:1;15193:2;15173:18;;;15166:30;15232:34;15212:18;;;15205:62;15303:30;15283:18;;;15276:58;15351:19;;46108:164:0;14952:424:1;46108:164:0;46347:9;;-1:-1:-1;;;;;10990:18:0;;10958:7;10990:18;;;;;;;;;;;46321:22;;:6;:22;:::i;:::-;:35;;46291:135;;;;-1:-1:-1;;;46291:135:0;;15583:2:1;46291:135:0;;;15565:21:1;15622:2;15602:18;;;15595:30;15661:28;15641:18;;;15634:56;15707:18;;46291:135:0;15381:350:1;46291:135:0;45963:1067;;;-1:-1:-1;;;;;46508:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;46559:37:0;;;;;;:31;:37;;;;;;;;46558:38;46508:88;46486:544;;;46671:20;;46661:6;:30;;46631:165;;;;-1:-1:-1;;;46631:165:0;;15938:2:1;46631:165:0;;;15920:21:1;15977:2;15957:18;;;15950:30;16016:34;15996:18;;;15989:62;16087:31;16067:18;;;16060:59;16136:19;;46631:165:0;15736:425:1;46486:544:0;-1:-1:-1;;;;;46823:35:0;;;;;;:31;:35;;;;;;;;46818:212;;46935:9;;-1:-1:-1;;;;;10990:18:0;;10958:7;10990:18;;;;;;;;;;;46909:22;;:6;:22;:::i;:::-;:35;;46879:135;;;;-1:-1:-1;;;46879:135:0;;15583:2:1;46879:135:0;;;15565:21:1;15622:2;15602:18;;;15595:30;15661:28;15641:18;;;15634:56;15707:18;;46879:135:0;15381:350:1;46879:135:0;47102:4;47053:28;10990:18;;;;;;;;;;;47160;;47136:42;;;;;;;47209:35;;-1:-1:-1;47233:11:0;;;;;;;47209:35;:61;;;;-1:-1:-1;47262:8:0;;-1:-1:-1;;;47262:8:0;;;;47261:9;47209:61;:110;;;;-1:-1:-1;;;;;;47288:31:0;;;;;;:25;:31;;;;;;;;47287:32;47209:110;:153;;;;-1:-1:-1;;;;;;47337:25:0;;;;;;:19;:25;;;;;;;;47336:26;47209:153;:194;;;;-1:-1:-1;;;;;;47380:23:0;;;;;;:19;:23;;;;;;;;47379:24;47209:194;47191:326;;;47430:8;:15;;-1:-1:-1;;;;47430:15:0;-1:-1:-1;;;47430:15:0;;;47462:10;:8;:10::i;:::-;47489:8;:16;;-1:-1:-1;;;;47489:16:0;;;47191:326;47545:8;;-1:-1:-1;;;;;47570:25:0;;47529:12;47570:25;;;:19;:25;;;;;;47545:8;-1:-1:-1;;;47545:8:0;;;;;47544:9;;47570:25;;:52;;-1:-1:-1;;;;;;47599:23:0;;;;;;:19;:23;;;;;;;;47570:52;47566:100;;;-1:-1:-1;47649:5:0;47566:100;47678:12;47711:7;47707:1085;;;-1:-1:-1;;;;;47763:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;47812:1;47796:13;;:17;47763:50;47759:884;;;47841:34;47871:3;47841:25;47852:13;;47841:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;47834:41;;47944:13;;47924:16;;47917:4;:23;;;;:::i;:::-;47916:41;;;;:::i;:::-;47894:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;48026:13:0;;48006:16;;47999:23;;:4;:23;:::i;:::-;47998:41;;;;:::i;:::-;47976:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;48154:13:0;;48111:18;;48104:25;;:4;:25;:::i;:::-;48103:64;;;;:::i;:::-;48058:20;;:109;;;;;;;:::i;:::-;;;;-1:-1:-1;47759:884:0;;-1:-1:-1;47759:884:0;;-1:-1:-1;;;;;48229:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;48279:1;48264:12;;:16;48229:51;48225:418;;;48308:33;48337:3;48308:24;48319:12;;48308:6;:10;;:24;;;;:::i;:33::-;48301:40;;48409:12;;48390:15;;48383:4;:22;;;;:::i;:::-;48382:39;;;;:::i;:::-;48360:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;48489:12:0;;48470:15;;48463:22;;:4;:22;:::i;:::-;48462:39;;;;:::i;:::-;48440:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;48615:12:0;;48573:17;;48566:24;;:4;:24;:::i;:::-;48565:62;;;;:::i;:::-;48520:20;;:107;;;;;;;:::i;:::-;;;;-1:-1:-1;;48225:418:0;48663:8;;48659:91;;48692:42;48708:4;48722;48729;48692:15;:42::i;:::-;48766:14;48776:4;48766:14;;:::i;:::-;;;47707:1085;48804:33;48820:4;48826:2;48830:6;48804:15;:33::i;:::-;-1:-1:-1;;48864:11:0;;48848:13;:27;-1:-1:-1;;;;;44859:4024:0:o;17359:675::-;-1:-1:-1;;;;;17443:21:0;;17435:67;;;;-1:-1:-1;;;17435:67:0;;16368:2:1;17435:67:0;;;16350:21:1;16407:2;16387:18;;;16380:30;16446:34;16426:18;;;16419:62;-1:-1:-1;;;16497:18:1;;;16490:31;16538:19;;17435:67:0;16166:397:1;17435:67:0;-1:-1:-1;;;;;17602:18:0;;17577:22;17602:18;;;;;;;;;;;17639:24;;;;17631:71;;;;-1:-1:-1;;;17631:71:0;;16770:2:1;17631:71:0;;;16752:21:1;16809:2;16789:18;;;16782:30;16848:34;16828:18;;;16821:62;-1:-1:-1;;;16899:18:1;;;16892:32;16941:19;;17631:71:0;16568:398:1;17631:71:0;-1:-1:-1;;;;;17738:18:0;;:9;:18;;;;;;;;;;;17759:23;;;17738:44;;17877:12;:22;;;;;;;17928:37;1781:25:1;;;17738:9:0;;:18;17928:37;;1754:18:1;17928:37:0;;;;;;;41861:442;;;:::o;3575:191::-;3668:6;;;-1:-1:-1;;;;;3685:17:0;;;-1:-1:-1;;;;;;3685:17:0;;;;;;;3718:40;;3668:6;;;3685:17;3668:6;;3718:40;;3649:16;;3718:40;3638:128;3575:191;:::o;15314:877::-;-1:-1:-1;;;;;15445:18:0;;15437:68;;;;-1:-1:-1;;;15437:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15524:16:0;;15516:64;;;;-1:-1:-1;;;15516:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15666:15:0;;15644:19;15666:15;;;;;;;;;;;15714:21;;;;15692:109;;;;-1:-1:-1;;;15692:109:0;;17173:2:1;15692:109:0;;;17155:21:1;17212:2;17192:18;;;17185:30;17251:34;17231:18;;;17224:62;-1:-1:-1;;;17302:18:1;;;17295:36;17348:19;;15692:109:0;16971:402:1;15692:109:0;-1:-1:-1;;;;;15837:15:0;;;:9;:15;;;;;;;;;;;15855:20;;;15837:38;;16055:13;;;;;;;;;;:23;;;;;;16107:26;;1781:25:1;;;16055:13:0;;16107:26;;1754:18:1;16107:26:0;;;;;;;16146:37;41861:442;49778:1839;49861:4;49817:23;10990:18;;;;;;;;;;;49817:50;;49878:25;49974:20;;49940:18;;49906;;:52;;;;:::i;:::-;:88;;;;:::i;:::-;49878:116;-1:-1:-1;50005:12:0;50034:20;;;:46;;-1:-1:-1;50058:22:0;;50034:46;50030:85;;;50097:7;;;49778:1839::o;50030:85::-;50149:18;;:23;;50170:2;50149:23;:::i;:::-;50131:15;:41;50127:115;;;50207:18;;:23;;50228:2;50207:23;:::i;:::-;50189:41;;50127:115;50254:23;50367:1;50334:17;50299:18;;50281:15;:36;;;;:::i;:::-;50280:71;;;;:::i;:::-;:88;;;;:::i;:::-;50254:114;-1:-1:-1;50379:26:0;50408:36;:15;50254:114;50408:19;:36::i;:::-;50379:65;-1:-1:-1;50485:21:0;50519:36;50379:65;50519:16;:36::i;:::-;50568:18;50589:44;:21;50615:17;50589:25;:44::i;:::-;50568:65;;50646:23;50672:81;50725:17;50672:34;50687:18;;50672:10;:14;;:34;;;;:::i;:81::-;50646:107;;50766:25;50794:83;50849:17;50794:36;50809:20;;50794:10;:14;;:36;;;;:::i;:83::-;50766:111;-1:-1:-1;50890:23:0;50766:111;50916:41;50942:15;50916:10;:41;:::i;:::-;:74;;;;:::i;:::-;51024:1;51003:18;:22;;;51036:18;:22;;;51069:20;:24;50890:100;-1:-1:-1;51110:19:0;;;;;:42;;;51151:1;51133:15;:19;51110:42;51106:278;;;51169:46;51182:15;51199;51169:12;:46::i;:::-;51339:18;;51235:137;;;17580:25:1;;;17636:2;17621:18;;17614:34;;;17664:18;;;17657:34;;;;51235:137:0;;;;;;17568:2:1;51235:137:0;;;51106:278;51418:17;;51410:85;;-1:-1:-1;;;;;51418:17:0;;;;51449;;51410:85;;;;51449:17;51418;51410:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51530:15:0;;51522:87;;51396:99;;-1:-1:-1;;;;;;51530:15:0;;51573:21;;51522:87;;;;51573:21;51530:15;51522:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;49778:1839:0:o;24820:98::-;24878:7;24905:5;24909:1;24905;:5;:::i;:::-;24898:12;24820:98;-1:-1:-1;;;24820:98:0:o;25219:::-;25277:7;25304:5;25308:1;25304;:5;:::i;24463:98::-;24521:7;24548:5;24552:1;24548;:5;:::i;48891:501::-;48981:16;;;48995:1;48981:16;;;;;;;;48957:21;;48981:16;;;;;;;;;;-1:-1:-1;48981:16:0;48957:40;;49026:4;49008;49013:1;49008:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;49008:23:0;;;-1:-1:-1;;;;;49008:23:0;;;;;49052:15;-1:-1:-1;;;;;49052:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49042:4;49047:1;49042:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;49042:32:0;;;-1:-1:-1;;;;;49042:32:0;;;;;49087:62;49104:4;49119:15;49137:11;49087:8;:62::i;:::-;49188:196;;-1:-1:-1;;;49188:196:0;;-1:-1:-1;;;;;49188:15:0;:66;;;;:196;;49269:11;;49295:1;;49311:4;;49338;;49358:15;;49188:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48946:446;48891:501;:::o;49400:370::-;49481:62;49498:4;49513:15;49531:11;49481:8;:62::i;:::-;49706:15;;49556:206;;-1:-1:-1;;;49556:206:0;;-1:-1:-1;;;;;49556:15:0;:31;;;;;49595:9;;49556:206;;49628:4;;49648:11;;49674:1;;;;49706:15;;;49736;;49556:206;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;49400:370;;:::o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:548::-;311:4;340:2;369;358:9;351:21;401:6;395:13;444:6;439:2;428:9;424:18;417:34;469:1;479:140;493:6;490:1;487:13;479:140;;;588:14;;;584:23;;578:30;554:17;;;573:2;550:26;543:66;508:10;;479:140;;;483:3;668:1;663:2;654:6;643:9;639:22;635:31;628:42;738:2;731;727:7;722:2;714:6;710:15;706:29;695:9;691:45;687:54;679:62;;;;199:548;;;;:::o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:315;956:6;964;1017:2;1005:9;996:7;992:23;988:32;985:52;;;1033:1;1030;1023:12;985:52;1072:9;1059:23;1091:31;1116:5;1091:31;:::i;:::-;1141:5;1193:2;1178:18;;;;1165:32;;-1:-1:-1;;;888:315:1:o;1817:456::-;1894:6;1902;1910;1963:2;1951:9;1942:7;1938:23;1934:32;1931:52;;;1979:1;1976;1969:12;1931:52;2018:9;2005:23;2037:31;2062:5;2037:31;:::i;:::-;2087:5;-1:-1:-1;2144:2:1;2129:18;;2116:32;2157:33;2116:32;2157:33;:::i;:::-;1817:456;;2209:7;;-1:-1:-1;;;2263:2:1;2248:18;;;;2235:32;;1817:456::o;2675:247::-;2734:6;2787:2;2775:9;2766:7;2762:23;2758:32;2755:52;;;2803:1;2800;2793:12;2755:52;2842:9;2829:23;2861:31;2886:5;2861:31;:::i;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:248::-;3826:6;3834;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;-1:-1:-1;;3926:23:1;;;3996:2;3981:18;;;3968:32;;-1:-1:-1;3758:248:1:o;4011:388::-;4079:6;4087;4140:2;4128:9;4119:7;4115:23;4111:32;4108:52;;;4156:1;4153;4146:12;4108:52;4195:9;4182:23;4214:31;4239:5;4214:31;:::i;:::-;4264:5;-1:-1:-1;4321:2:1;4306:18;;4293:32;4334:33;4293:32;4334:33;:::i;4756:251::-;4826:6;4879:2;4867:9;4858:7;4854:23;4850:32;4847:52;;;4895:1;4892;4885:12;4847:52;4927:9;4921:16;4946:31;4971:5;4946:31;:::i;5600:245::-;5667:6;5720:2;5708:9;5699:7;5695:23;5691:32;5688:52;;;5736:1;5733;5726:12;5688:52;5768:9;5762:16;5787:28;5809:5;5787:28;:::i;5850:607::-;-1:-1:-1;;;;;6209:15:1;;;6191:34;;6256:2;6241:18;;6234:34;;;;6299:2;6284:18;;6277:34;;;;6342:2;6327:18;;6320:34;;;;6391:15;;;6385:3;6370:19;;6363:44;6171:3;6423:19;;6416:35;;;;6140:3;6125:19;;5850:607::o;6462:306::-;6550:6;6558;6566;6619:2;6607:9;6598:7;6594:23;6590:32;6587:52;;;6635:1;6632;6625:12;6587:52;6664:9;6658:16;6648:26;;6714:2;6703:9;6699:18;6693:25;6683:35;;6758:2;6747:9;6743:18;6737:25;6727:35;;6462:306;;;;;:::o;6773:127::-;6834:10;6829:3;6825:20;6822:1;6815:31;6865:4;6862:1;6855:15;6889:4;6886:1;6879:15;6905:168;6978:9;;;7009;;7026:15;;;7020:22;;7006:37;6996:71;;7047:18;;:::i;7078:217::-;7118:1;7144;7134:132;;7188:10;7183:3;7179:20;7176:1;7169:31;7223:4;7220:1;7213:15;7251:4;7248:1;7241:15;7134:132;-1:-1:-1;7280:9:1;;7078:217::o;7300:380::-;7379:1;7375:12;;;;7422;;;7443:61;;7497:4;7489:6;7485:17;7475:27;;7443:61;7550:2;7542:6;7539:14;7519:18;7516:38;7513:161;;7596:10;7591:3;7587:20;7584:1;7577:31;7631:4;7628:1;7621:15;7659:4;7656:1;7649:15;7513:161;;7300:380;;;:::o;7685:125::-;7750:9;;;7771:10;;;7768:36;;;7784:18;;:::i;7815:400::-;8017:2;7999:21;;;8056:2;8036:18;;;8029:30;8095:34;8090:2;8075:18;;8068:62;-1:-1:-1;;;8161:2:1;8146:18;;8139:34;8205:3;8190:19;;7815:400::o;9447:340::-;9649:2;9631:21;;;9688:2;9668:18;;;9661:30;-1:-1:-1;;;9722:2:1;9707:18;;9700:46;9778:2;9763:18;;9447:340::o;9792:184::-;9862:6;9915:2;9903:9;9894:7;9890:23;9886:32;9883:52;;;9931:1;9928;9921:12;9883:52;-1:-1:-1;9954:16:1;;9792:184;-1:-1:-1;9792:184:1:o;13319:401::-;13521:2;13503:21;;;13560:2;13540:18;;;13533:30;13599:34;13594:2;13579:18;;13572:62;-1:-1:-1;;;13665:2:1;13650:18;;13643:35;13710:3;13695:19;;13319:401::o;13725:399::-;13927:2;13909:21;;;13966:2;13946:18;;;13939:30;14005:34;14000:2;13985:18;;13978:62;-1:-1:-1;;;14071:2:1;14056:18;;14049:33;14114:3;14099:19;;13725:399::o;14487:128::-;14554:9;;;14575:11;;;14572:37;;;14589:18;;:::i;17834:127::-;17895:10;17890:3;17886:20;17883:1;17876:31;17926:4;17923:1;17916:15;17950:4;17947:1;17940:15;17966:980;18228:4;18276:3;18265:9;18261:19;18307:6;18296:9;18289:25;18333:2;18371:6;18366:2;18355:9;18351:18;18344:34;18414:3;18409:2;18398:9;18394:18;18387:31;18438:6;18473;18467:13;18504:6;18496;18489:22;18542:3;18531:9;18527:19;18520:26;;18581:2;18573:6;18569:15;18555:29;;18602:1;18612:195;18626:6;18623:1;18620:13;18612:195;;;18691:13;;-1:-1:-1;;;;;18687:39:1;18675:52;;18782:15;;;;18747:12;;;;18723:1;18641:9;18612:195;;;-1:-1:-1;;;;;;;18863:32:1;;;;18858:2;18843:18;;18836:60;-1:-1:-1;;;18927:3:1;18912:19;18905:35;18824:3;17966:980;-1:-1:-1;;;17966:980:1:o
Swarm Source
ipfs://426a200de31357250f3b5a6e25da4dee0fff368cb1ed9b0a752da4996c9297f9
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.