Token FINN Token
Overview ERC20
Price
$0.00 @ 0.000000 CLV
Fully Diluted Market Cap
Total Supply:
100,000,000 FINN
Holders:
39 addresses
Transfers:
-
Contract:
Decimals:
18
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FINN
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-07 */ // 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); } } } } // 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; } } // 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); } // File: @openzeppelin/contracts/utils/Context.sol 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; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @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; } } // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity >=0.6.0 <0.8.0; // File: contracts/RERC20.sol pragma solidity ^0.6.2; /* * HuckleberryFinance * Reflect Token implementation * App: https://huckleberry.finance * GitHub: https://github.com/huckleberryDex */ contract RERC20 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 = 100; // 1% 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); } } // File: contracts/FINN.sol pragma solidity 0.6.12; /* * HuckleberryFinance * App: https://huckleberry.finance * GitHub: https://github.com/huckleberryfinance */ contract FINN is RERC20 { // 1% fee to all holders constructor (uint256 initialSupply) public RERC20(initialSupply, "FINN Token", "FINN", 18, 0) {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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
608060405260646009556103e8600a553480156200001c57600080fd5b506040516200376038038062003760833981810160405260208110156200004257600080fd5b8101908080519060200190929190505050806040518060400160405280600a81526020017f46494e4e20546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f46494e4e000000000000000000000000000000000000000000000000000000008152506012600080620000d5620002bf60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35083600690805190602001906200018b929190620002c7565b508260079080519060200190620001a4929190620002c7565b5081600860006101000a81548160ff021916908360ff1602179055508060098190555084600b81905550600b5460001981620001dc57fe5b0660001903600c81905550600c5460016000620001fe620002bf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200024c620002bf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a35050505050506200036d565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200030a57805160ff19168380011785556200033b565b828001600101855582156200033b579182015b828111156200033a5782518255916020019190600101906200031d565b5b5090506200034a91906200034e565b5090565b5b80821115620003695760008160009055506001016200034f565b5090565b6133e3806200037d6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80638da5cb5b116100c3578063c7992f9a1161007c578063c7992f9a14610674578063cba0e99614610692578063dd62ed3e146106ec578063f2cc0c1814610764578063f2fde38b146107a8578063f84354f1146107ec57610158565b80638da5cb5b146104a957806395d89b41146104dd578063a071dcf414610560578063a457c2d71461057e578063a9059cbb146105e2578063b55053351461064657610158565b80632d838119116101155780632d83811914610332578063313ce5671461037457806339509351146103955780634549b039146103f957806370a0823114610447578063715018a61461049f57610158565b8063053ab1821461015d57806306fdde031461018b578063095ea7b31461020e57806313114a9d1461027257806318160ddd1461029057806323b872dd146102ae575b600080fd5b6101896004803603602081101561017357600080fd5b8101908080359060200190929190505050610830565b005b6101936109c0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101d35780820151818401526020810190506101b8565b50505050905090810190601f1680156102005780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61025a6004803603604081101561022457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a62565b60405180821515815260200191505060405180910390f35b61027a610a80565b6040518082815260200191505060405180910390f35b610298610a8a565b6040518082815260200191505060405180910390f35b61031a600480360360608110156102c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a94565b60405180821515815260200191505060405180910390f35b61035e6004803603602081101561034857600080fd5b8101908080359060200190929190505050610b6d565b6040518082815260200191505060405180910390f35b61037c610bf1565b604051808260ff16815260200191505060405180910390f35b6103e1600480360360408110156103ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c08565b60405180821515815260200191505060405180910390f35b6104316004803603604081101561040f57600080fd5b8101908080359060200190929190803515159060200190929190505050610cbb565b6040518082815260200191505060405180910390f35b6104896004803603602081101561045d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d5f565b6040518082815260200191505060405180910390f35b6104a7610e4a565b005b6104b1610fb7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104e5610fe0565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561052557808201518184015260208101905061050a565b50505050905090810190601f1680156105525780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610568611082565b6040518082815260200191505060405180910390f35b6105ca6004803603604081101561059457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061108c565b60405180821515815260200191505060405180910390f35b61062e600480360360408110156105f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611159565b60405180821515815260200191505060405180910390f35b6106726004803603602081101561065c57600080fd5b8101908080359060200190929190505050611177565b005b61067c6112f1565b6040518082815260200191505060405180910390f35b6106d4600480360360208110156106a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112fb565b60405180821515815260200191505060405180910390f35b61074e6004803603604081101561070257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611351565b6040518082815260200191505060405180910390f35b6107a66004803603602081101561077a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113d8565b005b6107ea600480360360208110156107be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d9565b005b61082e6004803603602081101561080257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118cb565b005b600061083a611c3c565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156108df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061335d602c913960400191505060405180910390fd5b60006108ea83611c44565b50505050905061094281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9c90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061099a81600c54611c9c90919063ffffffff16565b600c819055506109b583600d54611d1f90919063ffffffff16565b600d81905550505050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a585780601f10610a2d57610100808354040283529160200191610a58565b820191906000526020600020905b815481529060010190602001808311610a3b57829003601f168201915b5050505050905090565b6000610a76610a6f611c3c565b8484611da7565b6001905092915050565b6000600d54905090565b6000600b54905090565b6000610aa1848484611f9e565b610b6284610aad611c3c565b610b5d856040518060600160405280602881526020016132c360289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b13611c3c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461233d9092919063ffffffff16565b611da7565b600190509392505050565b6000600c54821115610bca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613230602a913960400191505060405180910390fd5b6000610bd46123f7565b9050610be9818461242290919063ffffffff16565b915050919050565b6000600860009054906101000a900460ff16905090565b6000610cb1610c15611c3c565b84610cac8560036000610c26611c3c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d1f90919063ffffffff16565b611da7565b6001905092915050565b6000600b54831115610d35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f416d6f756e74206d757374206265206c657373207468616e20737570706c790081525060200191505060405180910390fd5b600080610d4185611c44565b5050509150915083610d535781610d55565b805b9250505092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610dfa57600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610e45565b610e42600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b6d565b90505b919050565b610e52611c3c565b73ffffffffffffffffffffffffffffffffffffffff16610e70610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110785780601f1061104d57610100808354040283529160200191611078565b820191906000526020600020905b81548152906001019060200180831161105b57829003601f168201915b5050505050905090565b6000600954905090565b600061114f611099611c3c565b8461114a8560405180606001604052806025815260200161338960259139600360006110c3611c3c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461233d9092919063ffffffff16565b611da7565b6001905092915050565b600061116d611166611c3c565b8484611f9e565b6001905092915050565b61117f611c3c565b73ffffffffffffffffffffffffffffffffffffffff1661119d610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614611226576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a5481111561129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f666565206d757374206265206d657373207468616e206d61785461784665650081525060200191505060405180910390fd5b60006009549050816009819055507f3bd44ad33925c1a81e6dea38583782e35a5124cee2473f5fe16d366f0ad0d6b681600954604051808381526020018281526020019250505060405180910390a15050565b6000600a54905090565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113e0611c3c565b73ffffffffffffffffffffffffffffffffffffffff166113fe610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614611487576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561161b576115d7600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b6d565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6116e1611c3c565b73ffffffffffffffffffffffffffffffffffffffff166116ff610fb7565b73ffffffffffffffffffffffffffffffffffffffff1614611788576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561180e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061325a6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118d3611c3c565b73ffffffffffffffffffffffffffffffffffffffff166118f1610fb7565b73ffffffffffffffffffffffffffffffffffffffff161461197a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4163636f756e7420697320616c7265616479206578636c75646564000000000081525060200191505060405180910390fd5b60005b600580549050811015611c38578173ffffffffffffffffffffffffffffffffffffffff1660058281548110611a6d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c2b57600560016005805490500381548110611ac957fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660058281548110611b0157fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005805480611bf157fe5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055611c38565b8080600101915050611a3c565b5050565b600033905090565b6000806000806000806000611c58886124ab565b915091506000611c666123f7565b90506000806000611c788c8686612511565b92509250925082828288889a509a509a509a509a5050505050505091939590929450565b600082821115611d14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600080828401905083811015611d9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e2d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806133396024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611eb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806132806022913960400191505060405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612024576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806133146025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061320d6023913960400191505060405180910390fd5b60008111612103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806132eb6029913960400191505060405180910390fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121a65750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121bb576121b683838361256f565b612338565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561225e5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122735761226e8383836127c2565b612337565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123155750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561232a57612325838383612a15565b612336565b612335838383612cfd565b5b5b5b505050565b60008383111582906123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156123af578082015181840152602081019050612394565b50505050905090810190601f1680156123dc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b6000806000612404612ebb565b9150915061241b818361242290919063ffffffff16565b9250505090565b6000808211612499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b8183816124a257fe5b04905092915050565b60008060006124eb60646124dd60646124cf6009548961314c90919063ffffffff16565b61242290919063ffffffff16565b61242290919063ffffffff16565b905060006125028286611c9c90919063ffffffff16565b90508082935093505050915091565b60008060008061252a858861314c90919063ffffffff16565b90506000612541868861314c90919063ffffffff16565b905060006125588284611c9c90919063ffffffff16565b905082818395509550955050505093509350939050565b600080600080600061258086611c44565b945094509450945094506125dc86600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061267185600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061270684600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d1f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061275383826131d2565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006127d386611c44565b9450945094509450945061282f85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506128c482600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d1f90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061295984600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d1f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506129a683826131d2565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000612a2686611c44565b94509450945094509450612a8286600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9c90919063ffffffff16565b600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612b1785600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612bac82600260008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d1f90919063ffffffff16565b600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c4184600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d1f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c8e83826131d2565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000806000612d0e86611c44565b94509450945094509450612d6a85600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9c90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612dff84600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d1f90919063ffffffff16565b600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612e4c83826131d2565b8673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b6000806000600c5490506000600b54905060005b60058054905081101561310f57826001600060058481548110612eee57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180612fd55750816002600060058481548110612f6d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15612fec57600c54600b5494509450505050613148565b613075600160006005848154811061300057fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484611c9c90919063ffffffff16565b9250613100600260006005848154811061308b57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483611c9c90919063ffffffff16565b91508080600101915050612ecf565b50613127600b54600c5461242290919063ffffffff16565b82101561313f57600c54600b54935093505050613148565b81819350935050505b9091565b60008083141561315f57600090506131cc565b600082840290508284828161317057fe5b04146131c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806132a26021913960400191505060405180910390fd5b809150505b92915050565b6131e782600c54611c9c90919063ffffffff16565b600c8190555061320281600d54611d1f90919063ffffffff16565b600d81905550505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f10361919835fc85bfe8cf3a34c2129e8f2cdbb726e218371779a40cda827dc364736f6c634300060c003300000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 100000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Deployed ByteCode Sourcemap
33011:162:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25552:378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23246:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24346:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25457:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23523:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24515:313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26267:252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23432:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24836:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25938:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23814:198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21060:148;;;:::i;:::-;;20409:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23337;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23626:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25062:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24020:167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27353:255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23717:89;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25339:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24195:143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26527:332;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21363:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26867:478;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25552:378;25606:14;25623:12;:10;:12::i;:::-;25606:29;;25655:11;:19;25667:6;25655:19;;;;;;;;;;;;;;;;;;;;;;;;;25654:20;25646:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25735:15;25758:19;25769:7;25758:10;:19::i;:::-;25734:43;;;;;;25806:28;25826:7;25806;:15;25814:6;25806:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;25788:7;:15;25796:6;25788:15;;;;;;;;;;;;;;;:46;;;;25855:20;25867:7;25855;;:11;;:20;;;;:::i;:::-;25845:7;:30;;;;25899:23;25914:7;25899:10;;:14;;:23;;;;:::i;:::-;25886:10;:36;;;;25552:378;;;:::o;23246:83::-;23283:13;23316:5;23309:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23246:83;:::o;24346:161::-;24421:4;24438:39;24447:12;:10;:12::i;:::-;24461:7;24470:6;24438:8;:39::i;:::-;24495:4;24488:11;;24346:161;;;;:::o;25457:87::-;25499:7;25526:10;;25519:17;;25457:87;:::o;23523:95::-;23576:7;23603;;23596:14;;23523:95;:::o;24515:313::-;24613:4;24630:36;24640:6;24648:9;24659:6;24630:9;:36::i;:::-;24677:121;24686:6;24694:12;:10;:12::i;:::-;24708:89;24746:6;24708:89;;;;;;;;;;;;;;;;;:11;:19;24720:6;24708:19;;;;;;;;;;;;;;;:33;24728:12;:10;:12::i;:::-;24708:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;24677:8;:121::i;:::-;24816:4;24809:11;;24515:313;;;;;:::o;26267:252::-;26333:7;26372;;26361;:18;;26353:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26437:19;26459:10;:8;:10::i;:::-;26437:32;;26487:24;26499:11;26487:7;:11;;:24;;;;:::i;:::-;26480:31;;;26267:252;;;:::o;23432:83::-;23473:5;23498:9;;;;;;;;;;;23491:16;;23432:83;:::o;24836:218::-;24924:4;24941:83;24950:12;:10;:12::i;:::-;24964:7;24973:50;25012:10;24973:11;:25;24985:12;:10;:12::i;:::-;24973:25;;;;;;;;;;;;;;;:34;24999:7;24973:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;24941:8;:83::i;:::-;25042:4;25035:11;;24836:218;;;;:::o;25938:321::-;26028:7;26067;;26056;:18;;26048:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26122:15;26139:23;26169:19;26180:7;26169:10;:19::i;:::-;26121:67;;;;;;;26206:17;:45;;26244:7;26206:45;;;26226:15;26206:45;26199:52;;;;25938:321;;;;:::o;23814:198::-;23880:7;23904:11;:20;23916:7;23904:20;;;;;;;;;;;;;;;;;;;;;;;;;23900:49;;;23933:7;:16;23941:7;23933:16;;;;;;;;;;;;;;;;23926:23;;;;23900:49;23967:37;23987:7;:16;23995:7;23987:16;;;;;;;;;;;;;;;;23967:19;:37::i;:::-;23960:44;;23814:198;;;;:::o;21060:148::-;20640:12;:10;:12::i;:::-;20629:23;;:7;:5;:7::i;:::-;:23;;;20621:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21167:1:::1;21130:40;;21151:6;::::0;::::1;;;;;;;;21130:40;;;;;;;;;;;;21198:1;21181:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;21060:148::o:0;20409:87::-;20455:7;20482:6;;;;;;;;;;;20475:13;;20409:87;:::o;23337:::-;23376:13;23409:7;23402:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23337:87;:::o;23626:83::-;23667:7;23694;;23687:14;;23626:83;:::o;25062:269::-;25155:4;25172:129;25181:12;:10;:12::i;:::-;25195:7;25204:96;25243:15;25204:96;;;;;;;;;;;;;;;;;:11;:25;25216:12;:10;:12::i;:::-;25204:25;;;;;;;;;;;;;;;:34;25230:7;25204:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;25172:8;:129::i;:::-;25319:4;25312:11;;25062:269;;;;:::o;24020:167::-;24098:4;24115:42;24125:12;:10;:12::i;:::-;24139:9;24150:6;24115:9;:42::i;:::-;24175:4;24168:11;;24020:167;;;;:::o;27353:255::-;20640:12;:10;:12::i;:::-;20629:23;;:7;:5;:7::i;:::-;:23;;;20621:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27433:10:::1;;27425:4;:18;;27417:62;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;27490:22;27515:7;;27490:32;;27543:4;27533:7;:14;;;;27563:37;27576:14;27592:7;;27563:37;;;;;;;;;;;;;;;;;;;;;;;;20700:1;27353:255:::0;:::o;23717:89::-;23761:7;23788:10;;23781:17;;23717:89;:::o;25339:110::-;25397:4;25421:11;:20;25433:7;25421:20;;;;;;;;;;;;;;;;;;;;;;;;;25414:27;;25339:110;;;:::o;24195:143::-;24276:7;24303:11;:18;24315:5;24303:18;;;;;;;;;;;;;;;:27;24322:7;24303:27;;;;;;;;;;;;;;;;24296:34;;24195:143;;;;:::o;26527:332::-;20640:12;:10;:12::i;:::-;20629:23;;:7;:5;:7::i;:::-;:23;;;20621:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26609:11:::1;:20;26621:7;26609:20;;;;;;;;;;;;;;;;;;;;;;;;;26608:21;26600:61;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;26694:1;26675:7;:16;26683:7;26675:16;;;;;;;;;;;;;;;;:20;26672:108;;;26731:37;26751:7;:16;26759:7;26751:16;;;;;;;;;;;;;;;;26731:19;:37::i;:::-;26712:7;:16;26720:7;26712:16;;;;;;;;;;;;;;;:56;;;;26672:108;26813:4;26790:11;:20;26802:7;26790:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;26828:9;26843:7;26828:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26527:332:::0;:::o;21363:244::-;20640:12;:10;:12::i;:::-;20629:23;;:7;:5;:7::i;:::-;:23;;;20621:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21472:1:::1;21452:22;;:8;:22;;;;21444:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21562:8;21533:38;;21554:6;::::0;::::1;;;;;;;;21533:38;;;;;;;;;;;;21591:8;21582:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;21363:244:::0;:::o;26867:478::-;20640:12;:10;:12::i;:::-;20629:23;;:7;:5;:7::i;:::-;:23;;;20621:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26948:11:::1;:20;26960:7;26948:20;;;;;;;;;;;;;;;;;;;;;;;;;26940:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;27016:9;27011:327;27035:9;:16;;;;27031:1;:20;27011:327;;;27093:7;27077:23;;:9;27087:1;27077:12;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;27073:254;;;27136:9;27165:1;27146:9;:16;;;;:20;27136:31;;;;;;;;;;;;;;;;;;;;;;;;;27121:9;27131:1;27121:12;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;27205:1;27186:7;:16;27194:7;27186:16;;;;;;;;;;;;;;;:20;;;;27248:5;27225:11;:20;27237:7;27225:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;27272:9;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27306:5;;27073:254;27053:3;;;;;;;27011:327;;;;26867:478:::0;:::o;18944:106::-;18997:15;19032:10;19025:17;;18944:106;:::o;31046:410::-;31105:7;31114;31123;31132;31141;31162:23;31187:12;31203:20;31215:7;31203:11;:20::i;:::-;31161:62;;;;31234:19;31256:10;:8;:10::i;:::-;31234:32;;31278:15;31295:23;31320:12;31336:39;31348:7;31357:4;31363:11;31336;:39::i;:::-;31277:98;;;;;;31394:7;31403:15;31420:4;31426:15;31443:4;31386:62;;;;;;;;;;;;;;;;31046:410;;;;;;;:::o;11292:158::-;11350:7;11383:1;11378;:6;;11370:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11441:1;11437;:5;11430:12;;11292:158;;;;:::o;10830:179::-;10888:7;10908:9;10924:1;10920;:5;10908:17;;10949:1;10944;:6;;10936:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11000:1;10993:8;;;10830:179;;;;:::o;27616:337::-;27726:1;27709:19;;:5;:19;;;;27701:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27807:1;27788:21;;:7;:21;;;;27780:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27891:6;27861:11;:18;27873:5;27861:18;;;;;;;;;;;;;;;:27;27880:7;27861:27;;;;;;;;;;;;;;;:36;;;;27929:7;27913:32;;27922:5;27913:32;;;27938:6;27913:32;;;;;;;;;;;;;;;;;;27616:337;;;:::o;27961:844::-;28076:1;28058:20;;:6;:20;;;;28050:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28160:1;28139:23;;:9;:23;;;;28131:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28230:1;28221:6;:10;28213:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28292:11;:19;28304:6;28292:19;;;;;;;;;;;;;;;;;;;;;;;;;:46;;;;;28316:11;:22;28328:9;28316:22;;;;;;;;;;;;;;;;;;;;;;;;;28315:23;28292:46;28288:510;;;28355:48;28377:6;28385:9;28396:6;28355:21;:48::i;:::-;28288:510;;;28426:11;:19;28438:6;28426:19;;;;;;;;;;;;;;;;;;;;;;;;;28425:20;:46;;;;;28449:11;:22;28461:9;28449:22;;;;;;;;;;;;;;;;;;;;;;;;;28425:46;28421:377;;;28488:46;28508:6;28516:9;28527:6;28488:19;:46::i;:::-;28421:377;;;28556:11;:19;28568:6;28556:19;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;28579:11;:22;28591:9;28579:22;;;;;;;;;;;;;;;;;;;;;;;;;28556:45;28552:246;;;28618:48;28640:6;28648:9;28659:6;28618:21;:48::i;:::-;28552:246;;;28742:44;28760:6;28768:9;28779:6;28742:17;:44::i;:::-;28552:246;28421:377;28288:510;27961:844;;;:::o;13657:166::-;13743:7;13776:1;13771;:6;;13779:12;13763:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13814:1;13810;:5;13803:12;;13657:166;;;;;:::o;32072:163::-;32113:7;32134:15;32151;32170:19;:17;:19::i;:::-;32133:56;;;;32207:20;32219:7;32207;:11;;:20;;;;:::i;:::-;32200:27;;;;32072:163;:::o;12407:153::-;12465:7;12497:1;12493;:5;12485:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12551:1;12547;:5;;;;;;12540:12;;12407:153;;;;:::o;31464:258::-;31524:7;31533;31553:12;31568:51;31615:3;31569:40;22540:3;31570:20;31582:7;;31570;:11;;:20;;;;:::i;:::-;31569:26;;:40;;;;:::i;:::-;31568:46;;:51;;;;:::i;:::-;31553:66;;31630:23;31656:17;31668:4;31656:7;:11;;:17;;;;:::i;:::-;31630:43;;31692:15;31709:4;31684:30;;;;;;31464:258;;;:::o;31730:334::-;31825:7;31834;31843;31863:15;31881:24;31893:11;31881:7;:11;;:24;;;;:::i;:::-;31863:42;;31916:12;31931:21;31940:11;31931:4;:8;;:21;;;;:::i;:::-;31916:36;;31963:23;31989:17;32001:4;31989:7;:11;;:17;;;;:::i;:::-;31963:43;;32025:7;32034:15;32051:4;32017:39;;;;;;;;;31730:334;;;;;;;:::o;29792:506::-;29895:15;29912:23;29937:12;29951:23;29976:12;29992:19;30003:7;29992:10;:19::i;:::-;29894:117;;;;;;;;;;30040:28;30060:7;30040;:15;30048:6;30040:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;30022:7;:15;30030:6;30022:15;;;;;;;;;;;;;;;:46;;;;30097:28;30117:7;30097;:15;30105:6;30097:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;30079:7;:15;30087:6;30079:15;;;;;;;;;;;;;;;:46;;;;30157:39;30180:15;30157:7;:18;30165:9;30157:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;30136:7;:18;30144:9;30136:18;;;;;;;;;;;;;;;:60;;;;30207:23;30219:4;30225;30207:11;:23::i;:::-;30263:9;30246:44;;30255:6;30246:44;;;30274:15;30246:44;;;;;;;;;;;;;;;;;;29792:506;;;;;;;;:::o;29266:518::-;29367:15;29384:23;29409:12;29423:23;29448:12;29464:19;29475:7;29464:10;:19::i;:::-;29366:117;;;;;;;;;;29512:28;29532:7;29512;:15;29520:6;29512:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;29494:7;:15;29502:6;29494:15;;;;;;;;;;;;;;;:46;;;;29572:39;29595:15;29572:7;:18;29580:9;29572:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;29551:7;:18;29559:9;29551:18;;;;;;;;;;;;;;;:60;;;;29643:39;29666:15;29643:7;:18;29651:9;29643:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;29622:7;:18;29630:9;29622:18;;;;;;;;;;;;;;;:60;;;;29693:23;29705:4;29711;29693:11;:23::i;:::-;29749:9;29732:44;;29741:6;29732:44;;;29760:15;29732:44;;;;;;;;;;;;;;;;;;29266:518;;;;;;;;:::o;30306:577::-;30409:15;30426:23;30451:12;30465:23;30490:12;30506:19;30517:7;30506:10;:19::i;:::-;30408:117;;;;;;;;;;30554:28;30574:7;30554;:15;30562:6;30554:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;30536:7;:15;30544:6;30536:15;;;;;;;;;;;;;;;:46;;;;30611:28;30631:7;30611;:15;30619:6;30611:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;30593:7;:15;30601:6;30593:15;;;;;;;;;;;;;;;:46;;;;30671:39;30694:15;30671:7;:18;30679:9;30671:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;30650:7;:18;30658:9;30650:18;;;;;;;;;;;;;;;:60;;;;30742:39;30765:15;30742:7;:18;30750:9;30742:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;30721:7;:18;30729:9;30721:18;;;;;;;;;;;;;;;:60;;;;30792:23;30804:4;30810;30792:11;:23::i;:::-;30848:9;30831:44;;30840:6;30831:44;;;30859:15;30831:44;;;;;;;;;;;;;;;;;;30306:577;;;;;;;;:::o;28813:445::-;28912:15;28929:23;28954:12;28968:23;28993:12;29009:19;29020:7;29009:10;:19::i;:::-;28911:117;;;;;;;;;;29057:28;29077:7;29057;:15;29065:6;29057:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;29039:7;:15;29047:6;29039:15;;;;;;;;;;;;;;;:46;;;;29117:39;29140:15;29117:7;:18;29125:9;29117:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;29096:7;:18;29104:9;29096:18;;;;;;;;;;;;;;;:60;;;;29167:23;29179:4;29185;29167:11;:23::i;:::-;29223:9;29206:44;;29215:6;29206:44;;;29234:15;29206:44;;;;;;;;;;;;;;;;;;28813:445;;;;;;;;:::o;32243:555::-;32293:7;32302;32322:15;32340:7;;32322:25;;32358:15;32376:7;;32358:25;;32399:9;32394:289;32418:9;:16;;;;32414:1;:20;32394:289;;;32484:7;32460;:21;32468:9;32478:1;32468:12;;;;;;;;;;;;;;;;;;;;;;;;;32460:21;;;;;;;;;;;;;;;;:31;:66;;;;32519:7;32495;:21;32503:9;32513:1;32503:12;;;;;;;;;;;;;;;;;;;;;;;;;32495:21;;;;;;;;;;;;;;;;:31;32460:66;32456:97;;;32536:7;;32545;;32528:25;;;;;;;;;32456:97;32578:34;32590:7;:21;32598:9;32608:1;32598:12;;;;;;;;;;;;;;;;;;;;;;;;;32590:21;;;;;;;;;;;;;;;;32578:7;:11;;:34;;;;:::i;:::-;32568:44;;32637:34;32649:7;:21;32657:9;32667:1;32657:12;;;;;;;;;;;;;;;;;;;;;;;;;32649:21;;;;;;;;;;;;;;;;32637:7;:11;;:34;;;;:::i;:::-;32627:44;;32436:3;;;;;;;32394:289;;;;32707:20;32719:7;;32707;;:11;;:20;;;;:::i;:::-;32697:7;:30;32693:61;;;32737:7;;32746;;32729:25;;;;;;;;32693:61;32773:7;32782;32765:25;;;;;;32243:555;;;:::o;11709:220::-;11767:7;11796:1;11791;:6;11787:20;;;11806:1;11799:8;;;;11787:20;11818:9;11834:1;11830;:5;11818:17;;11863:1;11858;11854;:5;;;;;;:10;11846:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11920:1;11913:8;;;11709:220;;;;;:::o;30891:147::-;30969:17;30981:4;30969:7;;:11;;:17;;;;:::i;:::-;30959:7;:27;;;;31010:20;31025:4;31010:10;;:14;;:20;;;;:::i;:::-;30997:10;:33;;;;30891:147;;:::o
Swarm Source
ipfs://f10361919835fc85bfe8cf3a34c2129e8f2cdbb726e218371779a40cda827dc3