ERC-20
Overview
Max Total Supply
100 taxarb1
Holders
5
Total Transfers
-
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
taxarb1
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./interfaces/IFeeHandler.sol"; /** * @dev Implementation of an ERC20 token with buy and sell taxes, integrated with Uniswap V2. */ contract taxarb1 is ERC20, Ownable { string public constant randomizer = "5sblmg"; // FeeHandler IFeeHandler public feeHandler = IFeeHandler(0x6649c6035d74B4E6f45eB79889BCDd7556bFEF70); address public constant DEV_ENTITY = 0xB46022e173378566D9aE421f2B84BC2dad332E09; uint256 public constant FEE = 2; // Fee 0.2% for dev entity uint256 public buyTaxRate; // Buy tax rate uint256 public sellTaxRate; // Sell tax rate uint8 public constant VERSION = 2; bool public taxPaused = false; // Tax is active by default address public feeReceiver; // Address to receive fees IUniswapV2Router02 public uniswapRouter; mapping(address => bool) public isWhitelisted; mapping(address => bool) public isBlacklisted; mapping(address => bool) public isUniswapV2Pair; // Mapping to track valid Uniswap pairs event WhitelistUpdated(address indexed account, bool isWhitelisted); event PairUpdated(address indexed pair, bool isAdded); // Consolidated event event BlacklistUpdated(address indexed account, bool isBlacklisted); event TaxPaused(bool isPaused); event TaxRatesUpdated(uint256 newBuyTaxRate, uint256 newSellTaxRate); event FeeReceiverUpdated(address indexed newFeeReceiver); /** * @dev Emitted when the contract is deployed. */ event DeployedContract(address indexed contractAddress, uint8 version); /** * @dev Constructor that initializes the token with name, symbol, tax rates, initial supply, and Uniswap router address. * * Requirements: * - `buyTax` and `sellTax` must be less than or equal to 25%. * - `msg.value` must be at least the required fee from FeeHandler. * * @param name The name of the token. * @param symbol The symbol of the token. * @param buyTax The initial buy tax rate. * @param sellTax The initial sell tax rate. * @param supply The initial token supply. * @param _routerAddress The address of the Uniswap V2 router. * @param _feeReceiver The address to receive fees. */ constructor( string memory name, string memory symbol, uint256 buyTax, uint256 sellTax, uint256 supply, address _routerAddress, address _feeReceiver ) payable ERC20(name, symbol) Ownable(msg.sender) { require(buyTax <= 25 && sellTax <= 25, "Tax rates must be less than or equal to 25%"); uint256 requiredFee = feeHandler.getFee(VERSION); require(msg.value >= requiredFee, "Insufficient fee"); require(_feeReceiver != address(0), "Fee receiver cannot be zero address"); buyTaxRate = buyTax; sellTaxRate = sellTax; uniswapRouter = IUniswapV2Router02(_routerAddress); feeReceiver = _feeReceiver; // Create initial Uniswap V2 pair address uniswapPair = IUniswapV2Factory(uniswapRouter.factory()) .createPair(address(this), uniswapRouter.WETH()); isUniswapV2Pair[uniswapPair] = true; payable(DEV_ENTITY).transfer(msg.value); uint8 decimals = decimals(); uint256 _supply = supply * (10**decimals); uint256 devValue = (_supply * FEE) / 1000; _mint(DEV_ENTITY, devValue); _mint(msg.sender, _supply - devValue); // Emit the DeployedContract event emit DeployedContract(address(this), VERSION); // Emit Pair Added emit PairUpdated(uniswapPair, true); // Emit Tax rates updated emit TaxRatesUpdated(buyTax, sellTax); // Emit Fee receiver set emit FeeReceiverUpdated(_feeReceiver); } /** * @dev Updates the whitelist status of an account. * * @param account The account to be updated. * @param _isWhitelisted The new whitelist status. */ function updateWhitelist(address account, bool _isWhitelisted) public onlyOwner { isWhitelisted[account] = _isWhitelisted; emit WhitelistUpdated(account, _isWhitelisted); } /** * @dev Updates the blacklist status of an account. * * @param account The account to be updated. * @param _isBlacklisted The new blacklist status. */ function updateBlacklist(address account, bool _isBlacklisted) public onlyOwner { isBlacklisted[account] = _isBlacklisted; emit BlacklistUpdated(account, _isBlacklisted); } /** * @dev Pauses or unpauses the application of tax on transactions. * * @param _status The new paused status. */ function pauseTax(bool _status) public onlyOwner { taxPaused = _status; emit TaxPaused(_status); } /** * @dev Updates the buy and sell tax rates. The new rates must be less than or equal to the current rates. * * @param newBuyTaxRate The new buy tax rate. * @param newSellTaxRate The new sell tax rate. */ function updateTaxRates(uint256 newBuyTaxRate, uint256 newSellTaxRate) public onlyOwner { require(newBuyTaxRate <= buyTaxRate && newSellTaxRate <= sellTaxRate, "Tax rates can only be decreased"); buyTaxRate = newBuyTaxRate; sellTaxRate = newSellTaxRate; emit TaxRatesUpdated(newBuyTaxRate, newSellTaxRate); } /** * @dev Updates the fee receiver address. * * @param newFeeReceiver The new address to receive fees. */ function updateFeeReceiver(address newFeeReceiver) public onlyOwner { require(newFeeReceiver != address(0), "Fee receiver cannot be zero address"); feeReceiver = newFeeReceiver; emit FeeReceiverUpdated(newFeeReceiver); } /** * @dev Internal function to handle _update with tax logic. * * @param from The address from which tokens are transferred. * @param to The address to which tokens are transferred. * @param amount The amount of tokens to be transferred. */ function _update(address from, address to, uint256 amount) internal override { require(!isBlacklisted[from] && !isBlacklisted[to], "SecuredToken: blacklisted address"); address currentOwner = owner(); // Check if tax should be applied bool applyTax = !taxPaused && from != currentOwner && to != currentOwner && !isWhitelisted[from] && !isWhitelisted[to]; if (applyTax) { uint256 taxAmount = 0; // Determine if the transaction is a sell or buy to apply the correct tax rate if (isUniswapV2Pair[to]) { // Sell transaction taxAmount = (amount * sellTaxRate) / 100; } else if (isUniswapV2Pair[from]) { // Buy transaction taxAmount = (amount * buyTaxRate) / 100; } uint256 amountAfterTax = amount - taxAmount; // Transfer the tax amount to the fee receiver super._update(from, feeReceiver, taxAmount); // Transfer the remaining amount to the recipient super._update(from, to, amountAfterTax); } else { // Perform the transfer without applying any tax super._update(from, to, amount); } } /** * @dev Add or remove a Uniswap V2 pair to/from being taxed. * * @param pair The address of the Uniswap V2 pair. * @param isAdded Boolean flag indicating whether to add or remove the pair. */ function updatePair(address pair, bool isAdded) public onlyOwner { if (isAdded) { require(!isUniswapV2Pair[pair], "Pair already added"); isUniswapV2Pair[pair] = true; } else { require(isUniswapV2Pair[pair], "Pair not added"); isUniswapV2Pair[pair] = false; } emit PairUpdated(pair, isAdded); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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 v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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 (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); 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(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; interface IFeeHandler { // Event emitted when a fee is updated event FeeUpdated(uint8 version, uint256 newFee); /** * @dev Set or update the fee for a specific contract version * @param _version The contract version * @param _fee The fee amount in wei */ function setFee(uint8 _version, uint256 _fee) external; /** * @dev Get the fee for a specific contract version * @param _version The contract version * @return The fee amount in wei */ function getFee(uint8 _version) external view returns (uint256); /** * @dev Get the fee for a specific contract version * @param _version The contract version * @return The fee amount in wei */ function feesByVersion(uint8 _version) external view returns (uint256); }
{ "evmVersion": "paris", "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":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"buyTax","type":"uint256"},{"internalType":"uint256","name":"sellTax","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"address","name":"_routerAddress","type":"address"},{"internalType":"address","name":"_feeReceiver","type":"address"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"BlacklistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"DeployedContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newFeeReceiver","type":"address"}],"name":"FeeReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"isAdded","type":"bool"}],"name":"PairUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isPaused","type":"bool"}],"name":"TaxPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newBuyTaxRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellTaxRate","type":"uint256"}],"name":"TaxRatesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"WhitelistUpdated","type":"event"},{"inputs":[],"name":"DEV_ENTITY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeHandler","outputs":[{"internalType":"contract IFeeHandler","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isUniswapV2Pair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"pauseTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"randomizer","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"value","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":"value","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":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"_isBlacklisted","type":"bool"}],"name":"updateBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver","type":"address"}],"name":"updateFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isAdded","type":"bool"}],"name":"updatePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTaxRate","type":"uint256"},{"internalType":"uint256","name":"newSellTaxRate","type":"uint256"}],"name":"updateTaxRates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"_isWhitelisted","type":"bool"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052736649c6035d74b4e6f45eb79889bcdd7556bfef70600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600960006101000a81548160ff0219169083151502179055506040516200402338038062004023833981810160405281019062000099919062001147565b3387878160039081620000ad919062001479565b508060049081620000bf919062001479565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001375760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200012e919062001571565b60405180910390fd5b6200014881620007ba60201b60201c565b50601985111580156200015c575060198411155b6200019e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001959062001615565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663083132c460026040518263ffffffff1660e01b8152600401620001fe919062001655565b602060405180830381865afa1580156200021c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000242919062001672565b9050803410156200028a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028190620016f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f3906200178c565b60405180910390fd5b856007819055508460088190555082600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003fc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004229190620017ae565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004ac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004d29190620017ae565b6040518363ffffffff1660e01b8152600401620004f1929190620017e0565b6020604051808303816000875af115801562000511573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005379190620017ae565b90506001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555073b46022e173378566d9ae421f2b84bc2dad332e0973ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015620005ec573d6000803e3d6000fd5b506000620005ff6200088060201b60201c565b9050600081600a62000612919062001990565b876200061f9190620019e1565b905060006103e8600283620006359190620019e1565b62000641919062001a5b565b90506200066973b46022e173378566d9ae421f2b84bc2dad332e09826200088960201b60201c565b620006883382846200067c919062001a93565b6200088960201b60201c565b3073ffffffffffffffffffffffffffffffffffffffff167ff06f39c7256592e120faf6a2a3824b0ea63a9e95a4c9e64799ff187add0a2a606002604051620006d1919062001655565b60405180910390a28373ffffffffffffffffffffffffffffffffffffffff167fb40229924089a696fab5d90675c48d4ccf43269a56c8c545f5227708acbf4e57600160405162000722919062001aeb565b60405180910390a27f8af72bce83e770654b24f833792771b0c5ecd95a31e17a43d11475b9f0c96aba8a8a6040516200075d92919062001b19565b60405180910390a18573ffffffffffffffffffffffffffffffffffffffff167f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee60405160405180910390a250505050505050505050505062001c73565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008fe5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620008f5919062001571565b60405180910390fd5b62000912600083836200091660201b60201c565b5050565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620009bb5750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b620009fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f49062001bbc565b60405180910390fd5b600062000a0f62000cba60201b60201c565b90506000600960009054906101000a900460ff1615801562000a5d57508173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801562000a9657508173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801562000aed5750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801562000b445750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050801562000c9f576000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562000bc85760646008548562000bb49190620019e1565b62000bc0919062001a5b565b905062000c3d565b600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562000c3c5760646007548562000c2d9190620019e1565b62000c39919062001a5b565b90505b5b6000818562000c4d919062001a93565b905062000c8487600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168462000ce460201b60201c565b62000c9787878362000ce460201b60201c565b505062000cb3565b62000cb285858562000ce460201b60201c565b5b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000d3a57806002600082825462000d2d919062001bde565b9250508190555062000e10565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000dc9578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000dc09392919062001c19565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000e5b578060026000828254039250508190555062000ea8565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000f07919062001c56565b60405180910390a3505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000f7d8262000f32565b810181811067ffffffffffffffff8211171562000f9f5762000f9e62000f43565b5b80604052505050565b600062000fb462000f14565b905062000fc2828262000f72565b919050565b600067ffffffffffffffff82111562000fe55762000fe462000f43565b5b62000ff08262000f32565b9050602081019050919050565b60005b838110156200101d57808201518184015260208101905062001000565b60008484015250505050565b6000620010406200103a8462000fc7565b62000fa8565b9050828152602081018484840111156200105f576200105e62000f2d565b5b6200106c84828562000ffd565b509392505050565b600082601f8301126200108c576200108b62000f28565b5b81516200109e84826020860162001029565b91505092915050565b6000819050919050565b620010bc81620010a7565b8114620010c857600080fd5b50565b600081519050620010dc81620010b1565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200110f82620010e2565b9050919050565b620011218162001102565b81146200112d57600080fd5b50565b600081519050620011418162001116565b92915050565b600080600080600080600060e0888a03121562001169576200116862000f1e565b5b600088015167ffffffffffffffff8111156200118a576200118962000f23565b5b620011988a828b0162001074565b975050602088015167ffffffffffffffff811115620011bc57620011bb62000f23565b5b620011ca8a828b0162001074565b9650506040620011dd8a828b01620010cb565b9550506060620011f08a828b01620010cb565b9450506080620012038a828b01620010cb565b93505060a0620012168a828b0162001130565b92505060c0620012298a828b0162001130565b91505092959891949750929550565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200128b57607f821691505b602082108103620012a157620012a062001243565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200130b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620012cc565b620013178683620012cc565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200135a620013546200134e84620010a7565b6200132f565b620010a7565b9050919050565b6000819050919050565b620013768362001339565b6200138e620013858262001361565b848454620012d9565b825550505050565b600090565b620013a562001396565b620013b28184846200136b565b505050565b5b81811015620013da57620013ce6000826200139b565b600181019050620013b8565b5050565b601f8211156200142957620013f381620012a7565b620013fe84620012bc565b810160208510156200140e578190505b620014266200141d85620012bc565b830182620013b7565b50505b505050565b600082821c905092915050565b60006200144e600019846008026200142e565b1980831691505092915050565b60006200146983836200143b565b9150826002028217905092915050565b620014848262001238565b67ffffffffffffffff811115620014a0576200149f62000f43565b5b620014ac825462001272565b620014b9828285620013de565b600060209050601f831160018114620014f15760008415620014dc578287015190505b620014e885826200145b565b86555062001558565b601f1984166200150186620012a7565b60005b828110156200152b5784890151825560018201915060208501945060208101905062001504565b868310156200154b578489015162001547601f8916826200143b565b8355505b6001600288020188555050505b505050505050565b6200156b8162001102565b82525050565b600060208201905062001588600083018462001560565b92915050565b600082825260208201905092915050565b7f546178207261746573206d757374206265206c657373207468616e206f72206560008201527f7175616c20746f20323525000000000000000000000000000000000000000000602082015250565b6000620015fd602b836200158e565b91506200160a826200159f565b604082019050919050565b600060208201905081810360008301526200163081620015ee565b9050919050565b600060ff82169050919050565b6200164f8162001637565b82525050565b60006020820190506200166c600083018462001644565b92915050565b6000602082840312156200168b576200168a62000f1e565b5b60006200169b84828501620010cb565b91505092915050565b7f496e73756666696369656e742066656500000000000000000000000000000000600082015250565b6000620016dc6010836200158e565b9150620016e982620016a4565b602082019050919050565b600060208201905081810360008301526200170f81620016cd565b9050919050565b7f4665652072656365697665722063616e6e6f74206265207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000620017746023836200158e565b9150620017818262001716565b604082019050919050565b60006020820190508181036000830152620017a78162001765565b9050919050565b600060208284031215620017c757620017c662000f1e565b5b6000620017d78482850162001130565b91505092915050565b6000604082019050620017f7600083018562001560565b62001806602083018462001560565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200189b578086048111156200187357620018726200180d565b5b6001851615620018835780820291505b808102905062001893856200183c565b945062001853565b94509492505050565b600082620018b6576001905062001989565b81620018c6576000905062001989565b8160018114620018df5760028114620018ea5762001920565b600191505062001989565b60ff841115620018ff57620018fe6200180d565b5b8360020a9150848211156200191957620019186200180d565b5b5062001989565b5060208310610133831016604e8410600b84101617156200195a5782820a9050838111156200195457620019536200180d565b5b62001989565b62001969848484600162001849565b925090508184048111156200198357620019826200180d565b5b81810290505b9392505050565b60006200199d82620010a7565b9150620019aa8362001637565b9250620019d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620018a4565b905092915050565b6000620019ee82620010a7565b9150620019fb83620010a7565b925082820262001a0b81620010a7565b9150828204841483151762001a255762001a246200180d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062001a6882620010a7565b915062001a7583620010a7565b92508262001a885762001a8762001a2c565b5b828204905092915050565b600062001aa082620010a7565b915062001aad83620010a7565b925082820390508181111562001ac85762001ac76200180d565b5b92915050565b60008115159050919050565b62001ae58162001ace565b82525050565b600060208201905062001b02600083018462001ada565b92915050565b62001b1381620010a7565b82525050565b600060408201905062001b30600083018562001b08565b62001b3f602083018462001b08565b9392505050565b7f53656375726564546f6b656e3a20626c61636b6c69737465642061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062001ba46021836200158e565b915062001bb18262001b46565b604082019050919050565b6000602082019050818103600083015262001bd78162001b95565b9050919050565b600062001beb82620010a7565b915062001bf883620010a7565b925082820190508082111562001c135762001c126200180d565b5b92915050565b600060608201905062001c30600083018662001560565b62001c3f602083018562001b08565b62001c4e604083018462001b08565b949350505050565b600060208201905062001c6d600083018462001b08565b92915050565b6123a08062001c836000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063735de9f71161010f578063c57981b5116100a2578063f10fb58411610071578063f10fb58414610572578063f2fde38b14610590578063fe575a87146105ac578063ffa1ad74146105dc576101e5565b8063c57981b5146104d8578063c69bebe4146104f6578063c7b122b114610512578063dd62ed3e14610542576101e5565b806395d89b41116100de57806395d89b4114610450578063a9059cbb1461046e578063ab6a8b1c1461049e578063b3f00674146104ba576101e5565b8063735de9f7146103dc57806376c73064146103fa5780638da5cb5b146104165780639155e08314610434576101e5565b8063268f72dd116101875780634b2a3947116101565780634b2a394714610366578063691f224f1461038457806370a08231146103a2578063715018a6146103d2576101e5565b8063268f72dd146102dc578063313ce567146102fa5780633af32abf146103185780633c93adee14610348576101e5565b80630d392cd9116101c35780630d392cd91461025457806318160ddd1461027057806323b872dd1461028e57806324024efd146102be576101e5565b806306fdde03146101ea578063095ea7b3146102085780630bb8e10314610238575b600080fd5b6101f26105fa565b6040516101ff9190611afe565b60405180910390f35b610222600480360381019061021d9190611bb9565b61068c565b60405161022f9190611c14565b60405180910390f35b610252600480360381019061024d9190611c5b565b6106af565b005b61026e60048036038101906102699190611c88565b61070b565b005b6102786107bc565b6040516102859190611cd7565b60405180910390f35b6102a860048036038101906102a39190611cf2565b6107c6565b6040516102b59190611c14565b60405180910390f35b6102c66107f5565b6040516102d39190611cd7565b60405180910390f35b6102e46107fb565b6040516102f19190611c14565b60405180910390f35b61030261080e565b60405161030f9190611d61565b60405180910390f35b610332600480360381019061032d9190611d7c565b610817565b60405161033f9190611c14565b60405180910390f35b610350610837565b60405161035d9190611e08565b60405180910390f35b61036e61085d565b60405161037b9190611e32565b60405180910390f35b61038c610875565b6040516103999190611cd7565b60405180910390f35b6103bc60048036038101906103b79190611d7c565b61087b565b6040516103c99190611cd7565b60405180910390f35b6103da6108c3565b005b6103e46108d7565b6040516103f19190611e6e565b60405180910390f35b610414600480360381019061040f9190611c88565b6108fd565b005b61041e610b2c565b60405161042b9190611e32565b60405180910390f35b61044e60048036038101906104499190611c88565b610b56565b005b610458610c07565b6040516104659190611afe565b60405180910390f35b61048860048036038101906104839190611bb9565b610c99565b6040516104959190611c14565b60405180910390f35b6104b860048036038101906104b39190611e89565b610cbc565b005b6104c2610d62565b6040516104cf9190611e32565b60405180910390f35b6104e0610d88565b6040516104ed9190611cd7565b60405180910390f35b610510600480360381019061050b9190611d7c565b610d8d565b005b61052c60048036038101906105279190611d7c565b610e8b565b6040516105399190611c14565b60405180910390f35b61055c60048036038101906105579190611ec9565b610eab565b6040516105699190611cd7565b60405180910390f35b61057a610f32565b6040516105879190611afe565b60405180910390f35b6105aa60048036038101906105a59190611d7c565b610f6b565b005b6105c660048036038101906105c19190611d7c565b610ff1565b6040516105d39190611c14565b60405180910390f35b6105e4611011565b6040516105f19190611d61565b60405180910390f35b60606003805461060990611f38565b80601f016020809104026020016040519081016040528092919081815260200182805461063590611f38565b80156106825780601f1061065757610100808354040283529160200191610682565b820191906000526020600020905b81548152906001019060200180831161066557829003601f168201915b5050505050905090565b600080610697611016565b90506106a481858561101e565b600191505092915050565b6106b7611030565b80600960006101000a81548160ff0219169083151502179055507fa32873ac8d5b14de8a004b83c19ee1a422f35a4da8b4f7c7cfba001f718116fc816040516107009190611c14565b60405180910390a150565b610713611030565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d826040516107b09190611c14565b60405180910390a25050565b6000600254905090565b6000806107d1611016565b90506107de8582856110b7565b6107e985858561114b565b60019150509392505050565b60085481565b600960009054906101000a900460ff1681565b60006012905090565b600b6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b73b46022e173378566d9ae421f2b84bc2dad332e0981565b60075481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108cb611030565b6108d5600061123f565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610905611030565b80156109f557600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f90611fb5565b60405180910390fd5b6001600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ada565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612021565b60405180910390fd5b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8173ffffffffffffffffffffffffffffffffffffffff167fb40229924089a696fab5d90675c48d4ccf43269a56c8c545f5227708acbf4e5782604051610b209190611c14565b60405180910390a25050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610b5e611030565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac82604051610bfb9190611c14565b60405180910390a25050565b606060048054610c1690611f38565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4290611f38565b8015610c8f5780601f10610c6457610100808354040283529160200191610c8f565b820191906000526020600020905b815481529060010190602001808311610c7257829003601f168201915b5050505050905090565b600080610ca4611016565b9050610cb181858561114b565b600191505092915050565b610cc4611030565b6007548211158015610cd857506008548111155b610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e9061208d565b60405180910390fd5b81600781905550806008819055507f8af72bce83e770654b24f833792771b0c5ecd95a31e17a43d11475b9f0c96aba8282604051610d569291906120ad565b60405180910390a15050565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600281565b610d95611030565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90612148565b60405180910390fd5b80600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee60405160405180910390a250565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6040518060400160405280600681526020017f3573626c6d67000000000000000000000000000000000000000000000000000081525081565b610f73611030565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fe55760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610fdc9190611e32565b60405180910390fd5b610fee8161123f565b50565b600c6020528060005260406000206000915054906101000a900460ff1681565b600281565b600033905090565b61102b8383836001611305565b505050565b611038611016565b73ffffffffffffffffffffffffffffffffffffffff16611056610b2c565b73ffffffffffffffffffffffffffffffffffffffff16146110b557611079611016565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110ac9190611e32565b60405180910390fd5b565b60006110c38484610eab565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111455781811015611135578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161112c93929190612168565b60405180910390fd5b61114484848484036000611305565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111bd5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111b49190611e32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122f5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016112269190611e32565b60405180910390fd5b61123a8383836114dc565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113775760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161136e9190611e32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113e95760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113e09190611e32565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156114d6578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114cd9190611cd7565b60405180910390a35b50505050565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115805750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b690612211565b60405180910390fd5b60006115c9610b2c565b90506000600960009054906101000a900460ff1615801561161657508173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561164e57508173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156116a45750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156116fa5750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b90508015611836576000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611777576064600854856117669190612260565b61177091906122d1565b90506117e7565b600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117e6576064600754856117d99190612260565b6117e391906122d1565b90505b5b600081856117f59190612302565b905061182487600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611849565b61182f878783611849565b5050611842565b611841858585611849565b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361189b57806002600082825461188f9190612336565b9250508190555061196e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611927578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161191e93929190612168565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b75780600260008282540392505081905550611a04565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a619190611cd7565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611aa8578082015181840152602081019050611a8d565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ad082611a6e565b611ada8185611a79565b9350611aea818560208601611a8a565b611af381611ab4565b840191505092915050565b60006020820190508181036000830152611b188184611ac5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b5082611b25565b9050919050565b611b6081611b45565b8114611b6b57600080fd5b50565b600081359050611b7d81611b57565b92915050565b6000819050919050565b611b9681611b83565b8114611ba157600080fd5b50565b600081359050611bb381611b8d565b92915050565b60008060408385031215611bd057611bcf611b20565b5b6000611bde85828601611b6e565b9250506020611bef85828601611ba4565b9150509250929050565b60008115159050919050565b611c0e81611bf9565b82525050565b6000602082019050611c296000830184611c05565b92915050565b611c3881611bf9565b8114611c4357600080fd5b50565b600081359050611c5581611c2f565b92915050565b600060208284031215611c7157611c70611b20565b5b6000611c7f84828501611c46565b91505092915050565b60008060408385031215611c9f57611c9e611b20565b5b6000611cad85828601611b6e565b9250506020611cbe85828601611c46565b9150509250929050565b611cd181611b83565b82525050565b6000602082019050611cec6000830184611cc8565b92915050565b600080600060608486031215611d0b57611d0a611b20565b5b6000611d1986828701611b6e565b9350506020611d2a86828701611b6e565b9250506040611d3b86828701611ba4565b9150509250925092565b600060ff82169050919050565b611d5b81611d45565b82525050565b6000602082019050611d766000830184611d52565b92915050565b600060208284031215611d9257611d91611b20565b5b6000611da084828501611b6e565b91505092915050565b6000819050919050565b6000611dce611dc9611dc484611b25565b611da9565b611b25565b9050919050565b6000611de082611db3565b9050919050565b6000611df282611dd5565b9050919050565b611e0281611de7565b82525050565b6000602082019050611e1d6000830184611df9565b92915050565b611e2c81611b45565b82525050565b6000602082019050611e476000830184611e23565b92915050565b6000611e5882611dd5565b9050919050565b611e6881611e4d565b82525050565b6000602082019050611e836000830184611e5f565b92915050565b60008060408385031215611ea057611e9f611b20565b5b6000611eae85828601611ba4565b9250506020611ebf85828601611ba4565b9150509250929050565b60008060408385031215611ee057611edf611b20565b5b6000611eee85828601611b6e565b9250506020611eff85828601611b6e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f5057607f821691505b602082108103611f6357611f62611f09565b5b50919050565b7f5061697220616c72656164792061646465640000000000000000000000000000600082015250565b6000611f9f601283611a79565b9150611faa82611f69565b602082019050919050565b60006020820190508181036000830152611fce81611f92565b9050919050565b7f50616972206e6f74206164646564000000000000000000000000000000000000600082015250565b600061200b600e83611a79565b915061201682611fd5565b602082019050919050565b6000602082019050818103600083015261203a81611ffe565b9050919050565b7f5461782072617465732063616e206f6e6c792062652064656372656173656400600082015250565b6000612077601f83611a79565b915061208282612041565b602082019050919050565b600060208201905081810360008301526120a68161206a565b9050919050565b60006040820190506120c26000830185611cc8565b6120cf6020830184611cc8565b9392505050565b7f4665652072656365697665722063616e6e6f74206265207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612132602383611a79565b915061213d826120d6565b604082019050919050565b6000602082019050818103600083015261216181612125565b9050919050565b600060608201905061217d6000830186611e23565b61218a6020830185611cc8565b6121976040830184611cc8565b949350505050565b7f53656375726564546f6b656e3a20626c61636b6c69737465642061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006121fb602183611a79565b91506122068261219f565b604082019050919050565b6000602082019050818103600083015261222a816121ee565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061226b82611b83565b915061227683611b83565b925082820261228481611b83565b9150828204841483151761229b5761229a612231565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006122dc82611b83565b91506122e783611b83565b9250826122f7576122f66122a2565b5b828204905092915050565b600061230d82611b83565b915061231883611b83565b92508282039050818111156123305761232f612231565b5b92915050565b600061234182611b83565b915061234c83611b83565b925082820190508082111561236457612363612231565b5b9291505056fea2646970667358221220e710cc3bc5194420f8e55ae6ba780b1e2fddc5d54ead9ffc9ba4c1bd83ff945564736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000640000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad24000000000000000000000000037287a8844835e663c392d7f86eb2dbf2a14a980000000000000000000000000000000000000000000000000000000000000007746178617262310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000077461786172623100000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063735de9f71161010f578063c57981b5116100a2578063f10fb58411610071578063f10fb58414610572578063f2fde38b14610590578063fe575a87146105ac578063ffa1ad74146105dc576101e5565b8063c57981b5146104d8578063c69bebe4146104f6578063c7b122b114610512578063dd62ed3e14610542576101e5565b806395d89b41116100de57806395d89b4114610450578063a9059cbb1461046e578063ab6a8b1c1461049e578063b3f00674146104ba576101e5565b8063735de9f7146103dc57806376c73064146103fa5780638da5cb5b146104165780639155e08314610434576101e5565b8063268f72dd116101875780634b2a3947116101565780634b2a394714610366578063691f224f1461038457806370a08231146103a2578063715018a6146103d2576101e5565b8063268f72dd146102dc578063313ce567146102fa5780633af32abf146103185780633c93adee14610348576101e5565b80630d392cd9116101c35780630d392cd91461025457806318160ddd1461027057806323b872dd1461028e57806324024efd146102be576101e5565b806306fdde03146101ea578063095ea7b3146102085780630bb8e10314610238575b600080fd5b6101f26105fa565b6040516101ff9190611afe565b60405180910390f35b610222600480360381019061021d9190611bb9565b61068c565b60405161022f9190611c14565b60405180910390f35b610252600480360381019061024d9190611c5b565b6106af565b005b61026e60048036038101906102699190611c88565b61070b565b005b6102786107bc565b6040516102859190611cd7565b60405180910390f35b6102a860048036038101906102a39190611cf2565b6107c6565b6040516102b59190611c14565b60405180910390f35b6102c66107f5565b6040516102d39190611cd7565b60405180910390f35b6102e46107fb565b6040516102f19190611c14565b60405180910390f35b61030261080e565b60405161030f9190611d61565b60405180910390f35b610332600480360381019061032d9190611d7c565b610817565b60405161033f9190611c14565b60405180910390f35b610350610837565b60405161035d9190611e08565b60405180910390f35b61036e61085d565b60405161037b9190611e32565b60405180910390f35b61038c610875565b6040516103999190611cd7565b60405180910390f35b6103bc60048036038101906103b79190611d7c565b61087b565b6040516103c99190611cd7565b60405180910390f35b6103da6108c3565b005b6103e46108d7565b6040516103f19190611e6e565b60405180910390f35b610414600480360381019061040f9190611c88565b6108fd565b005b61041e610b2c565b60405161042b9190611e32565b60405180910390f35b61044e60048036038101906104499190611c88565b610b56565b005b610458610c07565b6040516104659190611afe565b60405180910390f35b61048860048036038101906104839190611bb9565b610c99565b6040516104959190611c14565b60405180910390f35b6104b860048036038101906104b39190611e89565b610cbc565b005b6104c2610d62565b6040516104cf9190611e32565b60405180910390f35b6104e0610d88565b6040516104ed9190611cd7565b60405180910390f35b610510600480360381019061050b9190611d7c565b610d8d565b005b61052c60048036038101906105279190611d7c565b610e8b565b6040516105399190611c14565b60405180910390f35b61055c60048036038101906105579190611ec9565b610eab565b6040516105699190611cd7565b60405180910390f35b61057a610f32565b6040516105879190611afe565b60405180910390f35b6105aa60048036038101906105a59190611d7c565b610f6b565b005b6105c660048036038101906105c19190611d7c565b610ff1565b6040516105d39190611c14565b60405180910390f35b6105e4611011565b6040516105f19190611d61565b60405180910390f35b60606003805461060990611f38565b80601f016020809104026020016040519081016040528092919081815260200182805461063590611f38565b80156106825780601f1061065757610100808354040283529160200191610682565b820191906000526020600020905b81548152906001019060200180831161066557829003601f168201915b5050505050905090565b600080610697611016565b90506106a481858561101e565b600191505092915050565b6106b7611030565b80600960006101000a81548160ff0219169083151502179055507fa32873ac8d5b14de8a004b83c19ee1a422f35a4da8b4f7c7cfba001f718116fc816040516107009190611c14565b60405180910390a150565b610713611030565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d826040516107b09190611c14565b60405180910390a25050565b6000600254905090565b6000806107d1611016565b90506107de8582856110b7565b6107e985858561114b565b60019150509392505050565b60085481565b600960009054906101000a900460ff1681565b60006012905090565b600b6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b73b46022e173378566d9ae421f2b84bc2dad332e0981565b60075481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108cb611030565b6108d5600061123f565b565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610905611030565b80156109f557600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098f90611fb5565b60405180910390fd5b6001600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610ada565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612021565b60405180910390fd5b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8173ffffffffffffffffffffffffffffffffffffffff167fb40229924089a696fab5d90675c48d4ccf43269a56c8c545f5227708acbf4e5782604051610b209190611c14565b60405180910390a25050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610b5e611030565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f6a12b3df6cba4203bd7fd06b816789f87de8c594299aed5717ae070fac781bac82604051610bfb9190611c14565b60405180910390a25050565b606060048054610c1690611f38565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4290611f38565b8015610c8f5780601f10610c6457610100808354040283529160200191610c8f565b820191906000526020600020905b815481529060010190602001808311610c7257829003601f168201915b5050505050905090565b600080610ca4611016565b9050610cb181858561114b565b600191505092915050565b610cc4611030565b6007548211158015610cd857506008548111155b610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e9061208d565b60405180910390fd5b81600781905550806008819055507f8af72bce83e770654b24f833792771b0c5ecd95a31e17a43d11475b9f0c96aba8282604051610d569291906120ad565b60405180910390a15050565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600281565b610d95611030565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90612148565b60405180910390fd5b80600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f27aae5db36d94179909d019ae0b1ac7c16d96d953148f63c0f6a0a9c8ead79ee60405160405180910390a250565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6040518060400160405280600681526020017f3573626c6d67000000000000000000000000000000000000000000000000000081525081565b610f73611030565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fe55760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610fdc9190611e32565b60405180910390fd5b610fee8161123f565b50565b600c6020528060005260406000206000915054906101000a900460ff1681565b600281565b600033905090565b61102b8383836001611305565b505050565b611038611016565b73ffffffffffffffffffffffffffffffffffffffff16611056610b2c565b73ffffffffffffffffffffffffffffffffffffffff16146110b557611079611016565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016110ac9190611e32565b60405180910390fd5b565b60006110c38484610eab565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111455781811015611135578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161112c93929190612168565b60405180910390fd5b61114484848484036000611305565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111bd5760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111b49190611e32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361122f5760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016112269190611e32565b60405180910390fd5b61123a8383836114dc565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113775760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161136e9190611e32565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113e95760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113e09190611e32565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156114d6578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114cd9190611cd7565b60405180910390a35b50505050565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115805750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b690612211565b60405180910390fd5b60006115c9610b2c565b90506000600960009054906101000a900460ff1615801561161657508173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561164e57508173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156116a45750600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156116fa5750600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b90508015611836576000600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611777576064600854856117669190612260565b61177091906122d1565b90506117e7565b600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117e6576064600754856117d99190612260565b6117e391906122d1565b90505b5b600081856117f59190612302565b905061182487600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611849565b61182f878783611849565b5050611842565b611841858585611849565b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361189b57806002600082825461188f9190612336565b9250508190555061196e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611927578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161191e93929190612168565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119b75780600260008282540392505081905550611a04565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611a619190611cd7565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611aa8578082015181840152602081019050611a8d565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ad082611a6e565b611ada8185611a79565b9350611aea818560208601611a8a565b611af381611ab4565b840191505092915050565b60006020820190508181036000830152611b188184611ac5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b5082611b25565b9050919050565b611b6081611b45565b8114611b6b57600080fd5b50565b600081359050611b7d81611b57565b92915050565b6000819050919050565b611b9681611b83565b8114611ba157600080fd5b50565b600081359050611bb381611b8d565b92915050565b60008060408385031215611bd057611bcf611b20565b5b6000611bde85828601611b6e565b9250506020611bef85828601611ba4565b9150509250929050565b60008115159050919050565b611c0e81611bf9565b82525050565b6000602082019050611c296000830184611c05565b92915050565b611c3881611bf9565b8114611c4357600080fd5b50565b600081359050611c5581611c2f565b92915050565b600060208284031215611c7157611c70611b20565b5b6000611c7f84828501611c46565b91505092915050565b60008060408385031215611c9f57611c9e611b20565b5b6000611cad85828601611b6e565b9250506020611cbe85828601611c46565b9150509250929050565b611cd181611b83565b82525050565b6000602082019050611cec6000830184611cc8565b92915050565b600080600060608486031215611d0b57611d0a611b20565b5b6000611d1986828701611b6e565b9350506020611d2a86828701611b6e565b9250506040611d3b86828701611ba4565b9150509250925092565b600060ff82169050919050565b611d5b81611d45565b82525050565b6000602082019050611d766000830184611d52565b92915050565b600060208284031215611d9257611d91611b20565b5b6000611da084828501611b6e565b91505092915050565b6000819050919050565b6000611dce611dc9611dc484611b25565b611da9565b611b25565b9050919050565b6000611de082611db3565b9050919050565b6000611df282611dd5565b9050919050565b611e0281611de7565b82525050565b6000602082019050611e1d6000830184611df9565b92915050565b611e2c81611b45565b82525050565b6000602082019050611e476000830184611e23565b92915050565b6000611e5882611dd5565b9050919050565b611e6881611e4d565b82525050565b6000602082019050611e836000830184611e5f565b92915050565b60008060408385031215611ea057611e9f611b20565b5b6000611eae85828601611ba4565b9250506020611ebf85828601611ba4565b9150509250929050565b60008060408385031215611ee057611edf611b20565b5b6000611eee85828601611b6e565b9250506020611eff85828601611b6e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f5057607f821691505b602082108103611f6357611f62611f09565b5b50919050565b7f5061697220616c72656164792061646465640000000000000000000000000000600082015250565b6000611f9f601283611a79565b9150611faa82611f69565b602082019050919050565b60006020820190508181036000830152611fce81611f92565b9050919050565b7f50616972206e6f74206164646564000000000000000000000000000000000000600082015250565b600061200b600e83611a79565b915061201682611fd5565b602082019050919050565b6000602082019050818103600083015261203a81611ffe565b9050919050565b7f5461782072617465732063616e206f6e6c792062652064656372656173656400600082015250565b6000612077601f83611a79565b915061208282612041565b602082019050919050565b600060208201905081810360008301526120a68161206a565b9050919050565b60006040820190506120c26000830185611cc8565b6120cf6020830184611cc8565b9392505050565b7f4665652072656365697665722063616e6e6f74206265207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612132602383611a79565b915061213d826120d6565b604082019050919050565b6000602082019050818103600083015261216181612125565b9050919050565b600060608201905061217d6000830186611e23565b61218a6020830185611cc8565b6121976040830184611cc8565b949350505050565b7f53656375726564546f6b656e3a20626c61636b6c69737465642061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006121fb602183611a79565b91506122068261219f565b604082019050919050565b6000602082019050818103600083015261222a816121ee565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061226b82611b83565b915061227683611b83565b925082820261228481611b83565b9150828204841483151761229b5761229a612231565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006122dc82611b83565b91506122e783611b83565b9250826122f7576122f66122a2565b5b828204905092915050565b600061230d82611b83565b915061231883611b83565b92508282039050818111156123305761232f612231565b5b92915050565b600061234182611b83565b915061234c83611b83565b925082820190508082111561236457612363612231565b5b9291505056fea2646970667358221220e710cc3bc5194420f8e55ae6ba780b1e2fddc5d54ead9ffc9ba4c1bd83ff945564736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000640000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad24000000000000000000000000037287a8844835e663c392d7f86eb2dbf2a14a980000000000000000000000000000000000000000000000000000000000000007746178617262310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000077461786172623100000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): taxarb1
Arg [1] : symbol (string): taxarb1
Arg [2] : buyTax (uint256): 25
Arg [3] : sellTax (uint256): 25
Arg [4] : supply (uint256): 100
Arg [5] : _routerAddress (address): 0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24
Arg [6] : _feeReceiver (address): 0x037287a8844835e663c392d7f86eb2dBF2a14A98
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [5] : 0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad24
Arg [6] : 000000000000000000000000037287a8844835e663c392d7f86eb2dbf2a14a98
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 7461786172623100000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [10] : 7461786172623100000000000000000000000000000000000000000000000000
[ 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.