Token
test (ticker)
ERC-20
Overview
Max Total Supply
690,000,000 ticker
Holders
3
Total Transfers
-
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Retard
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.10
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED import "./BondingCurve.sol"; import "./Interfaces/IERC7572.sol"; pragma solidity ^0.8.19; // 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 Retard is ERC20, Ownable, IERC7572 { using SafeMath for uint256; BondingCurve public TradingContract; error UnauthorizedOperator(address account); address private _operator; // bonding curve smartcontract IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public treasuryWallet; address public constant deadAddress = address(0xdead); bool public tradingActive; uint256 public activeTime; bool private maxBuyStat1; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _automatedMarketMakerPairs; mapping(address => bool) private _isExcludedFromMaxTransaction; event ExcludeFromLimits(address indexed account, bool isExcluded); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event treasuryWalletUpdated( address indexed newWallet, address indexed oldWallet ); event operatorAccessTransferred( address indexed previousOperator, address indexed newOperator ); uint256 public maxTransaction; uint256 public maxWallet; address private pairAddressTemp; string internal _contractURI; constructor( string memory name, string memory symbol, string memory contractUri, address devBuyAddress, bool devBuyEnabled, bool maxBuyEnabled, address swapRouter ) ERC20(name, symbol) Ownable(msg.sender) { uint256 totalSupply = 690_000_000 * 1e18; _contractURI = contractUri; TradingContract = new BondingCurve( devBuyAddress, devBuyEnabled, address(this), msg.sender ); _operator = address(TradingContract); uniswapV2Router = IUniswapV2Router02( swapRouter // use mainnet uniswap v2 replace ); _approve(address(this), address(uniswapV2Router), type(uint256).max); maxBuyStat1 = maxBuyEnabled; if (maxBuyEnabled) { maxTransaction = totalSupply.div(100); maxWallet = totalSupply.div(100); } else { maxTransaction = totalSupply; maxWallet = totalSupply; } treasuryWallet = msg.sender; // tax and lp collection wallet excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(deadAddress, true); excludeFromFees(address(TradingContract), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(deadAddress, true); excludeFromMaxTransaction(address(uniswapV2Router), true); excludeFromMaxTransaction(address(TradingContract), true); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); pairAddressTemp = address(uniswapV2Pair); _setAutomatedMarketMakerPair(pairAddressTemp, true); excludeFromMaxTransaction(pairAddressTemp, true); _setAutomatedMarketMakerPair(address(TradingContract), true); _mint(address(this), 190_000_000 * 1e18); _mint(address(TradingContract), 500_000_000 * 1e18); } receive() external payable {} function burn(uint256 amount) external { _burn(msg.sender, amount); } function addLiquidity() internal { require(!tradingActive, "Trading already active."); uint256 tokens = balanceOf(address(this)); uint256 tokensToSend = tokens - tokens.div(25); // keeps 4% of the holding _approve(address(this), pairAddressTemp, type(uint256).max); IERC20(pairAddressTemp).approve( address(uniswapV2Router), type(uint256).max ); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), tokensToSend, 0, 0, treasuryWallet, block.timestamp ); } function enableTrading() public onlyOperator { addLiquidity(); require(!tradingActive, "Trading already active."); tradingActive = true; activeTime = block.timestamp; } function setTreasuryWallet(address _treasuryWallet) external onlyOwner { require(_treasuryWallet != address(0), "ERC20: Address 0"); address oldWallet = treasuryWallet; treasuryWallet = _treasuryWallet; emit treasuryWalletUpdated(treasuryWallet, oldWallet); } function excludeFromFees(address account, bool value) public onlyOwner { _isExcludedFromFees[account] = value; emit ExcludeFromFees(account, value); } function excludeFromMaxTransaction( address account, bool value ) public onlyOwner { _isExcludedFromMaxTransaction[account] = value; emit ExcludeFromLimits(account, value); } function withdrawStuckTokens(address tkn) external onlyOwner { bool success; if (tkn == address(0)) (success, ) = address(msg.sender).call{ value: address(this).balance }(""); else { require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens"); uint256 amount = IERC20(tkn).balanceOf(address(this)); IERC20(tkn).transfer(msg.sender, amount); } } function isExcludedFromFees(address account) external view returns (bool) { return _isExcludedFromFees[account]; } function isExcludedFromMaxTransaction( address account ) external view returns (bool) { return _isExcludedFromMaxTransaction[account]; } function _setAutomatedMarketMakerPair(address pair, bool value) internal { _automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } 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 (maxTransactionEnabled()) { //when buy uniswap if ( (_automatedMarketMakerPairs[from] || from == address(TradingContract)) && !_isExcludedFromMaxTransaction[to] ) { require( amount <= maxTransaction, "ERC20: Buy transfer amount exceeds the maxTransaction." ); require( amount + balanceOf(to) <= maxWallet, "ERC20: Max wallet exceeded" ); } //when sell uniswap else if ( (_automatedMarketMakerPairs[to] || from == address(TradingContract)) && !_isExcludedFromMaxTransaction[from] ) { require( amount <= maxTransaction, "ERC20: Sell transfer amount exceeds the maxTransaction." ); } else if (!_isExcludedFromMaxTransaction[to]) { require( amount + balanceOf(to) <= maxWallet, "ERC20: Max wallet exceeded" ); } } if ( from != owner() && to != owner() && !_isExcludedFromFees[from] && to != address(0) && to != deadAddress ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "ERC20: Trading is not active." ); } } super._transfer(from, to, amount); } function bondingCurveContract() external view virtual returns (address) { return address(TradingContract); } function maxTransactionEnabled() public view returns (bool) { if (tradingActive) { if (block.timestamp - activeTime <= 600) { return maxBuyStat1; } else { return false; } } else { return maxBuyStat1; } } function contractURI() external view returns (string memory) { return _contractURI; } modifier onlyOperator() { _checkOperator(); _; } function operator() public view virtual returns (address) { return _operator; } function _checkOperator() internal view virtual { if (operator() != _msgSender()) { revert UnauthorizedOperator(_msgSender()); } } function transferOperatorAccess(address _NewOperator) public onlyOwner { address oldOperator = _operator; _operator = _NewOperator; emit operatorAccessTransferred(oldOperator, _NewOperator); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "./Interfaces/ITokenContract.sol"; import "./Deps/ReentrancyGuard.sol"; import "./Deps/Ownable.sol"; contract BondingCurve is ReentrancyGuard, Ownable { address private _operator = 0xE019bCE3E260a0b9285e5C21A5409504f66Fa9a7; address public dev; address public TokenContractAddress; event BondingCurveCompleted(bool success); error UnauthorizedDevBuy(address account); error UnauthorizedOperator(address account); event Buy( address indexed buyer, uint256 ethSpent, uint256 tokensReceived, uint256 ethBalance, uint256 tokenBalance, uint256 fee ); event Sell( address indexed seller, uint256 tokensSpent, uint256 ethReceived, uint256 tokenBalance, uint256 ethBalance, uint256 fee ); event Released( address indexed recipient, uint256 ethAmount, uint256 tokenAmount ); event operatorAccessTransferred( address indexed previousOperator, address indexed newOperator ); // Constants for Bonding Curve uint256 public constant P0 = 5e15; // 5e15 wei per million tokens uint256 public constant A = 180e9; // 1.8e11 wei per million^3 tokens uint256 public constant MAX_MILLION_TOKENS = 500 * 1e18; // Allow full precision // Fees and spread uint256 public constant SPREAD_PERCENT = 2; // 2% spread on sell uint256 public constant FEES_PERCENT = 1; // 1% fees on buy/sell address private feesWallet = 0xC07AF1c04a90F2c80e27B4644417D6922B464A4c; // BC calculations uint256 public n; bool public bondingCurveActive = true; bool public devBuyEnabled = true; uint256 private deploymentTimeStamp; constructor( address _dev, bool _devBuyEnabled, address _tokenContract, address initialOwner ) Ownable(initialOwner) { dev = _dev; TokenContractAddress = _tokenContract; devBuyEnabled = _devBuyEnabled; deploymentTimeStamp = block.timestamp; } function transferAll() internal { // Transfer all tokens uint256 ethBalance = address(this).balance; require(ethBalance >= 9.95 ether, "Not enough eth for liquidity!"); ITokenContract tokenContract = ITokenContract(TokenContractAddress); uint256 tokenBalance = ITokenContract(tokenContract).balanceOf( address(this) ); if (tokenBalance > 0) { ITokenContract(tokenContract).transfer( address(0xdead), tokenBalance ); } // Transfer all Ether (bool success1, ) = dev.call{value: 0.1 ether}(""); require(success1, "Failed to send 0.1 ETH to dev wallet"); (bool success2, ) = feesWallet.call{value: 0.4 ether}(""); require(success2, "Failed to send 0.4 ETH to feesWallet wallet"); (bool success3, ) = address(tokenContract).call{ value: (address(this).balance) }(""); require(success3, "Failed to transfer Ether"); // Emit release event emit Released(address(tokenContract), ethBalance, tokenBalance); } function EndBondingCurve() internal { bondingCurveActive = false; ITokenContract tokenContract = ITokenContract(TokenContractAddress); transferAll(); tokenContract.enableTrading(); emit BondingCurveCompleted(true); } function buy(uint256 minTokens) external payable nonReentrant { require(bondingCurveActive, "Bonding Curve is inactive!"); require(msg.value > 0, "ETH required"); if (devBuyEnabled) { if (dev != msg.sender) { revert UnauthorizedDevBuy(msg.sender); } devBuyEnabled = false; } ITokenContract tokenContract = ITokenContract(TokenContractAddress); uint256 fees = (msg.value * FEES_PERCENT) / 100; uint256 netETH = msg.value - fees; uint256 tokensToTransfer = tokensForETH(netETH) * 1e6; require(tokensToTransfer >= minTokens, "Slippage too high"); uint256 newN = n + (tokensToTransfer / 1e6); require(newN <= MAX_MILLION_TOKENS, "Max token supply reached"); uint256 refund; if (newN == MAX_MILLION_TOKENS) { refund = (netETH - (ethForN(newN) - ethForN(n))); uint256 feeAdjustment = refund / (100 - FEES_PERCENT); fees -= feeAdjustment; refund += feeAdjustment; } require( tokenContract.transfer(msg.sender, tokensToTransfer), "Token transfer failed" ); n = newN; if (refund > 0) { (bool refundSent, ) = address(msg.sender).call{value: refund}(""); require(refundSent, "Refund transfer failed"); } (bool feesSent, ) = feesWallet.call{value: fees}(""); require(feesSent, "fees transfer failed"); emit Buy( msg.sender, msg.value, tokensToTransfer, address(this).balance, tokenContract.balanceOf(address(this)), fees ); // To End Bonding Curve uint256 ethBalance = address(this).balance; if (ethBalance >= 9.95 ether) { EndBondingCurve(); } } function sell( uint256 tokenAmount, uint256 minEthers ) external nonReentrant { require(bondingCurveActive, "Bonding Curve is inactive!"); require(tokenAmount > 0, "Token amount required"); require(tokenAmount / 1e6 <= n, "Not enough tokens to sell"); ITokenContract tokenContract = ITokenContract(TokenContractAddress); uint256 refundETH = ethForTokens(tokenAmount); uint256 spread = (refundETH * SPREAD_PERCENT) / 100; uint256 netRefund = refundETH - spread; uint256 fees = (netRefund * FEES_PERCENT) / 100; netRefund -= fees; require(netRefund >= minEthers, "Slippage too high"); require( address(this).balance >= netRefund, "Contract does not have enough ETH" ); require( tokenContract.transferFrom(msg.sender, address(this), tokenAmount), "Token transfer failed" ); n = n - (tokenAmount / 1e6); (bool feesSent, ) = feesWallet.call{value: fees}(""); require(feesSent, "fees transfer failed"); (bool refundSent, ) = msg.sender.call{value: netRefund}(""); require(refundSent, "ETH refund failed"); emit Sell( msg.sender, tokenAmount, netRefund, tokenContract.balanceOf(address(this)), address(this).balance, fees ); } function ethForN(uint256 n_) public pure returns (uint256) { uint256 linear = (P0 * n_) / 1e18; uint256 cubic = (A * (n_ ** 3)) / (3 * 1e54); return linear + cubic; } function tokensForETH(uint256 ethAmount) public view returns (uint256) { uint256 newETH = ethForN(n) + ethAmount; return solveForN(newETH) - n; } function ethForTokens(uint256 tokenAmount) public view returns (uint256) { uint256 newN = n - (tokenAmount / 1e6); return ethForN(n) - ethForN(newN); } function solveForN(uint256 targetETH) public pure returns (uint256) { uint256 low = 0; uint256 high = MAX_MILLION_TOKENS; for (uint256 i = 0; i < 100; i++) { uint256 mid = (low + high + 1) / 2; uint256 midETH = ethForN(mid); if (midETH == targetETH) { return mid; } else if (midETH < targetETH) { low = mid; } else { high = mid; } } return low; } function withdrawStuckETH() public onlyOperator { require( block.timestamp > (deploymentTimeStamp + 7776000), "90 Days Haven't Passed Yet!" ); bool success; (success, ) = address(msg.sender).call{value: address(this).balance}( "" ); } modifier onlyOperator() { _checkOperator(); _; } function operator() public view virtual returns (address) { return _operator; } function _checkOperator() internal view virtual { if (operator() != _msgSender()) { revert UnauthorizedOperator(_msgSender()); } } function transferOperatorAccess(address _NewOperator) external onlyOwner { address oldOperator = _operator; _operator = _NewOperator; emit operatorAccessTransferred(oldOperator, _NewOperator); } receive() external payable {} fallback() external payable {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC7572 { function contractURI() external view returns (string memory); event ContractURIUpdated(); }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; interface ITokenContract { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address to, uint256 amount) external returns (bool); function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address from, address to, uint256 amount ) external returns (bool); function enableTrading() external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at, * consider using {ReentrancyGuardTransient} instead. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant NOT_ENTERED = 1; uint256 private constant ENTERED = 2; uint256 private _status; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); constructor() { _status = NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; // 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(address initialOwner) { _transferOwnership(initialOwner); } /** * @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); } }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"contractUri","type":"string"},{"internalType":"address","name":"devBuyAddress","type":"address"},{"internalType":"bool","name":"devBuyEnabled","type":"bool"},{"internalType":"bool","name":"maxBuyEnabled","type":"bool"},{"internalType":"address","name":"swapRouter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"UnauthorizedOperator","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"ContractURIUpdated","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":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":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"operatorAccessTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","type":"event"},{"inputs":[],"name":"TradingContract","outputs":[{"internalType":"contract BondingCurve","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activeTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bondingCurveContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryWallet","type":"address"}],"name":"setTreasuryWallet","outputs":[],"stateMutability":"nonpayable","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":[{"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":"_NewOperator","type":"address"}],"name":"transferOperatorAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010004596997b01315e8062b3aeaa4b56b1fac471f8f4af55bbc49b1f5446096000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000002c582a7b8e080d2028538b2c9716ac1bc02d6de40000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000096ff7d9dbf52fdcae79157d3b249282c7fabd4090000000000000000000000000000000000000000000000000000000000000004746573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000067469636b65720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a687474703a2f2f6c6f63616c686f73743a393030302f62757a7a646f7466756e2f62757a7a646f7466756e2f6a736f6e2f36303766346339372d383133652d343961662d616532642d3061643766633965323333632e6a736f6e000000000000
Deployed Bytecode
0x00020000000000020008000000000002000000000801034f00010000000103550000006001100270000003bc0010019d000003bc0110019700000001002001900000004d0000c13d0000008002000039000000400020043f000000040010008c000000870000413d000000000208043b000000e002200270000003ea0020009c0000008b0000213d000004040020009c0000009e0000213d000004110020009c000001a40000a13d000004120020009c000002430000a13d000004130020009c000004350000613d000004140020009c000003de0000613d000004150020009c000007000000c13d000000440010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000101043b000600000001001d000003c10010009c000007000000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c7000080100200003900050000000803530ee90ee40000040f000000050300035f0000000100200190000007000000613d000000000101043b0000000602000029000000000020043f000000200010043f0000002401300370000000000101043b000500000001001d0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000101041a0000000502000029000000000021001a00000c110000413d0000000003210019000004c90000013d000000a003000039000000400030043f0000000002000416000000000002004b000007000000c13d0000001f02100039000003bd02200197000000a002200039000000400020043f0000001f0410018f000003be05100198000000a0025000390000005f0000613d000000000608034f000000006706043c0000000003730436000000000023004b0000005b0000c13d000000000004004b0000006c0000613d000000000358034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000e00010008c000007000000413d000000a00300043d000003bf0030009c000007000000213d0000001f02300039000000000012004b0000000004000019000003c004008041000003c002200197000000000002004b0000000005000019000003c005004041000003c00020009c000000000504c019000000000005004b000007000000c13d000000a0023000390000000002020433000003bf0020009c000000de0000a13d0000043e01000041000000000010043f0000004101000039000000040010043f000004230100004100000eeb00010430000000000001004b000007000000c13d000000000100001900000eea0001042e000003eb0020009c000000cf0000213d000003f80020009c000001b80000a13d000003f90020009c0000028a0000a13d000003fa0020009c0000043c0000613d000003fb0020009c000003e50000613d000003fc0020009c000007000000c13d0000000001000416000000000001004b000007000000c13d0000000901000039000000000101041a00000429001001980000037d0000013d000004050020009c000001c30000a13d000004060020009c000002ac0000a13d000004070020009c000004570000613d000004080020009c000003fa0000613d000004090020009c000007000000c13d0000000001000416000000000001004b000007000000c13d0000000701000039000000000101041a000003c1021001970000000001000411000000000012004b000004b50000c13d0000000901000039000000000101041a0000042900100198000004bf0000c13d0000000001000410000000000010043f000000200000043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b0000000002000410000000000002004b0000058e0000c13d000000400100043d000000640210003900000441030000410000000000320435000000440210003900000442030000410000000000320435000000240210003900000024030000390000059b0000013d000003ec0020009c000001ce0000a13d000003ed0020009c000002be0000a13d000003ee0020009c0000046f0000613d000003ef0020009c000001be0000613d000003f00020009c000007000000c13d0000000001000416000000000001004b000007000000c13d0000001001000039000003da0000013d0000001f0420003900000448044001970000003f044000390000044805400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000003bf0050009c000000810000213d0000000100600190000000810000c13d000000a006100039000000400050043f0000000005240436000000c0033000390000000007320019000000000067004b000007000000213d000000000002004b000000fc0000613d000000000700001900000000087500190000000009370019000000000909043300000000009804350000002007700039000000000027004b000000f50000413d000000000242001900000020022000390000000000020435000000c00800043d000003bf0080009c000007000000213d0000001f02800039000000000012004b0000000003000019000003c003008041000003c002200197000000000002004b0000000007000019000003c007004041000003c00020009c000000000703c019000000000007004b000007000000c13d000000a0028000390000000007020433000003bf0070009c000000810000213d0000001f0270003900000448022001970000003f022000390000044803200197000000400200043d0000000003320019000000000023004b00000000090000390000000109004039000003bf0030009c000000810000213d0000000100900190000000810000c13d000000400030043f0000000003720436000000c0088000390000000009870019000000000069004b000007000000213d000000000007004b0000012f0000613d0000000009000019000000000a930019000000000b890019000000000b0b04330000000000ba04350000002009900039000000000079004b000001280000413d000000000727001900000020077000390000000000070435000000e00700043d000003bf0070009c000007000000213d0000001f08700039000000000018004b0000000001000019000003c001008041000003c008800197000000000008004b0000000009000019000003c009004041000003c00080009c000000000901c019000000000009004b000007000000c13d000000a0017000390000000001010433000003bf0010009c000000810000213d0000001f0810003900000448088001970000003f088000390000044808800197000000400a00043d00000000088a00190000000000a8004b00000000090000390000000109004039000003bf0080009c000000810000213d0000000100900190000000810000c13d000000400080043f00060000000a001d00000000081a0436000500000008001d000000c0077000390000000008710019000000000068004b000007000000213d000000000001004b000000050a000029000001650000613d000000000600001900000000086a00190000000009760019000000000909043300000000009804350000002006600039000000000016004b0000015e0000413d000000060110002900000020011000390000000000010435000001000100043d000400000001001d000003c10010009c000007000000213d000001200600043d000000000006004b0000000001000039000000010100c039000300000006001d000000000016004b000007000000c13d000001400600043d000000000006004b0000000001000039000000010100c039000200000006001d000000000016004b000007000000c13d000001600100043d000100000001001d000003c10010009c000007000000213d0000000006040433000003bf0060009c000000810000213d0000000301000039000000000701041a000000010870019000000001077002700000007f0770618f0000001f0070008c00000000090000390000000109002039000000000098004b000002f10000c13d000000200070008c0000019c0000413d000000000010043f0000001f086000390000000508800270000003c20880009a000000200060008c000003c3080040410000001f077000390000000507700270000003c20770009a000000000078004b0000019c0000813d000000000008041b0000000108800039000000000078004b000001980000413d0000001f0060008c0000072e0000a13d000000000010043f0000044808600198000007390000c13d0000002007000039000003c305000041000007450000013d000004180020009c000001d90000213d0000041b0020009c000002e20000613d0000041c0020009c000007000000c13d000000440010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000201043b000003c10020009c000007000000213d0000002401800370000000000301043b00000000010004110ee90ca60000040f000003f20000013d000003ff0020009c000001e20000213d000004020020009c000002f70000613d000004030020009c000007000000c13d0000000001000416000000000001004b000007000000c13d0000000601000039000003bb0000013d0000040c0020009c000002060000213d0000040f0020009c000002fc0000613d000004100020009c000007000000c13d0000000001000416000000000001004b000007000000c13d0000000901000039000003bb0000013d000003f30020009c000002160000213d000003f60020009c000003120000613d000003f70020009c000007000000c13d0000000001000416000000000001004b000007000000c13d0000000f01000039000003da0000013d000004190020009c0000034c0000613d0000041a0020009c000007000000c13d0000000001000416000000000001004b000007000000c13d0000000201000039000003da0000013d000004000020009c0000035a0000613d000004010020009c000007000000c13d0000000001000416000000000001004b000007000000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002f10000c13d000000800010043f000000000005004b000004980000613d000000000030043f000000020020008c000004bd0000413d000003c60200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000001fd0000413d000004de0000013d0000040d0020009c000003620000613d0000040e0020009c000007000000c13d000000240010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000101043b000003c10010009c000007000000213d000000000010043f0000000c01000039000003770000013d000003f40020009c000003670000613d000003f50020009c000007000000c13d000000240010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000101043b000600000001001d000003c10010009c000007000000213d0000000501000039000000000101041a000003c1011001970000000002000411000000000021004b0000048c0000c13d00000000030004100000000602000029000000000002004b000005150000c13d0000042601000041000000000010044300000004003004430000000001000414000003bc0010009c000003bc01008041000000c00110021000000427011001c70000800a020000390ee90ee40000040f00000001002001900000068e0000613d000000000301043b0000000001000414000003bc0010009c000003bc01008041000000c001100210000000000003004b000005a60000c13d0000000002000411000005aa0000013d000004160020009c0000036c0000613d000004170020009c000007000000c13d000000640010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000101043b000600000001001d000003c10010009c000007000000213d0000002401800370000000000101043b000500000001001d000003c10010009c000007000000213d0000004401800370000000000101043b000400000001001d0000000601000029000000000010043f0000000101000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000101041a000004490010009c000007050000613d000000040310006c000007020000813d000000400100043d00000044021000390000044703000041000000000032043500000024021000390000001d030000390000000000320435000003e0020000410000000000210435000000040210003900000020030000390000000000320435000003bc0010009c000003bc010080410000004001100210000003e1011001c700000eeb00010430000003fd0020009c000003820000613d000003fe0020009c000007000000c13d000000240010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000601043b000003c10060009c000007000000213d0000000501000039000000000101041a000003c1011001970000000002000411000000000021004b0000048c0000c13d0000000701000039000000000201041a000003c803200197000000000363019f000000000031041b0000000001000414000003c105200197000003bc0010009c000003bc01008041000000c001100210000003c9011001c70000800d0200003900000003030000390000042e040000410000046b0000013d0000040a0020009c000003b70000613d0000040b0020009c000007000000c13d000000240010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000101043b000003c10010009c000007000000213d000000000010043f000000200000043f00000040020000390000000001000019000003d90000013d000003f10020009c000003c00000613d000003f20020009c000007000000c13d0000000001000416000000000001004b000007000000c13d0000001203000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002f10000c13d000000800010043f000000000005004b000004980000613d000000000030043f000000020020008c000004bd0000413d000003cc0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002d90000413d000004de0000013d0000000001000416000000000001004b000007000000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000004950000613d0000043e01000041000000000010043f0000002201000039000000040010043f000004230100004100000eeb000104300000000001000416000000000001004b000007000000c13d0000000501000039000003bb0000013d000000240010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000201043b0000000001000411000000000001004b0000049e0000c13d000003e001000041000000800010043f0000002001000039000000840010043f0000002101000039000000a40010043f0000044501000041000000c40010043f0000044601000041000000e40010043f000004200100004100000eeb00010430000000440010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000101043b000600000001001d000003c10010009c000007000000213d0000002401800370000000000201043b000000000002004b0000000001000039000000010100c039000500000002001d000000000012004b000007000000c13d0000000501000039000000000101041a000003c1011001970000000002000411000000000021004b0000048c0000c13d0000000601000029000000000010043f0000000c01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a0000044a022001970000000503000029000000000232019f000000000021041b000000400100043d0000000000310435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000203000039000003d604000041000004330000013d0000000001000416000000000001004b000007000000c13d0000000001000412000800000001001d000700000000003d000080050100003900000044030000390000000004000415000000080440008a000000050440021000000434020000410ee90ec10000040f000003bc0000013d0000000001000416000000000001004b000007000000c13d0ee90c810000040f000000000001004b0000000001000039000000010100c039000003f30000013d0000000001000416000000000001004b000007000000c13d0000000801000039000003bb0000013d0000000001000416000000000001004b000007000000c13d0000000a01000039000003da0000013d000000240010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000101043b000003c10010009c000007000000213d000000000010043f0000000e01000039000000200010043f000000400200003900000000010000190ee90eac0000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f0000041d0100004100000eea0001042e000000440010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000101043b000600000001001d000003c10010009c000007000000213d0000002401800370000000000101043b000500000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000101041a000000050310006c000004c90000813d000000400100043d00000064021000390000042f030000410000000000320435000000440210003900000430030000410000000000320435000000240210003900000025030000390000059b0000013d0000000001000416000000000001004b000007000000c13d0000000701000039000000000101041a000003c101100197000000800010043f0000041d0100004100000eea0001042e000000440010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000101043b000003c10010009c000007000000213d0000002402800370000000000202043b000600000002001d000003c10020009c000007000000213d000000000010043f0000000101000039000000200010043f000000400200003900000000010000190ee90eac0000040f0000000602000029000000000020043f000000200010043f000000000100001900000040020000390ee90eac0000040f000000000101041a000000800010043f0000041d0100004100000eea0001042e0000000001000416000000000001004b000007000000c13d0000001201000039000000800010043f0000041d0100004100000eea0001042e000000440010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000201043b000003c10020009c000007000000213d0000002401800370000000000301043b00000000010004110ee90cfd0000040f0000000101000039000000400200043d0000000000120435000003bc0020009c000003bc0200804100000040012002100000042a011001c700000eea0001042e000000440010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000101043b000600000001001d000003c10010009c000007000000213d0000002401800370000000000201043b000000000002004b0000000001000039000000010100c039000500000002001d000000000012004b000007000000c13d0000000501000039000000000101041a000003c1011001970000000002000411000000000021004b0000048c0000c13d0000000601000029000000000010043f0000000e01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a0000044a022001970000000503000029000000000232019f000000000021041b000000400100043d0000000000310435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000203000039000003d80400004100000006050000290000046b0000013d0000000001000416000000000001004b000007000000c13d0000dead01000039000000800010043f0000041d0100004100000eea0001042e000000240010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000501043b000003c10050009c000007000000213d0000000501000039000000000101041a000003c1011001970000000002000411000000000021004b0000048c0000c13d000000000005004b000005550000c13d000003e001000041000000800010043f0000002001000039000000840010043f0000001001000039000000a40010043f0000042c01000041000000c40010043f0000042d0100004100000eeb000104300000000001000416000000000001004b000007000000c13d0000000501000039000000000201041a000003c1032001970000000005000411000000000053004b0000048c0000c13d000003c802200197000000000021041b0000000001000414000003bc0010009c000003bc01008041000000c001100210000003c9011001c70000800d020000390000000303000039000003ca0400004100000000060000190ee90edf0000040f0000000100200190000000890000c13d000007000000013d000000240010008c000007000000413d0000000001000416000000000001004b000007000000c13d0000000401800370000000000601043b000003c10060009c000007000000213d0000000501000039000000000201041a000003c1032001970000000005000411000000000053004b0000048c0000c13d000000000006004b000005640000c13d000003e001000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000041e01000041000000c40010043f0000041f01000041000000e40010043f000004200100004100000eeb00010430000003e001000041000000800010043f0000002001000039000000840010043f000000a40010043f000003df01000041000000c40010043f0000042d0100004100000eeb00010430000000800010043f000000000005004b000004ba0000c13d0000044a01200197000000a00010043f000000000004004b000000c001000039000000a001006039000004df0000013d000600000002001d000000000010043f000000200000043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000101041a000000060110006c000004f00000813d000000400100043d00000064021000390000044303000041000000000032043500000044021000390000044403000041000005980000013d0000043202000041000000800020043f000000840010043f000004220100004100000eeb00010430000000000030043f000000020020008c000004d40000813d000000a001000039000004df0000013d000003e001000041000000800010043f0000002001000039000000840010043f0000001701000039000000a40010043f0000043301000041000000c40010043f0000042d0100004100000eeb00010430000000000100041100000006020000290ee90ca60000040f000000400100043d00000001020000390000000000210435000003bc0010009c000003bc0100804100000040011002100000042a011001c700000eea0001042e000003c30200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000004d60000413d000000c001300039000000800210008a00000080010000390ee90c5b0000040f000000400100043d000600000001001d00000080020000390ee90c460000040f00000006020000290000000001210049000003bc0010009c000003bc010080410000006001100210000003bc0020009c000003bc020080410000004002200210000000000121019f00000eea0001042e000500000001001d0000000001000411000000000010043f000000200000043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b0000000502000029000000000021041b0000000201000039000000000201041a00000006030000290000000002320049000000000021041b000000400100043d0000000000310435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000303000039000003e40400004100000000050004110000046a0000013d0000042101000041000000800010043f000000840030043f0000000001000414000003bc0010009c000003bc01008041000000c00110021000000422011001c70ee90ee40000040f0000006003100270000003bc03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000000800a0000390000052d0000613d000000000801034f000000008908043c000000000a9a043600000000005a004b000005290000c13d000000000006004b0000053a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000005700000613d0000001f01400039000000600110018f00000080021001bf000500000002001d000000400020043f000000200030008c000007000000413d00000084021001bf000000800300043d000000000003004b0000068f0000c13d000003e0030000410000000504000029000000000034043500000020030000390000000000320435000000c40210003900000425030000410000000000320435000000a401100039000000090200003900000000002104350000004001400210000003e1011001c700000eeb000104300000000901000039000000000201041a000003c803200197000000000353019f000000000031041b0000000001000414000003c106200197000003bc0010009c000003bc01008041000000c001100210000003c9011001c70000800d0200003900000003030000390000042b040000410000046b0000013d000003c802200197000000000262019f000000000021041b0000000001000414000003bc0010009c000003bc01008041000000c001100210000003c9011001c70000800d020000390000000303000039000003ca040000410000046b0000013d0000001f0530018f000003be06300198000000400200043d00000000046200190000057b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000005770000c13d000000000005004b000005880000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000003bc0020009c000003bc020080410000004002200210000000000112019f00000eeb000104300000001102000039000000000202041a000603c10020019c000005be0000c13d000000400100043d00000064021000390000043f030000410000000000320435000000440210003900000440030000410000000000320435000000240210003900000022030000390000000000320435000003e0020000410000000000210435000000040210003900000020030000390000000000320435000003bc0010009c000003bc01008041000000400110021000000431011001c700000eeb00010430000003c9011001c70000800902000039000000000400041100000000050000190ee90edf0000040f0000006001100270000003bc01100198000000890000613d0000001f01100039000003bd011001970000003f011000390000042801100197000000400200043d0000000001120019000000000021004b00000000020000390000000102004039000003bf0010009c000000810000213d0000000100200190000000810000c13d000000400010043f000000000100001900000eea0001042e000000000101041a000500000001001d0000000001000410000000000010043f0000000101000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000010200008a000000000021041b000000400100043d0000000000210435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000303000039000003d304000041000000000500041000000006060000290ee90edf0000040f0000000100200190000007000000613d0000001101000039000000000101041a000600000001001d000004340100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000003bc0010009c000003bc01008041000000c00110021000000435011001c700008005020000390ee90ee40000040f00000001002001900000068e0000613d000000000101043b000000400400043d000400000004001d0000002402400039000000010300008a000000000032043500000436020000410000000000240435000003c1021001970000000401400039000300000002001d0000000000210435000003bc0040009c000003bc01000041000000000104401900000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f0000000602000029000003c102200197000003dd011001c70ee90edf0000040f0000006003100270000003bc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000040b00002900000004057000290000062a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000006260000c13d000000000006004b000006370000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000007220000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000003bf0010009c000000810000213d0000000100200190000000810000c13d000000400010043f000000200030008c000007000000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000007000000c13d00000426010000410000000000100443000000000100041000000004001004430000000001000414000003bc0010009c000003bc01008041000000c00110021000000427011001c70000800a020000390ee90ee40000040f00000001002001900000068e0000613d0000000503000029000000190230011a0000000002230049000000000101043b000500000001001d0000000901000039000000000101041a000000400400043d00000024034000390000000000230435000003c101100197000000840240003900000000001204350000043701000041000000000014043500000004014000390000000002000410000000000021043500000064014000390000000000010435000600000004001d00000044014000390000000000010435000004380100004100000000001004430000000001000414000003bc0010009c000003bc01008041000000c00110021000000439011001c70000800b020000390ee90ee40000040f00000001002001900000068e0000613d000000000301043b0000000602000029000000a401200039000400000003001d0000000000310435000003bc0020009c000003bc01000041000000000102401900000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000000050000006b000007840000c13d0000043b011001c70000000302000029000007890000013d000000000001042f000004210100004100000005030000290000000000130435000000000100041000000000001204350000000001000414000003bc0010009c000003bc01008041000000c0011002100000004002300210000000000121019f00000423011001c700000006020000290ee90ee40000040f0000006003100270000003bc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000006ac0000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000006a80000c13d000000000006004b000006b90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f000000000065043500000001002001900000070a0000613d0000001f01400039000000600110018f0000000501100029000400000001001d000000400010043f000000200030008c000007000000413d0000000501000029000000000101043300000424020000410000000404000029000000000024043500000004024001bf00000000030004110000000000320435000000240240003900000000001204350000000001000414000003bc0010009c000003bc01008041000000c0011002100000004002400210000000000121019f000003dd011001c700000006020000290ee90edf0000040f0000006003100270000003bc03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000405700029000006e40000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b000006e00000c13d000000000006004b000006f10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000007160000613d0000001f01400039000000600110018f0000000401100029000000400010043f000000200030008c000007000000413d00000004010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000890000613d000000000100001900000eeb00010430000000060100002900000000020004110ee90ca60000040f0000000601000029000000050200002900000004030000290ee90cfd0000040f000004cc0000013d0000001f0530018f000003be06300198000000400200043d00000000046200190000057b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007110000c13d0000057b0000013d0000001f0530018f000003be06300198000000400200043d00000000046200190000057b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000071d0000c13d0000057b0000013d0000001f0530018f000003be06300198000000400200043d00000000046200190000057b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007290000c13d0000057b0000013d000000000006004b0000000004000019000007320000613d00000000040504330000000305600210000004490550027f0000044905500167000000000454016f0000000105600210000000000454019f000007510000013d000003c3050000410000002007000039000000010980008a0000000509900270000003c40990009a000000000a470019000000000a0a04330000000000a5041b00000020077000390000000105500039000000000095004b0000073e0000c13d000000000068004b0000074f0000813d0000000308600210000000f80880018f000004490880027f000004490880016700000000044700190000000004040433000000000484016f000000000045041b000000010460021000000001044001bf000000000041041b0000000004020433000003bf0040009c000000810000213d0000000401000039000000000601041a000000010060019000000001056002700000007f0550618f0000001f0050008c00000000070000390000000107002039000000000676013f0000000100600190000002f10000c13d000000200050008c000007710000413d000000000010043f0000001f064000390000000506600270000003c50660009a000000200040008c000003c6060040410000001f055000390000000505500270000003c50550009a000000000056004b000007710000813d000000000006041b0000000106600039000000000056004b0000076d0000413d0000001f0040008c000007790000a13d000000000010043f0000044806400198000007d20000c13d0000002005000039000003c603000041000007de0000013d000000000004004b00000000020000190000077d0000613d00000000020304330000000303400210000004490330027f0000044903300167000000000232016f0000000103400210000000000232019f000007ea0000013d0000043a011001c700008009020000390000000503000029000000030400002900000000050000190ee90edf0000040f0000006003100270000003bc03300197000000600030008c000000600400003900000000040340190000001f0640018f00000060074001900000000605700029000007990000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000007950000c13d000000000006004b000007a60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000007c60000613d0000001f01400039000000e00210018f0000000601200029000000000021004b00000000020000390000000102004039000003bf0010009c000000810000213d0000000100200190000000810000c13d000000400010043f000000600030008c000007000000413d0000000901000039000000000101041a000600000001001d0000042900100198000000000100003900000001010060390ee90c6d0000040f00000006010000290000043c011001970000043d011001c70000000902000039000000000012041b0000000a010000390000000402000029000000000021041b000000000100001900000eea0001042e0000001f0530018f000003be06300198000000400200043d00000000046200190000057b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007cd0000c13d0000057b0000013d000003c6030000410000002005000039000000010760008a0000000507700270000003c70770009a00000000082500190000000008080433000000000083041b00000020055000390000000103300039000000000073004b000007d70000c13d000000000046004b000007e80000813d0000000306400210000000f80660018f000004490660027f000004490660016700000000022500190000000002020433000000000262016f000000000023041b000000010240021000000001022001bf000000000021041b0000000503000039000000000103041a000003c8021001970000000006000411000000000226019f000000000023041b0000000002000414000003c105100197000003bc0020009c000003bc02008041000000c001200210000003c9011001c70000800d020000390000000303000039000003ca040000410ee90edf0000040f0000000100200190000007000000613d00000006010000290000000002010433000003bf0020009c000000810000213d0000001201000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f0000000100400190000002f10000c13d000000200030008c0000081d0000413d000000000010043f0000001f042000390000000504400270000003cb0440009a000000200020008c000003cc040040410000001f033000390000000503300270000003cb0330009a000000000034004b0000081d0000813d000000000004041b0000000104400039000000000034004b000008190000413d0000001f0020008c000008250000a13d000000000010043f0000044805200198000008310000c13d0000002004000039000003cc030000410000083e0000013d000000000002004b00000000030000190000082a0000613d000000050300002900000000030304330000000304200210000004490440027f0000044904400167000000000343016f0000000102200210000000000223019f0000084a0000013d000003cc030000410000002004000039000000010650008a0000000506600270000003cd0660009a000000060800002900000000078400190000000007070433000000000073041b00000020044000390000000103300039000000000063004b000008370000c13d000000000025004b000008480000813d0000000305200210000000f80550018f000004490550027f000004490550016700000006044000290000000004040433000000000454016f000000000043041b000000010220021000000001022001bf000000000021041b000000400100043d000003ce0010009c000000810000213d000000e40210003900000000030004110000000000320435000000a402100039000000030300002900000000003204350000000402000029000003c102200197000000840310003900000000002304350000002402100039000003bb030000410000000000320435000000c402100039000000000300041000000000003204350000006402100039000000000300041400000080040000390000000000420435000000440210003900000060040000390000000000420435000003cf02000041000000000021043500000004021000390000000000020435000003bc0010009c000003bc010080410000004001100210000003bc0030009c000003bc03008041000000c002300210000000000121019f000003d0011001c700008006020000390ee90edf0000040f000000010020019000000bbd0000613d00000000020000310000000103200367000000000101043b000000000001004b000000000200001900000bc00000613d000003c1011001970000000603000039000000000203041a000003c802200197000000000212019f000000000023041b0000000702000039000000000302041a000003c803300197000000000113019f000000000012041b0000000101000029000003c101100197000600000001001d000000800010043f0000000001000410000000000001004b000000c50000613d000000060000006b000005920000613d0000000001000410000000000010043f0000000101000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000010200008a000000000021041b000000400100043d0000000000210435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000303000039000003d304000041000000000500041000000006060000290ee90edf0000040f0000000100200190000007000000613d0000000b01000039000000000201041a0000044a0220019700000002022001af000000000021041b000000020000006b000003d501000041000003d4010060410000000f02000039000000000012041b0000001002000039000000000012041b0000000901000039000000000201041a000003c8022001970000000003000411000000000232019f000000000021041b0000000501000039000000000101041a000003c101100197000000000031004b00000bde0000c13d0000000001000411000000000010043f0000000c01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a0000044a0220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000203000039000003d60400004100000000050004110ee90edf0000040f0000000100200190000007000000613d0000000501000039000000000101041a000003c1011001970000000002000411000000000021004b00000bde0000c13d0000000001000410000000000010043f0000000c01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a0000044a0220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000203000039000003d60400004100000000050004100ee90edf0000040f0000000100200190000007000000613d0000000501000039000000000101041a000003c1011001970000000002000411000000000021004b00000bde0000c13d0000dead05000039000000000050043f0000000c01000039000000200010043f000003d701000041000000000201041a0000044a0220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000203000039000003d6040000410ee90edf0000040f0000000100200190000007000000613d0000000501000039000000000101041a000003c1011001970000000002000411000000000021004b00000bde0000c13d0000000601000039000000000101041a000003c101100197000600000001001d000000000010043f0000000c01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a0000044a0220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000203000039000003d60400004100000006050000290ee90edf0000040f0000000100200190000007000000613d0000000501000039000000000101041a000003c1011001970000000002000411000000000021004b00000bde0000c13d0000000001000411000000000010043f0000000e01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a0000044a0220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000203000039000003d80400004100000000050004110ee90edf0000040f0000000100200190000007000000613d0000000501000039000000000101041a000003c1011001970000000002000411000000000021004b00000bde0000c13d0000000001000410000000000010043f0000000e01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a0000044a0220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000203000039000003d80400004100000000050004100ee90edf0000040f0000000100200190000007000000613d0000000501000039000000000101041a000003c1011001970000000002000411000000000021004b00000bde0000c13d0000dead01000039000000000010043f0000000e01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a0000044a0220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d0200003900000002030000390000dead05000039000003d8040000410ee90edf0000040f0000000100200190000007000000613d0000000501000039000000000101041a000003c1011001970000000002000411000000000021004b00000bde0000c13d000000800100043d000003c101100197000600000001001d000000000010043f0000000e01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a0000044a0220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000203000039000003d80400004100000006050000290ee90edf0000040f0000000100200190000007000000613d0000000501000039000000000101041a000003c1011001970000000002000411000000000021004b00000bde0000c13d0000000601000039000000000101041a000003c101100197000600000001001d000000000010043f0000000e01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a0000044a0220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000203000039000003d80400004100000006050000290ee90edf0000040f0000000100200190000007000000613d000000800200043d000000400300043d000500000003001d000003d9010000410000000000130435000003bc0030009c000003bc01000041000000000103401900000040011002100000000003000414000003bc0030009c000003bc03008041000000c003300210000000000113019f000003da011001c7000003c1022001970ee90ee40000040f0000006003100270000003bc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000050b000029000000050570002900000a720000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000a6e0000c13d000000000006004b00000a7f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000be90000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000600000002001d000003bf0020009c000000810000213d0000000100100190000000810000c13d0000000601000029000000400010043f000000200030008c000007000000413d00000000010b0433000400000001001d000003c10010009c000007000000213d000000800200043d000003db0100004100000006030000290000000000130435000003bc0030009c000003bc01000041000000000103401900000040011002100000000003000414000003bc0030009c000003bc03008041000000c003300210000000000113019f000003da011001c7000003c1022001970ee90ee40000040f0000006003100270000003bc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900000ab30000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00000aaf0000c13d000000000006004b00000ac00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000bf50000613d0000001f01400039000000600110018f0000000601100029000500000001001d000003bf0010009c000000810000213d0000000501000029000000400010043f000000200030008c000007000000413d00000006010000290000000001010433000003c10010009c000007000000213d000000050300002900000024023000390000000000120435000003dc010000410000000000130435000000040130003900000000020004100000000000210435000003bc0030009c000003bc01000041000000000103401900000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003dd011001c700000004020000290ee90edf0000040f0000006003100270000003bc03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000050570002900000af30000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b00000aef0000c13d000000000006004b00000b000000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000c010000613d0000001f01400039000000600110018f0000000501100029000003bf0010009c000000810000213d000000400010043f000000200030008c000007000000413d00000005010000290000000001010433000600000001001d000003c10010009c000007000000213d0000000801000039000000000201041a000003c8022001970000000603000029000000000232019f000000000021041b0000001102000039000000000102041a000003c801100197000000000131019f000000000012041b000000000030043f0000000d01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a0000044a0220019700000001022001bf000000000021041b0000000001000414000003bc0010009c000003bc01008041000000c001100210000003c9011001c70000800d0200003900000003030000390000000106000039000003de0400004100000006050000290ee90edf0000040f0000000100200190000007000000613d0000000501000039000000000101041a000003c1011001970000000002000411000000000021004b00000bde0000c13d0000001101000039000000000101041a000003c101100197000600000001001d000000000010043f0000000e01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a0000044a0220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000203000039000003d80400004100000006050000290ee90edf0000040f0000000100200190000007000000613d0000000601000039000000000101041a000003c101100197000600000001001d000000000010043f0000000d01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a0000044a0220019700000001022001bf000000000021041b0000000001000414000003bc0010009c000003bc01008041000000c001100210000003c9011001c70000800d0200003900000003030000390000000106000039000003de0400004100000006050000290ee90edf0000040f0000000100200190000007000000613d0000000201000039000000000101041a000003e20110009c00000c110000813d0000000202000039000000000012041b0000000001000410000000000010043f000000200000043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a000003e20220009a000000000021041b000003e301000041000000400200043d0000000000120435000003bc0020009c000003bc0200804100000040012002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000303000039000003e404000041000000000500001900000000060004100ee90edf0000040f0000000100200190000007000000613d0000000601000039000000000101041a000603c10010019c00000c0d0000c13d000000400100043d0000004402100039000003e903000041000000000032043500000024021000390000001f030000390000027f0000013d0000006002100270000003bc02200197000000000301034f0000001f0520018f000003be06200198000000400100043d000000000461001900000bcb0000613d000000000703034f0000000008010019000000007907043c0000000008980436000000000048004b00000bc70000c13d000000000005004b00000bd80000613d000000000363034f0000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000006002200210000003bc0010009c000003bc010080410000004001100210000000000121019f00000eeb00010430000000400100043d0000004402100039000003df030000410000000000320435000003e00200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000002840000013d0000001f0530018f000003be06300198000000400200043d00000000046200190000057b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bf00000c13d0000057b0000013d0000001f0530018f000003be06300198000000400200043d00000000046200190000057b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bfc0000c13d0000057b0000013d0000001f0530018f000003be06300198000000400200043d00000000046200190000057b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c080000c13d0000057b0000013d0000000201000039000000000101041a000003e60110009c00000c170000413d0000043e01000041000000000010043f0000001101000039000000040010043f000004230100004100000eeb000104300000000202000039000000000012041b0000000601000029000000000010043f000000200000043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000007000000613d000000000101043b000000000201041a000003e60220009a000000000021041b000003e701000041000000400200043d0000000000120435000003bc0020009c000003bc0200804100000040012002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000303000039000003e404000041000000000500001900000006060000290ee90edf0000040f0000000100200190000007000000613d000000800100043d000001400000044300000160001004430000002001000039000001000010044300000001010000390000012000100443000003e80100004100000eea0001042e00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00000c550000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b00000c4e0000413d000000000321001900000000000304350000001f0220003900000448022001970000000001210019000000000001042d0000001f0220003900000448022001970000000001120019000000000021004b00000000020000390000000102004039000003bf0010009c00000c670000213d000000010020019000000c670000c13d000000400010043f000000000001042d0000043e01000041000000000010043f0000004101000039000000040010043f000004230100004100000eeb00010430000000000001004b00000c700000613d000000000001042d000000400100043d000000440210003900000433030000410000000000320435000000240210003900000017030000390000000000320435000003e0020000410000000000210435000000040210003900000020030000390000000000320435000003bc0010009c000003bc010080410000004001100210000003e1011001c700000eeb0001043000010000000000020000000901000039000000000101041a000004290010019800000c9b0000613d0000000a01000039000000000101041a000100000001001d000004380100004100000000001004430000000001000414000003bc0010009c000003bc01008041000000c00110021000000439011001c70000800b020000390ee90ee40000040f000000010020019000000c9f0000613d000000000101043b000000010110006c00000ca00000413d000002580010008c000000000100001900000c9b0000a13d000000000001042d0000000b01000039000000000101041a000000ff0110018f000000000001042d000000000001042f0000043e01000041000000000010043f0000001101000039000000040010043f000004230100004100000eeb000104300003000000000002000003c10110019800000cdf0000613d000200000003001d000303c10020019c00000ce90000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000100200190000000030300002900000cdd0000613d000000000101043b000000000030043f000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f0000000306000029000000010020019000000cdd0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000303000039000003d30400004100000001050000290ee90edf0000040f000000010020019000000cdd0000613d000000000001042d000000000100001900000eeb00010430000000400100043d0000006402100039000004410300004100000000003204350000004402100039000004420300004100000000003204350000002402100039000000240300003900000cf20000013d000000400100043d00000064021000390000043f030000410000000000320435000000440210003900000440030000410000000000320435000000240210003900000022030000390000000000320435000003e0020000410000000000210435000000040210003900000020030000390000000000320435000003bc0010009c000003bc01008041000000400110021000000431011001c700000eeb000104300008000000000002000403c10010019c00000e610000613d000303c10020019c00000e6b0000613d000000000003004b00000d360000613d000200000003001d0000000901000039000000000101041a000004290010019800000d1c0000613d0000000a01000039000000000101041a000100000001001d000004380100004100000000001004430000000001000414000003bc0010009c000003bc01008041000000c00110021000000439011001c70000800b020000390ee90ee40000040f000000010020019000000e890000613d000000000101043b000000010110006c00000e8a0000413d000002580010008c00000ddd0000213d0000000b01000039000000000101041a000000ff0010019000000ddd0000613d0000000401000029000000000010043f0000000d01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f000000010020019000000e5f0000613d000000000101043b000000000101041a000000ff0110019000000d490000613d000800000001001d0000000003000415000000080330008a000000050330021000000d530000013d000000200000043f0000000306000029000000000060043f000000400100043d0000000000010435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000303000039000003e404000041000000040500002900000e5b0000013d0000000003000415000000070330008a00000005033002100000000601000039000000000101041a000003c101100197000000040010006b000700000000003d000700010000603d00000d690000c13d000100000003001d0000000301000029000000000010043f0000000e01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f000000010020019000000e5f0000613d000000000101043b000000000101041a000000ff0010019000000001010000290000000501100270000000000100003f000000010100603f00000daf0000613d0000000301000029000000000010043f0000000d01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f000000010020019000000e5f0000613d0000000003000415000000060330008a0000000503300210000000000101043b000000000101041a000000ff0010019000000d850000c13d0000000003000415000000050330008a00000005033002100000000601000039000000000101041a000003c101100197000000040010006b00000d9b0000c13d000100000003001d0000000401000029000000000010043f0000000e01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f000000010020019000000e5f0000613d000000000101043b000000000101041a000000ff0010019000000001010000290000000501100270000000000100003f000000010100603f00000dd90000613d0000000301000029000000000010043f0000000e01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f000000010020019000000e5f0000613d000000000101043b000000000101041a000000ff0010019000000ddd0000c13d000000200000043f000000000100041400000db70000013d0000000f01000039000000000101041a000000020010006c00000e900000413d0000000301000029000000000010043f000000200000043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f000000010020019000000e5f0000613d000000000101043b000000000101041a000000020010002a00000e8a0000413d00000002011000290000001002000039000000000202041a000000000021004b00000ddd0000a13d000000400100043d00000044021000390000044d03000041000000000032043500000024021000390000001a030000390000000000320435000003e0020000410000000000210435000000040210003900000020030000390000000000320435000003bc0010009c000003bc010080410000004001100210000003e1011001c700000eeb000104300000000f01000039000000000101041a000000020010006c00000e9a0000413d0000000501000039000000000101041a000003c101100197000000040010006b00000e1c0000613d000000030010006b00000e1c0000613d0000000401000029000000000010043f0000000c01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f000000010020019000000e5f0000613d000000000101043b00000003020000290000dead0020008c00000e1c0000613d000000000101041a000000ff0010019000000e1c0000c13d0000000901000039000000000101041a000004290010019800000e1c0000c13d0000000401000029000000000010043f0000000c01000039000000200010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f000000010020019000000e5f0000613d000000000101043b000000000101041a000000ff0010019000000e1c0000c13d0000000301000029000000000010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f000000010020019000000e5f0000613d000000000101043b000000000101041a000000ff0010019000000ea40000613d0000000401000029000000000010043f000000200000043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f000000010020019000000e5f0000613d000000000101043b000000000101041a000100020010007400000e750000413d0000000401000029000000000010043f000000200000043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f000000010020019000000e5f0000613d000000000101043b0000000102000029000000000021041b0000000301000029000000000010043f0000000001000414000003bc0010009c000003bc01008041000000c001100210000003d1011001c700008010020000390ee90ee40000040f000000010020019000000e5f0000613d000000000101043b000000000201041a00000002030000290000000002320019000000000021041b000000400100043d0000000000310435000003bc0010009c000003bc0100804100000040011002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003d2011001c70000800d020000390000000303000039000003e404000041000000040500002900000003060000290ee90edf0000040f000000010020019000000e5f0000613d000000000001042d000000000100001900000eeb00010430000000400100043d0000006402100039000004550300004100000000003204350000004402100039000004560300004100000000003204350000002402100039000000250300003900000e7e0000013d000000400100043d0000006402100039000004530300004100000000003204350000004402100039000004540300004100000000003204350000002402100039000000230300003900000e7e0000013d000000400100043d000000640210003900000450030000410000000000320435000000440210003900000451030000410000000000320435000000240210003900000026030000390000000000320435000003e0020000410000000000210435000000040210003900000020030000390000000000320435000003bc0010009c000003bc01008041000000400110021000000431011001c700000eeb00010430000000000001042f0000043e01000041000000000010043f0000001101000039000000040010043f000004230100004100000eeb00010430000000400100043d00000064021000390000044e03000041000000000032043500000044021000390000044f0300004100000000003204350000002402100039000000360300003900000e7e0000013d000000400100043d00000064021000390000044b03000041000000000032043500000044021000390000044c0300004100000000003204350000002402100039000000370300003900000e7e0000013d000000400100043d00000044021000390000045203000041000000000032043500000024021000390000001d0300003900000dce0000013d000000000001042f000003bc0010009c000003bc010080410000004001100210000003bc0020009c000003bc020080410000006002200210000000000112019f0000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f000003c9011001c700008010020000390ee90ee40000040f000000010020019000000ebf0000613d000000000101043b000000000001042d000000000100001900000eeb0001043000000000050100190000000000200443000000050030008c00000ecf0000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b00000ec70000413d000003bc0030009c000003bc0300804100000060013002100000000002000414000003bc0020009c000003bc02008041000000c002200210000000000112019f00000457011001c700000000020500190ee90ee40000040f000000010020019000000ede0000613d000000000101043b000000000001042d000000000001042f00000ee2002104210000000102000039000000000001042d0000000002000019000000000001042d00000ee7002104230000000102000039000000000001042d0000000002000019000000000001042d00000ee90000043200000eea0001042e00000eeb00010430010002f76c4fb69574a5bfbd1305e9940a05496cbb739a819c72a0340846407d00000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a475ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e658a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b75ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e64ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0447595b99645daf2d93285ba613562dea07cf81cc5141afc8643a5c9e813cbbcbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444447595b99645daf2d93285ba613562dea07cf81cc5141afc8643a5c9e813cbbb000000000000000000000000000000000000000000000000ffffffffffffff7b9c4d535bdea7cd8a978f128b93471df48c7dbab89d703809115bdc118c235bfd0200000000000000000000000000000000000104000000000000000000000000020000000000000000000000000000000000004000000000000000000000000002000000000000000000000000000000000000200000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9250000000000000000000000000000000000000000023ac12ef364587bf200000000000000000000000000000000000000000000000005b521bfdfb934708000009d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df745117a726ea4f344045dc210793664a28d2d320b7e03f6bffdae553d24c3586c4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92c45a0155000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000ad5c464800000000000000000000000000000000000000000000000000000000c9c65396000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000ffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657208c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000ffffffffffffffffffffffffffffffffffffffffff62d5ef5c83e7a2820000000000000000000000000000000000000000000000009d2a10a37c185d7e000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3effffffffffffffffffffffffffffffffffffffffffe6268e1b017bfe18bfffffffffffffffffffffffffffffffffffffffffffffffe6268e1b017bfe18c0000000000000000000000000000000000000000000000019d971e4fe8401e74000000000000020000000000000000000000000000008000000100000000000000000045524332303a206d696e7420746f20746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000008da5cb5a00000000000000000000000000000000000000000000000000000000c024666700000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f52b691f00000000000000000000000000000000000000000000000000000000f8b45b0500000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000cb8c478900000000000000000000000000000000000000000000000000000000cb8c478a00000000000000000000000000000000000000000000000000000000cb96372800000000000000000000000000000000000000000000000000000000c024666800000000000000000000000000000000000000000000000000000000c3f70b5200000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000a8602fe900000000000000000000000000000000000000000000000000000000a8602fea00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000bbc0c74200000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a637af6500000000000000000000000000000000000000000000000000000000936fc63b00000000000000000000000000000000000000000000000000000000936fc63c0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008ffdae030000000000000000000000000000000000000000000000000000000042966c6700000000000000000000000000000000000000000000000000000000570ca73400000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007571336a000000000000000000000000000000000000000000000000000000008a8c523c00000000000000000000000000000000000000000000000000000000570ca7350000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000049bd5a5d0000000000000000000000000000000000000000000000000000000049bd5a5e000000000000000000000000000000000000000000000000000000004fbee1930000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000004626402b0000000000000000000000000000000000000000000000000000000018d9cead0000000000000000000000000000000000000000000000000000000027c8f8340000000000000000000000000000000000000000000000000000000027c8f83500000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000018d9ceae0000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000001694505d000000000000000000000000000000000000000000000000000000001694505e0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000200000008000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000070a082310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000008000000000000000000000000000000000000000000000000000000024000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000004e6f20746f6b656e7300000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f39020000020000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe00000000000000000000000ff0000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000002f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63545524332303a20416464726573732030000000000000000000000000000000000000000000000000000000000000000000000064000000800000000000000000f002d44a556911dfb26c3439289ffc2278c02f7eb8c658179333ab5c4afda228207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f770000000000000000000000000000000000000084000000000000000000000000740fbe610000000000000000000000000000000000000000000000000000000054726164696e6720616c7265616479206163746976652e000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000f305d71900000000000000000000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000002000000000000000000000000000000000000c400000000000000000000000000000000000000000000000000000000000000c4000000000000000000000000ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff00000000000000000000000100000000000000000000000000000000000000004e487b7100000000000000000000000000000000000000000000000000000000737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e45524332303a206275726e2066726f6d20746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e6365000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0065647320746865206d61785472616e73616374696f6e2e00000000000000000045524332303a2053656c6c207472616e7366657220616d6f756e74206578636545524332303a204d61782077616c6c6574206578636565646564000000000000647320746865206d61785472616e73616374696f6e2e0000000000000000000045524332303a20427579207472616e7366657220616d6f756e74206578636565616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e742065786365656473206245524332303a2054726164696e67206973206e6f74206163746976652e000000657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061640200000200000000000000000000000000000000000000000000000000000000ea0ef865cd3660207aa13976e24c8882eeb73c0319f5065a4a259ac315c5c87b
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000002c582a7b8e080d2028538b2c9716ac1bc02d6de40000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000096ff7d9dbf52fdcae79157d3b249282c7fabd4090000000000000000000000000000000000000000000000000000000000000004746573740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000067469636b65720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a687474703a2f2f6c6f63616c686f73743a393030302f62757a7a646f7466756e2f62757a7a646f7466756e2f6a736f6e2f36303766346339372d383133652d343961662d616532642d3061643766633965323333632e6a736f6e000000000000
-----Decoded View---------------
Arg [0] : name (string): test
Arg [1] : symbol (string): ticker
Arg [2] : contractUri (string): http://localhost:9000/buzzdotfun/buzzdotfun/json/607f4c97-813e-49af-ae2d-0ad7fc9e233c.json
Arg [3] : devBuyAddress (address): 0x2C582a7b8E080D2028538b2C9716Ac1bC02D6de4
Arg [4] : devBuyEnabled (bool): True
Arg [5] : maxBuyEnabled (bool): True
Arg [6] : swapRouter (address): 0x96ff7D9dbf52FdcAe79157d3b249282c7FABd409
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 0000000000000000000000002c582a7b8e080d2028538b2c9716ac1bc02d6de4
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000096ff7d9dbf52fdcae79157d3b249282c7fabd409
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 7465737400000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [10] : 7469636b65720000000000000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000005a
Arg [12] : 687474703a2f2f6c6f63616c686f73743a393030302f62757a7a646f7466756e
Arg [13] : 2f62757a7a646f7466756e2f6a736f6e2f36303766346339372d383133652d34
Arg [14] : 3961662d616532642d3061643766633965323333632e6a736f6e000000000000
[ 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.