ERC-20
Overview
Max Total Supply
1,333,333 CHAOS
Holders
65
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000081054974639 CHAOSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Chaos
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./deps/IUniswapV2Router02.sol"; import "./deps/IUniswapV2Pair.sol"; import "./deps/IUniswapV2Factory.sol"; contract Chaos is ERC20, Ownable, Pausable { using SafeMath for uint256; address private constant USDT = 0xdAC17F958D2ee523a2206206994597C13D831ec7; address public treasuryWallet; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; uint256 public tax; uint256 public buyTax; uint256 public sellTax; uint256 public bDaoTax; uint256 public bTeamTax; uint256 public bLiquidityTax; uint256 public sDaoTax; uint256 public sTeamTax; uint256 public sLiquidityTax; uint256 public maxWalletSize; mapping(address => bool) public whitelistedAddress; event WhitelistAddressUpdated(address whitelistAccount, bool value); event TaxUpdated(uint256 taxAmount); event TaxPaid(uint256 taxAmount); constructor( address initialHolder, uint256 initialSupply, uint256[] memory bTax, uint256[] memory sTax ) ERC20("CHAOS DAO", "CHAOS") { _mint(initialHolder, initialSupply); uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), USDT ); bDaoTax = bTax[0]; bTeamTax = bTax[1]; bLiquidityTax = bTax[2]; sDaoTax = sTax[0]; sTeamTax = sTax[1]; sLiquidityTax = sTax[2]; buyTax = bDaoTax.add(bTeamTax).add(bLiquidityTax); sellTax = sDaoTax.add(sTeamTax).add(sLiquidityTax); /// 5% of the initial supply maxWalletSize = initialSupply.mul(2).div(100); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } function _mint(address to, uint256 amount) internal override { super._mint(to, amount); } function _burn(address account, uint256 amount) internal override { super._burn(account, amount); } function setWhitelistAddress(address _whitelist, bool _status) external onlyOwner{ require(_whitelist != address(0), "setWhitelistAddress: Zero address"); whitelistedAddress[_whitelist] = _status; emit WhitelistAddressUpdated(_whitelist, _status); } function setMaxWallet(uint256 amount) external onlyOwner { maxWalletSize = amount; } function setTreasuryAddress(address newAddr) external onlyOwner { treasuryWallet = newAddr; } function setUniswapPair(address pairAddress) external onlyOwner { require(pairAddress != address(0), "ERROR"); uniswapV2Pair = pairAddress; } function setUniswapRouter(address routerAddress) external onlyOwner { require(routerAddress != address(0), "ERROR"); uniswapV2Router = IUniswapV2Router02(routerAddress); } function setBuyTax(uint256 daoTax, uint256 teamTax, uint256 liquidityTax) external onlyOwner{ bDaoTax = daoTax; bTeamTax = teamTax; bLiquidityTax = liquidityTax; buyTax = bDaoTax.add(bTeamTax).add(bLiquidityTax); emit TaxUpdated(buyTax); } function setSellTax(uint256 daoTax, uint256 teamTax, uint256 liquidityTax) external onlyOwner{ sDaoTax = daoTax; sTeamTax = teamTax; sLiquidityTax = liquidityTax; sellTax = sDaoTax.add(sTeamTax).add(sLiquidityTax); emit TaxUpdated(sellTax); } function _transfer( address sender, address recipient, uint256 amount ) internal virtual override { uint256 taxAmount; if(whitelistedAddress[sender] || whitelistedAddress[recipient]){ super._transfer(sender,recipient,amount); } else { require( balanceOf(recipient).add(amount) <= maxWalletSize, "MAX WALLET SIZE EXCEEDED" ); if (recipient == uniswapV2Pair){ taxAmount = takeTransactionTax(sender, amount, true); } else if (sender == uniswapV2Pair){ taxAmount = takeTransactionTax(sender, amount, false); } super._transfer(sender, recipient, amount.sub(taxAmount)); } } function takeTransactionTax(address from, uint256 amountToken, bool sell) internal returns(uint256) { uint256 daoTax; uint256 teamTax; uint256 liquidityTax; if (sell) { daoTax = amountToken.mul(sDaoTax).div(100); teamTax = amountToken.mul(sTeamTax).div(100); liquidityTax = amountToken.mul(sLiquidityTax).div(100); } else { daoTax = amountToken.mul(bDaoTax).div(100); teamTax = amountToken.mul(bTeamTax).div(100); liquidityTax = amountToken.mul(bLiquidityTax).div(100); } uint256 totalPaid = daoTax.add(teamTax).add(liquidityTax); super._transfer(from, treasuryWallet, totalPaid); emit TaxPaid(totalPaid); return totalPaid; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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; } _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; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // 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.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; }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
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; }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // 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; } }
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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"initialHolder","type":"address"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint256[]","name":"bTax","type":"uint256[]"},{"internalType":"uint256[]","name":"sTax","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"taxAmount","type":"uint256"}],"name":"TaxPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"taxAmount","type":"uint256"}],"name":"TaxUpdated","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"whitelistAccount","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"WhitelistAddressUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bDaoTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bLiquidityTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bTeamTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sDaoTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sLiquidityTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sTeamTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"daoTax","type":"uint256"},{"internalType":"uint256","name":"teamTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"daoTax","type":"uint256"},{"internalType":"uint256","name":"teamTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddr","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pairAddress","type":"address"}],"name":"setUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"}],"name":"setUniswapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelist","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"","type":"address"}],"name":"whitelistedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620038b0380380620038b0833981810160405281019062000037919062000a63565b6040518060400160405280600981526020017f4348414f532044414f00000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4348414f530000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb929190620008b7565b508060049080519060200190620000d4929190620008b7565b505050620000f7620000eb6200057c60201b60201c565b6200058460201b60201c565b6000600560146101000a81548160ff0219169083151502179055506200012484846200064a60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e257600080fd5b505afa158015620001f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021d919062000a37565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073dac17f958d2ee523a2206206994597c13d831ec76040518363ffffffff1660e01b81526004016200026d92919062000b71565b602060405180830381600087803b1580156200028857600080fd5b505af11580156200029d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c3919062000a37565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816000815181106200033e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600c819055508160018151811062000387577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600d8190555081600281518110620003d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600e819055508060008151811062000419577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f819055508060018151811062000462577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160108190555080600281518110620004ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151601181905550620004f2600e54620004de600d54600c546200066560201b62000f8f1790919060201c565b6200066560201b62000f8f1790919060201c565b600a81905550620005316011546200051d601054600f546200066560201b62000f8f1790919060201c565b6200066560201b62000f8f1790919060201c565b600b819055506200056c6064620005586002866200067d60201b62000fa51790919060201c565b6200069560201b62000fbb1790919060201c565b6012819055505050505062000f81565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006618282620006ad60201b62000fd11760201c565b5050565b6000818362000675919062000c68565b905092915050565b600081836200068d919062000cfd565b905092915050565b60008183620006a5919062000cc5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000720576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007179062000b9e565b60405180910390fd5b62000734600083836200082660201b60201c565b806002600082825462000748919062000c68565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200079f919062000c68565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000806919062000be2565b60405180910390a362000822600083836200089660201b60201c565b5050565b6200083e8383836200089b60201b620011311760201c565b6200084e620008a060201b60201c565b1562000891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008889062000bc0565b60405180910390fd5b505050565b505050565b505050565b6000600560149054906101000a900460ff16905090565b828054620008c59062000d9c565b90600052602060002090601f016020900481019282620008e9576000855562000935565b82601f106200090457805160ff191683800117855562000935565b8280016001018555821562000935579182015b828111156200093457825182559160200191906001019062000917565b5b50905062000944919062000948565b5090565b5b808211156200096357600081600090555060010162000949565b5090565b60006200097e620009788462000c28565b62000bff565b905080838252602082019050828560208602820111156200099e57600080fd5b60005b85811015620009d25781620009b7888262000a20565b845260208401935060208301925050600181019050620009a1565b5050509392505050565b600081519050620009ed8162000f4d565b92915050565b600082601f83011262000a0557600080fd5b815162000a1784826020860162000967565b91505092915050565b60008151905062000a318162000f67565b92915050565b60006020828403121562000a4a57600080fd5b600062000a5a84828501620009dc565b91505092915050565b6000806000806080858703121562000a7a57600080fd5b600062000a8a87828801620009dc565b945050602062000a9d8782880162000a20565b935050604085015167ffffffffffffffff81111562000abb57600080fd5b62000ac987828801620009f3565b925050606085015167ffffffffffffffff81111562000ae757600080fd5b62000af587828801620009f3565b91505092959194509250565b62000b0c8162000d5e565b82525050565b600062000b21601f8362000c57565b915062000b2e8262000ed5565b602082019050919050565b600062000b48602a8362000c57565b915062000b558262000efe565b604082019050919050565b62000b6b8162000d92565b82525050565b600060408201905062000b88600083018562000b01565b62000b97602083018462000b01565b9392505050565b6000602082019050818103600083015262000bb98162000b12565b9050919050565b6000602082019050818103600083015262000bdb8162000b39565b9050919050565b600060208201905062000bf9600083018462000b60565b92915050565b600062000c0b62000c1e565b905062000c19828262000dd2565b919050565b6000604051905090565b600067ffffffffffffffff82111562000c465762000c4562000e95565b5b602082029050602081019050919050565b600082825260208201905092915050565b600062000c758262000d92565b915062000c828362000d92565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000cba5762000cb962000e08565b5b828201905092915050565b600062000cd28262000d92565b915062000cdf8362000d92565b92508262000cf25762000cf162000e37565b5b828204905092915050565b600062000d0a8262000d92565b915062000d178362000d92565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d535762000d5262000e08565b5b828202905092915050565b600062000d6b8262000d72565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000db557607f821691505b6020821081141562000dcc5762000dcb62000e66565b5b50919050565b62000ddd8262000ec4565b810181811067ffffffffffffffff8211171562000dff5762000dfe62000e95565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b62000f588162000d5e565b811462000f6457600080fd5b50565b62000f728162000d92565b811462000f7e57600080fd5b50565b61291f8062000f916000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c8063715018a611610125578063a457c2d7116100ad578063cc1776d31161007c578063cc1776d314610621578063d5aed6bf1461063f578063dd62ed3e1461065b578063f2fde38b1461068b578063fca36839146106a75761021c565b8063a457c2d714610575578063a9059cbb146105a5578063bea9849e146105d5578063c30796ab146105f15761021c565b80638f2076fd116100f45780638f2076fd146104e15780638f3fa860146104fd57806395d89b411461051b57806399c8d556146105395780639d7bc720146105575761021c565b8063715018a61461047d578063803db7e1146104875780638da3d4d8146104a55780638da5cb5b146104c35761021c565b80633f914aef116101a85780634f7041a5116101775780634f7041a5146103d95780635c975abb146103f75780635d0044ca146104155780636605bfda1461043157806370a082311461044d5761021c565b80633f914aef146103635780634626402b1461037f578063499764a41461039d57806349bd5a5e146103bb5761021c565b806318160ddd116101ef57806318160ddd146102ab57806321ce72e5146102c957806323b872dd146102e5578063313ce5671461031557806339509351146103335761021c565b80630145e3311461022157806306fdde031461023f578063095ea7b31461025d5780631694505e1461028d575b600080fd5b6102296106c5565b604051610236919061222d565b60405180910390f35b6102476106cb565b604051610254919061204b565b60405180910390f35b61027760048036038101906102729190611caf565b61075d565b6040516102849190612015565b60405180910390f35b610295610780565b6040516102a29190612030565b60405180910390f35b6102b36107a6565b6040516102c0919061222d565b60405180910390f35b6102e360048036038101906102de9190611d14565b6107b0565b005b6102ff60048036038101906102fa9190611c24565b61083c565b60405161030c9190612015565b60405180910390f35b61031d61086b565b60405161032a9190612248565b60405180910390f35b61034d60048036038101906103489190611caf565b610874565b60405161035a9190612015565b60405180910390f35b61037d60048036038101906103789190611c73565b6108ab565b005b6103876109b7565b6040516103949190611fd1565b60405180910390f35b6103a56109dd565b6040516103b2919061222d565b60405180910390f35b6103c36109e3565b6040516103d09190611fd1565b60405180910390f35b6103e1610a09565b6040516103ee919061222d565b60405180910390f35b6103ff610a0f565b60405161040c9190612015565b60405180910390f35b61042f600480360381019061042a9190611ceb565b610a26565b005b61044b60048036038101906104469190611bbf565b610a38565b005b61046760048036038101906104629190611bbf565b610a84565b604051610474919061222d565b60405180910390f35b610485610acc565b005b61048f610ae0565b60405161049c919061222d565b60405180910390f35b6104ad610ae6565b6040516104ba919061222d565b60405180910390f35b6104cb610aec565b6040516104d89190611fd1565b60405180910390f35b6104fb60048036038101906104f69190611d14565b610b16565b005b610505610ba2565b604051610512919061222d565b60405180910390f35b610523610ba8565b604051610530919061204b565b60405180910390f35b610541610c3a565b60405161054e919061222d565b60405180910390f35b61055f610c40565b60405161056c919061222d565b60405180910390f35b61058f600480360381019061058a9190611caf565b610c46565b60405161059c9190612015565b60405180910390f35b6105bf60048036038101906105ba9190611caf565b610cbd565b6040516105cc9190612015565b60405180910390f35b6105ef60048036038101906105ea9190611bbf565b610ce0565b005b61060b60048036038101906106069190611bbf565b610d9c565b6040516106189190612015565b60405180910390f35b610629610dbc565b604051610636919061222d565b60405180910390f35b61065960048036038101906106549190611bbf565b610dc2565b005b61067560048036038101906106709190611be8565b610e7e565b604051610682919061222d565b60405180910390f35b6106a560048036038101906106a09190611bbf565b610f05565b005b6106af610f89565b6040516106bc919061222d565b60405180910390f35b600e5481565b6060600380546106da90612440565b80601f016020809104026020016040519081016040528092919081815260200182805461070690612440565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b600080610768611136565b905061077581858561113e565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6107b8611309565b82600c8190555081600d8190555080600e819055506107f8600e546107ea600d54600c54610f8f90919063ffffffff16565b610f8f90919063ffffffff16565b600a819055507f35ad15e7f5e4a16b548e8916bd02c51847dde8d106f334b4edaaacf140e43c91600a5460405161082f919061222d565b60405180910390a1505050565b600080610847611136565b9050610854858285611387565b61085f858585611413565b60019150509392505050565b60006012905090565b60008061087f611136565b90506108a08185856108918589610e7e565b61089b919061227f565b61113e565b600191505092915050565b6108b3611309565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a9061212d565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fc03feb136ee85ef1974671b8c663f063c37bc61afb187b94ddfb1a959d73d18082826040516109ab929190611fec565b60405180910390a15050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b6000600560149054906101000a900460ff16905090565b610a2e611309565b8060128190555050565b610a40611309565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ad4611309565b610ade600061161d565b565b60115481565b60105481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610b1e611309565b82600f819055508160108190555080601181905550610b5e601154610b50601054600f54610f8f90919063ffffffff16565b610f8f90919063ffffffff16565b600b819055507f35ad15e7f5e4a16b548e8916bd02c51847dde8d106f334b4edaaacf140e43c91600b54604051610b95919061222d565b60405180910390a1505050565b60125481565b606060048054610bb790612440565b80601f0160208091040260200160405190810160405280929190818152602001828054610be390612440565b8015610c305780601f10610c0557610100808354040283529160200191610c30565b820191906000526020600020905b815481529060010190602001808311610c1357829003601f168201915b5050505050905090565b60095481565b600c5481565b600080610c51611136565b90506000610c5f8286610e7e565b905083811015610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b906121cd565b60405180910390fd5b610cb1828686840361113e565b60019250505092915050565b600080610cc8611136565b9050610cd5818585611413565b600191505092915050565b610ce8611309565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f9061210d565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b600b5481565b610dca611309565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e319061210d565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f0d611309565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f749061208d565b60405180910390fd5b610f868161161d565b50565b600d5481565b60008183610f9d919061227f565b905092915050565b60008183610fb39190612306565b905092915050565b60008183610fc991906122d5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611038906121ed565b60405180910390fd5b61104d600083836116e3565b806002600082825461105f919061227f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110b4919061227f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611119919061222d565b60405180910390a361112d6000838361173b565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a5906121ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611215906120ad565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112fc919061222d565b60405180910390a3505050565b611311611136565b73ffffffffffffffffffffffffffffffffffffffff1661132f610aec565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c9061214d565b60405180910390fd5b565b60006113938484610e7e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461140d57818110156113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f6906120cd565b60405180910390fd5b61140c848484840361113e565b5b50505050565b6000601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114b65750601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156114cb576114c6848484611740565b611617565b6012546114e9836114db86610a84565b610f8f90919063ffffffff16565b111561152a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115219061216d565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115935761158c848360016119c1565b90506115f9565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115f8576115f5848360006119c1565b90505b5b61161684846116118486611b6a90919063ffffffff16565b611740565b5b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116ee838383611131565b6116f6610a0f565b15611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d9061220d565b60405180910390fd5b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a79061218d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118179061206d565b60405180910390fd5b61182b8383836116e3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a8906120ed565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611944919061227f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119a8919061222d565b60405180910390a36119bb84848461173b565b50505050565b6000806000808415611a50576119f560646119e7600f5489610fa590919063ffffffff16565b610fbb90919063ffffffff16565b9250611a1f6064611a1160105489610fa590919063ffffffff16565b610fbb90919063ffffffff16565b9150611a496064611a3b60115489610fa590919063ffffffff16565b610fbb90919063ffffffff16565b9050611acf565b611a786064611a6a600c5489610fa590919063ffffffff16565b610fbb90919063ffffffff16565b9250611aa26064611a94600d5489610fa590919063ffffffff16565b610fbb90919063ffffffff16565b9150611acc6064611abe600e5489610fa590919063ffffffff16565b610fbb90919063ffffffff16565b90505b6000611af682611ae88587610f8f90919063ffffffff16565b610f8f90919063ffffffff16565b9050611b2588600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611740565b7ff6bddbc174aff41263fcf1df8b4dcce8c93008e7a700ea6fa713a07f2e41e63281604051611b54919061222d565b60405180910390a1809450505050509392505050565b60008183611b789190612360565b905092915050565b600081359050611b8f816128a4565b92915050565b600081359050611ba4816128bb565b92915050565b600081359050611bb9816128d2565b92915050565b600060208284031215611bd157600080fd5b6000611bdf84828501611b80565b91505092915050565b60008060408385031215611bfb57600080fd5b6000611c0985828601611b80565b9250506020611c1a85828601611b80565b9150509250929050565b600080600060608486031215611c3957600080fd5b6000611c4786828701611b80565b9350506020611c5886828701611b80565b9250506040611c6986828701611baa565b9150509250925092565b60008060408385031215611c8657600080fd5b6000611c9485828601611b80565b9250506020611ca585828601611b95565b9150509250929050565b60008060408385031215611cc257600080fd5b6000611cd085828601611b80565b9250506020611ce185828601611baa565b9150509250929050565b600060208284031215611cfd57600080fd5b6000611d0b84828501611baa565b91505092915050565b600080600060608486031215611d2957600080fd5b6000611d3786828701611baa565b9350506020611d4886828701611baa565b9250506040611d5986828701611baa565b9150509250925092565b611d6c81612394565b82525050565b611d7b816123a6565b82525050565b611d8a816123e9565b82525050565b6000611d9b82612263565b611da5818561226e565b9350611db581856020860161240d565b611dbe816124ff565b840191505092915050565b6000611dd660238361226e565b9150611de182612510565b604082019050919050565b6000611df960268361226e565b9150611e048261255f565b604082019050919050565b6000611e1c60228361226e565b9150611e27826125ae565b604082019050919050565b6000611e3f601d8361226e565b9150611e4a826125fd565b602082019050919050565b6000611e6260268361226e565b9150611e6d82612626565b604082019050919050565b6000611e8560058361226e565b9150611e9082612675565b602082019050919050565b6000611ea860218361226e565b9150611eb38261269e565b604082019050919050565b6000611ecb60208361226e565b9150611ed6826126ed565b602082019050919050565b6000611eee60188361226e565b9150611ef982612716565b602082019050919050565b6000611f1160258361226e565b9150611f1c8261273f565b604082019050919050565b6000611f3460248361226e565b9150611f3f8261278e565b604082019050919050565b6000611f5760258361226e565b9150611f62826127dd565b604082019050919050565b6000611f7a601f8361226e565b9150611f858261282c565b602082019050919050565b6000611f9d602a8361226e565b9150611fa882612855565b604082019050919050565b611fbc816123d2565b82525050565b611fcb816123dc565b82525050565b6000602082019050611fe66000830184611d63565b92915050565b60006040820190506120016000830185611d63565b61200e6020830184611d72565b9392505050565b600060208201905061202a6000830184611d72565b92915050565b60006020820190506120456000830184611d81565b92915050565b600060208201905081810360008301526120658184611d90565b905092915050565b6000602082019050818103600083015261208681611dc9565b9050919050565b600060208201905081810360008301526120a681611dec565b9050919050565b600060208201905081810360008301526120c681611e0f565b9050919050565b600060208201905081810360008301526120e681611e32565b9050919050565b6000602082019050818103600083015261210681611e55565b9050919050565b6000602082019050818103600083015261212681611e78565b9050919050565b6000602082019050818103600083015261214681611e9b565b9050919050565b6000602082019050818103600083015261216681611ebe565b9050919050565b6000602082019050818103600083015261218681611ee1565b9050919050565b600060208201905081810360008301526121a681611f04565b9050919050565b600060208201905081810360008301526121c681611f27565b9050919050565b600060208201905081810360008301526121e681611f4a565b9050919050565b6000602082019050818103600083015261220681611f6d565b9050919050565b6000602082019050818103600083015261222681611f90565b9050919050565b60006020820190506122426000830184611fb3565b92915050565b600060208201905061225d6000830184611fc2565b92915050565b600081519050919050565b600082825260208201905092915050565b600061228a826123d2565b9150612295836123d2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122ca576122c9612472565b5b828201905092915050565b60006122e0826123d2565b91506122eb836123d2565b9250826122fb576122fa6124a1565b5b828204905092915050565b6000612311826123d2565b915061231c836123d2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561235557612354612472565b5b828202905092915050565b600061236b826123d2565b9150612376836123d2565b92508282101561238957612388612472565b5b828203905092915050565b600061239f826123b2565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006123f4826123fb565b9050919050565b6000612406826123b2565b9050919050565b60005b8381101561242b578082015181840152602081019050612410565b8381111561243a576000848401525b50505050565b6000600282049050600182168061245857607f821691505b6020821081141561246c5761246b6124d0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4552524f52000000000000000000000000000000000000000000000000000000600082015250565b7f73657457686974656c697374416464726573733a205a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d41582057414c4c45542053495a452045584345454445440000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6128ad81612394565b81146128b857600080fd5b50565b6128c4816123a6565b81146128cf57600080fd5b50565b6128db816123d2565b81146128e657600080fd5b5056fea26469706673582212203a04a155bc11c148f6ba011f6b8e1ab34f58f4c185fe02cb8af281090f7ef5ec64736f6c634300080400330000000000000000000000002c4f467123e3515a6618b999b78d4b7619a82868000000000000000000000000000000000000000000011a5820737f00f43400000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000002
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061021c5760003560e01c8063715018a611610125578063a457c2d7116100ad578063cc1776d31161007c578063cc1776d314610621578063d5aed6bf1461063f578063dd62ed3e1461065b578063f2fde38b1461068b578063fca36839146106a75761021c565b8063a457c2d714610575578063a9059cbb146105a5578063bea9849e146105d5578063c30796ab146105f15761021c565b80638f2076fd116100f45780638f2076fd146104e15780638f3fa860146104fd57806395d89b411461051b57806399c8d556146105395780639d7bc720146105575761021c565b8063715018a61461047d578063803db7e1146104875780638da3d4d8146104a55780638da5cb5b146104c35761021c565b80633f914aef116101a85780634f7041a5116101775780634f7041a5146103d95780635c975abb146103f75780635d0044ca146104155780636605bfda1461043157806370a082311461044d5761021c565b80633f914aef146103635780634626402b1461037f578063499764a41461039d57806349bd5a5e146103bb5761021c565b806318160ddd116101ef57806318160ddd146102ab57806321ce72e5146102c957806323b872dd146102e5578063313ce5671461031557806339509351146103335761021c565b80630145e3311461022157806306fdde031461023f578063095ea7b31461025d5780631694505e1461028d575b600080fd5b6102296106c5565b604051610236919061222d565b60405180910390f35b6102476106cb565b604051610254919061204b565b60405180910390f35b61027760048036038101906102729190611caf565b61075d565b6040516102849190612015565b60405180910390f35b610295610780565b6040516102a29190612030565b60405180910390f35b6102b36107a6565b6040516102c0919061222d565b60405180910390f35b6102e360048036038101906102de9190611d14565b6107b0565b005b6102ff60048036038101906102fa9190611c24565b61083c565b60405161030c9190612015565b60405180910390f35b61031d61086b565b60405161032a9190612248565b60405180910390f35b61034d60048036038101906103489190611caf565b610874565b60405161035a9190612015565b60405180910390f35b61037d60048036038101906103789190611c73565b6108ab565b005b6103876109b7565b6040516103949190611fd1565b60405180910390f35b6103a56109dd565b6040516103b2919061222d565b60405180910390f35b6103c36109e3565b6040516103d09190611fd1565b60405180910390f35b6103e1610a09565b6040516103ee919061222d565b60405180910390f35b6103ff610a0f565b60405161040c9190612015565b60405180910390f35b61042f600480360381019061042a9190611ceb565b610a26565b005b61044b60048036038101906104469190611bbf565b610a38565b005b61046760048036038101906104629190611bbf565b610a84565b604051610474919061222d565b60405180910390f35b610485610acc565b005b61048f610ae0565b60405161049c919061222d565b60405180910390f35b6104ad610ae6565b6040516104ba919061222d565b60405180910390f35b6104cb610aec565b6040516104d89190611fd1565b60405180910390f35b6104fb60048036038101906104f69190611d14565b610b16565b005b610505610ba2565b604051610512919061222d565b60405180910390f35b610523610ba8565b604051610530919061204b565b60405180910390f35b610541610c3a565b60405161054e919061222d565b60405180910390f35b61055f610c40565b60405161056c919061222d565b60405180910390f35b61058f600480360381019061058a9190611caf565b610c46565b60405161059c9190612015565b60405180910390f35b6105bf60048036038101906105ba9190611caf565b610cbd565b6040516105cc9190612015565b60405180910390f35b6105ef60048036038101906105ea9190611bbf565b610ce0565b005b61060b60048036038101906106069190611bbf565b610d9c565b6040516106189190612015565b60405180910390f35b610629610dbc565b604051610636919061222d565b60405180910390f35b61065960048036038101906106549190611bbf565b610dc2565b005b61067560048036038101906106709190611be8565b610e7e565b604051610682919061222d565b60405180910390f35b6106a560048036038101906106a09190611bbf565b610f05565b005b6106af610f89565b6040516106bc919061222d565b60405180910390f35b600e5481565b6060600380546106da90612440565b80601f016020809104026020016040519081016040528092919081815260200182805461070690612440565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b600080610768611136565b905061077581858561113e565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6107b8611309565b82600c8190555081600d8190555080600e819055506107f8600e546107ea600d54600c54610f8f90919063ffffffff16565b610f8f90919063ffffffff16565b600a819055507f35ad15e7f5e4a16b548e8916bd02c51847dde8d106f334b4edaaacf140e43c91600a5460405161082f919061222d565b60405180910390a1505050565b600080610847611136565b9050610854858285611387565b61085f858585611413565b60019150509392505050565b60006012905090565b60008061087f611136565b90506108a08185856108918589610e7e565b61089b919061227f565b61113e565b600191505092915050565b6108b3611309565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a9061212d565b60405180910390fd5b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fc03feb136ee85ef1974671b8c663f063c37bc61afb187b94ddfb1a959d73d18082826040516109ab929190611fec565b60405180910390a15050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b6000600560149054906101000a900460ff16905090565b610a2e611309565b8060128190555050565b610a40611309565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ad4611309565b610ade600061161d565b565b60115481565b60105481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610b1e611309565b82600f819055508160108190555080601181905550610b5e601154610b50601054600f54610f8f90919063ffffffff16565b610f8f90919063ffffffff16565b600b819055507f35ad15e7f5e4a16b548e8916bd02c51847dde8d106f334b4edaaacf140e43c91600b54604051610b95919061222d565b60405180910390a1505050565b60125481565b606060048054610bb790612440565b80601f0160208091040260200160405190810160405280929190818152602001828054610be390612440565b8015610c305780601f10610c0557610100808354040283529160200191610c30565b820191906000526020600020905b815481529060010190602001808311610c1357829003601f168201915b5050505050905090565b60095481565b600c5481565b600080610c51611136565b90506000610c5f8286610e7e565b905083811015610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b906121cd565b60405180910390fd5b610cb1828686840361113e565b60019250505092915050565b600080610cc8611136565b9050610cd5818585611413565b600191505092915050565b610ce8611309565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f9061210d565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b600b5481565b610dca611309565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e319061210d565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f0d611309565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f749061208d565b60405180910390fd5b610f868161161d565b50565b600d5481565b60008183610f9d919061227f565b905092915050565b60008183610fb39190612306565b905092915050565b60008183610fc991906122d5565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611038906121ed565b60405180910390fd5b61104d600083836116e3565b806002600082825461105f919061227f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110b4919061227f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611119919061222d565b60405180910390a361112d6000838361173b565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a5906121ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611215906120ad565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112fc919061222d565b60405180910390a3505050565b611311611136565b73ffffffffffffffffffffffffffffffffffffffff1661132f610aec565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c9061214d565b60405180910390fd5b565b60006113938484610e7e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461140d57818110156113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f6906120cd565b60405180910390fd5b61140c848484840361113e565b5b50505050565b6000601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114b65750601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156114cb576114c6848484611740565b611617565b6012546114e9836114db86610a84565b610f8f90919063ffffffff16565b111561152a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115219061216d565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115935761158c848360016119c1565b90506115f9565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115f8576115f5848360006119c1565b90505b5b61161684846116118486611b6a90919063ffffffff16565b611740565b5b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116ee838383611131565b6116f6610a0f565b15611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d9061220d565b60405180910390fd5b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a79061218d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611820576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118179061206d565b60405180910390fd5b61182b8383836116e3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a8906120ed565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611944919061227f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119a8919061222d565b60405180910390a36119bb84848461173b565b50505050565b6000806000808415611a50576119f560646119e7600f5489610fa590919063ffffffff16565b610fbb90919063ffffffff16565b9250611a1f6064611a1160105489610fa590919063ffffffff16565b610fbb90919063ffffffff16565b9150611a496064611a3b60115489610fa590919063ffffffff16565b610fbb90919063ffffffff16565b9050611acf565b611a786064611a6a600c5489610fa590919063ffffffff16565b610fbb90919063ffffffff16565b9250611aa26064611a94600d5489610fa590919063ffffffff16565b610fbb90919063ffffffff16565b9150611acc6064611abe600e5489610fa590919063ffffffff16565b610fbb90919063ffffffff16565b90505b6000611af682611ae88587610f8f90919063ffffffff16565b610f8f90919063ffffffff16565b9050611b2588600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611740565b7ff6bddbc174aff41263fcf1df8b4dcce8c93008e7a700ea6fa713a07f2e41e63281604051611b54919061222d565b60405180910390a1809450505050509392505050565b60008183611b789190612360565b905092915050565b600081359050611b8f816128a4565b92915050565b600081359050611ba4816128bb565b92915050565b600081359050611bb9816128d2565b92915050565b600060208284031215611bd157600080fd5b6000611bdf84828501611b80565b91505092915050565b60008060408385031215611bfb57600080fd5b6000611c0985828601611b80565b9250506020611c1a85828601611b80565b9150509250929050565b600080600060608486031215611c3957600080fd5b6000611c4786828701611b80565b9350506020611c5886828701611b80565b9250506040611c6986828701611baa565b9150509250925092565b60008060408385031215611c8657600080fd5b6000611c9485828601611b80565b9250506020611ca585828601611b95565b9150509250929050565b60008060408385031215611cc257600080fd5b6000611cd085828601611b80565b9250506020611ce185828601611baa565b9150509250929050565b600060208284031215611cfd57600080fd5b6000611d0b84828501611baa565b91505092915050565b600080600060608486031215611d2957600080fd5b6000611d3786828701611baa565b9350506020611d4886828701611baa565b9250506040611d5986828701611baa565b9150509250925092565b611d6c81612394565b82525050565b611d7b816123a6565b82525050565b611d8a816123e9565b82525050565b6000611d9b82612263565b611da5818561226e565b9350611db581856020860161240d565b611dbe816124ff565b840191505092915050565b6000611dd660238361226e565b9150611de182612510565b604082019050919050565b6000611df960268361226e565b9150611e048261255f565b604082019050919050565b6000611e1c60228361226e565b9150611e27826125ae565b604082019050919050565b6000611e3f601d8361226e565b9150611e4a826125fd565b602082019050919050565b6000611e6260268361226e565b9150611e6d82612626565b604082019050919050565b6000611e8560058361226e565b9150611e9082612675565b602082019050919050565b6000611ea860218361226e565b9150611eb38261269e565b604082019050919050565b6000611ecb60208361226e565b9150611ed6826126ed565b602082019050919050565b6000611eee60188361226e565b9150611ef982612716565b602082019050919050565b6000611f1160258361226e565b9150611f1c8261273f565b604082019050919050565b6000611f3460248361226e565b9150611f3f8261278e565b604082019050919050565b6000611f5760258361226e565b9150611f62826127dd565b604082019050919050565b6000611f7a601f8361226e565b9150611f858261282c565b602082019050919050565b6000611f9d602a8361226e565b9150611fa882612855565b604082019050919050565b611fbc816123d2565b82525050565b611fcb816123dc565b82525050565b6000602082019050611fe66000830184611d63565b92915050565b60006040820190506120016000830185611d63565b61200e6020830184611d72565b9392505050565b600060208201905061202a6000830184611d72565b92915050565b60006020820190506120456000830184611d81565b92915050565b600060208201905081810360008301526120658184611d90565b905092915050565b6000602082019050818103600083015261208681611dc9565b9050919050565b600060208201905081810360008301526120a681611dec565b9050919050565b600060208201905081810360008301526120c681611e0f565b9050919050565b600060208201905081810360008301526120e681611e32565b9050919050565b6000602082019050818103600083015261210681611e55565b9050919050565b6000602082019050818103600083015261212681611e78565b9050919050565b6000602082019050818103600083015261214681611e9b565b9050919050565b6000602082019050818103600083015261216681611ebe565b9050919050565b6000602082019050818103600083015261218681611ee1565b9050919050565b600060208201905081810360008301526121a681611f04565b9050919050565b600060208201905081810360008301526121c681611f27565b9050919050565b600060208201905081810360008301526121e681611f4a565b9050919050565b6000602082019050818103600083015261220681611f6d565b9050919050565b6000602082019050818103600083015261222681611f90565b9050919050565b60006020820190506122426000830184611fb3565b92915050565b600060208201905061225d6000830184611fc2565b92915050565b600081519050919050565b600082825260208201905092915050565b600061228a826123d2565b9150612295836123d2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122ca576122c9612472565b5b828201905092915050565b60006122e0826123d2565b91506122eb836123d2565b9250826122fb576122fa6124a1565b5b828204905092915050565b6000612311826123d2565b915061231c836123d2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561235557612354612472565b5b828202905092915050565b600061236b826123d2565b9150612376836123d2565b92508282101561238957612388612472565b5b828203905092915050565b600061239f826123b2565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006123f4826123fb565b9050919050565b6000612406826123b2565b9050919050565b60005b8381101561242b578082015181840152602081019050612410565b8381111561243a576000848401525b50505050565b6000600282049050600182168061245857607f821691505b6020821081141561246c5761246b6124d0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4552524f52000000000000000000000000000000000000000000000000000000600082015250565b7f73657457686974656c697374416464726573733a205a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d41582057414c4c45542053495a452045584345454445440000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6128ad81612394565b81146128b857600080fd5b50565b6128c4816123a6565b81146128cf57600080fd5b50565b6128db816123d2565b81146128e657600080fd5b5056fea26469706673582212203a04a155bc11c148f6ba011f6b8e1ab34f58f4c185fe02cb8af281090f7ef5ec64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002c4f467123e3515a6618b999b78d4b7619a82868000000000000000000000000000000000000000000011a5820737f00f43400000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000002
-----Decoded View---------------
Arg [0] : initialHolder (address): 0x2C4f467123E3515A6618B999b78D4b7619a82868
Arg [1] : initialSupply (uint256): 1333333000000000000000000
Arg [2] : bTax (uint256[]): 2,2,2
Arg [3] : sTax (uint256[]): 2,3,2
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000002c4f467123e3515a6618b999b78d4b7619a82868
Arg [1] : 000000000000000000000000000000000000000000011a5820737f00f4340000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.