ERC-20
Overview
Max Total Supply
11,302,023 Truck
Holders
1,311
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,262.563765101261123079 TruckValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Truck
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
london EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.9; import "./base/SwapV2.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract Truck is ERC20, SwapV2{ address public receiver; uint public proportion; uint public constant baseProportion = 10000; constructor(string memory name_, string memory symbol_, uint total, address to, address owner) ERC20(name_, symbol_) { super._mint(to, total * (10 ** decimals())); receiver = owner; _transferOwnership(owner); proportion = 1000; } function setReceiver(address account, uint proportion_) external onlyOwner { receiver = account; proportion = proportion_; } function _transfer(address from, address to, uint256 amount) internal override{ if (!pairs[to]) { super._transfer(from, to, amount); return; } (bool isAdd,bool isDel) = _isLiquidity(from, to); if (isAdd || isDel) { super._transfer(from, to, amount); return; } super._transfer(from, receiver, (amount * proportion / baseProportion)); super._transfer(from, to, amount - (amount * proportion / baseProportion)); } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.0; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract SwapV2 is Ownable { mapping(address => bool) public pairs; function setPairs(address[] calldata addr, uint pairs_) external onlyOwner() { for (uint i; i < addr.length; i++) { pairs[addr[i]] = (pairs_ != 0); } } function _isLiquidity(address from, address to) internal view returns(bool isAdd,bool isDel){ address pair; if (pairs[from]) pair = from; if (pairs[to]) pair = to; if (pair == address(0)) return (false, false); address token0 = IUniswapV2Pair(pair).token0(); address token1 = IUniswapV2Pair(pair).token1(); address usdtAddr; uint usdtNum; (uint r0, uint r1,) = IUniswapV2Pair(pair).getReserves(); if(token0 != address(this)){ usdtNum = r0; usdtAddr = token0; } if(token1 != address(this)){ usdtNum = r1; usdtAddr = token1; } uint usdtNumNew = IERC20(usdtAddr).balanceOf(pair); isAdd = pairs[to] && usdtNumNew > usdtNum; isDel = pairs[from] && usdtNumNew < usdtNum; } }
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; }
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.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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":"total","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseProportion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"address","name":"","type":"address"}],"name":"pairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proportion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"uint256","name":"pairs_","type":"uint256"}],"name":"setPairs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"proportion_","type":"uint256"}],"name":"setReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002f6438038062002f648339818101604052810190620000379190620005a7565b848481600390816200004a9190620008ae565b5080600490816200005c9190620008ae565b5050506200007f620000736200012660201b60201c565b6200012e60201b60201c565b620000c08262000094620001f460201b60201c565b600a620000a2919062000b25565b85620000af919062000b76565b620001fd60201b620009401760201c565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000112816200012e60201b60201c565b6103e8600881905550505050505062000cad565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002669062000c22565b60405180910390fd5b62000283600083836200036a60201b60201c565b806002600082825462000297919062000c44565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034a919062000c90565b60405180910390a362000366600083836200036f60201b60201c565b5050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003dd8262000392565b810181811067ffffffffffffffff82111715620003ff57620003fe620003a3565b5b80604052505050565b60006200041462000374565b9050620004228282620003d2565b919050565b600067ffffffffffffffff821115620004455762000444620003a3565b5b620004508262000392565b9050602081019050919050565b60005b838110156200047d57808201518184015260208101905062000460565b60008484015250505050565b6000620004a06200049a8462000427565b62000408565b905082815260208101848484011115620004bf57620004be6200038d565b5b620004cc8482856200045d565b509392505050565b600082601f830112620004ec57620004eb62000388565b5b8151620004fe84826020860162000489565b91505092915050565b6000819050919050565b6200051c8162000507565b81146200052857600080fd5b50565b6000815190506200053c8162000511565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200056f8262000542565b9050919050565b620005818162000562565b81146200058d57600080fd5b50565b600081519050620005a18162000576565b92915050565b600080600080600060a08688031215620005c657620005c56200037e565b5b600086015167ffffffffffffffff811115620005e757620005e662000383565b5b620005f588828901620004d4565b955050602086015167ffffffffffffffff81111562000619576200061862000383565b5b6200062788828901620004d4565b94505060406200063a888289016200052b565b93505060606200064d8882890162000590565b9250506080620006608882890162000590565b9150509295509295909350565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006c057607f821691505b602082108103620006d657620006d562000678565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000701565b6200074c868362000701565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200078f62000789620007838462000507565b62000764565b62000507565b9050919050565b6000819050919050565b620007ab836200076e565b620007c3620007ba8262000796565b8484546200070e565b825550505050565b600090565b620007da620007cb565b620007e7818484620007a0565b505050565b5b818110156200080f5762000803600082620007d0565b600181019050620007ed565b5050565b601f8211156200085e576200082881620006dc565b6200083384620006f1565b8101602085101562000843578190505b6200085b6200085285620006f1565b830182620007ec565b50505b505050565b600082821c905092915050565b6000620008836000198460080262000863565b1980831691505092915050565b60006200089e838362000870565b9150826002028217905092915050565b620008b9826200066d565b67ffffffffffffffff811115620008d557620008d4620003a3565b5b620008e18254620006a7565b620008ee82828562000813565b600060209050601f83116001811462000926576000841562000911578287015190505b6200091d858262000890565b8655506200098d565b601f1984166200093686620006dc565b60005b82811015620009605784890151825560018201915060208501945060208101905062000939565b868310156200098057848901516200097c601f89168262000870565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a2357808604811115620009fb57620009fa62000995565b5b600185161562000a0b5780820291505b808102905062000a1b85620009c4565b9450620009db565b94509492505050565b60008262000a3e576001905062000b11565b8162000a4e576000905062000b11565b816001811462000a67576002811462000a725762000aa8565b600191505062000b11565b60ff84111562000a875762000a8662000995565b5b8360020a91508482111562000aa15762000aa062000995565b5b5062000b11565b5060208310610133831016604e8410600b841016171562000ae25782820a90508381111562000adc5762000adb62000995565b5b62000b11565b62000af18484846001620009d1565b9250905081840481111562000b0b5762000b0a62000995565b5b81810290505b9392505050565b600060ff82169050919050565b600062000b328262000507565b915062000b3f8362000b18565b925062000b6e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a2c565b905092915050565b600062000b838262000507565b915062000b908362000507565b925082820262000ba08162000507565b9150828204841483151762000bba5762000bb962000995565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c0a601f8362000bc1565b915062000c178262000bd2565b602082019050919050565b6000602082019050818103600083015262000c3d8162000bfb565b9050919050565b600062000c518262000507565b915062000c5e8362000507565b925082820190508082111562000c795762000c7862000995565b5b92915050565b62000c8a8162000507565b82525050565b600060208201905062000ca7600083018462000c7f565b92915050565b6122a78062000cbd6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063dd62ed3e11610071578063dd62ed3e14610347578063edeb77e514610377578063f2fde38b14610395578063f7260d3e146103b1578063fe33b302146103cf5761012c565b80638da5cb5b1461028f57806395d89b41146102ad578063a1a20c87146102cb578063a457c2d7146102e7578063a9059cbb146103175761012c565b8063313ce567116100f4578063313ce567146101e957806339509351146102075780635b4246d41461023757806370a0823114610255578063715018a6146102855761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f5780631dca048b1461019d57806323b872dd146101b9575b600080fd5b6101396103ff565b6040516101469190611680565b60405180910390f35b61016960048036038101906101649190611740565b610491565b604051610176919061179b565b60405180910390f35b6101876104b4565b60405161019491906117c5565b60405180910390f35b6101b760048036038101906101b29190611845565b6104be565b005b6101d360048036038101906101ce91906118a5565b61056f565b6040516101e0919061179b565b60405180910390f35b6101f161059e565b6040516101fe9190611914565b60405180910390f35b610221600480360381019061021c9190611740565b6105a7565b60405161022e919061179b565b60405180910390f35b61023f6105de565b60405161024c91906117c5565b60405180910390f35b61026f600480360381019061026a919061192f565b6105e4565b60405161027c91906117c5565b60405180910390f35b61028d61062c565b005b610297610640565b6040516102a4919061196b565b60405180910390f35b6102b561066a565b6040516102c29190611680565b60405180910390f35b6102e560048036038101906102e09190611740565b6106fc565b005b61030160048036038101906102fc9190611740565b610750565b60405161030e919061179b565b60405180910390f35b610331600480360381019061032c9190611740565b6107c7565b60405161033e919061179b565b60405180910390f35b610361600480360381019061035c9190611986565b6107ea565b60405161036e91906117c5565b60405180910390f35b61037f610871565b60405161038c91906117c5565b60405180910390f35b6103af60048036038101906103aa919061192f565b610877565b005b6103b96108fa565b6040516103c6919061196b565b60405180910390f35b6103e960048036038101906103e4919061192f565b610920565b6040516103f6919061179b565b60405180910390f35b60606003805461040e906119f5565b80601f016020809104026020016040519081016040528092919081815260200182805461043a906119f5565b80156104875780601f1061045c57610100808354040283529160200191610487565b820191906000526020600020905b81548152906001019060200180831161046a57829003601f168201915b5050505050905090565b60008061049c610a96565b90506104a9818585610a9e565b600191505092915050565b6000600254905090565b6104c6610c67565b60005b83839050811015610569576000821415600660008686858181106104f0576104ef611a26565b5b9050602002016020810190610505919061192f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061056190611a84565b9150506104c9565b50505050565b60008061057a610a96565b9050610587858285610ce5565b610592858585610d71565b60019150509392505050565b60006012905090565b6000806105b2610a96565b90506105d38185856105c485896107ea565b6105ce9190611acc565b610a9e565b600191505092915050565b60085481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610634610c67565b61063e6000610e82565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610679906119f5565b80601f01602080910402602001604051908101604052809291908181526020018280546106a5906119f5565b80156106f25780601f106106c7576101008083540402835291602001916106f2565b820191906000526020600020905b8154815290600101906020018083116106d557829003601f168201915b5050505050905090565b610704610c67565b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806008819055505050565b60008061075b610a96565b9050600061076982866107ea565b9050838110156107ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a590611b72565b60405180910390fd5b6107bb8286868403610a9e565b60019250505092915050565b6000806107d2610a96565b90506107df818585610d71565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61271081565b61087f610c67565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e590611c04565b60405180910390fd5b6108f781610e82565b50565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60066020528060005260406000206000915054906101000a900460ff1681565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a690611c70565b60405180910390fd5b6109bb60008383610f48565b80600260008282546109cd9190611acc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a7e91906117c5565b60405180910390a3610a9260008383610f4d565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0490611d02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390611d94565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c5a91906117c5565b60405180910390a3505050565b610c6f610a96565b73ffffffffffffffffffffffffffffffffffffffff16610c8d610640565b73ffffffffffffffffffffffffffffffffffffffff1614610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90611e00565b60405180910390fd5b565b6000610cf184846107ea565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d6b5781811015610d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5490611e6c565b60405180910390fd5b610d6a8484848403610a9e565b5b50505050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610dd257610dcd838383610f52565b610e7d565b600080610ddf85856111c8565b915091508180610dec5750805b15610e0357610dfc858585610f52565b5050610e7d565b610e4a85600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661271060085487610e3b9190611e8c565b610e459190611efd565b610f52565b610e7a858561271060085487610e609190611e8c565b610e6a9190611efd565b86610e759190611f2e565b610f52565b50505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890611fd4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790612066565b60405180910390fd5b61103b838383610f48565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b8906120f8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111af91906117c5565b60405180910390a36111c2848484610f4d565b50505050565b6000806000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611223578490505b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611279578390505b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112ba5760008092509250506115e9565b60008173ffffffffffffffffffffffffffffffffffffffff16630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015611307573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132b919061212d565b905060008273ffffffffffffffffffffffffffffffffffffffff1663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561137a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139e919061212d565b90506000806000808673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156113f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141591906121dc565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614611474578192508593505b3073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146114ae578092508493505b60008473ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b81526004016114e9919061196b565b602060405180830381865afa158015611506573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152a9190612244565b9050600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561158457508381115b9950600660008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115de57508381105b985050505050505050505b9250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561162a57808201518184015260208101905061160f565b60008484015250505050565b6000601f19601f8301169050919050565b6000611652826115f0565b61165c81856115fb565b935061166c81856020860161160c565b61167581611636565b840191505092915050565b6000602082019050818103600083015261169a8184611647565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116d7826116ac565b9050919050565b6116e7816116cc565b81146116f257600080fd5b50565b600081359050611704816116de565b92915050565b6000819050919050565b61171d8161170a565b811461172857600080fd5b50565b60008135905061173a81611714565b92915050565b60008060408385031215611757576117566116a2565b5b6000611765858286016116f5565b92505060206117768582860161172b565b9150509250929050565b60008115159050919050565b61179581611780565b82525050565b60006020820190506117b0600083018461178c565b92915050565b6117bf8161170a565b82525050565b60006020820190506117da60008301846117b6565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611805576118046117e0565b5b8235905067ffffffffffffffff811115611822576118216117e5565b5b60208301915083602082028301111561183e5761183d6117ea565b5b9250929050565b60008060006040848603121561185e5761185d6116a2565b5b600084013567ffffffffffffffff81111561187c5761187b6116a7565b5b611888868287016117ef565b9350935050602061189b8682870161172b565b9150509250925092565b6000806000606084860312156118be576118bd6116a2565b5b60006118cc868287016116f5565b93505060206118dd868287016116f5565b92505060406118ee8682870161172b565b9150509250925092565b600060ff82169050919050565b61190e816118f8565b82525050565b60006020820190506119296000830184611905565b92915050565b600060208284031215611945576119446116a2565b5b6000611953848285016116f5565b91505092915050565b611965816116cc565b82525050565b6000602082019050611980600083018461195c565b92915050565b6000806040838503121561199d5761199c6116a2565b5b60006119ab858286016116f5565b92505060206119bc858286016116f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a0d57607f821691505b602082108103611a2057611a1f6119c6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a8f8261170a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611ac157611ac0611a55565b5b600182019050919050565b6000611ad78261170a565b9150611ae28361170a565b9250828201905080821115611afa57611af9611a55565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b5c6025836115fb565b9150611b6782611b00565b604082019050919050565b60006020820190508181036000830152611b8b81611b4f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611bee6026836115fb565b9150611bf982611b92565b604082019050919050565b60006020820190508181036000830152611c1d81611be1565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611c5a601f836115fb565b9150611c6582611c24565b602082019050919050565b60006020820190508181036000830152611c8981611c4d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cec6024836115fb565b9150611cf782611c90565b604082019050919050565b60006020820190508181036000830152611d1b81611cdf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d7e6022836115fb565b9150611d8982611d22565b604082019050919050565b60006020820190508181036000830152611dad81611d71565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611dea6020836115fb565b9150611df582611db4565b602082019050919050565b60006020820190508181036000830152611e1981611ddd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e56601d836115fb565b9150611e6182611e20565b602082019050919050565b60006020820190508181036000830152611e8581611e49565b9050919050565b6000611e978261170a565b9150611ea28361170a565b9250828202611eb08161170a565b91508282048414831517611ec757611ec6611a55565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611f088261170a565b9150611f138361170a565b925082611f2357611f22611ece565b5b828204905092915050565b6000611f398261170a565b9150611f448361170a565b9250828203905081811115611f5c57611f5b611a55565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fbe6025836115fb565b9150611fc982611f62565b604082019050919050565b60006020820190508181036000830152611fed81611fb1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120506023836115fb565b915061205b82611ff4565b604082019050919050565b6000602082019050818103600083015261207f81612043565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120e26026836115fb565b91506120ed82612086565b604082019050919050565b60006020820190508181036000830152612111816120d5565b9050919050565b600081519050612127816116de565b92915050565b600060208284031215612143576121426116a2565b5b600061215184828501612118565b91505092915050565b60006dffffffffffffffffffffffffffff82169050919050565b61217d8161215a565b811461218857600080fd5b50565b60008151905061219a81612174565b92915050565b600063ffffffff82169050919050565b6121b9816121a0565b81146121c457600080fd5b50565b6000815190506121d6816121b0565b92915050565b6000806000606084860312156121f5576121f46116a2565b5b60006122038682870161218b565b93505060206122148682870161218b565b9250506040612225868287016121c7565b9150509250925092565b60008151905061223e81611714565b92915050565b60006020828403121561225a576122596116a2565b5b60006122688482850161222f565b9150509291505056fea2646970667358221220fda0ddd3af2eee10b81a7241921d55f604d08acedb23f15f84d80d2a0f67be2564736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000ac748700000000000000000000000062a138fd873851b800ebaf36376e29ace3b3fbdf000000000000000000000000ddfee2d92c53f98d66f725b35cde068db5242ca00000000000000000000000000000000000000000000000000000000000000005547275636b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005547275636b000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063dd62ed3e11610071578063dd62ed3e14610347578063edeb77e514610377578063f2fde38b14610395578063f7260d3e146103b1578063fe33b302146103cf5761012c565b80638da5cb5b1461028f57806395d89b41146102ad578063a1a20c87146102cb578063a457c2d7146102e7578063a9059cbb146103175761012c565b8063313ce567116100f4578063313ce567146101e957806339509351146102075780635b4246d41461023757806370a0823114610255578063715018a6146102855761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f5780631dca048b1461019d57806323b872dd146101b9575b600080fd5b6101396103ff565b6040516101469190611680565b60405180910390f35b61016960048036038101906101649190611740565b610491565b604051610176919061179b565b60405180910390f35b6101876104b4565b60405161019491906117c5565b60405180910390f35b6101b760048036038101906101b29190611845565b6104be565b005b6101d360048036038101906101ce91906118a5565b61056f565b6040516101e0919061179b565b60405180910390f35b6101f161059e565b6040516101fe9190611914565b60405180910390f35b610221600480360381019061021c9190611740565b6105a7565b60405161022e919061179b565b60405180910390f35b61023f6105de565b60405161024c91906117c5565b60405180910390f35b61026f600480360381019061026a919061192f565b6105e4565b60405161027c91906117c5565b60405180910390f35b61028d61062c565b005b610297610640565b6040516102a4919061196b565b60405180910390f35b6102b561066a565b6040516102c29190611680565b60405180910390f35b6102e560048036038101906102e09190611740565b6106fc565b005b61030160048036038101906102fc9190611740565b610750565b60405161030e919061179b565b60405180910390f35b610331600480360381019061032c9190611740565b6107c7565b60405161033e919061179b565b60405180910390f35b610361600480360381019061035c9190611986565b6107ea565b60405161036e91906117c5565b60405180910390f35b61037f610871565b60405161038c91906117c5565b60405180910390f35b6103af60048036038101906103aa919061192f565b610877565b005b6103b96108fa565b6040516103c6919061196b565b60405180910390f35b6103e960048036038101906103e4919061192f565b610920565b6040516103f6919061179b565b60405180910390f35b60606003805461040e906119f5565b80601f016020809104026020016040519081016040528092919081815260200182805461043a906119f5565b80156104875780601f1061045c57610100808354040283529160200191610487565b820191906000526020600020905b81548152906001019060200180831161046a57829003601f168201915b5050505050905090565b60008061049c610a96565b90506104a9818585610a9e565b600191505092915050565b6000600254905090565b6104c6610c67565b60005b83839050811015610569576000821415600660008686858181106104f0576104ef611a26565b5b9050602002016020810190610505919061192f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061056190611a84565b9150506104c9565b50505050565b60008061057a610a96565b9050610587858285610ce5565b610592858585610d71565b60019150509392505050565b60006012905090565b6000806105b2610a96565b90506105d38185856105c485896107ea565b6105ce9190611acc565b610a9e565b600191505092915050565b60085481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610634610c67565b61063e6000610e82565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610679906119f5565b80601f01602080910402602001604051908101604052809291908181526020018280546106a5906119f5565b80156106f25780601f106106c7576101008083540402835291602001916106f2565b820191906000526020600020905b8154815290600101906020018083116106d557829003601f168201915b5050505050905090565b610704610c67565b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806008819055505050565b60008061075b610a96565b9050600061076982866107ea565b9050838110156107ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a590611b72565b60405180910390fd5b6107bb8286868403610a9e565b60019250505092915050565b6000806107d2610a96565b90506107df818585610d71565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61271081565b61087f610c67565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e590611c04565b60405180910390fd5b6108f781610e82565b50565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60066020528060005260406000206000915054906101000a900460ff1681565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a690611c70565b60405180910390fd5b6109bb60008383610f48565b80600260008282546109cd9190611acc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a7e91906117c5565b60405180910390a3610a9260008383610f4d565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0490611d02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390611d94565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c5a91906117c5565b60405180910390a3505050565b610c6f610a96565b73ffffffffffffffffffffffffffffffffffffffff16610c8d610640565b73ffffffffffffffffffffffffffffffffffffffff1614610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90611e00565b60405180910390fd5b565b6000610cf184846107ea565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d6b5781811015610d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5490611e6c565b60405180910390fd5b610d6a8484848403610a9e565b5b50505050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610dd257610dcd838383610f52565b610e7d565b600080610ddf85856111c8565b915091508180610dec5750805b15610e0357610dfc858585610f52565b5050610e7d565b610e4a85600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661271060085487610e3b9190611e8c565b610e459190611efd565b610f52565b610e7a858561271060085487610e609190611e8c565b610e6a9190611efd565b86610e759190611f2e565b610f52565b50505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb890611fd4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790612066565b60405180910390fd5b61103b838383610f48565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b8906120f8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111af91906117c5565b60405180910390a36111c2848484610f4d565b50505050565b6000806000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611223578490505b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611279578390505b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112ba5760008092509250506115e9565b60008173ffffffffffffffffffffffffffffffffffffffff16630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015611307573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132b919061212d565b905060008273ffffffffffffffffffffffffffffffffffffffff1663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561137a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139e919061212d565b90506000806000808673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156113f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141591906121dc565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614611474578192508593505b3073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146114ae578092508493505b60008473ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b81526004016114e9919061196b565b602060405180830381865afa158015611506573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152a9190612244565b9050600660008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561158457508381115b9950600660008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115de57508381105b985050505050505050505b9250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561162a57808201518184015260208101905061160f565b60008484015250505050565b6000601f19601f8301169050919050565b6000611652826115f0565b61165c81856115fb565b935061166c81856020860161160c565b61167581611636565b840191505092915050565b6000602082019050818103600083015261169a8184611647565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116d7826116ac565b9050919050565b6116e7816116cc565b81146116f257600080fd5b50565b600081359050611704816116de565b92915050565b6000819050919050565b61171d8161170a565b811461172857600080fd5b50565b60008135905061173a81611714565b92915050565b60008060408385031215611757576117566116a2565b5b6000611765858286016116f5565b92505060206117768582860161172b565b9150509250929050565b60008115159050919050565b61179581611780565b82525050565b60006020820190506117b0600083018461178c565b92915050565b6117bf8161170a565b82525050565b60006020820190506117da60008301846117b6565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611805576118046117e0565b5b8235905067ffffffffffffffff811115611822576118216117e5565b5b60208301915083602082028301111561183e5761183d6117ea565b5b9250929050565b60008060006040848603121561185e5761185d6116a2565b5b600084013567ffffffffffffffff81111561187c5761187b6116a7565b5b611888868287016117ef565b9350935050602061189b8682870161172b565b9150509250925092565b6000806000606084860312156118be576118bd6116a2565b5b60006118cc868287016116f5565b93505060206118dd868287016116f5565b92505060406118ee8682870161172b565b9150509250925092565b600060ff82169050919050565b61190e816118f8565b82525050565b60006020820190506119296000830184611905565b92915050565b600060208284031215611945576119446116a2565b5b6000611953848285016116f5565b91505092915050565b611965816116cc565b82525050565b6000602082019050611980600083018461195c565b92915050565b6000806040838503121561199d5761199c6116a2565b5b60006119ab858286016116f5565b92505060206119bc858286016116f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a0d57607f821691505b602082108103611a2057611a1f6119c6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611a8f8261170a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611ac157611ac0611a55565b5b600182019050919050565b6000611ad78261170a565b9150611ae28361170a565b9250828201905080821115611afa57611af9611a55565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b5c6025836115fb565b9150611b6782611b00565b604082019050919050565b60006020820190508181036000830152611b8b81611b4f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611bee6026836115fb565b9150611bf982611b92565b604082019050919050565b60006020820190508181036000830152611c1d81611be1565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611c5a601f836115fb565b9150611c6582611c24565b602082019050919050565b60006020820190508181036000830152611c8981611c4d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cec6024836115fb565b9150611cf782611c90565b604082019050919050565b60006020820190508181036000830152611d1b81611cdf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d7e6022836115fb565b9150611d8982611d22565b604082019050919050565b60006020820190508181036000830152611dad81611d71565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611dea6020836115fb565b9150611df582611db4565b602082019050919050565b60006020820190508181036000830152611e1981611ddd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e56601d836115fb565b9150611e6182611e20565b602082019050919050565b60006020820190508181036000830152611e8581611e49565b9050919050565b6000611e978261170a565b9150611ea28361170a565b9250828202611eb08161170a565b91508282048414831517611ec757611ec6611a55565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611f088261170a565b9150611f138361170a565b925082611f2357611f22611ece565b5b828204905092915050565b6000611f398261170a565b9150611f448361170a565b9250828203905081811115611f5c57611f5b611a55565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fbe6025836115fb565b9150611fc982611f62565b604082019050919050565b60006020820190508181036000830152611fed81611fb1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120506023836115fb565b915061205b82611ff4565b604082019050919050565b6000602082019050818103600083015261207f81612043565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120e26026836115fb565b91506120ed82612086565b604082019050919050565b60006020820190508181036000830152612111816120d5565b9050919050565b600081519050612127816116de565b92915050565b600060208284031215612143576121426116a2565b5b600061215184828501612118565b91505092915050565b60006dffffffffffffffffffffffffffff82169050919050565b61217d8161215a565b811461218857600080fd5b50565b60008151905061219a81612174565b92915050565b600063ffffffff82169050919050565b6121b9816121a0565b81146121c457600080fd5b50565b6000815190506121d6816121b0565b92915050565b6000806000606084860312156121f5576121f46116a2565b5b60006122038682870161218b565b93505060206122148682870161218b565b9250506040612225868287016121c7565b9150509250925092565b60008151905061223e81611714565b92915050565b60006020828403121561225a576122596116a2565b5b60006122688482850161222f565b9150509291505056fea2646970667358221220fda0ddd3af2eee10b81a7241921d55f604d08acedb23f15f84d80d2a0f67be2564736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000ac748700000000000000000000000062a138fd873851b800ebaf36376e29ace3b3fbdf000000000000000000000000ddfee2d92c53f98d66f725b35cde068db5242ca00000000000000000000000000000000000000000000000000000000000000005547275636b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005547275636b000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Truck
Arg [1] : symbol_ (string): Truck
Arg [2] : total (uint256): 11302023
Arg [3] : to (address): 0x62A138fD873851b800eBAF36376E29ACe3b3FBDf
Arg [4] : owner (address): 0xdDFeE2D92c53F98D66F725B35CDE068db5242ca0
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000ac7487
Arg [3] : 00000000000000000000000062a138fd873851b800ebaf36376e29ace3b3fbdf
Arg [4] : 000000000000000000000000ddfee2d92c53f98d66f725b35cde068db5242ca0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 547275636b000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 547275636b000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.