Overview
CRO Balance
0 CRO
CRO Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 4,916 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17633789 | 47 hrs ago | IN | 0 CRO | 0.23357765 | ||||
Approve | 17629860 | 2 days ago | IN | 0 CRO | 0.23363825 | ||||
Approve | 17622254 | 2 days ago | IN | 0 CRO | 0.23351705 | ||||
Approve | 17477753 | 12 days ago | IN | 0 CRO | 0.23363825 | ||||
Approve | 17477741 | 12 days ago | IN | 0 CRO | 0.14728325 | ||||
Approve | 17465130 | 13 days ago | IN | 0 CRO | 0.23363825 | ||||
Approve | 17465066 | 13 days ago | IN | 0 CRO | 0.23363825 | ||||
Approve | 17465039 | 13 days ago | IN | 0 CRO | 0.23345645 | ||||
Approve | 17465004 | 13 days ago | IN | 0 CRO | 0.23345645 | ||||
Approve | 17464993 | 13 days ago | IN | 0 CRO | 0.23357765 | ||||
Approve | 17446057 | 14 days ago | IN | 0 CRO | 0.14728325 | ||||
Approve | 17422852 | 15 days ago | IN | 0 CRO | 0.23357765 | ||||
Approve | 17422655 | 15 days ago | IN | 0 CRO | 0.23357765 | ||||
Approve | 17327000 | 22 days ago | IN | 0 CRO | 0.23363825 | ||||
Approve | 17325854 | 22 days ago | IN | 0 CRO | 0.23356885 | ||||
Approve | 17311302 | 23 days ago | IN | 0 CRO | 0.23344768 | ||||
Approve | 17311296 | 23 days ago | IN | 0 CRO | 0.23350827 | ||||
Approve | 17260697 | 26 days ago | IN | 0 CRO | 0.2403908 | ||||
Approve | 17250619 | 27 days ago | IN | 0 CRO | 0.23357765 | ||||
Approve | 17228784 | 28 days ago | IN | 0 CRO | 0.23363825 | ||||
Approve | 17226400 | 28 days ago | IN | 0 CRO | 0.23708355 | ||||
Approve | 17224959 | 28 days ago | IN | 0 CRO | 0.23357765 | ||||
Approve | 17200109 | 30 days ago | IN | 0 CRO | 0.23357765 | ||||
Approve | 17185127 | 31 days ago | IN | 0 CRO | 0.23351705 | ||||
Approve | 17169901 | 32 days ago | IN | 0 CRO | 0.23351705 |
Loading...
Loading
Contract Name:
GoldenCrona
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-08-17 */ // Dependency file: @openzeppelin/contracts/utils/Context.sol // SPDX-License-Identifier: MIT // pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address 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; } } // Dependency file: @openzeppelin/contracts/GSN/Context.sol // pragma solidity >=0.6.0 <0.8.0; // import "@openzeppelin/contracts/utils/Context.sol"; // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } // Dependency file: @openzeppelin/contracts/math/SafeMath.sol // pragma solidity >=0.6.0 <0.8.0; /** * @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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { 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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // Dependency file: @openzeppelin/contracts/utils/Address.sol // pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ 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) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @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"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { 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); } } } } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity >=0.6.0 <0.8.0; // import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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; } } // Dependency file: contracts/grona/RBEP20.sol // pragma solidity ^0.6.2; // import "@openzeppelin/contracts/GSN/Context.sol"; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import "@openzeppelin/contracts/math/SafeMath.sol"; // import "@openzeppelin/contracts/utils/Address.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; contract RBEP20 is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcluded; address[] private _excluded; string private _name; string private _symbol; uint8 private _decimals; uint256 _taxFee = 200; // 2% uint256 _maxTaxFee = 1000; // 10% uint256 private constant _GRANULARITY = 100; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal; uint256 private _rTotal; uint256 private _tFeeTotal; event UpdateTaxFee(uint256 previousTaxFee, uint256 newTaxFee); constructor ( uint256 initialSupply, string memory name, string memory symbol, uint8 decimals, uint256 taxFee ) public { _name = name; _symbol = symbol; _decimals = decimals; _taxFee = taxFee; _tTotal = initialSupply; _rTotal = (MAX - (MAX % _tTotal)); _rOwned[_msgSender()] = _rTotal; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function taxFee() external view returns (uint256) { return _taxFee; } function maxTaxFee() external view returns (uint256) { return _maxTaxFee; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } 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; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function reflect(uint256 tAmount) external { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); (uint256 rAmount, uint256 rTransferAmount,,,) = _getValues(tAmount); return deductTransferFee ? rTransferAmount : rAmount; } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function updateTaxFee(uint256 _fee) public onlyOwner { require(_fee <= _maxTaxFee, 'fee must be mess than maxTaxFee'); uint256 previousTaxFee = _taxFee; _taxFee = _fee; emit UpdateTaxFee(previousTaxFee, _taxFee); } function _approve(address owner, address spender, uint256 amount) private { 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 _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { /// @dev neither are excluded _transferStandard(sender, recipient, amount); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256) { uint256 tFee = ((tAmount.mul(_taxFee)).div(_GRANULARITY)).div(100); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } } // Root file: contracts/grona/GoldenCrona.sol pragma solidity 0.6.12; // import "contracts/grona/RBEP20.sol"; contract GoldenCrona is RBEP20 { constructor () public RBEP20(300000000 * 1e18, "Golden Crona Token", "GRONA", 18, 200) {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousTaxFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTaxFee","type":"uint256"}],"name":"UpdateTaxFee","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTaxFee","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":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uint256","name":"_fee","type":"uint256"}],"name":"updateTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260c86009556103e8600a553480156200001c57600080fd5b506af8277896582678ac0000006040518060400160405280601281526020017123b7b63232b71021b937b730902a37b5b2b760711b8152506040518060400160405280600581526020016447524f4e4160d81b815250601260c8600062000088620001b460201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508351620000e7906006906020870190620001b8565b508251620000fd906007906020860190620001b8565b506008805460ff191660ff84161790556009819055600b85905584600019816200012357fe5b0619600c8190556001600062000138620001b4565b6001600160a01b031681526020810191909152604001600020556200015c620001b4565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a3505050505062000254565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001fb57805160ff19168380011785556200022b565b828001600101855582156200022b579182015b828111156200022b5782518255916020019190600101906200020e565b50620002399291506200023d565b5090565b5b808211156200023957600081556001016200023e565b611b7780620002646000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80638da5cb5b116100c3578063c7992f9a1161007c578063c7992f9a146103f4578063cba0e996146103fc578063dd62ed3e14610422578063f2cc0c1814610450578063f2fde38b14610476578063f84354f11461049c57610158565b80638da5cb5b1461034b57806395d89b411461036f578063a071dcf414610377578063a457c2d71461037f578063a9059cbb146103ab578063b5505335146103d757610158565b80632d838119116101155780632d83811914610291578063313ce567146102ae57806339509351146102cc5780634549b039146102f857806370a082311461031d578063715018a61461034357610158565b8063053ab1821461015d57806306fdde031461017c578063095ea7b3146101f957806313114a9d1461023957806318160ddd1461025357806323b872dd1461025b575b600080fd5b61017a6004803603602081101561017357600080fd5b50356104c2565b005b61018461059a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101be5781810151838201526020016101a6565b50505050905090810190601f1680156101eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102256004803603604081101561020f57600080fd5b506001600160a01b038135169060200135610630565b604080519115158252519081900360200190f35b61024161064e565b60408051918252519081900360200190f35b610241610654565b6102256004803603606081101561027157600080fd5b506001600160a01b0381358116916020810135909116906040013561065a565b610241600480360360208110156102a757600080fd5b50356106e1565b6102b6610743565b6040805160ff9092168252519081900360200190f35b610225600480360360408110156102e257600080fd5b506001600160a01b03813516906020013561074c565b6102416004803603604081101561030e57600080fd5b5080359060200135151561079a565b6102416004803603602081101561033357600080fd5b50356001600160a01b031661081c565b61017a61087e565b61035361092a565b604080516001600160a01b039092168252519081900360200190f35b610184610939565b61024161099a565b6102256004803603604081101561039557600080fd5b506001600160a01b0381351690602001356109a0565b610225600480360360408110156103c157600080fd5b506001600160a01b038135169060200135610a08565b61017a600480360360208110156103ed57600080fd5b5035610a1c565b610241610b1c565b6102256004803603602081101561041257600080fd5b50356001600160a01b0316610b22565b6102416004803603604081101561043857600080fd5b506001600160a01b0381358116916020013516610b40565b61017a6004803603602081101561046657600080fd5b50356001600160a01b0316610b6b565b61017a6004803603602081101561048c57600080fd5b50356001600160a01b0316610cfb565b61017a600480360360208110156104b257600080fd5b50356001600160a01b0316610dfd565b60006104cc610fc8565b6001600160a01b03811660009081526004602052604090205490915060ff16156105275760405162461bcd60e51b815260040180806020018281038252602c815260200180611af1602c913960400191505060405180910390fd5b600061053283610fcc565b505050506001600160a01b03831660009081526001602052604090205490915061055c9082611018565b6001600160a01b038316600090815260016020526040902055600c546105829082611018565b600c55600d546105929084611075565b600d55505050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106265780601f106105fb57610100808354040283529160200191610626565b820191906000526020600020905b81548152906001019060200180831161060957829003601f168201915b5050505050905090565b600061064461063d610fc8565b84846110d6565b5060015b92915050565b600d5490565b600b5490565b60006106678484846111c2565b6106d784610673610fc8565b6106d285604051806060016040528060288152602001611a37602891396001600160a01b038a166000908152600360205260408120906106b1610fc8565b6001600160a01b031681526020810191909152604001600020549190611392565b6110d6565b5060019392505050565b6000600c548211156107245760405162461bcd60e51b815260040180806020018281038252602a8152602001806119a4602a913960400191505060405180910390fd5b600061072e611429565b905061073a838261144c565b9150505b919050565b60085460ff1690565b6000610644610759610fc8565b846106d2856003600061076a610fc8565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611075565b6000600b548311156107f3576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b6000806107ff85610fcc565b50505091509150836108115781610813565b805b95945050505050565b6001600160a01b03811660009081526004602052604081205460ff161561085c57506001600160a01b03811660009081526002602052604090205461073e565b6001600160a01b038216600090815260016020526040902054610648906106e1565b610886610fc8565b6001600160a01b031661089761092a565b6001600160a01b0316146108e0576040805162461bcd60e51b81526020600482018190526024820152600080516020611a5f833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106265780601f106105fb57610100808354040283529160200191610626565b60095490565b60006106446109ad610fc8565b846106d285604051806060016040528060258152602001611b1d60259139600360006109d7610fc8565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611392565b6000610644610a15610fc8565b84846111c2565b610a24610fc8565b6001600160a01b0316610a3561092a565b6001600160a01b031614610a7e576040805162461bcd60e51b81526020600482018190526024820152600080516020611a5f833981519152604482015290519081900360640190fd5b600a54811115610ad5576040805162461bcd60e51b815260206004820152601f60248201527f666565206d757374206265206d657373207468616e206d617854617846656500604482015290519081900360640190fd5b6009805490829055604080518281526020810184905281517f3bd44ad33925c1a81e6dea38583782e35a5124cee2473f5fe16d366f0ad0d6b6929181900390910190a15050565b600a5490565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610b73610fc8565b6001600160a01b0316610b8461092a565b6001600160a01b031614610bcd576040805162461bcd60e51b81526020600482018190526024820152600080516020611a5f833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610c3b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610c95576001600160a01b038116600090815260016020526040902054610c7b906106e1565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610d03610fc8565b6001600160a01b0316610d1461092a565b6001600160a01b031614610d5d576040805162461bcd60e51b81526020600482018190526024820152600080516020611a5f833981519152604482015290519081900360640190fd5b6001600160a01b038116610da25760405162461bcd60e51b81526004018080602001828103825260268152602001806119ce6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610e05610fc8565b6001600160a01b0316610e1661092a565b6001600160a01b031614610e5f576040805162461bcd60e51b81526020600482018190526024820152600080516020611a5f833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610ecc576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610fc457816001600160a01b031660058281548110610ef057fe5b6000918252602090912001546001600160a01b03161415610fbc57600580546000198101908110610f1d57fe5b600091825260209091200154600580546001600160a01b039092169183908110610f4357fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610f9557fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610fc4565b600101610ecf565b5050565b3390565b6000806000806000806000610fe0886114b3565b915091506000610fee611429565b905060008060006110008c86866114f6565b919e909d50909b509599509397509395505050505050565b60008282111561106f576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156110cf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03831661111b5760405162461bcd60e51b8152600401808060200182810382526024815260200180611acd6024913960400191505060405180910390fd5b6001600160a01b0382166111605760405162461bcd60e51b81526004018080602001828103825260228152602001806119f46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166112075760405162461bcd60e51b8152600401808060200182810382526025815260200180611aa86025913960400191505060405180910390fd5b6001600160a01b03821661124c5760405162461bcd60e51b81526004018080602001828103825260238152602001806119816023913960400191505060405180910390fd5b6000811161128b5760405162461bcd60e51b8152600401808060200182810382526029815260200180611a7f6029913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff1680156112cc57506001600160a01b03821660009081526004602052604090205460ff16155b156112e1576112dc838383611532565b61138d565b6001600160a01b03831660009081526004602052604090205460ff1615801561132257506001600160a01b03821660009081526004602052604090205460ff165b15611332576112dc838383611649565b6001600160a01b03831660009081526004602052604090205460ff16801561137257506001600160a01b03821660009081526004602052604090205460ff165b15611382576112dc8383836116ef565b61138d83838361175f565b505050565b600081848411156114215760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113e65781810151838201526020016113ce565b50505050905090810190601f1680156114135780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006114366117a0565b9092509050611445828261144c565b9250505090565b60008082116114a2576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816114ab57fe5b049392505050565b60008060006114dd60646114d760646114d76009548961190390919063ffffffff16565b9061144c565b905060006114eb8583611018565b935090915050915091565b60008080806115058786611903565b905060006115138787611903565b905060006115218383611018565b929992985090965090945050505050565b600080600080600061154386610fcc565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506115739087611018565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546115a29086611018565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546115d19085611075565b6001600160a01b0388166000908152600160205260409020556115f4838261195c565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061165a86610fcc565b6001600160a01b038d166000908152600160205260409020549499509297509095509350915061168a9086611018565b6001600160a01b03808a16600090815260016020908152604080832094909455918a168152600290915220546116c09083611075565b6001600160a01b0388166000908152600260209081526040808320939093556001905220546115d19085611075565b600080600080600061170086610fcc565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506117309087611018565b6001600160a01b03891660009081526002602090815260408083209390935560019052205461168a9086611018565b600080600080600061177086610fcc565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506115a29086611018565b600c54600b546000918291825b6005548110156118d1578260016000600584815481106117c957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061182e575081600260006005848154811061180757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561184557600c54600b54945094505050506118ff565b611885600160006005848154811061185957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611018565b92506118c7600260006005848154811061189b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611018565b91506001016117ad565b50600b54600c546118e19161144c565b8210156118f957600c54600b549350935050506118ff565b90925090505b9091565b60008261191257506000610648565b8282028284828161191f57fe5b04146110cf5760405162461bcd60e51b8152600401808060200182810382526021815260200180611a166021913960400191505060405180910390fd5b600c546119699083611018565b600c55600d546119799082611075565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f7129561ed6c72a4c4a005b530725eea87004d77072842dbfb2264c88d60243c64736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c80638da5cb5b116100c3578063c7992f9a1161007c578063c7992f9a146103f4578063cba0e996146103fc578063dd62ed3e14610422578063f2cc0c1814610450578063f2fde38b14610476578063f84354f11461049c57610158565b80638da5cb5b1461034b57806395d89b411461036f578063a071dcf414610377578063a457c2d71461037f578063a9059cbb146103ab578063b5505335146103d757610158565b80632d838119116101155780632d83811914610291578063313ce567146102ae57806339509351146102cc5780634549b039146102f857806370a082311461031d578063715018a61461034357610158565b8063053ab1821461015d57806306fdde031461017c578063095ea7b3146101f957806313114a9d1461023957806318160ddd1461025357806323b872dd1461025b575b600080fd5b61017a6004803603602081101561017357600080fd5b50356104c2565b005b61018461059a565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101be5781810151838201526020016101a6565b50505050905090810190601f1680156101eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102256004803603604081101561020f57600080fd5b506001600160a01b038135169060200135610630565b604080519115158252519081900360200190f35b61024161064e565b60408051918252519081900360200190f35b610241610654565b6102256004803603606081101561027157600080fd5b506001600160a01b0381358116916020810135909116906040013561065a565b610241600480360360208110156102a757600080fd5b50356106e1565b6102b6610743565b6040805160ff9092168252519081900360200190f35b610225600480360360408110156102e257600080fd5b506001600160a01b03813516906020013561074c565b6102416004803603604081101561030e57600080fd5b5080359060200135151561079a565b6102416004803603602081101561033357600080fd5b50356001600160a01b031661081c565b61017a61087e565b61035361092a565b604080516001600160a01b039092168252519081900360200190f35b610184610939565b61024161099a565b6102256004803603604081101561039557600080fd5b506001600160a01b0381351690602001356109a0565b610225600480360360408110156103c157600080fd5b506001600160a01b038135169060200135610a08565b61017a600480360360208110156103ed57600080fd5b5035610a1c565b610241610b1c565b6102256004803603602081101561041257600080fd5b50356001600160a01b0316610b22565b6102416004803603604081101561043857600080fd5b506001600160a01b0381358116916020013516610b40565b61017a6004803603602081101561046657600080fd5b50356001600160a01b0316610b6b565b61017a6004803603602081101561048c57600080fd5b50356001600160a01b0316610cfb565b61017a600480360360208110156104b257600080fd5b50356001600160a01b0316610dfd565b60006104cc610fc8565b6001600160a01b03811660009081526004602052604090205490915060ff16156105275760405162461bcd60e51b815260040180806020018281038252602c815260200180611af1602c913960400191505060405180910390fd5b600061053283610fcc565b505050506001600160a01b03831660009081526001602052604090205490915061055c9082611018565b6001600160a01b038316600090815260016020526040902055600c546105829082611018565b600c55600d546105929084611075565b600d55505050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106265780601f106105fb57610100808354040283529160200191610626565b820191906000526020600020905b81548152906001019060200180831161060957829003601f168201915b5050505050905090565b600061064461063d610fc8565b84846110d6565b5060015b92915050565b600d5490565b600b5490565b60006106678484846111c2565b6106d784610673610fc8565b6106d285604051806060016040528060288152602001611a37602891396001600160a01b038a166000908152600360205260408120906106b1610fc8565b6001600160a01b031681526020810191909152604001600020549190611392565b6110d6565b5060019392505050565b6000600c548211156107245760405162461bcd60e51b815260040180806020018281038252602a8152602001806119a4602a913960400191505060405180910390fd5b600061072e611429565b905061073a838261144c565b9150505b919050565b60085460ff1690565b6000610644610759610fc8565b846106d2856003600061076a610fc8565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611075565b6000600b548311156107f3576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b6000806107ff85610fcc565b50505091509150836108115781610813565b805b95945050505050565b6001600160a01b03811660009081526004602052604081205460ff161561085c57506001600160a01b03811660009081526002602052604090205461073e565b6001600160a01b038216600090815260016020526040902054610648906106e1565b610886610fc8565b6001600160a01b031661089761092a565b6001600160a01b0316146108e0576040805162461bcd60e51b81526020600482018190526024820152600080516020611a5f833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106265780601f106105fb57610100808354040283529160200191610626565b60095490565b60006106446109ad610fc8565b846106d285604051806060016040528060258152602001611b1d60259139600360006109d7610fc8565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611392565b6000610644610a15610fc8565b84846111c2565b610a24610fc8565b6001600160a01b0316610a3561092a565b6001600160a01b031614610a7e576040805162461bcd60e51b81526020600482018190526024820152600080516020611a5f833981519152604482015290519081900360640190fd5b600a54811115610ad5576040805162461bcd60e51b815260206004820152601f60248201527f666565206d757374206265206d657373207468616e206d617854617846656500604482015290519081900360640190fd5b6009805490829055604080518281526020810184905281517f3bd44ad33925c1a81e6dea38583782e35a5124cee2473f5fe16d366f0ad0d6b6929181900390910190a15050565b600a5490565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610b73610fc8565b6001600160a01b0316610b8461092a565b6001600160a01b031614610bcd576040805162461bcd60e51b81526020600482018190526024820152600080516020611a5f833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610c3b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610c95576001600160a01b038116600090815260016020526040902054610c7b906106e1565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610d03610fc8565b6001600160a01b0316610d1461092a565b6001600160a01b031614610d5d576040805162461bcd60e51b81526020600482018190526024820152600080516020611a5f833981519152604482015290519081900360640190fd5b6001600160a01b038116610da25760405162461bcd60e51b81526004018080602001828103825260268152602001806119ce6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610e05610fc8565b6001600160a01b0316610e1661092a565b6001600160a01b031614610e5f576040805162461bcd60e51b81526020600482018190526024820152600080516020611a5f833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610ecc576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610fc457816001600160a01b031660058281548110610ef057fe5b6000918252602090912001546001600160a01b03161415610fbc57600580546000198101908110610f1d57fe5b600091825260209091200154600580546001600160a01b039092169183908110610f4357fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610f9557fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610fc4565b600101610ecf565b5050565b3390565b6000806000806000806000610fe0886114b3565b915091506000610fee611429565b905060008060006110008c86866114f6565b919e909d50909b509599509397509395505050505050565b60008282111561106f576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156110cf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b03831661111b5760405162461bcd60e51b8152600401808060200182810382526024815260200180611acd6024913960400191505060405180910390fd5b6001600160a01b0382166111605760405162461bcd60e51b81526004018080602001828103825260228152602001806119f46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166112075760405162461bcd60e51b8152600401808060200182810382526025815260200180611aa86025913960400191505060405180910390fd5b6001600160a01b03821661124c5760405162461bcd60e51b81526004018080602001828103825260238152602001806119816023913960400191505060405180910390fd5b6000811161128b5760405162461bcd60e51b8152600401808060200182810382526029815260200180611a7f6029913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff1680156112cc57506001600160a01b03821660009081526004602052604090205460ff16155b156112e1576112dc838383611532565b61138d565b6001600160a01b03831660009081526004602052604090205460ff1615801561132257506001600160a01b03821660009081526004602052604090205460ff165b15611332576112dc838383611649565b6001600160a01b03831660009081526004602052604090205460ff16801561137257506001600160a01b03821660009081526004602052604090205460ff165b15611382576112dc8383836116ef565b61138d83838361175f565b505050565b600081848411156114215760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113e65781810151838201526020016113ce565b50505050905090810190601f1680156114135780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006114366117a0565b9092509050611445828261144c565b9250505090565b60008082116114a2576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816114ab57fe5b049392505050565b60008060006114dd60646114d760646114d76009548961190390919063ffffffff16565b9061144c565b905060006114eb8583611018565b935090915050915091565b60008080806115058786611903565b905060006115138787611903565b905060006115218383611018565b929992985090965090945050505050565b600080600080600061154386610fcc565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506115739087611018565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546115a29086611018565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546115d19085611075565b6001600160a01b0388166000908152600160205260409020556115f4838261195c565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061165a86610fcc565b6001600160a01b038d166000908152600160205260409020549499509297509095509350915061168a9086611018565b6001600160a01b03808a16600090815260016020908152604080832094909455918a168152600290915220546116c09083611075565b6001600160a01b0388166000908152600260209081526040808320939093556001905220546115d19085611075565b600080600080600061170086610fcc565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506117309087611018565b6001600160a01b03891660009081526002602090815260408083209390935560019052205461168a9086611018565b600080600080600061177086610fcc565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506115a29086611018565b600c54600b546000918291825b6005548110156118d1578260016000600584815481106117c957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061182e575081600260006005848154811061180757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561184557600c54600b54945094505050506118ff565b611885600160006005848154811061185957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611018565b92506118c7600260006005848154811061189b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611018565b91506001016117ad565b50600b54600c546118e19161144c565b8210156118f957600c54600b549350935050506118ff565b90925090505b9091565b60008261191257506000610648565b8282028284828161191f57fe5b04146110cf5760405162461bcd60e51b8152600401808060200182810382526021815260200180611a166021913960400191505060405180910390fd5b600c546119699083611018565b600c55600d546119799082611075565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f7129561ed6c72a4c4a005b530725eea87004d77072842dbfb2264c88d60243c64736f6c634300060c0033
Deployed Bytecode Sourcemap
33275:134:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25901:378;;;;;;;;;;;;;;;;-1:-1:-1;25901:378:0;;:::i;:::-;;23595:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24695:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24695:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;25806:87;;;:::i;:::-;;;;;;;;;;;;;;;;23872:95;;;:::i;24864:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24864:313:0;;;;;;;;;;;;;;;;;:::i;26616:252::-;;;;;;;;;;;;;;;;-1:-1:-1;26616:252:0;;:::i;23781:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25185:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25185:218:0;;;;;;;;:::i;26287:321::-;;;;;;;;;;;;;;;;-1:-1:-1;26287:321:0;;;;;;;;;:::i;24163:198::-;;;;;;;;;;;;;;;;-1:-1:-1;24163:198:0;-1:-1:-1;;;;;24163:198:0;;:::i;21380:148::-;;;:::i;20729:87::-;;;:::i;:::-;;;;-1:-1:-1;;;;;20729:87:0;;;;;;;;;;;;;;23686;;;:::i;23975:83::-;;;:::i;25411:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25411:269:0;;;;;;;;:::i;24369:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24369:167:0;;;;;;;;:::i;27702:255::-;;;;;;;;;;;;;;;;-1:-1:-1;27702:255:0;;:::i;24066:89::-;;;:::i;25688:110::-;;;;;;;;;;;;;;;;-1:-1:-1;25688:110:0;-1:-1:-1;;;;;25688:110:0;;:::i;24544:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24544:143:0;;;;;;;;;;:::i;26876:332::-;;;;;;;;;;;;;;;;-1:-1:-1;26876:332:0;-1:-1:-1;;;;;26876:332:0;;:::i;21683:244::-;;;;;;;;;;;;;;;;-1:-1:-1;21683:244:0;-1:-1:-1;;;;;21683:244:0;;:::i;27216:478::-;;;;;;;;;;;;;;;;-1:-1:-1;27216:478:0;-1:-1:-1;;;;;27216:478:0;;:::i;25901:378::-;25955:14;25972:12;:10;:12::i;:::-;-1:-1:-1;;;;;26004:19:0;;;;;;:11;:19;;;;;;25955:29;;-1:-1:-1;26004:19:0;;26003:20;25995:77;;;;-1:-1:-1;;;25995:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26084:15;26107:19;26118:7;26107:10;:19::i;:::-;-1:-1:-1;;;;;;;;;26155:15:0;;;;;;:7;:15;;;;;;26083:43;;-1:-1:-1;26155:28:0;;26083:43;26155:19;:28::i;:::-;-1:-1:-1;;;;;26137:15:0;;;;;;:7;:15;;;;;:46;26204:7;;:20;;26216:7;26204:11;:20::i;:::-;26194:7;:30;26248:10;;:23;;26263:7;26248:14;:23::i;:::-;26235:10;:36;-1:-1:-1;;;25901:378:0:o;23595:83::-;23665:5;23658:12;;;;;;;;-1:-1:-1;;23658:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23632:13;;23658:12;;23665:5;;23658:12;;23665:5;23658:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23595:83;:::o;24695:161::-;24770:4;24787:39;24796:12;:10;:12::i;:::-;24810:7;24819:6;24787:8;:39::i;:::-;-1:-1:-1;24844:4:0;24695:161;;;;;:::o;25806:87::-;25875:10;;25806:87;:::o;23872:95::-;23952:7;;23872:95;:::o;24864:313::-;24962:4;24979:36;24989:6;24997:9;25008:6;24979:9;:36::i;:::-;25026:121;25035:6;25043:12;:10;:12::i;:::-;25057:89;25095:6;25057:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25057:19:0;;;;;;:11;:19;;;;;;25077:12;:10;:12::i;:::-;-1:-1:-1;;;;;25057:33:0;;;;;;;;;;;;-1:-1:-1;25057:33:0;;;:89;:37;:89::i;:::-;25026:8;:121::i;:::-;-1:-1:-1;25165:4:0;24864:313;;;;;:::o;26616:252::-;26682:7;26721;;26710;:18;;26702:73;;;;-1:-1:-1;;;26702:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26786:19;26808:10;:8;:10::i;:::-;26786:32;-1:-1:-1;26836:24:0;:7;26786:32;26836:11;:24::i;:::-;26829:31;;;26616:252;;;;:::o;23781:83::-;23847:9;;;;23781:83;:::o;25185:218::-;25273:4;25290:83;25299:12;:10;:12::i;:::-;25313:7;25322:50;25361:10;25322:11;:25;25334:12;:10;:12::i;:::-;-1:-1:-1;;;;;25322:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25322:25:0;;;:34;;;;;;;;;;;:38;:50::i;26287:321::-;26377:7;26416;;26405;:18;;26397:62;;;;;-1:-1:-1;;;26397:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26471:15;26488:23;26518:19;26529:7;26518:10;:19::i;:::-;26470:67;;;;;;;26555:17;:45;;26593:7;26555:45;;;26575:15;26555:45;26548:52;26287:321;-1:-1:-1;;;;;26287:321:0:o;24163:198::-;-1:-1:-1;;;;;24253:20:0;;24229:7;24253:20;;;:11;:20;;;;;;;;24249:49;;;-1:-1:-1;;;;;;24282:16:0;;;;;;:7;:16;;;;;;24275:23;;24249:49;-1:-1:-1;;;;;24336:16:0;;;;;;:7;:16;;;;;;24316:37;;:19;:37::i;21380:148::-;20960:12;:10;:12::i;:::-;-1:-1:-1;;;;;20949:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20949:23:0;;20941:68;;;;;-1:-1:-1;;;20941:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20941:68:0;;;;;;;;;;;;;;;21487:1:::1;21471:6:::0;;21450:40:::1;::::0;-1:-1:-1;;;;;21471:6:0;;::::1;::::0;21450:40:::1;::::0;21487:1;;21450:40:::1;21518:1;21501:19:::0;;-1:-1:-1;;;;;;21501:19:0::1;::::0;;21380:148::o;20729:87::-;20775:7;20802:6;-1:-1:-1;;;;;20802:6:0;20729:87;:::o;23686:::-;23758:7;23751:14;;;;;;;;-1:-1:-1;;23751:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23725:13;;23751:14;;23758:7;;23751:14;;23758:7;23751:14;;;;;;;;;;;;;;;;;;;;;;;;23975:83;24043:7;;23975:83;:::o;25411:269::-;25504:4;25521:129;25530:12;:10;:12::i;:::-;25544:7;25553:96;25592:15;25553:96;;;;;;;;;;;;;;;;;:11;:25;25565:12;:10;:12::i;:::-;-1:-1:-1;;;;;25553:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25553:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;24369:167::-;24447:4;24464:42;24474:12;:10;:12::i;:::-;24488:9;24499:6;24464:9;:42::i;27702:255::-;20960:12;:10;:12::i;:::-;-1:-1:-1;;;;;20949:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20949:23:0;;20941:68;;;;;-1:-1:-1;;;20941:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20941:68:0;;;;;;;;;;;;;;;27782:10:::1;;27774:4;:18;;27766:62;;;::::0;;-1:-1:-1;;;27766:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;27864:7;::::0;;27882:14;;;;27912:37:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;21020:1;27702:255:::0;:::o;24066:89::-;24137:10;;24066:89;:::o;25688:110::-;-1:-1:-1;;;;;25770:20:0;25746:4;25770:20;;;:11;:20;;;;;;;;;25688:110::o;24544:143::-;-1:-1:-1;;;;;24652:18:0;;;24625:7;24652:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;24544:143::o;26876:332::-;20960:12;:10;:12::i;:::-;-1:-1:-1;;;;;20949:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20949:23:0;;20941:68;;;;;-1:-1:-1;;;20941:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20941:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26958:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;26957:21;26949:61;;;::::0;;-1:-1:-1;;;26949:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;27024:16:0;::::1;27043:1;27024:16:::0;;;:7:::1;:16;::::0;;;;;:20;27021:108:::1;;-1:-1:-1::0;;;;;27100:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;27080:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;27061:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;27021:108:::1;-1:-1:-1::0;;;;;27139:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;27139:27:0::1;27162:4;27139:27:::0;;::::1;::::0;;;27177:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;27177:23:0::1;::::0;;::::1;::::0;;26876:332::o;21683:244::-;20960:12;:10;:12::i;:::-;-1:-1:-1;;;;;20949:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20949:23:0;;20941:68;;;;;-1:-1:-1;;;20941:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20941:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21772:22:0;::::1;21764:73;;;;-1:-1:-1::0;;;21764:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21874:6;::::0;;21853:38:::1;::::0;-1:-1:-1;;;;;21853:38:0;;::::1;::::0;21874:6;::::1;::::0;21853:38:::1;::::0;::::1;21902:6;:17:::0;;-1:-1:-1;;;;;;21902:17:0::1;-1:-1:-1::0;;;;;21902:17:0;;;::::1;::::0;;;::::1;::::0;;21683:244::o;27216:478::-;20960:12;:10;:12::i;:::-;-1:-1:-1;;;;;20949:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20949:23:0;;20941:68;;;;;-1:-1:-1;;;20941:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20941:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27297:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;27289:60;;;::::0;;-1:-1:-1;;;27289:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;27365:9;27360:327;27384:9;:16:::0;27380:20;::::1;27360:327;;;27442:7;-1:-1:-1::0;;;;;27426:23:0::1;:9;27436:1;27426:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;27426:12:0::1;:23;27422:254;;;27485:9;27495:16:::0;;-1:-1:-1;;27495:20:0;;;27485:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;27470:9:::1;:12:::0;;-1:-1:-1;;;;;27485:31:0;;::::1;::::0;27480:1;;27470:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;27470:46:0::1;-1:-1:-1::0;;;;;27470:46:0;;::::1;;::::0;;27535:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;27574:11:::1;:20:::0;;;;:28;;-1:-1:-1;;27574:28:0::1;::::0;;27621:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;27621:15:0;;;;;-1:-1:-1;;;;;;27621:15:0::1;::::0;;;;;27655:5:::1;;27422:254;27402:3;;27360:327;;;;27216:478:::0;:::o;681:106::-;769:10;681:106;:::o;31395:410::-;31454:7;31463;31472;31481;31490;31511:23;31536:12;31552:20;31564:7;31552:11;:20::i;:::-;31510:62;;;;31583:19;31605:10;:8;:10::i;:::-;31583:32;;31627:15;31644:23;31669:12;31685:39;31697:7;31706:4;31712:11;31685;:39::i;:::-;31626:98;;;;-1:-1:-1;31626:98:0;;-1:-1:-1;31775:15:0;;-1:-1:-1;31792:4:0;;-1:-1:-1;31395:410:0;;-1:-1:-1;;;;;;31395:410:0:o;7296:158::-;7354:7;7387:1;7382;:6;;7374:49;;;;;-1:-1:-1;;;7374:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7441:5:0;;;7296:158::o;6834:179::-;6892:7;6924:5;;;6948:6;;;;6940:46;;;;;-1:-1:-1;;;6940:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7004:1;6834:179;-1:-1:-1;;;6834:179:0:o;27965:337::-;-1:-1:-1;;;;;28058:19:0;;28050:68;;;;-1:-1:-1;;;28050:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28137:21:0;;28129:68;;;;-1:-1:-1;;;28129:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28210:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28262:32;;;;;;;;;;;;;;;;;27965:337;;;:::o;28310:844::-;-1:-1:-1;;;;;28407:20:0;;28399:70;;;;-1:-1:-1;;;28399:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28488:23:0;;28480:71;;;;-1:-1:-1;;;28480:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28579:1;28570:6;:10;28562:64;;;;-1:-1:-1;;;28562:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28641:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;28665:22:0;;;;;;:11;:22;;;;;;;;28664:23;28641:46;28637:510;;;28704:48;28726:6;28734:9;28745:6;28704:21;:48::i;:::-;28637:510;;;-1:-1:-1;;;;;28775:19:0;;;;;;:11;:19;;;;;;;;28774:20;:46;;;;-1:-1:-1;;;;;;28798:22:0;;;;;;:11;:22;;;;;;;;28774:46;28770:377;;;28837:46;28857:6;28865:9;28876:6;28837:19;:46::i;28770:377::-;-1:-1:-1;;;;;28905:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;28928:22:0;;;;;;:11;:22;;;;;;;;28905:45;28901:246;;;28967:48;28989:6;28997:9;29008:6;28967:21;:48::i;28901:246::-;29091:44;29109:6;29117:9;29128:6;29091:17;:44::i;:::-;28310:844;;;:::o;9661:166::-;9747:7;9783:12;9775:6;;;;9767:29;;;;-1:-1:-1;;;9767:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9814:5:0;;;9661:166::o;32421:163::-;32462:7;32483:15;32500;32519:19;:17;:19::i;:::-;32482:56;;-1:-1:-1;32482:56:0;-1:-1:-1;32556:20:0;32482:56;;32556:11;:20::i;:::-;32549:27;;;;32421:163;:::o;8411:153::-;8469:7;8501:1;8497;:5;8489:44;;;;;-1:-1:-1;;;8489:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8555:1;8551;:5;;;;;;;8411:153;-1:-1:-1;;;8411:153:0:o;31813:258::-;31873:7;31882;31902:12;31917:51;31964:3;31918:40;22889:3;31919:20;31931:7;;31919;:11;;:20;;;;:::i;:::-;31918:26;;:40::i;31917:51::-;31902:66;-1:-1:-1;31979:23:0;32005:17;:7;31902:66;32005:11;:17::i;:::-;31979:43;-1:-1:-1;32058:4:0;;-1:-1:-1;;31813:258:0;;;:::o;32079:334::-;32174:7;;;;32230:24;:7;32242:11;32230;:24::i;:::-;32212:42;-1:-1:-1;32265:12:0;32280:21;:4;32289:11;32280:8;:21::i;:::-;32265:36;-1:-1:-1;32312:23:0;32338:17;:7;32265:36;32338:11;:17::i;:::-;32374:7;;;;-1:-1:-1;32400:4:0;;-1:-1:-1;32079:334:0;;-1:-1:-1;;;;;32079:334:0:o;30141:506::-;30244:15;30261:23;30286:12;30300:23;30325:12;30341:19;30352:7;30341:10;:19::i;:::-;-1:-1:-1;;;;;30389:15:0;;;;;;:7;:15;;;;;;30243:117;;-1:-1:-1;30243:117:0;;-1:-1:-1;30243:117:0;;-1:-1:-1;30243:117:0;-1:-1:-1;30243:117:0;-1:-1:-1;30389:28:0;;30409:7;30389:19;:28::i;:::-;-1:-1:-1;;;;;30371:15:0;;;;;;:7;:15;;;;;;;;:46;;;;30446:7;:15;;;;:28;;30466:7;30446:19;:28::i;:::-;-1:-1:-1;;;;;30428:15:0;;;;;;;:7;:15;;;;;;:46;;;;30506:18;;;;;;;:39;;30529:15;30506:22;:39::i;:::-;-1:-1:-1;;;;;30485:18:0;;;;;;:7;:18;;;;;:60;30556:23;30568:4;30574;30556:11;:23::i;:::-;30612:9;-1:-1:-1;;;;;30595:44:0;30604:6;-1:-1:-1;;;;;30595:44:0;;30623:15;30595:44;;;;;;;;;;;;;;;;;;30141:506;;;;;;;;:::o;29615:518::-;29716:15;29733:23;29758:12;29772:23;29797:12;29813:19;29824:7;29813:10;:19::i;:::-;-1:-1:-1;;;;;29861:15:0;;;;;;:7;:15;;;;;;29715:117;;-1:-1:-1;29715:117:0;;-1:-1:-1;29715:117:0;;-1:-1:-1;29715:117:0;-1:-1:-1;29715:117:0;-1:-1:-1;29861:28:0;;29715:117;29861:19;:28::i;:::-;-1:-1:-1;;;;;29843:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;29921:18;;;;;:7;:18;;;;;:39;;29944:15;29921:22;:39::i;:::-;-1:-1:-1;;;;;29900:18:0;;;;;;:7;:18;;;;;;;;:60;;;;29992:7;:18;;;;:39;;30015:15;29992:22;:39::i;30655:577::-;30758:15;30775:23;30800:12;30814:23;30839:12;30855:19;30866:7;30855:10;:19::i;:::-;-1:-1:-1;;;;;30903:15:0;;;;;;:7;:15;;;;;;30757:117;;-1:-1:-1;30757:117:0;;-1:-1:-1;30757:117:0;;-1:-1:-1;30757:117:0;-1:-1:-1;30757:117:0;-1:-1:-1;30903:28:0;;30923:7;30903:19;:28::i;:::-;-1:-1:-1;;;;;30885:15:0;;;;;;:7;:15;;;;;;;;:46;;;;30960:7;:15;;;;:28;;30980:7;30960:19;:28::i;29162:445::-;29261:15;29278:23;29303:12;29317:23;29342:12;29358:19;29369:7;29358:10;:19::i;:::-;-1:-1:-1;;;;;29406:15:0;;;;;;:7;:15;;;;;;29260:117;;-1:-1:-1;29260:117:0;;-1:-1:-1;29260:117:0;;-1:-1:-1;29260:117:0;-1:-1:-1;29260:117:0;-1:-1:-1;29406:28:0;;29260:117;29406:19;:28::i;32592:555::-;32689:7;;32725;;32642;;;;;32743:289;32767:9;:16;32763:20;;32743:289;;;32833:7;32809;:21;32817:9;32827:1;32817:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32817:12:0;32809:21;;;;;;;;;;;;;:31;;:66;;;32868:7;32844;:21;32852:9;32862:1;32852:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32852:12:0;32844:21;;;;;;;;;;;;;:31;32809:66;32805:97;;;32885:7;;32894;;32877:25;;;;;;;;;32805:97;32927:34;32939:7;:21;32947:9;32957:1;32947:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32947:12:0;32939:21;;;;;;;;;;;;;32927:7;;:11;:34::i;:::-;32917:44;;32986:34;32998:7;:21;33006:9;33016:1;33006:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33006:12:0;32998:21;;;;;;;;;;;;;32986:7;;:11;:34::i;:::-;32976:44;-1:-1:-1;32785:3:0;;32743:289;;;-1:-1:-1;33068:7:0;;33056;;:20;;:11;:20::i;:::-;33046:7;:30;33042:61;;;33086:7;;33095;;33078:25;;;;;;;;33042:61;33122:7;;-1:-1:-1;33131:7:0;-1:-1:-1;32592:555:0;;;:::o;7713:220::-;7771:7;7795:6;7791:20;;-1:-1:-1;7810:1:0;7803:8;;7791:20;7834:5;;;7838:1;7834;:5;:1;7858:5;;;;;:10;7850:56;;;;-1:-1:-1;;;7850:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31240:147;31318:7;;:17;;31330:4;31318:11;:17::i;:::-;31308:7;:27;31359:10;;:20;;31374:4;31359:14;:20::i;:::-;31346:10;:33;-1:-1:-1;;31240:147:0:o
Swarm Source
ipfs://f7129561ed6c72a4c4a005b530725eea87004d77072842dbfb2264c88d60243c
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.