Latest 25 from a total of 550 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 20483543 | 136 days ago | IN | 0 ETH | 0.00017296 | ||||
Approve | 20202188 | 175 days ago | IN | 0 ETH | 0.00004011 | ||||
Approve | 19457152 | 280 days ago | IN | 0 ETH | 0.00069746 | ||||
Approve | 19057443 | 336 days ago | IN | 0 ETH | 0.00035138 | ||||
Approve | 18121275 | 467 days ago | IN | 0 ETH | 0.00076748 | ||||
Approve | 17934248 | 493 days ago | IN | 0 ETH | 0.00078964 | ||||
Approve | 17289120 | 584 days ago | IN | 0 ETH | 0.00131518 | ||||
Approve | 17180947 | 599 days ago | IN | 0 ETH | 0.00246726 | ||||
Approve | 17117696 | 608 days ago | IN | 0 ETH | 0.00272138 | ||||
Approve | 17037252 | 619 days ago | IN | 0 ETH | 0.00061283 | ||||
Approve | 17009064 | 623 days ago | IN | 0 ETH | 0.00055394 | ||||
Approve | 16982920 | 627 days ago | IN | 0 ETH | 0.00172 | ||||
Approve | 16922755 | 635 days ago | IN | 0 ETH | 0.00057464 | ||||
Approve | 16922738 | 635 days ago | IN | 0 ETH | 0.00063475 | ||||
Approve | 16851766 | 645 days ago | IN | 0 ETH | 0.00047387 | ||||
Approve | 16840525 | 647 days ago | IN | 0 ETH | 0.00110919 | ||||
Approve | 16653207 | 673 days ago | IN | 0 ETH | 0.00058165 | ||||
Approve | 16615809 | 678 days ago | IN | 0 ETH | 0.00038858 | ||||
Approve | 16575785 | 684 days ago | IN | 0 ETH | 0.00054672 | ||||
Approve | 16376166 | 712 days ago | IN | 0 ETH | 0.00079694 | ||||
Approve | 16107889 | 749 days ago | IN | 0 ETH | 0.00031644 | ||||
Approve | 16012740 | 763 days ago | IN | 0 ETH | 0.00038574 | ||||
Approve | 15725906 | 803 days ago | IN | 0 ETH | 0.00076032 | ||||
Approve | 15590590 | 822 days ago | IN | 0 ETH | 0.00051377 | ||||
Approve | 15127655 | 894 days ago | IN | 0 ETH | 0.00035244 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
PiranhasToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-03 */ /* Developed by TimeusLab https://timeus.org */ pragma solidity ^0.6.0; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly {codehash := extcodehash(account)} return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success,) = recipient.call{value : amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value : weiValue}(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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 * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 to 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 {} } contract PiranhasToken is ERC20("Piranhas", "$PIR"), Ownable { bool public isTransferable = false; uint256 public minTotalSupply = 10000; // lists of addresses address[] public canTransfer; address[] public WithoutBurn; address[] public UniswapPairs; constructor (uint256 total) public { // mint new _mint(msg.sender, total.mul(10 ** 18)); WithoutBurn.push(msg.sender); } function burn(uint256 _amount) public { _burn(msg.sender, _amount); } // override of default function function transfer(address recipient, uint256 amount) public virtual override returns (bool) { // check address bool isBurnable = IsBurnable(_msgSender(), recipient); // check if transfer is enabled require(isTransferable || !isBurnable, "PiranhasToken: Transfer disabled"); if (isTransferable) { if (isBurnable && !isUniswapPair(_msgSender())) { _transferWithBurn(_msgSender(), recipient, amount, false); return true; } else { _transfer(_msgSender(), recipient, amount); return true; } } else if (!isBurnable) { _transfer(_msgSender(), recipient, amount); return true; } else { return false; } } // override of default function function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { // check address bool isBurnable = IsBurnable(sender, recipient); // check if transfer is enabled require(isTransferable || !isBurnable, "PiranhasToken: Transfer disabled"); if(isUniswapPair(recipient) && isBurnable){ _transferWithBurn(sender, recipient, amount, true); _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } else { // default implementation _transfer(sender, recipient, amount); _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } } // function for transfer with burn function _transferWithBurn(address sender, address recipient, uint256 amount, bool isTransferFrom) private returns (bool) { // divide amount in different parts uint256 burnPart = amount.div(100).mul(5); uint256 rewardPart = amount.div(100).mul(5); uint256 newAmount = amount.sub(burnPart).sub(rewardPart); // if it last burn than change it if (totalSupply().sub(burnPart) < minTotalSupply.mul(10 ** 18)) { burnPart = totalSupply().sub(minTotalSupply.mul(10 ** 18)); newAmount = amount.sub(burnPart).sub(rewardPart); } _transfer(sender, address(this), rewardPart); if(isTransferFrom){ _transfer(sender, recipient, amount); } else { _transfer(sender, recipient, newAmount); } if (burnPart != 0) { _burn(sender, burnPart); } return true; } // function for PiranhasGame which canWithdrawMoney function withdrawMoney(address from, address to, uint256 amount) public virtual returns (bool) { bool isInList = false; for (uint i = 0; i < canTransfer.length; i++) { if (canTransfer[i] == _msgSender()) { isInList = true; } } require(isInList, "PiranhasToken: Forbid action for this address"); _transfer(from, to, amount); return true; } // read function which return if addres is in WithoutBurnList function IsBurnable(address sender, address recipient) public view returns (bool) { bool isBurnable = true; for (uint i = 0; i < WithoutBurn.length; i++) { if (WithoutBurn[i] == sender || WithoutBurn[i] == recipient) { isBurnable = false; } } return isBurnable; } // read function which return if addres is in WithoutBurnList function isUniswapPair(address sender) public view returns (bool) { bool isUniswap = false; for (uint i = 0; i < UniswapPairs.length; i++) { if (UniswapPairs[i] == sender) { isUniswap = true; } } return isUniswap; } /* Under all methods to control token, game */ // add address to CanTransferList which can call withdrawMoney function addCanTransfer(address account) public onlyOwner { canTransfer.push(account); } // remover address from CanTransferList which can call withdrawMoney function removeCanTransfer(address account) public onlyOwner { address[] memory OldcanTransfer = canTransfer; delete canTransfer; for (uint256 i = 0; i < OldcanTransfer.length; i++) { if (OldcanTransfer[i] != account) { canTransfer.push(OldcanTransfer[i]); } } } // add address to WithoutBurn list function addWithoutBurn(address account) public onlyOwner { WithoutBurn.push(account); } // remove address to WithoutBurn list function removeWithoutBurn(address account) public onlyOwner { address[] memory OldWithoutBurn = WithoutBurn; delete WithoutBurn; for (uint256 i = 0; i < OldWithoutBurn.length; i++) { if (OldWithoutBurn[i] != account) { WithoutBurn.push(OldWithoutBurn[i]); } } } //enable/disable transfer function enableTransfer(bool state) public onlyOwner { isTransferable = state; } // add address to UniswapPairs list function addPair(address account) public onlyOwner { UniswapPairs.push(account); } // remove address to UniswapPairs list function removePair(address account) public onlyOwner { address[] memory OldUniswapPairs = UniswapPairs; delete UniswapPairs; for (uint256 i = 0; i < OldUniswapPairs.length; i++) { if (OldUniswapPairs[i] != account) { UniswapPairs.push(OldUniswapPairs[i]); } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"}],"name":"IsBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"UniswapPairs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"WithoutBurn","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addCanTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWithoutBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"canTransfer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"enableTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isTransferable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"isUniswapPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeCanTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeWithoutBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawMoney","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600560156101000a81548160ff0219169083151502179055506127106006553480156200003257600080fd5b50604051620037bf380380620037bf833981810160405260208110156200005857600080fd5b81019080805190602001909291905050506040518060400160405280600881526020017f506972616e6861730000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f24504952000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000ed92919062000572565b5080600490805190602001906200010692919062000572565b506012600560006101000a81548160ff021916908360ff16021790555050506000620001376200027360201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200020933620001fd670de0b6b3a7640000846200027b60201b6200242d1790919060201c565b6200030660201b60201c565b6008339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000618565b600033905090565b60008083141562000290576000905062000300565b6000828402905082848281620002a257fe5b0414620002fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806200379e6021913960400191505060405180910390fd5b809150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620003be60008383620004e460201b60201c565b620003da81600254620004e960201b620024b31790919060201c565b60028190555062000438816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620004e960201b620024b31790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b60008082840190508381101562000568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005b557805160ff1916838001178555620005e6565b82800160010185558215620005e6579182015b82811115620005e5578251825591602001919060010190620005c8565b5b509050620005f59190620005f9565b5090565b5b8082111562000614576000816000905550600101620005fa565b5090565b61317680620006286000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063c2b7bbb6116100a2578063e0d5b10d11610071578063e0d5b10d146109e2578063ef7ac0e514610a26578063f2fde38b14610a56578063f5449f3514610a9a576101da565b8063c2b7bbb61461088a578063c79bef85146108ce578063dd62ed3e14610912578063de22ae5a1461098a576101da565b8063a457c2d7116100de578063a457c2d714610726578063a9059cbb1461078a578063af6c9c1d146107ee578063c1cbb0d014610832576101da565b80638da5cb5b1461061557806395d89b41146106495780639cece12e146106cc576101da565b8063395093511161017c5780636ef8b5411161014b5780636ef8b5411461055157806370a0823114610595578063715018a6146105ed57806379db6346146105f7576101da565b806339509351146103ed5780633dcad5551461045157806342966c68146104cb5780634d4f6ea9146104f9576101da565b806318160ddd116101b857806318160ddd1461030a5780632121dc751461032857806323b872dd14610348578063313ce567146103cc576101da565b806306fdde03146101df578063095ea7b314610262578063101aab78146102c6575b600080fd5b6101e7610b1e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561022757808201518184015260208101905061020c565b50505050905090810190601f1680156102545780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ae6004803603604081101561027857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bc0565b60405180821515815260200191505060405180910390f35b610308600480360360208110156102dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bde565b005b610312610d0e565b6040518082815260200191505060405180910390f35b610330610d18565b60405180821515815260200191505060405180910390f35b6103b46004803603606081101561035e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d2b565b60405180821515815260200191505060405180910390f35b6103d4610ea8565b604051808260ff16815260200191505060405180910390f35b6104396004803603604081101561040357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ebf565b60405180821515815260200191505060405180910390f35b6104b36004803603604081101561046757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f72565b60405180821515815260200191505060405180910390f35b6104f7600480360360208110156104e157600080fd5b810190808035906020019092919050505061107e565b005b6105256004803603602081101561050f57600080fd5b810190808035906020019092919050505061108b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105936004803603602081101561056757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110c7565b005b6105d7600480360360208110156105ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611305565b6040518082815260200191505060405180910390f35b6105f561134d565b005b6105ff6114d8565b6040518082815260200191505060405180910390f35b61061d6114de565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610651611508565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610691578082015181840152602081019050610676565b50505050905090810190601f1680156106be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61070e600480360360208110156106e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115aa565b60405180821515815260200191505060405180910390f35b6107726004803603604081101561073c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611648565b60405180821515815260200191505060405180910390f35b6107d6600480360360408110156107a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611715565b60405180821515815260200191505060405180910390f35b6108306004803603602081101561080457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611852565b005b61085e6004803603602081101561084857600080fd5b8101908080359060200190929190505050611a90565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108cc600480360360208110156108a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611acc565b005b610910600480360360208110156108e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bfc565b005b6109746004803603604081101561092857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d2c565b6040518082815260200191505060405180910390f35b6109b6600480360360208110156109a057600080fd5b8101908080359060200190929190505050611db3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a24600480360360208110156109f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611def565b005b610a5460048036036020811015610a3c57600080fd5b8101908080351515906020019092919050505061202d565b005b610a9860048036036020811015610a6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612114565b005b610b0660048036036060811015610ab057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612324565b60405180821515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bb65780601f10610b8b57610100808354040283529160200191610bb6565b820191906000526020600020905b815481529060010190602001808311610b9957829003601f168201915b5050505050905090565b6000610bd4610bcd61253b565b8484612543565b6001905092915050565b610be661253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ca8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6007819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b600560159054906101000a900460ff1681565b600080610d388585610f72565b9050600560159054906101000a900460ff1680610d53575080155b610dc5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f506972616e686173546f6b656e3a205472616e736665722064697361626c656481525060200191505060405180910390fd5b610dce846115aa565b8015610dd75750805b15610e4257610de9858585600161273a565b50610e3885610df661253b565b610e338660405180606001604052806028815260200161305d60289139610e248b610e1f61253b565b611d2c565b6128a69092919063ffffffff16565b612543565b6001915050610ea1565b610e4d858585612966565b610e9b85610e5961253b565b610e968660405180606001604052806028815260200161305d60289139610e878b610e8261253b565b611d2c565b6128a69092919063ffffffff16565b612543565b60019150505b9392505050565b6000600560009054906101000a900460ff16905090565b6000610f68610ecc61253b565b84610f638560016000610edd61253b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124b390919063ffffffff16565b612543565b6001905092915050565b6000806001905060005b600880549050811015611073578473ffffffffffffffffffffffffffffffffffffffff1660088281548110610fad57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061105c57508373ffffffffffffffffffffffffffffffffffffffff166008828154811061101957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b1561106657600091505b8080600101915050610f7c565b508091505092915050565b6110883382612c27565b50565b6007818154811061109857fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110cf61253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611191576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6060600780548060200260200160405190810160405280929190818152602001828054801561121557602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116111cb575b505050505090506007600061122a9190612f4a565b60005b8151811015611300578273ffffffffffffffffffffffffffffffffffffffff1682828151811061125957fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16146112f357600782828151811061128a57fe5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b808060010191505061122d565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61135561253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611417576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60065481565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115a05780601f10611575576101008083540402835291602001916115a0565b820191906000526020600020905b81548152906001019060200180831161158357829003601f168201915b5050505050905090565b6000806000905060005b60098054905081101561163e578373ffffffffffffffffffffffffffffffffffffffff16600982815481106115e557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561163157600191505b80806001019150506115b4565b5080915050919050565b600061170b61165561253b565b846117068560405180606001604052806025815260200161311c602591396001600061167f61253b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128a69092919063ffffffff16565b612543565b6001905092915050565b60008061172961172361253b565b85610f72565b9050600560159054906101000a900460ff1680611744575080155b6117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f506972616e686173546f6b656e3a205472616e736665722064697361626c656481525060200191505060405180910390fd5b600560159054906101000a900460ff1615611825578080156117e557506117e36117de61253b565b6115aa565b155b15611809576117fe6117f561253b565b8585600061273a565b50600191505061184c565b61181b61181461253b565b8585612966565b600191505061184c565b806118465761183c61183561253b565b8585612966565b600191505061184c565b60009150505b92915050565b61185a61253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461191c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b606060098054806020026020016040519081016040528092919081815260200182805480156119a057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611956575b50505050509050600960006119b59190612f4a565b60005b8151811015611a8b578273ffffffffffffffffffffffffffffffffffffffff168282815181106119e457fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614611a7e576009828281518110611a1557fe5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b80806001019150506119b8565b505050565b60098181548110611a9d57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ad461253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6009819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c0461253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cc6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60088181548110611dc057fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611df761253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611eb9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60606008805480602002602001604051908101604052809291908181526020018280548015611f3d57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611ef3575b5050505050905060086000611f529190612f4a565b60005b8151811015612028578273ffffffffffffffffffffffffffffffffffffffff16828281518110611f8157fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161461201b576008828281518110611fb257fe5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b8080600101915050611f55565b505050565b61203561253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600560156101000a81548160ff02191690831515021790555050565b61211c61253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612264576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612fce6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806000905060005b6007805490508110156123bf5761234361253b565b73ffffffffffffffffffffffffffffffffffffffff166007828154811061236657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123b257600191505b808060010191505061232e565b5080612416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806130cb602d913960400191505060405180910390fd5b612421858585612966565b60019150509392505050565b60008083141561244057600090506124ad565b600082840290508284828161245157fe5b04146124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061303c6021913960400191505060405180910390fd5b809150505b92915050565b600080828401905083811015612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806130f86024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561264f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612ff46022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000806127646005612756606487612deb90919063ffffffff16565b61242d90919063ffffffff16565b9050600061278f6005612781606488612deb90919063ffffffff16565b61242d90919063ffffffff16565b905060006127b8826127aa8589612e3590919063ffffffff16565b612e3590919063ffffffff16565b90506127d7670de0b6b3a764000060065461242d90919063ffffffff16565b6127f1846127e3610d0e565b612e3590919063ffffffff16565b10156128575761282d612817670de0b6b3a764000060065461242d90919063ffffffff16565b61281f610d0e565b612e3590919063ffffffff16565b9250612854826128468589612e3590919063ffffffff16565b612e3590919063ffffffff16565b90505b612862883084612966565b841561287857612873888888612966565b612884565b612883888883612966565b5b60008314612897576128968884612c27565b5b60019350505050949350505050565b6000838311158290612953576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129185780820151818401526020810190506128fd565b50505050905090810190601f1680156129455780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806130a66025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f896023913960400191505060405180910390fd5b612a7d838383612e7f565b612ae881604051806060016040528060268152602001613016602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128a69092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b7b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124b390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130856021913960400191505060405180910390fd5b612cb982600083612e7f565b612d2481604051806060016040528060228152602001612fac602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128a69092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d7b81600254612e3590919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000612e2d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e84565b905092915050565b6000612e7783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506128a6565b905092915050565b505050565b60008083118290612f30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ef5578082015181840152602081019050612eda565b50505050905090810190601f168015612f225780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612f3c57fe5b049050809150509392505050565b5080546000825590600052602060002090810190612f689190612f6b565b50565b5b80821115612f84576000816000905550600101612f6c565b509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373506972616e686173546f6b656e3a20466f7262696420616374696f6e20666f722074686973206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220846ce017d87e617846c22e6ab339fdd96cdaf0656583d24e1f005350d0bcdb9264736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7700000000000000000000000000000000000000000000000000000000000249f0
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063c2b7bbb6116100a2578063e0d5b10d11610071578063e0d5b10d146109e2578063ef7ac0e514610a26578063f2fde38b14610a56578063f5449f3514610a9a576101da565b8063c2b7bbb61461088a578063c79bef85146108ce578063dd62ed3e14610912578063de22ae5a1461098a576101da565b8063a457c2d7116100de578063a457c2d714610726578063a9059cbb1461078a578063af6c9c1d146107ee578063c1cbb0d014610832576101da565b80638da5cb5b1461061557806395d89b41146106495780639cece12e146106cc576101da565b8063395093511161017c5780636ef8b5411161014b5780636ef8b5411461055157806370a0823114610595578063715018a6146105ed57806379db6346146105f7576101da565b806339509351146103ed5780633dcad5551461045157806342966c68146104cb5780634d4f6ea9146104f9576101da565b806318160ddd116101b857806318160ddd1461030a5780632121dc751461032857806323b872dd14610348578063313ce567146103cc576101da565b806306fdde03146101df578063095ea7b314610262578063101aab78146102c6575b600080fd5b6101e7610b1e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561022757808201518184015260208101905061020c565b50505050905090810190601f1680156102545780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ae6004803603604081101561027857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bc0565b60405180821515815260200191505060405180910390f35b610308600480360360208110156102dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bde565b005b610312610d0e565b6040518082815260200191505060405180910390f35b610330610d18565b60405180821515815260200191505060405180910390f35b6103b46004803603606081101561035e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d2b565b60405180821515815260200191505060405180910390f35b6103d4610ea8565b604051808260ff16815260200191505060405180910390f35b6104396004803603604081101561040357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ebf565b60405180821515815260200191505060405180910390f35b6104b36004803603604081101561046757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f72565b60405180821515815260200191505060405180910390f35b6104f7600480360360208110156104e157600080fd5b810190808035906020019092919050505061107e565b005b6105256004803603602081101561050f57600080fd5b810190808035906020019092919050505061108b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105936004803603602081101561056757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110c7565b005b6105d7600480360360208110156105ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611305565b6040518082815260200191505060405180910390f35b6105f561134d565b005b6105ff6114d8565b6040518082815260200191505060405180910390f35b61061d6114de565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610651611508565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610691578082015181840152602081019050610676565b50505050905090810190601f1680156106be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61070e600480360360208110156106e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115aa565b60405180821515815260200191505060405180910390f35b6107726004803603604081101561073c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611648565b60405180821515815260200191505060405180910390f35b6107d6600480360360408110156107a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611715565b60405180821515815260200191505060405180910390f35b6108306004803603602081101561080457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611852565b005b61085e6004803603602081101561084857600080fd5b8101908080359060200190929190505050611a90565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108cc600480360360208110156108a057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611acc565b005b610910600480360360208110156108e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bfc565b005b6109746004803603604081101561092857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d2c565b6040518082815260200191505060405180910390f35b6109b6600480360360208110156109a057600080fd5b8101908080359060200190929190505050611db3565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a24600480360360208110156109f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611def565b005b610a5460048036036020811015610a3c57600080fd5b8101908080351515906020019092919050505061202d565b005b610a9860048036036020811015610a6c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612114565b005b610b0660048036036060811015610ab057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612324565b60405180821515815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610bb65780601f10610b8b57610100808354040283529160200191610bb6565b820191906000526020600020905b815481529060010190602001808311610b9957829003601f168201915b5050505050905090565b6000610bd4610bcd61253b565b8484612543565b6001905092915050565b610be661253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ca8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6007819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b600560159054906101000a900460ff1681565b600080610d388585610f72565b9050600560159054906101000a900460ff1680610d53575080155b610dc5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f506972616e686173546f6b656e3a205472616e736665722064697361626c656481525060200191505060405180910390fd5b610dce846115aa565b8015610dd75750805b15610e4257610de9858585600161273a565b50610e3885610df661253b565b610e338660405180606001604052806028815260200161305d60289139610e248b610e1f61253b565b611d2c565b6128a69092919063ffffffff16565b612543565b6001915050610ea1565b610e4d858585612966565b610e9b85610e5961253b565b610e968660405180606001604052806028815260200161305d60289139610e878b610e8261253b565b611d2c565b6128a69092919063ffffffff16565b612543565b60019150505b9392505050565b6000600560009054906101000a900460ff16905090565b6000610f68610ecc61253b565b84610f638560016000610edd61253b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124b390919063ffffffff16565b612543565b6001905092915050565b6000806001905060005b600880549050811015611073578473ffffffffffffffffffffffffffffffffffffffff1660088281548110610fad57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061105c57508373ffffffffffffffffffffffffffffffffffffffff166008828154811061101957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b1561106657600091505b8080600101915050610f7c565b508091505092915050565b6110883382612c27565b50565b6007818154811061109857fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110cf61253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611191576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6060600780548060200260200160405190810160405280929190818152602001828054801561121557602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116111cb575b505050505090506007600061122a9190612f4a565b60005b8151811015611300578273ffffffffffffffffffffffffffffffffffffffff1682828151811061125957fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff16146112f357600782828151811061128a57fe5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b808060010191505061122d565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61135561253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611417576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60065481565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115a05780601f10611575576101008083540402835291602001916115a0565b820191906000526020600020905b81548152906001019060200180831161158357829003601f168201915b5050505050905090565b6000806000905060005b60098054905081101561163e578373ffffffffffffffffffffffffffffffffffffffff16600982815481106115e557fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561163157600191505b80806001019150506115b4565b5080915050919050565b600061170b61165561253b565b846117068560405180606001604052806025815260200161311c602591396001600061167f61253b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128a69092919063ffffffff16565b612543565b6001905092915050565b60008061172961172361253b565b85610f72565b9050600560159054906101000a900460ff1680611744575080155b6117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f506972616e686173546f6b656e3a205472616e736665722064697361626c656481525060200191505060405180910390fd5b600560159054906101000a900460ff1615611825578080156117e557506117e36117de61253b565b6115aa565b155b15611809576117fe6117f561253b565b8585600061273a565b50600191505061184c565b61181b61181461253b565b8585612966565b600191505061184c565b806118465761183c61183561253b565b8585612966565b600191505061184c565b60009150505b92915050565b61185a61253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461191c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b606060098054806020026020016040519081016040528092919081815260200182805480156119a057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611956575b50505050509050600960006119b59190612f4a565b60005b8151811015611a8b578273ffffffffffffffffffffffffffffffffffffffff168282815181106119e457fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614611a7e576009828281518110611a1557fe5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b80806001019150506119b8565b505050565b60098181548110611a9d57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ad461253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6009819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c0461253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cc6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60088181548110611dc057fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611df761253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611eb9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60606008805480602002602001604051908101604052809291908181526020018280548015611f3d57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611ef3575b5050505050905060086000611f529190612f4a565b60005b8151811015612028578273ffffffffffffffffffffffffffffffffffffffff16828281518110611f8157fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161461201b576008828281518110611fb257fe5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b8080600101915050611f55565b505050565b61203561253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600560156101000a81548160ff02191690831515021790555050565b61211c61253b565b73ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612264576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180612fce6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806000905060005b6007805490508110156123bf5761234361253b565b73ffffffffffffffffffffffffffffffffffffffff166007828154811061236657fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123b257600191505b808060010191505061232e565b5080612416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806130cb602d913960400191505060405180910390fd5b612421858585612966565b60019150509392505050565b60008083141561244057600090506124ad565b600082840290508284828161245157fe5b04146124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061303c6021913960400191505060405180910390fd5b809150505b92915050565b600080828401905083811015612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806130f86024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561264f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180612ff46022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000806127646005612756606487612deb90919063ffffffff16565b61242d90919063ffffffff16565b9050600061278f6005612781606488612deb90919063ffffffff16565b61242d90919063ffffffff16565b905060006127b8826127aa8589612e3590919063ffffffff16565b612e3590919063ffffffff16565b90506127d7670de0b6b3a764000060065461242d90919063ffffffff16565b6127f1846127e3610d0e565b612e3590919063ffffffff16565b10156128575761282d612817670de0b6b3a764000060065461242d90919063ffffffff16565b61281f610d0e565b612e3590919063ffffffff16565b9250612854826128468589612e3590919063ffffffff16565b612e3590919063ffffffff16565b90505b612862883084612966565b841561287857612873888888612966565b612884565b612883888883612966565b5b60008314612897576128968884612c27565b5b60019350505050949350505050565b6000838311158290612953576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129185780820151818401526020810190506128fd565b50505050905090810190601f1680156129455780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806130a66025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180612f896023913960400191505060405180910390fd5b612a7d838383612e7f565b612ae881604051806060016040528060268152602001613016602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128a69092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b7b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124b390919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806130856021913960400191505060405180910390fd5b612cb982600083612e7f565b612d2481604051806060016040528060228152602001612fac602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546128a69092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d7b81600254612e3590919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000612e2d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e84565b905092915050565b6000612e7783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506128a6565b905092915050565b505050565b60008083118290612f30576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ef5578082015181840152602081019050612eda565b50505050905090810190601f168015612f225780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612f3c57fe5b049050809150509392505050565b5080546000825590600052602060002090810190612f689190612f6b565b50565b5b80821115612f84576000816000905550600101612f6c565b509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373506972616e686173546f6b656e3a20466f7262696420616374696f6e20666f722074686973206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220846ce017d87e617846c22e6ab339fdd96cdaf0656583d24e1f005350d0bcdb9264736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000249f0
-----Decoded View---------------
Arg [0] : total (uint256): 150000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000249f0
Deployed Bytecode Sourcemap
25356:6582:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16538:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18644:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30172:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17613:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25426:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26809:899;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17465:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20017:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29301:347;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25810:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25540:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30356:348;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17776:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15081:148;;;:::i;:::-;;25467:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14439:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16740:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29727:299;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20738:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25940:822;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31587:346;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25610:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31439:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30752:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18346:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25575:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30905:346;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31290:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;15384:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28786:440;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16538:83;16575:13;16608:5;16601:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16538:83;:::o;18644:169::-;18727:4;18744:39;18753:12;:10;:12::i;:::-;18767:7;18776:6;18744:8;:39::i;:::-;18801:4;18794:11;;18644:169;;;;:::o;30172:102::-;14661:12;:10;:12::i;:::-;14651:22;;:6;;;;;;;;;;;:22;;;14643:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30241:11:::1;30258:7;30241:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30172:102:::0;:::o;17613:100::-;17666:7;17693:12;;17686:19;;17613:100;:::o;25426:34::-;;;;;;;;;;;;;:::o;26809:899::-;26915:4;26958:15;26976:29;26987:6;26995:9;26976:10;:29::i;:::-;26958:47;;27067:14;;;;;;;;;;;:29;;;;27086:10;27085:11;27067:29;27059:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27157:24;27171:9;27157:13;:24::i;:::-;:38;;;;;27185:10;27157:38;27154:547;;;27211:50;27229:6;27237:9;27248:6;27256:4;27211:17;:50::i;:::-;;27276:119;27285:6;27293:12;:10;:12::i;:::-;27307:87;27343:6;27307:87;;;;;;;;;;;;;;;;;:31;27317:6;27325:12;:10;:12::i;:::-;27307:9;:31::i;:::-;:35;;:87;;;;;:::i;:::-;27276:8;:119::i;:::-;27417:4;27410:11;;;;;27154:547;27493:36;27503:6;27511:9;27522:6;27493:9;:36::i;:::-;27544:119;27553:6;27561:12;:10;:12::i;:::-;27575:87;27611:6;27575:87;;;;;;;;;;;;;;;;;:31;27585:6;27593:12;:10;:12::i;:::-;27575:9;:31::i;:::-;:35;;:87;;;;;:::i;:::-;27544:8;:119::i;:::-;27685:4;27678:11;;;26809:899;;;;;;:::o;17465:83::-;17506:5;17531:9;;;;;;;;;;;17524:16;;17465:83;:::o;20017:218::-;20105:4;20122:83;20131:12;:10;:12::i;:::-;20145:7;20154:50;20193:10;20154:11;:25;20166:12;:10;:12::i;:::-;20154:25;;;;;;;;;;;;;;;:34;20180:7;20154:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;20122:8;:83::i;:::-;20223:4;20216:11;;20017:218;;;;:::o;29301:347::-;29377:4;29394:15;29412:4;29394:22;;29432:6;29427:186;29448:11;:18;;;;29444:1;:22;29427:186;;;29510:6;29492:24;;:11;29504:1;29492:14;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;:55;;;;29538:9;29520:27;;:11;29532:1;29520:14;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;29492:55;29488:114;;;29581:5;29568:18;;29488:114;29468:3;;;;;;;29427:186;;;;29630:10;29623:17;;;29301:347;;;;:::o;25810:83::-;25859:26;25865:10;25877:7;25859:5;:26::i;:::-;25810:83;:::o;25540:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30356:348::-;14661:12;:10;:12::i;:::-;14651:22;;:6;;;;;;;;;;;:22;;;14643:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30428:31:::1;30462:11;30428:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30491:11;;30484:18;;;;:::i;:::-;30518:9;30513:182;30537:14;:21;30533:1;:25;30513:182;;;30605:7;30584:28;;:14;30599:1;30584:17;;;;;;;;;;;;;;:28;;;30580:104;;30633:11;30650:14;30665:1;30650:17;;;;;;;;;;;;;;30633:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30580:104;30560:3;;;;;;;30513:182;;;;14721:1;30356:348:::0;:::o;17776:119::-;17842:7;17869:9;:18;17879:7;17869:18;;;;;;;;;;;;;;;;17862:25;;17776:119;;;:::o;15081:148::-;14661:12;:10;:12::i;:::-;14651:22;;:6;;;;;;;;;;;:22;;;14643:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15188:1:::1;15151:40;;15172:6;;;;;;;;;;;15151:40;;;;;;;;;;;;15219:1;15202:6;;:19;;;;;;;;;;;;;;;;;;15081:148::o:0;25467:37::-;;;;:::o;14439:79::-;14477:7;14504:6;;;;;;;;;;;14497:13;;14439:79;:::o;16740:87::-;16779:13;16812:7;16805:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16740:87;:::o;29727:299::-;29787:4;29804:14;29821:5;29804:22;;29842:6;29837:155;29858:12;:19;;;;29854:1;:23;29837:155;;;29922:6;29903:25;;:12;29916:1;29903:15;;;;;;;;;;;;;;;;;;;;;;;;;:25;;;29899:82;;;29961:4;29949:16;;29899:82;29879:3;;;;;;;29837:155;;;;30009:9;30002:16;;;29727:299;;;:::o;20738:269::-;20831:4;20848:129;20857:12;:10;:12::i;:::-;20871:7;20880:96;20919:15;20880:96;;;;;;;;;;;;;;;;;:11;:25;20892:12;:10;:12::i;:::-;20880:25;;;;;;;;;;;;;;;:34;20906:7;20880:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;20848:8;:129::i;:::-;20995:4;20988:11;;20738:269;;;;:::o;25940:822::-;26026:4;26069:15;26087:35;26098:12;:10;:12::i;:::-;26112:9;26087:10;:35::i;:::-;26069:53;;26184:14;;;;;;;;;;;:29;;;;26203:10;26202:11;26184:29;26176:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26267:14;;;;;;;;;;;26263:492;;;26302:10;:42;;;;;26317:27;26331:12;:10;:12::i;:::-;26317:13;:27::i;:::-;26316:28;26302:42;26298:283;;;26365:57;26383:12;:10;:12::i;:::-;26397:9;26408:6;26416:5;26365:17;:57::i;:::-;;26448:4;26441:11;;;;;26298:283;26493:42;26503:12;:10;:12::i;:::-;26517:9;26528:6;26493:9;:42::i;:::-;26561:4;26554:11;;;;;26263:492;26603:10;26598:157;;26630:42;26640:12;:10;:12::i;:::-;26654:9;26665:6;26630:9;:42::i;:::-;26694:4;26687:11;;;;;26598:157;26738:5;26731:12;;;25940:822;;;;;:::o;31587:346::-;14661:12;:10;:12::i;:::-;14651:22;;:6;;;;;;;;;;;:22;;;14643:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31652:32:::1;31687:12;31652:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31717:12;;31710:19;;;;:::i;:::-;31745:9;31740:186;31764:15;:22;31760:1;:26;31740:186;;;31834:7;31812:29;;:15;31828:1;31812:18;;;;;;;;;;;;;;:29;;;31808:107;;31862:12;31880:15;31896:1;31880:18;;;;;;;;;;;;;;31862:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31808:107;31788:3;;;;;;;31740:186;;;;14721:1;31587:346:::0;:::o;25610:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31439:96::-;14661:12;:10;:12::i;:::-;14651:22;;:6;;;;;;;;;;;:22;;;14643:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31501:12:::1;31519:7;31501:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31439:96:::0;:::o;30752:102::-;14661:12;:10;:12::i;:::-;14651:22;;:6;;;;;;;;;;;:22;;;14643:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30821:11:::1;30838:7;30821:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30752:102:::0;:::o;18346:151::-;18435:7;18462:11;:18;18474:5;18462:18;;;;;;;;;;;;;;;:27;18481:7;18462:27;;;;;;;;;;;;;;;;18455:34;;18346:151;;;;:::o;25575:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30905:346::-;14661:12;:10;:12::i;:::-;14651:22;;:6;;;;;;;;;;;:22;;;14643:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30977:31:::1;31011:11;30977:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31040:11;;31033:18;;;;:::i;:::-;31067:9;31062:182;31086:14;:21;31082:1;:25;31062:182;;;31154:7;31133:28;;:14;31148:1;31133:17;;;;;;;;;;;;;;:28;;;31129:104;;31182:11;31199:14;31214:1;31199:17;;;;;;;;;;;;;;31182:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31129:104;31109:3;;;;;;;31062:182;;;;14721:1;30905:346:::0;:::o;31290:94::-;14661:12;:10;:12::i;:::-;14651:22;;:6;;;;;;;;;;;:22;;;14643:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31371:5:::1;31354:14;;:22;;;;;;;;;;;;;;;;;;31290:94:::0;:::o;15384:244::-;14661:12;:10;:12::i;:::-;14651:22;;:6;;;;;;;;;;;:22;;;14643:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15493:1:::1;15473:22;;:8;:22;;;;15465:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15583:8;15554:38;;15575:6;;;;;;;;;;;15554:38;;;;;;;;;;;;15612:8;15603:6;;:17;;;;;;;;;;;;;;;;;;15384:244:::0;:::o;28786:440::-;28875:4;28892:13;28908:5;28892:21;;28929:6;28924:158;28945:11;:18;;;;28941:1;:22;28924:158;;;29007:12;:10;:12::i;:::-;28989:30;;:11;29001:1;28989:14;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;28985:86;;;29051:4;29040:15;;28985:86;28965:3;;;;;;;28924:158;;;;29100:8;29092:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29169:27;29179:4;29185:2;29189:6;29169:9;:27::i;:::-;29214:4;29207:11;;;28786:440;;;;;:::o;4745:471::-;4803:7;5053:1;5048;:6;5044:47;;;5078:1;5071:8;;;;5044:47;5103:9;5119:1;5115;:5;5103:17;;5148:1;5143;5139;:5;;;;;;:10;5131:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5207:1;5200:8;;;4745:471;;;;;:::o;3391:181::-;3449:7;3469:9;3485:1;3481;:5;3469:17;;3510:1;3505;:6;;3497:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3563:1;3556:8;;;3391:181;;;;:::o;124:106::-;177:15;212:10;205:17;;124:106;:::o;23885:346::-;24004:1;23987:19;;:5;:19;;;;23979:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24085:1;24066:21;;:7;:21;;;;24058:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24169:6;24139:11;:18;24151:5;24139:18;;;;;;;;;;;;;;;:27;24158:7;24139:27;;;;;;;;;;;;;;;:36;;;;24207:7;24191:32;;24200:5;24191:32;;;24216:6;24191:32;;;;;;;;;;;;;;;;;;23885:346;;;:::o;27761:960::-;27877:4;27939:16;27958:22;27978:1;27958:15;27969:3;27958:6;:10;;:15;;;;:::i;:::-;:19;;:22;;;;:::i;:::-;27939:41;;27991:18;28012:22;28032:1;28012:15;28023:3;28012:6;:10;;:15;;;;:::i;:::-;:19;;:22;;;;:::i;:::-;27991:43;;28045:17;28065:36;28090:10;28065:20;28076:8;28065:6;:10;;:20;;;;:::i;:::-;:24;;:36;;;;:::i;:::-;28045:56;;28191:28;28210:8;28191:14;;:18;;:28;;;;:::i;:::-;28161:27;28179:8;28161:13;:11;:13::i;:::-;:17;;:27;;;;:::i;:::-;:58;28157:212;;;28247:47;28265:28;28284:8;28265:14;;:18;;:28;;;;:::i;:::-;28247:13;:11;:13::i;:::-;:17;;:47;;;;:::i;:::-;28236:58;;28321:36;28346:10;28321:20;28332:8;28321:6;:10;;:20;;;;:::i;:::-;:24;;:36;;;;:::i;:::-;28309:48;;28157:212;28381:44;28391:6;28407:4;28414:10;28381:9;:44::i;:::-;28459:14;28456:153;;;28489:36;28499:6;28507:9;28518:6;28489:9;:36::i;:::-;28456:153;;;28558:39;28568:6;28576:9;28587;28558;:39::i;:::-;28456:153;28637:1;28625:8;:13;28621:69;;28655:23;28661:6;28669:8;28655:5;:23::i;:::-;28621:69;28707:4;28700:11;;;;;27761:960;;;;;;:::o;4294:192::-;4380:7;4413:1;4408;:6;;4416:12;4400:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4440:9;4456:1;4452;:5;4440:17;;4477:1;4470:8;;;4294:192;;;;;:::o;21497:539::-;21621:1;21603:20;;:6;:20;;;;21595:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21705:1;21684:23;;:9;:23;;;;21676:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21760:47;21781:6;21789:9;21800:6;21760:20;:47::i;:::-;21840:71;21862:6;21840:71;;;;;;;;;;;;;;;;;:9;:17;21850:6;21840:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;21820:9;:17;21830:6;21820:17;;;;;;;;;;;;;;;:91;;;;21945:32;21970:6;21945:9;:20;21955:9;21945:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;21922:9;:20;21932:9;21922:20;;;;;;;;;;;;;;;:55;;;;22010:9;21993:35;;22002:6;21993:35;;;22021:6;21993:35;;;;;;;;;;;;;;;;;;21497:539;;;:::o;23027:418::-;23130:1;23111:21;;:7;:21;;;;23103:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23183:49;23204:7;23221:1;23225:6;23183:20;:49::i;:::-;23266:68;23289:6;23266:68;;;;;;;;;;;;;;;;;:9;:18;23276:7;23266:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;23245:9;:18;23255:7;23245:18;;;;;;;;;;;;;;;:89;;;;23360:24;23377:6;23360:12;;:16;;:24;;;;:::i;:::-;23345:12;:39;;;;23426:1;23400:37;;23409:7;23400:37;;;23430:6;23400:37;;;;;;;;;;;;;;;;;;23027:418;;:::o;5692:132::-;5750:7;5777:39;5781:1;5784;5777:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5770:46;;5692:132;;;;:::o;3855:136::-;3913:7;3940:43;3944:1;3947;3940:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3933:50;;3855:136;;;;:::o;25256:91::-;;;;:::o;6320:278::-;6406:7;6438:1;6434;:5;6441:12;6426:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6465:9;6481:1;6477;:5;;;;;;6465:17;;6589:1;6582:8;;;6320:278;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://846ce017d87e617846c22e6ab339fdd96cdaf0656583d24e1f005350d0bcdb92
Loading...
Loading
Loading...
Loading
OVERVIEW
Piranhas is a cryptocurrency spiced with a gameplay factor to make it more interesting, fun, and due to its tokenomics and smart contracts, holders can either increase or decrease its value.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.783559 | 8,133.8318 | $6,373.34 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.