Source Code
Overview
ETH Balance
0 ETH
Token Holdings
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH | ||||
5156900 | 15 days ago | 0 ETH |
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); _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 ( from != owner() && to != owner() && !_isExcludedFromFees[from] && to != address(0) && to != deadAddress ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "ERC20: Trading is not active." ); } if (maxTransactionEnabled()) { //when buy uniswap if ( _automatedMarketMakerPairs[from] && !_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] && !_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" ); } } } 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 Purchase(address indexed buyer, uint256 tokens, uint256 fee); event Sell(address indexed seller, uint256 ethReceived, 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 bondingCurveActive = true; bool 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(); //log 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)); } 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 Purchase(msg.sender, tokensToTransfer, 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, netRefund, 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); } // to recieve eth 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: 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); } }
// 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; }
{ "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
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010004498e882c49ed7347e56522c150b758672b582953206af6b90786b276b60000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000d1ec9a8a0b6dee2a2c217582789756b6bc5746d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000096ff7d9dbf52fdcae79157d3b249282c7fabd409000000000000000000000000000000000000000000000000000000000000000a44656661756c744f6e650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035344310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009668747470733a2f2f62757a7a646f7466756e2d646576656c6f706d656e742d73706163652e6c6f6e312e63646e2e6469676974616c6f6365616e7370616365732e636f6d2f62757a7a646f7466756e2d646576656c6f706d656e742d73706163652f636f6e7472616374732f313033353734383438303538363534373230312f636f6e74726163742d6d657461646174612e6a736f6e00000000000000000000
Deployed Bytecode
0x00020000000000020008000000000002000000000801034f00010000000103550000006001100270000003ac0010019d000003ac011001970000000100200190000000240000c13d0000008002000039000000400020043f000000040010008c0000005e0000413d000000000208043b000000e002200270000003da0020009c000000620000213d000003f40020009c000000750000213d000004010020009c0000018e0000a13d000004020020009c0000021f0000a13d000004030020009c0000043f0000613d000004040020009c000003fa0000613d000004050020009c0000056e0000c13d0000000001000416000000000001004b0000056e0000c13d0000001201000039000000800010043f0000040d0100004100000ea70001042e000000a003000039000000400030043f0000000002000416000000000002004b0000056e0000c13d0000001f02100039000003ad02200197000000a002200039000000400020043f0000001f0410018f000003ae05100198000000a002500039000000360000613d000000000608034f000000006706043c0000000003730436000000000023004b000000320000c13d000000000004004b000000430000613d000000000358034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000e00010008c0000056e0000413d000000a00300043d000003af0030009c0000056e0000213d0000001f02300039000000000012004b0000000004000019000003b004008041000003b002200197000000000002004b0000000005000019000003b005004041000003b00020009c000000000504c019000000000005004b0000056e0000c13d000000a0023000390000000002020433000003af0020009c000000c80000a13d0000042c01000041000000000010043f0000004101000039000000040010043f000004130100004100000ea800010430000000000001004b0000056e0000c13d000000000100001900000ea70001042e000003db0020009c000000b90000213d000003e80020009c000001a20000a13d000003e90020009c000002660000a13d000003ea0020009c000004460000613d000003eb0020009c000004150000613d000003ec0020009c0000056e0000c13d0000000001000416000000000001004b0000056e0000c13d0000000901000039000000000101041a0000041900100198000003db0000013d000003f50020009c000001ad0000a13d000003f60020009c0000029f0000a13d000003f70020009c000004640000613d000003f80020009c0000042a0000613d000003f90020009c0000056e0000c13d000000440010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000101043b000600000001001d000003b10010009c0000056e0000213d0000002401800370000000000201043b000000000002004b0000000001000039000000010100c039000500000002001d000000000012004b0000056e0000c13d0000000501000039000000000101041a000003b1011001970000000002000411000000000021004b000004930000c13d0000000601000029000000000010043f0000000e01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000201041a00000438022001970000000503000029000000000232019f000000000021041b000000400100043d0000000000310435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000203000039000003c8040000410000038b0000013d000003dc0020009c000001c90000a13d000003dd0020009c000002a80000a13d000003de0020009c000004760000613d000003df0020009c000002cc0000613d000003e00020009c0000056e0000c13d0000000001000416000000000001004b0000056e0000c13d0000001001000039000004720000013d0000001f0420003900000439044001970000003f044000390000043905400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000003af0050009c000000580000213d0000000100600190000000580000c13d000000a006100039000000400050043f0000000005240436000000c0033000390000000007320019000000000067004b0000056e0000213d000000000002004b000000e60000613d000000000700001900000000087500190000000009370019000000000909043300000000009804350000002007700039000000000027004b000000df0000413d000000000242001900000020022000390000000000020435000000c00800043d000003af0080009c0000056e0000213d0000001f02800039000000000012004b0000000003000019000003b003008041000003b002200197000000000002004b0000000007000019000003b007004041000003b00020009c000000000703c019000000000007004b0000056e0000c13d000000a0028000390000000007020433000003af0070009c000000580000213d0000001f0270003900000439022001970000003f022000390000043903200197000000400200043d0000000003320019000000000023004b00000000090000390000000109004039000003af0030009c000000580000213d0000000100900190000000580000c13d000000400030043f0000000003720436000000c0088000390000000009870019000000000069004b0000056e0000213d000000000007004b000001190000613d0000000009000019000000000a930019000000000b890019000000000b0b04330000000000ba04350000002009900039000000000079004b000001120000413d000000000727001900000020077000390000000000070435000000e00700043d000003af0070009c0000056e0000213d0000001f08700039000000000018004b0000000001000019000003b001008041000003b008800197000000000008004b0000000009000019000003b009004041000003b00080009c000000000901c019000000000009004b0000056e0000c13d000000a0017000390000000001010433000003af0010009c000000580000213d0000001f0810003900000439088001970000003f088000390000043908800197000000400a00043d00000000088a00190000000000a8004b00000000090000390000000109004039000003af0080009c000000580000213d0000000100900190000000580000c13d000000400080043f00060000000a001d00000000081a0436000500000008001d000000c0077000390000000008710019000000000068004b0000056e0000213d000000000001004b000000050a0000290000014f0000613d000000000600001900000000086a00190000000009760019000000000909043300000000009804350000002006600039000000000016004b000001480000413d000000060110002900000020011000390000000000010435000001000100043d000400000001001d000003b10010009c0000056e0000213d000001200600043d000000000006004b0000000001000039000000010100c039000300000006001d000000000016004b0000056e0000c13d000001400600043d000000000006004b0000000001000039000000010100c039000200000006001d000000000016004b0000056e0000c13d000001600100043d000100000001001d000003b10010009c0000056e0000213d0000000006040433000003af0060009c000000580000213d0000000301000039000000000701041a000000010870019000000001077002700000007f0770618f0000001f0070008c00000000090000390000000109002039000000000098004b000003c40000c13d000000200070008c000001860000413d000000000010043f0000001f086000390000000508800270000003b20880009a000000200060008c000003b3080040410000001f077000390000000507700270000003b20770009a000000000078004b000001860000813d000000000008041b0000000108800039000000000078004b000001820000413d0000001f0060008c0000072d0000a13d000000000010043f0000043908600198000007380000c13d0000002007000039000003b305000041000007440000013d000004080020009c000001d40000213d0000040b0020009c000002d10000613d0000040c0020009c0000056e0000c13d000000440010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000201043b000003b10020009c0000056e0000213d0000002401800370000000000301043b00000000010004110ea60c830000040f000004220000013d000003ef0020009c000001dd0000213d000003f20020009c000002f10000613d000003f30020009c0000056e0000c13d0000000001000416000000000001004b0000056e0000c13d00000005010000390000039f0000013d000003fc0020009c000001e90000213d000003ff0020009c000003180000613d000004000020009c0000056e0000c13d000000240010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000201043b0000000001000411000000000001004b000004aa0000c13d000003d001000041000000800010043f0000002001000039000000840010043f0000002101000039000000a40010043f0000043301000041000000c40010043f0000043401000041000000e40010043f000004100100004100000ea800010430000003e30020009c000001f20000213d000003e60020009c000003520000613d000003e70020009c0000056e0000c13d0000000001000416000000000001004b0000056e0000c13d0000000f01000039000004720000013d000004090020009c0000038d0000613d0000040a0020009c0000056e0000c13d0000000001000416000000000001004b0000056e0000c13d0000000201000039000004720000013d000003f00020009c000002cc0000613d000003f10020009c0000056e0000c13d0000000001000416000000000001004b0000056e0000c13d0ea60c5e0000040f000000000001004b0000000001000039000000010100c039000004230000013d000003fd0020009c0000039b0000613d000003fe0020009c0000056e0000c13d0000000001000416000000000001004b0000056e0000c13d00000008010000390000039f0000013d000003e40020009c000003a40000613d000003e50020009c0000056e0000c13d000000240010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000101043b000600000001001d000003b10010009c0000056e0000213d0000000501000039000000000101041a000003b1011001970000000002000411000000000021004b000004930000c13d00000000030004100000000602000029000000000002004b000004ec0000c13d0000041601000041000000000010044300000004003004430000000001000414000003ac0010009c000003ac01008041000000c00110021000000417011001c70000800a020000390ea60ea10000040f0000000100200190000006760000613d000000000301043b0000000001000414000003ac0010009c000003ac01008041000000c001100210000000000003004b000006770000c13d00000000020004110000067b0000013d000004060020009c000003a90000613d000004070020009c0000056e0000c13d000000640010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000101043b000600000001001d000003b10010009c0000056e0000213d0000002401800370000000000101043b000500000001001d000003b10010009c0000056e0000213d0000004401800370000000000101043b000400000001001d0000000601000029000000000010043f0000000101000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000101041a0000043a0010009c000007040000613d000000040310006c000007010000813d000000400100043d00000044021000390000043703000041000000000032043500000024021000390000001d030000390000000000320435000003d0020000410000000000210435000000040210003900000020030000390000000000320435000003ac0010009c000003ac010080410000004001100210000003d1011001c700000ea800010430000003ed0020009c000003b50000613d000003ee0020009c0000056e0000c13d000000440010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000101043b000600000001001d000003b10010009c0000056e0000213d0000002401800370000000000101043b000500000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000101041a000000050310006c000003470000813d000000400100043d00000064021000390000041c03000041000000000032043500000044021000390000041d030000410000000000320435000000240210003900000025030000390000057d0000013d000003fa0020009c000003ca0000613d000003fb0020009c0000056e0000c13d0000000001000416000000000001004b0000056e0000c13d00000007010000390000039f0000013d000003e10020009c000003e00000613d000003e20020009c0000056e0000c13d0000000001000416000000000001004b0000056e0000c13d0000001203000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000003c40000c13d000000800010043f000000000005004b000004a40000613d000000000030043f000000020020008c000004ce0000413d000003bc0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002c30000413d000004da0000013d0000000001000416000000000001004b0000056e0000c13d00000006010000390000039f0000013d0000000001000416000000000001004b0000056e0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000003c40000c13d000000800010043f000000000005004b000004a40000613d000000000030043f000000020020008c000004ce0000413d000003b30200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002e80000413d000004da0000013d0000000001000416000000000001004b0000056e0000c13d0000000701000039000000000101041a000003b1021001970000000001000411000000000012004b0000049c0000c13d0000000901000039000000000101041a0000041900100198000004c10000c13d0000000001000410000000000010043f000000200000043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b0000000002000410000000000002004b000005700000c13d000000400100043d00000064021000390000042f030000410000000000320435000000440210003900000430030000410000000000320435000000240210003900000024030000390000057d0000013d000000440010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000101043b000600000001001d000003b10010009c0000056e0000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c7000080100200003900050000000803530ea60ea10000040f000000050300035f00000001002001900000056e0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000002401300370000000000101043b000500000001001d0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000101041a0000000502000029000000000021001a00000bee0000413d0000000003210019000000000100041100000006020000290ea60c830000040f000000400100043d00000001020000390000000000210435000003ac0010009c000003ac0100804100000040011002100000041a011001c700000ea70001042e000000440010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000101043b000600000001001d000003b10010009c0000056e0000213d0000002401800370000000000201043b000000000002004b0000000001000039000000010100c039000500000002001d000000000012004b0000056e0000c13d0000000501000039000000000101041a000003b1011001970000000002000411000000000021004b000004930000c13d0000000601000029000000000010043f0000000c01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000201041a00000438022001970000000503000029000000000232019f000000000021041b000000400100043d0000000000310435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000203000039000003c60400004100000006050000290000056b0000013d0000000001000416000000000001004b0000056e0000c13d0000000001000412000800000001001d000700000000003d000080050100003900000044030000390000000004000415000000080440008a000000050440021000000422020000410ea60e7e0000040f000003a00000013d0000000001000416000000000001004b0000056e0000c13d0000000901000039000000000101041a000003b101100197000000800010043f0000040d0100004100000ea70001042e0000000001000416000000000001004b0000056e0000c13d0000000a01000039000004720000013d000000240010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000101043b000003b10010009c0000056e0000213d000000000010043f0000000e01000039000003d50000013d0000000001000416000000000001004b0000056e0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000004a10000613d0000042c01000041000000000010043f0000002201000039000000040010043f000004130100004100000ea800010430000000240010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000101043b000003b10010009c0000056e0000213d000000000010043f0000000c01000039000000200010043f000000400200003900000000010000190ea60e690000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f0000040d0100004100000ea70001042e000000440010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000101043b000003b10010009c0000056e0000213d0000002402800370000000000202043b000600000002001d000003b10020009c0000056e0000213d000000000010043f0000000101000039000000200010043f000000400200003900000000010000190ea60e690000040f0000000602000029000000000020043f000000200010043f00000000010000190000004002000039000004710000013d000000240010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000501043b000003b10050009c0000056e0000213d0000000501000039000000000101041a000003b1011001970000000002000411000000000021004b000004930000c13d000000000005004b000005510000c13d000003d001000041000000800010043f0000002001000039000000840010043f0000001001000039000000a40010043f0000043601000041000000c40010043f000004210100004100000ea800010430000000440010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000201043b000003b10020009c0000056e0000213d0000002401800370000000000301043b00000000010004110ea60cda0000040f0000000101000039000000400200043d0000000000120435000003ac0020009c000003ac0200804100000040012002100000041a011001c700000ea70001042e0000000001000416000000000001004b0000056e0000c13d0000000501000039000000000201041a000003b1032001970000000005000411000000000053004b000004930000c13d000003b802200197000000000021041b0000000001000414000003ac0010009c000003ac01008041000000c001100210000003b9011001c70000800d020000390000000303000039000003ba0400004100000000060000190000056b0000013d0000000001000416000000000001004b0000056e0000c13d0000dead01000039000000800010043f0000040d0100004100000ea70001042e000000240010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000601043b000003b10060009c0000056e0000213d0000000501000039000000000101041a000003b1011001970000000002000411000000000021004b000004930000c13d0000000701000039000000000201041a000003b803200197000000000363019f000000000031041b0000000001000414000003b105200197000003ac0010009c000003ac01008041000000c001100210000003b9011001c70000800d0200003900000003030000390000041b040000410000056b0000013d000000240010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000101043b000003b10010009c0000056e0000213d000000000010043f000000200000043f000000400200003900000000010000190ea60e690000040f000000000101041a000000800010043f0000040d0100004100000ea70001042e000000240010008c0000056e0000413d0000000001000416000000000001004b0000056e0000c13d0000000401800370000000000601043b000003b10060009c0000056e0000213d0000000501000039000000000201041a000003b1032001970000000005000411000000000053004b000004930000c13d000000000006004b000005600000c13d000003d001000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000040e01000041000000c40010043f0000040f01000041000000e40010043f000004100100004100000ea800010430000003d001000041000000800010043f0000002001000039000000840010043f000000a40010043f000003cf01000041000000c40010043f000004210100004100000ea8000104300000041f02000041000000800020043f000000840010043f000004120100004100000ea800010430000000800010043f000000000005004b000004cb0000c13d0000043801200197000000a00010043f000000000004004b000000c001000039000000a001006039000004db0000013d000600000002001d000000000010043f000000200000043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000101041a000000060110006c0000052c0000813d000000400100043d000000640210003900000431030000410000000000320435000000440210003900000432030000410000057a0000013d000003d001000041000000800010043f0000002001000039000000840010043f0000001701000039000000a40010043f0000042001000041000000c40010043f000004210100004100000ea800010430000000000030043f000000020020008c000004d00000813d000000a001000039000004db0000013d000003b60200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000004d20000413d000000c001300039000000800210008a00000080010000390ea60c380000040f000000400100043d000600000001001d00000080020000390ea60c230000040f00000006020000290000000001210049000003ac0010009c000003ac010080410000006001100210000003ac0020009c000003ac020080410000004002200210000000000121019f00000ea70001042e0000041101000041000000800010043f000000840030043f0000000001000414000003ac0010009c000003ac01008041000000c00110021000000412011001c70ea60ea10000040f0000006003100270000003ac03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000000800a000039000005040000613d000000000801034f000000008908043c000000000a9a043600000000005a004b000005000000c13d000000000006004b000005110000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000005880000613d0000001f01400039000000600110018f00000080021001bf000500000002001d000000400020043f000000200030008c0000056e0000413d00000084021001bf000000800300043d000000000003004b0000068f0000c13d000003d0030000410000000504000029000000000034043500000020030000390000000000320435000000c40210003900000415030000410000000000320435000000a401100039000000090200003900000000002104350000004001400210000003d1011001c700000ea800010430000500000001001d0000000001000411000000000010043f000000200000043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b0000000502000029000000000021041b0000000201000039000000000201041a00000006030000290000000002320049000000000021041b000000400100043d0000000000310435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000303000039000003d40400004100000000050004110000043d0000013d0000000901000039000000000201041a000003b803200197000000000353019f000000000031041b0000000001000414000003b106200197000003ac0010009c000003ac01008041000000c001100210000003b9011001c70000800d02000039000000030300003900000435040000410000056b0000013d000003b802200197000000000262019f000000000021041b0000000001000414000003ac0010009c000003ac01008041000000c001100210000003b9011001c70000800d020000390000000303000039000003ba040000410ea60e9c0000040f0000000100200190000000600000c13d000000000100001900000ea8000104300000001102000039000000000202041a000603b10020019c000005a60000c13d000000400100043d00000064021000390000042d03000041000000000032043500000044021000390000042e030000410000000000320435000000240210003900000022030000390000000000320435000003d0020000410000000000210435000000040210003900000020030000390000000000320435000003ac0010009c000003ac0100804100000040011002100000041e011001c700000ea8000104300000001f0530018f000003ae06300198000000400200043d0000000004620019000005930000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000058f0000c13d000000000005004b000005a00000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000003ac0020009c000003ac020080410000004002200210000000000112019f00000ea800010430000000000101041a000500000001001d0000000001000410000000000010043f0000000101000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000010200008a000000000021041b000000400100043d0000000000210435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000303000039000003c304000041000000000500041000000006060000290ea60e9c0000040f00000001002001900000056e0000613d0000001101000039000000000101041a000600000001001d000004220100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000003ac0010009c000003ac01008041000000c00110021000000423011001c700008005020000390ea60ea10000040f0000000100200190000006760000613d000000000101043b000000400400043d000400000004001d0000002402400039000000010300008a000000000032043500000424020000410000000000240435000003b1021001970000000401400039000300000002001d0000000000210435000003ac0040009c000003ac01000041000000000104401900000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f0000000602000029000003b102200197000003cd011001c70ea60e9c0000040f0000006003100270000003ac03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000040b0000290000000405700029000006120000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000060e0000c13d000000000006004b0000061f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000007210000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000003af0010009c000000580000213d0000000100200190000000580000c13d000000400010043f000000200030008c0000056e0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b0000056e0000c13d00000416010000410000000000100443000000000100041000000004001004430000000001000414000003ac0010009c000003ac01008041000000c00110021000000417011001c70000800a020000390ea60ea10000040f0000000100200190000006760000613d0000000503000029000000190230011a0000000002230049000000000101043b000500000001001d0000000901000039000000000101041a000000400400043d00000024034000390000000000230435000003b101100197000000840240003900000000001204350000042501000041000000000014043500000004014000390000000002000410000000000021043500000064014000390000000000010435000600000004001d00000044014000390000000000010435000004260100004100000000001004430000000001000414000003ac0010009c000003ac01008041000000c00110021000000427011001c70000800b020000390ea60ea10000040f0000000100200190000006760000613d000000000301043b0000000602000029000000a401200039000400000003001d0000000000310435000003ac0020009c000003ac01000041000000000102401900000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000000050000006b000007830000c13d00000429011001c70000000302000029000007880000013d000000000001042f000003b9011001c70000800902000039000000000400041100000000050000190ea60e9c0000040f0000006001100270000003ac01100198000000600000613d0000001f01100039000003ad011001970000003f011000390000041801100197000000400200043d0000000001120019000000000021004b00000000020000390000000102004039000003af0010009c000000580000213d0000000100200190000000580000c13d000000400010043f000000000100001900000ea70001042e000004110100004100000005030000290000000000130435000000000100041000000000001204350000000001000414000003ac0010009c000003ac01008041000000c0011002100000004002300210000000000121019f00000413011001c700000006020000290ea60ea10000040f0000006003100270000003ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000505700029000006ac0000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000006a80000c13d000000000006004b000006b90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000007090000613d0000001f01400039000000600110018f0000000501100029000400000001001d000000400010043f000000200030008c0000056e0000413d0000000501000029000000000101043300000414020000410000000404000029000000000024043500000004024001bf00000000030004110000000000320435000000240240003900000000001204350000000001000414000003ac0010009c000003ac01008041000000c0011002100000004002400210000000000121019f000003cd011001c700000006020000290ea60e9c0000040f0000006003100270000003ac03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000405700029000006e40000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b000006e00000c13d000000000006004b000006f10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000007150000613d0000001f01400039000000600110018f0000000401100029000000400010043f000000200030008c0000056e0000413d00000004010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000600000613d0000056e0000013d000000060100002900000000020004110ea60c830000040f0000000601000029000000050200002900000004030000290ea60cda0000040f0000034a0000013d0000001f0530018f000003ae06300198000000400200043d0000000004620019000005930000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007100000c13d000005930000013d0000001f0530018f000003ae06300198000000400200043d0000000004620019000005930000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000071c0000c13d000005930000013d0000001f0530018f000003ae06300198000000400200043d0000000004620019000005930000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007280000c13d000005930000013d000000000006004b0000000004000019000007310000613d000000000405043300000003056002100000043a0550027f0000043a05500167000000000454016f0000000105600210000000000454019f000007500000013d000003b3050000410000002007000039000000010980008a0000000509900270000003b40990009a000000000a470019000000000a0a04330000000000a5041b00000020077000390000000105500039000000000095004b0000073d0000c13d000000000068004b0000074e0000813d0000000308600210000000f80880018f0000043a0880027f0000043a0880016700000000044700190000000004040433000000000484016f000000000045041b000000010460021000000001044001bf000000000041041b0000000004020433000003af0040009c000000580000213d0000000401000039000000000601041a000000010060019000000001056002700000007f0550618f0000001f0050008c00000000070000390000000107002039000000000676013f0000000100600190000003c40000c13d000000200050008c000007700000413d000000000010043f0000001f064000390000000506600270000003b50660009a000000200040008c000003b6060040410000001f055000390000000505500270000003b50550009a000000000056004b000007700000813d000000000006041b0000000106600039000000000056004b0000076c0000413d0000001f0040008c000007780000a13d000000000010043f0000043906400198000007d10000c13d0000002005000039000003b603000041000007dd0000013d000000000004004b00000000020000190000077c0000613d000000000203043300000003034002100000043a0330027f0000043a03300167000000000232016f0000000103400210000000000232019f000007e90000013d00000428011001c700008009020000390000000503000029000000030400002900000000050000190ea60e9c0000040f0000006003100270000003ac03300197000000600030008c000000600400003900000000040340190000001f0640018f00000060074001900000000605700029000007980000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b000007940000c13d000000000006004b000007a50000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000007c50000613d0000001f01400039000000e00210018f0000000601200029000000000021004b00000000020000390000000102004039000003af0010009c000000580000213d0000000100200190000000580000c13d000000400010043f000000600030008c0000056e0000413d0000000901000039000000000101041a000600000001001d0000041900100198000000000100003900000001010060390ea60c4a0000040f00000006010000290000042a011001970000042b011001c70000000902000039000000000012041b0000000a010000390000000402000029000000000021041b000000000100001900000ea70001042e0000001f0530018f000003ae06300198000000400200043d0000000004620019000005930000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000007cc0000c13d000005930000013d000003b6030000410000002005000039000000010760008a0000000507700270000003b70770009a00000000082500190000000008080433000000000083041b00000020055000390000000103300039000000000073004b000007d60000c13d000000000046004b000007e70000813d0000000306400210000000f80660018f0000043a0660027f0000043a0660016700000000022500190000000002020433000000000262016f000000000023041b000000010240021000000001022001bf000000000021041b0000000503000039000000000103041a000003b8021001970000000006000411000000000226019f000000000023041b0000000002000414000003b105100197000003ac0020009c000003ac02008041000000c001200210000003b9011001c70000800d020000390000000303000039000003ba040000410ea60e9c0000040f00000001002001900000056e0000613d00000006010000290000000002010433000003af0020009c000000580000213d0000001201000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f0000000100400190000003c40000c13d000000200030008c0000081c0000413d000000000010043f0000001f042000390000000504400270000003bb0440009a000000200020008c000003bc040040410000001f033000390000000503300270000003bb0330009a000000000034004b0000081c0000813d000000000004041b0000000104400039000000000034004b000008180000413d0000001f0020008c000008240000a13d000000000010043f0000043905200198000008300000c13d0000002004000039000003bc030000410000083d0000013d000000000002004b0000000003000019000008290000613d0000000503000029000000000303043300000003042002100000043a0440027f0000043a04400167000000000343016f0000000102200210000000000223019f000008490000013d000003bc030000410000002004000039000000010650008a0000000506600270000003bd0660009a000000060800002900000000078400190000000007070433000000000073041b00000020044000390000000103300039000000000063004b000008360000c13d000000000025004b000008470000813d0000000305200210000000f80550018f0000043a0550027f0000043a0550016700000006044000290000000004040433000000000454016f000000000043041b000000010220021000000001022001bf000000000021041b000000400100043d000003be0010009c000000580000213d000000e40210003900000000030004110000000000320435000000a402100039000000030300002900000000003204350000000402000029000003b102200197000000840310003900000000002304350000002402100039000003ab030000410000000000320435000000c402100039000000000300041000000000003204350000006402100039000000000300041400000080040000390000000000420435000000440210003900000060040000390000000000420435000003bf02000041000000000021043500000004021000390000000000020435000003ac0010009c000003ac010080410000004001100210000003ac0030009c000003ac03008041000000c002300210000000000121019f000003c0011001c700008006020000390ea60e9c0000040f000000010020019000000b9a0000613d00000000020000310000000103200367000000000101043b000000000001004b000000000200001900000b9d0000613d000003b1011001970000000603000039000000000203041a000003b802200197000000000212019f000000000023041b0000000702000039000000000302041a000003b803300197000000000113019f000000000012041b0000000101000029000003b101100197000600000001001d000000800010043f0000000001000410000000000001004b0000030e0000613d000000060000006b000005740000613d0000000001000410000000000010043f0000000101000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000010200008a000000000021041b000000400100043d0000000000210435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000303000039000003c304000041000000000500041000000006060000290ea60e9c0000040f00000001002001900000056e0000613d0000000b01000039000000000201041a000004380220019700000002022001af000000000021041b000000020000006b000003c501000041000003c4010060410000000f02000039000000000012041b0000001002000039000000000012041b0000000901000039000000000201041a000003b8022001970000000003000411000000000232019f000000000021041b0000000501000039000000000101041a000003b101100197000000000031004b00000bbb0000c13d0000000001000411000000000010043f0000000c01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000201041a000004380220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000203000039000003c60400004100000000050004110ea60e9c0000040f00000001002001900000056e0000613d0000000501000039000000000101041a000003b1011001970000000002000411000000000021004b00000bbb0000c13d0000000001000410000000000010043f0000000c01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000201041a000004380220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000203000039000003c60400004100000000050004100ea60e9c0000040f00000001002001900000056e0000613d0000000501000039000000000101041a000003b1011001970000000002000411000000000021004b00000bbb0000c13d0000dead05000039000000000050043f0000000c01000039000000200010043f000003c701000041000000000201041a000004380220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000203000039000003c6040000410ea60e9c0000040f00000001002001900000056e0000613d0000000501000039000000000101041a000003b1011001970000000002000411000000000021004b00000bbb0000c13d0000000601000039000000000101041a000003b101100197000600000001001d000000000010043f0000000c01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000201041a000004380220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000203000039000003c60400004100000006050000290ea60e9c0000040f00000001002001900000056e0000613d0000000501000039000000000101041a000003b1011001970000000002000411000000000021004b00000bbb0000c13d0000000001000411000000000010043f0000000e01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000201041a000004380220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000203000039000003c80400004100000000050004110ea60e9c0000040f00000001002001900000056e0000613d0000000501000039000000000101041a000003b1011001970000000002000411000000000021004b00000bbb0000c13d0000000001000410000000000010043f0000000e01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000201041a000004380220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000203000039000003c80400004100000000050004100ea60e9c0000040f00000001002001900000056e0000613d0000000501000039000000000101041a000003b1011001970000000002000411000000000021004b00000bbb0000c13d0000dead01000039000000000010043f0000000e01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000201041a000004380220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d0200003900000002030000390000dead05000039000003c8040000410ea60e9c0000040f00000001002001900000056e0000613d0000000501000039000000000101041a000003b1011001970000000002000411000000000021004b00000bbb0000c13d000000800100043d000003b101100197000600000001001d000000000010043f0000000e01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000201041a000004380220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000203000039000003c80400004100000006050000290ea60e9c0000040f00000001002001900000056e0000613d0000000501000039000000000101041a000003b1011001970000000002000411000000000021004b00000bbb0000c13d0000000601000039000000000101041a000003b101100197000600000001001d000000000010043f0000000e01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000201041a000004380220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000203000039000003c80400004100000006050000290ea60e9c0000040f00000001002001900000056e0000613d000000800200043d000000400300043d000500000003001d000003c9010000410000000000130435000003ac0030009c000003ac01000041000000000103401900000040011002100000000003000414000003ac0030009c000003ac03008041000000c003300210000000000113019f000003ca011001c7000003b1022001970ea60ea10000040f0000006003100270000003ac03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000050b000029000000050570002900000a710000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000a6d0000c13d000000000006004b00000a7e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000bc60000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000600000002001d000003af0020009c000000580000213d0000000100100190000000580000c13d0000000601000029000000400010043f000000200030008c0000056e0000413d00000000010b0433000400000001001d000003b10010009c0000056e0000213d000000800200043d000003cb0100004100000006030000290000000000130435000003ac0030009c000003ac01000041000000000103401900000040011002100000000003000414000003ac0030009c000003ac03008041000000c003300210000000000113019f000003ca011001c7000003b1022001970ea60ea10000040f0000006003100270000003ac03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900000ab20000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00000aae0000c13d000000000006004b00000abf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000bd20000613d0000001f01400039000000600110018f0000000601100029000500000001001d000003af0010009c000000580000213d0000000501000029000000400010043f000000200030008c0000056e0000413d00000006010000290000000001010433000003b10010009c0000056e0000213d000000050300002900000024023000390000000000120435000003cc010000410000000000130435000000040130003900000000020004100000000000210435000003ac0030009c000003ac01000041000000000103401900000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003cd011001c700000004020000290ea60e9c0000040f0000006003100270000003ac03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000050570002900000af20000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b00000aee0000c13d000000000006004b00000aff0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000bde0000613d0000001f01400039000000600110018f0000000501100029000003af0010009c000000580000213d000000400010043f000000200030008c0000056e0000413d00000005010000290000000001010433000600000001001d000003b10010009c0000056e0000213d0000000801000039000000000201041a000003b8022001970000000603000029000000000232019f000000000021041b0000001102000039000000000102041a000003b801100197000000000131019f000000000012041b000000000030043f0000000d01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000201041a000004380220019700000001022001bf000000000021041b0000000001000414000003ac0010009c000003ac01008041000000c001100210000003b9011001c70000800d0200003900000003030000390000000106000039000003ce0400004100000006050000290ea60e9c0000040f00000001002001900000056e0000613d0000000501000039000000000101041a000003b1011001970000000002000411000000000021004b00000bbb0000c13d0000001101000039000000000101041a000003b101100197000600000001001d000000000010043f0000000e01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000201041a000004380220019700000001022001bf000000000021041b000000400100043d00000001020000390000000000210435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000203000039000003c80400004100000006050000290ea60e9c0000040f00000001002001900000056e0000613d0000000201000039000000000101041a000003d20110009c00000bee0000813d0000000202000039000000000012041b0000000001000410000000000010043f000000200000043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000201041a000003d20220009a000000000021041b000003d301000041000000400200043d0000000000120435000003ac0020009c000003ac0200804100000040012002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000303000039000003d404000041000000000500001900000000060004100ea60e9c0000040f00000001002001900000056e0000613d0000000601000039000000000101041a000603b10010019c00000bea0000c13d000000400100043d0000004402100039000003d903000041000000000032043500000024021000390000001f030000390000025b0000013d0000006002100270000003ac02200197000000000301034f0000001f0520018f000003ae06200198000000400100043d000000000461001900000ba80000613d000000000703034f0000000008010019000000007907043c0000000008980436000000000048004b00000ba40000c13d000000000005004b00000bb50000613d000000000363034f0000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000006002200210000003ac0010009c000003ac010080410000004001100210000000000121019f00000ea800010430000000400100043d0000004402100039000003cf030000410000000000320435000003d00200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000002600000013d0000001f0530018f000003ae06300198000000400200043d0000000004620019000005930000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bcd0000c13d000005930000013d0000001f0530018f000003ae06300198000000400200043d0000000004620019000005930000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bd90000c13d000005930000013d0000001f0530018f000003ae06300198000000400200043d0000000004620019000005930000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000be50000c13d000005930000013d0000000201000039000000000101041a000003d60110009c00000bf40000413d0000042c01000041000000000010043f0000001101000039000000040010043f000004130100004100000ea8000104300000000202000039000000000012041b0000000601000029000000000010043f000000200000043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f00000001002001900000056e0000613d000000000101043b000000000201041a000003d60220009a000000000021041b000003d701000041000000400200043d0000000000120435000003ac0020009c000003ac0200804100000040012002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000303000039000003d404000041000000000500001900000006060000290ea60e9c0000040f00000001002001900000056e0000613d000000800100043d000001400000044300000160001004430000002001000039000001000010044300000001010000390000012000100443000003d80100004100000ea70001042e00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00000c320000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b00000c2b0000413d000000000321001900000000000304350000001f0220003900000439022001970000000001210019000000000001042d0000001f0220003900000439022001970000000001120019000000000021004b00000000020000390000000102004039000003af0010009c00000c440000213d000000010020019000000c440000c13d000000400010043f000000000001042d0000042c01000041000000000010043f0000004101000039000000040010043f000004130100004100000ea800010430000000000001004b00000c4d0000613d000000000001042d000000400100043d000000440210003900000420030000410000000000320435000000240210003900000017030000390000000000320435000003d0020000410000000000210435000000040210003900000020030000390000000000320435000003ac0010009c000003ac010080410000004001100210000003d1011001c700000ea80001043000010000000000020000000901000039000000000101041a000004190010019800000c780000613d0000000a01000039000000000101041a000100000001001d000004260100004100000000001004430000000001000414000003ac0010009c000003ac01008041000000c00110021000000427011001c70000800b020000390ea60ea10000040f000000010020019000000c7c0000613d000000000101043b000000010110006c00000c7d0000413d000002580010008c000000000100001900000c780000a13d000000000001042d0000000b01000039000000000101041a000000ff0110018f000000000001042d000000000001042f0000042c01000041000000000010043f0000001101000039000000040010043f000004130100004100000ea8000104300003000000000002000003b10110019800000cbc0000613d000200000003001d000303b10020019c00000cc60000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f0000000100200190000000030300002900000cba0000613d000000000101043b000000000030043f000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f0000000306000029000000010020019000000cba0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000303000039000003c30400004100000001050000290ea60e9c0000040f000000010020019000000cba0000613d000000000001042d000000000100001900000ea800010430000000400100043d00000064021000390000042f0300004100000000003204350000004402100039000004300300004100000000003204350000002402100039000000240300003900000ccf0000013d000000400100043d00000064021000390000042d03000041000000000032043500000044021000390000042e030000410000000000320435000000240210003900000022030000390000000000320435000003d0020000410000000000210435000000040210003900000020030000390000000000320435000003ac0010009c000003ac0100804100000040011002100000041e011001c700000ea8000104300004000000000002000003b10510019800000e140000613d000403b10020019c00000e1e0000613d000000000003004b00000d980000613d000200000003001d0000000501000039000000000101041a000003b101100197000000000015004b000300000005001d00000dd00000613d000000040010006b00000dd00000613d000000000050043f0000000c01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f000000010020019000000e120000613d000000000101043b00000004020000290000dead0020008c000000030500002900000dd00000613d000000000101041a000000ff0010019000000dd00000c13d0000000902000039000000000102041a000004190010019800000d250000c13d000000000050043f0000000c01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f000000010020019000000e120000613d000000000101043b000000000101041a000000ff001001900000000305000029000000090200003900000d250000c13d0000000401000029000000000010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f000000010020019000000e120000613d000000000101043b000000000101041a000000ff001001900000000305000029000000090200003900000e430000613d000000000102041a000004190010019800000d3c0000613d0000000a01000039000000000101041a000100000001001d000004260100004100000000001004430000000001000414000003ac0010009c000003ac01008041000000c00110021000000427011001c70000800b020000390ea60ea10000040f000000010020019000000e3c0000613d000000000101043b000000010110006c00000e3d0000413d000002580010008c000000030500002900000dd00000213d0000000b01000039000000000101041a000000ff0010019000000dd00000613d000000000050043f0000000d01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f000000010020019000000e120000613d000000000101043b000000000101041a000000ff0010019000000d610000613d0000000401000029000000000010043f0000000e01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f000000010020019000000e120000613d000000000101043b000000000101041a000000ff0010019000000daa0000613d0000000401000029000000000010043f0000000d01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f000000010020019000000e120000613d000000000101043b000000000101041a000000ff0010019000000d830000613d0000000301000029000000000010043f0000000e01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f000000010020019000000e120000613d000000000101043b000000000101041a000000ff0010019000000dcb0000613d0000000401000029000000000010043f0000000e01000039000000200010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f000000010020019000000e120000613d000000000101043b000000000101041a000000ff00100190000000030500002900000dd00000c13d000000200000043f000000000100041400000db20000013d000000200000043f0000000406000029000000000060043f000000400100043d0000000000010435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000303000039000003d40400004100000e0e0000013d0000000f01000039000000000101041a000000020010006c00000e540000413d0000000401000029000000000010043f000000200000043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f000000010020019000000e120000613d000000000101043b000000000101041a000000020010002a00000e3d0000413d00000002011000290000001002000039000000000202041a000000000021004b000000030500002900000dd00000a13d000000400100043d00000044021000390000043f03000041000000000032043500000024021000390000001a0300003900000e490000013d0000000f01000039000000000101041a000000020010006c000000030500002900000e5e0000413d000000000050043f000000200000043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f000000010020019000000e120000613d000000000101043b000000000101041a000100020010007400000e280000413d0000000301000029000000000010043f000000200000043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f000000010020019000000e120000613d000000000101043b0000000102000029000000000021041b0000000401000029000000000010043f0000000001000414000003ac0010009c000003ac01008041000000c001100210000003c1011001c700008010020000390ea60ea10000040f000000010020019000000e120000613d000000000101043b000000000201041a00000002030000290000000002320019000000000021041b000000400100043d0000000000310435000003ac0010009c000003ac0100804100000040011002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003c2011001c70000800d020000390000000303000039000003d404000041000000030500002900000004060000290ea60e9c0000040f000000010020019000000e120000613d000000000001042d000000000100001900000ea800010430000000400100043d0000006402100039000004450300004100000000003204350000004402100039000004460300004100000000003204350000002402100039000000250300003900000e310000013d000000400100043d0000006402100039000004430300004100000000003204350000004402100039000004440300004100000000003204350000002402100039000000230300003900000e310000013d000000400100043d000000640210003900000440030000410000000000320435000000440210003900000441030000410000000000320435000000240210003900000026030000390000000000320435000003d0020000410000000000210435000000040210003900000020030000390000000000320435000003ac0010009c000003ac0100804100000040011002100000041e011001c700000ea800010430000000000001042f0000042c01000041000000000010043f0000001101000039000000040010043f000004130100004100000ea800010430000000400100043d00000044021000390000044203000041000000000032043500000024021000390000001d030000390000000000320435000003d0020000410000000000210435000000040210003900000020030000390000000000320435000003ac0010009c000003ac010080410000004001100210000003d1011001c700000ea800010430000000400100043d00000064021000390000043b03000041000000000032043500000044021000390000043c0300004100000000003204350000002402100039000000360300003900000e310000013d000000400100043d00000064021000390000043d03000041000000000032043500000044021000390000043e0300004100000000003204350000002402100039000000370300003900000e310000013d000000000001042f000003ac0010009c000003ac010080410000004001100210000003ac0020009c000003ac020080410000006002200210000000000112019f0000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f000003b9011001c700008010020000390ea60ea10000040f000000010020019000000e7c0000613d000000000101043b000000000001042d000000000100001900000ea80001043000000000050100190000000000200443000000050030008c00000e8c0000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b00000e840000413d000003ac0030009c000003ac0300804100000060013002100000000002000414000003ac0020009c000003ac02008041000000c002200210000000000112019f00000447011001c700000000020500190ea60ea10000040f000000010020019000000e9b0000613d000000000101043b000000000001042d000000000001042f00000e9f002104210000000102000039000000000001042d0000000002000019000000000001042d00000ea4002104230000000102000039000000000001042d0000000002000019000000000001042d00000ea60000043200000ea70001042e00000ea800010430000000000000000000000000000000000000000000000000010002b7a791fdf4ebb3c8fdcb1dd8f888289b997ba7663842c86f82a9fa05b700000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a475ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e658a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b75ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e64ffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0447595b99645daf2d93285ba613562dea07cf81cc5141afc8643a5c9e813cbbcbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444447595b99645daf2d93285ba613562dea07cf81cc5141afc8643a5c9e813cbbb000000000000000000000000000000000000000000000000ffffffffffffff7b9c4d535bdea7cd8a978f128b93471df48c7dbab89d703809115bdc118c235bfd0200000000000000000000000000000000000104000000000000000000000000020000000000000000000000000000000000004000000000000000000000000002000000000000000000000000000000000000200000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9250000000000000000000000000000000000000000023ac12ef364587bf200000000000000000000000000000000000000000000000005b521bfdfb934708000009d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df745117a726ea4f344045dc210793664a28d2d320b7e03f6bffdae553d24c3586c4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92c45a0155000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000ad5c464800000000000000000000000000000000000000000000000000000000c9c65396000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000ffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657208c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000ffffffffffffffffffffffffffffffffffffffffff62d5ef5c83e7a2820000000000000000000000000000000000000000000000009d2a10a37c185d7e000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3effffffffffffffffffffffffffffffffffffffffffe6268e1b017bfe18bfffffffffffffffffffffffffffffffffffffffffffffffe6268e1b017bfe18c0000000000000000000000000000000000000000000000019d971e4fe8401e74000000000000020000000000000000000000000000008000000100000000000000000045524332303a206d696e7420746f20746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000008a8c523b00000000000000000000000000000000000000000000000000000000c024666700000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f52b691f00000000000000000000000000000000000000000000000000000000f8b45b0500000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000cb8c478900000000000000000000000000000000000000000000000000000000cb8c478a00000000000000000000000000000000000000000000000000000000cb96372800000000000000000000000000000000000000000000000000000000c024666800000000000000000000000000000000000000000000000000000000c3f70b520000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000a637af6400000000000000000000000000000000000000000000000000000000a637af6500000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000bbc0c7420000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d7000000000000000000000000000000000000000000000000000000008ffdae02000000000000000000000000000000000000000000000000000000008ffdae0300000000000000000000000000000000000000000000000000000000936fc63c000000000000000000000000000000000000000000000000000000008a8c523c000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000039509350000000000000000000000000000000000000000000000000000000004fbee1920000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007571336a000000000000000000000000000000000000000000000000000000004fbee19300000000000000000000000000000000000000000000000000000000570ca735000000000000000000000000000000000000000000000000000000004626402a000000000000000000000000000000000000000000000000000000004626402b0000000000000000000000000000000000000000000000000000000049bd5a5e00000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000018d9cead0000000000000000000000000000000000000000000000000000000027c8f8340000000000000000000000000000000000000000000000000000000027c8f835000000000000000000000000000000000000000000000000000000002fa327a800000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000018d9ceae0000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000001694505d000000000000000000000000000000000000000000000000000000001694505e0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000200000008000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000070a082310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000008000000000000000000000000000000000000000000000000000000024000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000004e6f20746f6b656e7300000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f39020000020000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe00000000000000000000000ff00000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000f002d44a556911dfb26c3439289ffc2278c02f7eb8c658179333ab5c4afda228207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f770000000000000000000000000000000000000084000000000000000000000000740fbe610000000000000000000000000000000000000000000000000000000054726164696e6720616c7265616479206163746976652e0000000000000000000000000000000000000000000000000000000064000000800000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0200000200000000000000000000000000000044000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000f305d71900000000000000000000000000000000000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000002000000000000000000000000000000000000c400000000000000000000000000000000000000000000000000000000000000c4000000000000000000000000ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff00000000000000000000000100000000000000000000000000000000000000004e487b7100000000000000000000000000000000000000000000000000000000737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e45524332303a206275726e2066726f6d20746865207a65726f20616464726573730000000000000000000000000000000000000000000000000000000000000002f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63545524332303a204164647265737320300000000000000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e6365000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff647320746865206d61785472616e73616374696f6e2e0000000000000000000045524332303a20427579207472616e7366657220616d6f756e7420657863656565647320746865206d61785472616e73616374696f6e2e00000000000000000045524332303a2053656c6c207472616e7366657220616d6f756e74206578636545524332303a204d61782077616c6c6574206578636565646564000000000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e742065786365656473206245524332303a2054726164696e67206973206e6f74206163746976652e000000657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061640200000200000000000000000000000000000000000000000000000000000000bff74e52c4e035c814a8c18e9b9802da74277a013b49cfca905ee11308ac41ae
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000160000000000000000000000000d1ec9a8a0b6dee2a2c217582789756b6bc5746d10000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000096ff7d9dbf52fdcae79157d3b249282c7fabd409000000000000000000000000000000000000000000000000000000000000000a44656661756c744f6e650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035344310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009668747470733a2f2f62757a7a646f7466756e2d646576656c6f706d656e742d73706163652e6c6f6e312e63646e2e6469676974616c6f6365616e7370616365732e636f6d2f62757a7a646f7466756e2d646576656c6f706d656e742d73706163652f636f6e7472616374732f313033353734383438303538363534373230312f636f6e74726163742d6d657461646174612e6a736f6e00000000000000000000
-----Decoded View---------------
Arg [0] : name (string): DefaultOne
Arg [1] : symbol (string): SD1
Arg [2] : contractUri (string): https://buzzdotfun-development-space.lon1.cdn.digitaloceanspaces.com/buzzdotfun-development-space/contracts/1035748480586547201/contract-metadata.json
Arg [3] : devBuyAddress (address): 0xD1ec9A8a0B6dEe2A2C217582789756B6BC5746D1
Arg [4] : devBuyEnabled (bool): True
Arg [5] : maxBuyEnabled (bool): True
Arg [6] : swapRouter (address): 0x96ff7D9dbf52FdcAe79157d3b249282c7FABd409
-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 000000000000000000000000d1ec9a8a0b6dee2a2c217582789756b6bc5746d1
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000096ff7d9dbf52fdcae79157d3b249282c7fabd409
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 44656661756c744f6e6500000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 5344310000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000096
Arg [12] : 68747470733a2f2f62757a7a646f7466756e2d646576656c6f706d656e742d73
Arg [13] : 706163652e6c6f6e312e63646e2e6469676974616c6f6365616e737061636573
Arg [14] : 2e636f6d2f62757a7a646f7466756e2d646576656c6f706d656e742d73706163
Arg [15] : 652f636f6e7472616374732f313033353734383438303538363534373230312f
Arg [16] : 636f6e74726163742d6d657461646174612e6a736f6e00000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.