ERC-20
Overview
Max Total Supply
100,000,000 MELT
Holders
2,247 (0.00%)
Market
Price
$0.0004 @ 0.000008 AVAX
Onchain Market Cap
$41,398.00
Circulating Supply Market Cap
$6,291.05
Other Info
Token Contract (WITH 18 Decimals)
Balance
538.497846440143324101 MELTValue
$0.22 ( ~0.00419617606564154 AVAX) [0.0005%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xfb804A11...5082F4895 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
DefrostToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz on 2021-11-09 */ // File: contracts/meltToken/IErc20.sol pragma solidity ^0.5.16; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } // File: contracts/modules/SafeMath.sol pragma solidity ^0.5.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, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: contracts/meltToken/StardardToken.sol pragma solidity ^0.5.16; /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md * Originally based on code by FirstBlood: * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol * * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for * all accounts just by listening to said events. Note that this isn't required by the specification, and other * compliant implementations may not do it. */ contract StandardToken20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowed; uint256 private _totalSupply; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param owner address The address which owns the funds. * @param spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowed[owner][spender]; } /** * @dev Transfer token for a specified address * @param to The address to transfer to. * @param value The amount to be transferred. */ function transfer(address to, uint256 value) public returns (bool) { _transfer(msg.sender, to, value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * 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 * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @dev Transfer tokens from one address to another. * Note that while this function emits an Approval event, this is not required as per the specification, * and other compliant implementations may not emit the event. * @param from address The address which you want to send tokens from * @param to address The address which you want to transfer to * @param value uint256 the amount of tokens to be transferred */ function transferFrom(address from, address to, uint256 value) public returns (bool) { _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); _transfer(from, to, value); emit Approval(from, msg.sender, _allowed[from][msg.sender]); return true; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * Emits an Approval event. * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Transfer token for a specified addresses * @param from The address to transfer from. * @param to The address to transfer to. * @param value The amount to be transferred. */ function _transfer(address from, address to, uint256 value) internal { require(to != address(0)); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(from, to, value); } /** * @dev Internal function that mints an amount of the token and assigns it to * an account. This encapsulates the modification of balances such that the * proper events are emitted. * @param account The account that will receive the created tokens. * @param value The amount that will be created. */ function _mint(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.add(value); _balances[account] = _balances[account].add(value); emit Transfer(address(0), account, value); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burn(address account, uint256 value) internal { require(account != address(0)); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal burn function. * Emits an Approval event (reflecting the reduced allowance). * @param account The account whose tokens will be burnt. * @param value The amount that will be burnt. */ function _burnFrom(address account, uint256 value) internal { _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(value); _burn(account, value); emit Approval(account, msg.sender, _allowed[account][msg.sender]); } } // File: contracts/meltToken/DefrostToken.sol pragma solidity ^0.5.16; contract DefrostToken is StandardToken20{ using SafeMath for uint; string private name_; string private symbol_; uint8 private decimals_; //total tokens supply uint256 constant public MAX_TOTAL_TOKEN_AMOUNT = 100000000 ether; uint256 constant public MAX_RESERVE_AMOUNT = 10000000 ether; //10% for reserve uint256 constant public MAX_BUSINESS_EXPANDING = 5000000 ether; //5% for business expanding modifier maxWanTokenAmountNotReached (uint amount){ assert(totalSupply().add(amount).add(MAX_RESERVE_AMOUNT).add(MAX_BUSINESS_EXPANDING) <= MAX_TOTAL_TOKEN_AMOUNT); _; } constructor(string memory tokenName, string memory tokenSymbol, uint256 tokenDecimal, address initHolder, address reserveHolder, address businessHolder) public { name_ = tokenName; symbol_ = tokenSymbol; decimals_ = uint8(tokenDecimal); _mint(reserveHolder,MAX_RESERVE_AMOUNT); _mint(businessHolder,MAX_BUSINESS_EXPANDING); _mint(initHolder,MAX_TOTAL_TOKEN_AMOUNT.sub(MAX_RESERVE_AMOUNT).sub(MAX_BUSINESS_EXPANDING)); } /** * @return the name of the token. */ function name() public view returns (string memory) { return name_; } /** * @return the symbol of the token. */ function symbol() public view returns (string memory) { return symbol_; } /** * @return the number of decimals of the token. */ function decimals() public view returns (uint8) { return decimals_; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint256","name":"tokenDecimal","type":"uint256"},{"internalType":"address","name":"initHolder","type":"address"},{"internalType":"address","name":"reserveHolder","type":"address"},{"internalType":"address","name":"businessHolder","type":"address"}],"payable":false,"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"MAX_BUSINESS_EXPANDING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_RESERVE_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_TOTAL_TOKEN_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162000e6b38038062000e6b833981810160405260c08110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b9083019060208201858111156200006e57600080fd5b82516401000000008111828201881017156200008957600080fd5b82525081516020918201929091019080838360005b83811015620000b85781810151838201526020016200009e565b50505050905090810190601f168015620000e65780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010a57600080fd5b9083019060208201858111156200012057600080fd5b82516401000000008111828201881017156200013b57600080fd5b82525081516020918201929091019080838360005b838110156200016a57818101518382015260200162000150565b50505050905090810190601f168015620001985780820380516001836020036101000a031916815260200191505b506040908152602082810151918301516060840151608090940151885193965090945091620001ce91600391908901906200049f565b508451620001e49060049060208801906200049f565b506005805460ff191660ff86161790556200020b826a084595161401484a0000006200029f565b6200022b816a0422ca8b0a00a4250000006001600160e01b036200029f16565b6200029383620002846a0422ca8b0a00a425000000620002706a084595161401484a0000006a52b7d2dcc80cd2e40000006200035860201b620006dd1790919060201c565b6200035860201b620006dd1790919060201c565b6001600160e01b036200029f16565b50505050505062000544565b6001600160a01b038216620002b357600080fd5b620002cf81600254620003a960201b620007f11790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000302918390620007f1620003a9821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000620003a283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506200040460201b60201c565b9392505050565b600082820183811015620003a2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115620004975760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200045b57818101518382015260200162000441565b50505050905090810190601f168015620004895780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004e257805160ff191683800117855562000512565b8280016001018555821562000512579182015b8281111562000512578251825591602001919060010190620004f5565b506200052092915062000524565b5090565b6200054191905b808211156200052057600081556001016200052b565b90565b61091780620005546000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80634aac1e0a1161008c578063a457c2d711610066578063a457c2d714610284578063a89c5be0146102b0578063a9059cbb146102b8578063dd62ed3e146102e4576100ea565b80634aac1e0a1461024e57806370a082311461025657806395d89b411461027c576100ea565b806319e08edd116100c857806319e08edd146101c657806323b872dd146101ce578063313ce567146102045780633950935114610222576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f7610312565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b0381351690602001356103a8565b604080519115158252519081900360200190f35b6101b4610424565b60408051918252519081900360200190f35b6101b461042a565b610198600480360360608110156101e457600080fd5b506001600160a01b03813581169160208101359091169060400135610439565b61020c610502565b6040805160ff9092168252519081900360200190f35b6101986004803603604081101561023857600080fd5b506001600160a01b03813516906020013561050b565b6101b46105b9565b6101b46004803603602081101561026c57600080fd5b50356001600160a01b03166105c8565b6100f76105e3565b6101986004803603604081101561029a57600080fd5b506001600160a01b038135169060200135610644565b6101b461068d565b610198600480360360408110156102ce57600080fd5b506001600160a01b03813516906020013561069c565b6101b4600480360360408110156102fa57600080fd5b506001600160a01b03813581169160200135166106b2565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561039e5780601f106103735761010080835404028352916020019161039e565b820191906000526020600020905b81548152906001019060200180831161038157829003601f168201915b5050505050905090565b60006001600160a01b0383166103bd57600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b6a084595161401484a00000081565b6001600160a01b038316600090815260016020908152604080832033845290915281205461046d908363ffffffff6106dd16565b6001600160a01b038516600090815260016020908152604080832033845290915290205561049c848484610726565b6001600160a01b0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60055460ff1690565b60006001600160a01b03831661052057600080fd5b3360009081526001602090815260408083206001600160a01b0387168452909152902054610554908363ffffffff6107f116565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6a0422ca8b0a00a42500000081565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561039e5780601f106103735761010080835404028352916020019161039e565b60006001600160a01b03831661065957600080fd5b3360009081526001602090815260408083206001600160a01b0387168452909152902054610554908363ffffffff6106dd16565b6a52b7d2dcc80cd2e400000081565b60006106a9338484610726565b50600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061071f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061084b565b9392505050565b6001600160a01b03821661073957600080fd5b6001600160a01b038316600090815260208190526040902054610762908263ffffffff6106dd16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610797908263ffffffff6107f116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561071f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156108da5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561089f578181015183820152602001610887565b50505050905090810190601f1680156108cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea265627a7a7231582096718222ff75a045cf4cce6f6b89d079f978aa2888b03dc3664be10b469c587564736f6c6343000510003200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000b4e61d10344203de4530d4a99d55f32ad25580e9000000000000000000000000729be9a533eb1c7945d6a9b3e98d34796d07a4e5000000000000000000000000a86c1f667720c9a0b1691c199a62147309a72160000000000000000000000000000000000000000000000000000000000000000f46616b65204d656c7420546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005464d454c54000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80634aac1e0a1161008c578063a457c2d711610066578063a457c2d714610284578063a89c5be0146102b0578063a9059cbb146102b8578063dd62ed3e146102e4576100ea565b80634aac1e0a1461024e57806370a082311461025657806395d89b411461027c576100ea565b806319e08edd116100c857806319e08edd146101c657806323b872dd146101ce578063313ce567146102045780633950935114610222576100ea565b806306fdde03146100ef578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b6100f7610312565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b0381351690602001356103a8565b604080519115158252519081900360200190f35b6101b4610424565b60408051918252519081900360200190f35b6101b461042a565b610198600480360360608110156101e457600080fd5b506001600160a01b03813581169160208101359091169060400135610439565b61020c610502565b6040805160ff9092168252519081900360200190f35b6101986004803603604081101561023857600080fd5b506001600160a01b03813516906020013561050b565b6101b46105b9565b6101b46004803603602081101561026c57600080fd5b50356001600160a01b03166105c8565b6100f76105e3565b6101986004803603604081101561029a57600080fd5b506001600160a01b038135169060200135610644565b6101b461068d565b610198600480360360408110156102ce57600080fd5b506001600160a01b03813516906020013561069c565b6101b4600480360360408110156102fa57600080fd5b506001600160a01b03813581169160200135166106b2565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561039e5780601f106103735761010080835404028352916020019161039e565b820191906000526020600020905b81548152906001019060200180831161038157829003601f168201915b5050505050905090565b60006001600160a01b0383166103bd57600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b6a084595161401484a00000081565b6001600160a01b038316600090815260016020908152604080832033845290915281205461046d908363ffffffff6106dd16565b6001600160a01b038516600090815260016020908152604080832033845290915290205561049c848484610726565b6001600160a01b0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60055460ff1690565b60006001600160a01b03831661052057600080fd5b3360009081526001602090815260408083206001600160a01b0387168452909152902054610554908363ffffffff6107f116565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6a0422ca8b0a00a42500000081565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561039e5780601f106103735761010080835404028352916020019161039e565b60006001600160a01b03831661065957600080fd5b3360009081526001602090815260408083206001600160a01b0387168452909152902054610554908363ffffffff6106dd16565b6a52b7d2dcc80cd2e400000081565b60006106a9338484610726565b50600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061071f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061084b565b9392505050565b6001600160a01b03821661073957600080fd5b6001600160a01b038316600090815260208190526040902054610762908263ffffffff6106dd16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610797908263ffffffff6107f116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282018381101561071f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081848411156108da5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561089f578181015183820152602001610887565b50505050905090810190601f1680156108cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea265627a7a7231582096718222ff75a045cf4cce6f6b89d079f978aa2888b03dc3664be10b469c587564736f6c63430005100032
Deployed Bytecode Sourcemap
14202:1700:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14202:1700:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15498:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;15498:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9143:244;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9143:244:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;7302:91;;;:::i;:::-;;;;;;;;;;;;;;;;14468:59;;;:::i;9860:299::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9860:299:0;;;;;;;;;;;;;;;;;:::i;15814:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10674:323;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10674:323:0;;;;;;;;:::i;14556:62::-;;;:::i;7609:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7609:106:0;-1:-1:-1;;;;;7609:106:0;;:::i;15648:87::-;;;:::i;11517:333::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11517:333:0;;;;;;;;:::i;14397:64::-;;;:::i;8356:140::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8356:140:0;;;;;;;;:::i;8054:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8054:131:0;;;;;;;;;;:::i;15498:83::-;15568:5;15561:12;;;;;;;;-1:-1:-1;;15561:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15535:13;;15561:12;;15568:5;;15561:12;;15568:5;15561:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15498:83;:::o;9143:244::-;9208:4;-1:-1:-1;;;;;9233:21:0;;9225:30;;;;;;9277:10;9268:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9268:29:0;;;;;;;;;;;;:37;;;9321:36;;;;;;;9268:29;;9277:10;9321:36;;;;;;;;;;;-1:-1:-1;9375:4:0;9143:244;;;;:::o;7302:91::-;7373:12;;7302:91;:::o;14468:59::-;14513:14;14468:59;:::o;9860:299::-;-1:-1:-1;;;;;9985:14:0;;9939:4;9985:14;;;:8;:14;;;;;;;;10000:10;9985:26;;;;;;;;:37;;10016:5;9985:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;9956:14:0;;;;;;:8;:14;;;;;;;;9971:10;9956:26;;;;;;;:66;10033:26;9965:4;10049:2;10053:5;10033:9;:26::i;:::-;-1:-1:-1;;;;;10075:54:0;;10102:14;;;;:8;:14;;;;;;;;10090:10;10102:26;;;;;;;;;;;10075:54;;;;;;;10090:10;;10075:54;;;;;;;;;;;;-1:-1:-1;10147:4:0;9860:299;;;;;:::o;15814:83::-;15880:9;;;;15814:83;:::o;10674:323::-;10754:4;-1:-1:-1;;;;;10779:21:0;;10771:30;;;;;;10855:10;10846:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10846:29:0;;;;;;;;;;:45;;10880:10;10846:45;:33;:45;:::i;:::-;10823:10;10814:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10814:29:0;;;;;;;;;;;;:77;;;10907:60;;;;;;10814:29;;10907:60;;;;;;;;;;;-1:-1:-1;10985:4:0;10674:323;;;;:::o;14556:62::-;14605:13;14556:62;:::o;7609:106::-;-1:-1:-1;;;;;7691:16:0;7664:7;7691:16;;;;;;;;;;;;7609:106::o;15648:87::-;15720:7;15713:14;;;;;;;;-1:-1:-1;;15713:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15687:13;;15713:14;;15720:7;;15713:14;;15720:7;15713:14;;;;;;;;;;;;;;;;;;;;;;;;11517:333;11602:4;-1:-1:-1;;;;;11627:21:0;;11619:30;;;;;;11703:10;11694:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;11694:29:0;;;;;;;;;;:50;;11728:15;11694:50;:33;:50;:::i;14397:64::-;14446:15;14397:64;:::o;8356:140::-;8417:4;8434:32;8444:10;8456:2;8460:5;8434:9;:32::i;:::-;-1:-1:-1;8484:4:0;8356:140;;;;:::o;8054:131::-;-1:-1:-1;;;;;8153:15:0;;;8126:7;8153:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;8054:131::o;2190:136::-;2248:7;2275:43;2279:1;2282;2275:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2268:50;2190:136;-1:-1:-1;;;2190:136:0:o;12072:262::-;-1:-1:-1;;;;;12160:16:0;;12152:25;;;;;;-1:-1:-1;;;;;12208:15:0;;:9;:15;;;;;;;;;;;:26;;12228:5;12208:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;12190:15:0;;;:9;:15;;;;;;;;;;;:44;;;;12261:13;;;;;;;:24;;12279:5;12261:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;12245:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;12301:25;;;;;;;12245:13;;12301:25;;;;;;;;;;;;;12072:262;;;:::o;1734:181::-;1792:7;1824:5;;;1848:6;;;;1840:46;;;;;-1:-1:-1;;;1840:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;2663:192;2749:7;2785:12;2777:6;;;;2769:29;;;;-1:-1:-1;;;2769:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2769:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2821:5:0;;;2663:192::o
Swarm Source
bzzr://96718222ff75a045cf4cce6f6b89d079f978aa2888b03dc3664be10b469c5875
[ 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.