Source Code
Overview
AVAX Balance
Token Holdings
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
Latest 25 from a total of 72,187,855 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 38001370 | 24 mins ago | IN | 0 AVAX | 0.00010382 | ||||
Transfer | 38001265 | 37 mins ago | IN | 0 AVAX | 0.00010382 | ||||
Transfer | 38001251 | 38 mins ago | IN | 0 AVAX | 0.00010382 | ||||
Transfer | 38000962 | 1 hr ago | IN | 0 AVAX | 0.00006962 | ||||
Transfer | 38000926 | 1 hr ago | IN | 0 AVAX | 0.00010382 | ||||
Transfer | 38000836 | 1 hr ago | IN | 0 AVAX | 0.00006962 | ||||
Transfer | 38000764 | 1 hr ago | IN | 0 AVAX | 0.00006962 | ||||
Transfer | 38000764 | 1 hr ago | IN | 0 AVAX | 0.00006962 | ||||
Transfer | 38000764 | 1 hr ago | IN | 0 AVAX | 0.00006959 | ||||
Transfer | 38000764 | 1 hr ago | IN | 0 AVAX | 0.00006959 | ||||
Transfer | 38000763 | 1 hr ago | IN | 0 AVAX | 0.00006962 | ||||
Transfer | 38000763 | 1 hr ago | IN | 0 AVAX | 0.00006962 | ||||
Transfer | 38000761 | 1 hr ago | IN | 0 AVAX | 0.00006959 | ||||
Transfer | 38000621 | 2 hrs ago | IN | 0 AVAX | 0.00010382 | ||||
Transfer | 37999614 | 4 hrs ago | IN | 0 AVAX | 0.00010382 | ||||
Transfer | 37999587 | 4 hrs ago | IN | 0 AVAX | 0.00010382 | ||||
Transfer | 37999221 | 5 hrs ago | IN | 0 AVAX | 0.00010382 | ||||
Transfer | 37999213 | 5 hrs ago | IN | 0 AVAX | 0.00010382 | ||||
Transfer | 37999080 | 5 hrs ago | IN | 0 AVAX | 0.00006962 | ||||
Transfer | 37998481 | 6 hrs ago | IN | 0 AVAX | 0.00010382 | ||||
Transfer | 37998055 | 6 hrs ago | IN | 0 AVAX | 0.00010379 | ||||
Transfer | 37997161 | 7 hrs ago | IN | 0 AVAX | 0.00010382 | ||||
Transfer | 37996791 | 8 hrs ago | IN | 0 AVAX | 0.00010382 | ||||
Transfer | 37994721 | 13 hrs ago | IN | 0 AVAX | 0.00005191 | ||||
Transfer | 37993343 | 15 hrs ago | IN | 0 AVAX | 0.00010379 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
38001453 | 14 mins ago | 0 AVAX | ||||
38001453 | 14 mins ago | 0 AVAX | ||||
38001453 | 14 mins ago | 0 AVAX | ||||
38001205 | 44 mins ago | 0 AVAX | ||||
38001205 | 44 mins ago | 0 AVAX | ||||
38001205 | 44 mins ago | 0 AVAX | ||||
38000979 | 1 hr ago | 0 AVAX | ||||
38000979 | 1 hr ago | 0 AVAX | ||||
38000979 | 1 hr ago | 0 AVAX | ||||
38000774 | 1 hr ago | 0 AVAX | ||||
38000774 | 1 hr ago | 0 AVAX | ||||
38000774 | 1 hr ago | 0 AVAX | ||||
38000509 | 2 hrs ago | 0 AVAX | ||||
38000509 | 2 hrs ago | 0 AVAX | ||||
38000509 | 2 hrs ago | 0 AVAX | ||||
38000354 | 2 hrs ago | 0 AVAX | ||||
38000354 | 2 hrs ago | 0 AVAX | ||||
38000354 | 2 hrs ago | 0 AVAX | ||||
38000189 | 3 hrs ago | 0 AVAX | ||||
38000189 | 3 hrs ago | 0 AVAX | ||||
38000189 | 3 hrs ago | 0 AVAX | ||||
37999998 | 3 hrs ago | 0 AVAX | ||||
37999998 | 3 hrs ago | 0 AVAX | ||||
37999998 | 3 hrs ago | 0 AVAX | ||||
37999919 | 3 hrs ago | 0 AVAX |
Loading...
Loading
Contract Name:
LinkToken
Compiler Version
v0.4.24+commit.e67f0147
Contract Source Code (Solidity)
/** *Submitted for verification at testnet.snowscan.xyz on 2022-04-06 */ pragma solidity ^0.4.11; contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) constant returns (uint256); function transfer(address to, uint256 value) returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } contract ERC20 is ERC20Basic { function allowance(address owner, address spender) constant returns (uint256); function transferFrom(address from, address to, uint256 value) returns (bool); function approve(address spender, uint256 value) returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } contract ERC677 is ERC20 { function transferAndCall(address to, uint value, bytes data) returns (bool success); event Transfer(address indexed from, address indexed to, uint value, bytes data); } contract ERC677Receiver { function onTokenTransfer(address _sender, uint _value, bytes _data); } contract ERC677Token is ERC677 { /** * @dev transfer token to a contract address with additional data if the recipient is a contact. * @param _to The address to transfer to. * @param _value The amount to be transferred. * @param _data The extra data to be passed to the receiving contract. */ function transferAndCall(address _to, uint _value, bytes _data) public returns (bool success) { super.transfer(_to, _value); Transfer(msg.sender, _to, _value, _data); if (isContract(_to)) { contractFallback(_to, _value, _data); } return true; } // PRIVATE function contractFallback(address _to, uint _value, bytes _data) private { ERC677Receiver receiver = ERC677Receiver(_to); receiver.onTokenTransfer(msg.sender, _value, _data); } function isContract(address _addr) private returns (bool hasCode) { uint length; assembly { length := extcodesize(_addr) } return length > 0; } } library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) { // Gas optimization: this is cheaper than asserting 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (_a == 0) { return 0; } c = _a * _b; assert(c / _a == _b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 _a, uint256 _b) internal pure returns (uint256) { // assert(_b > 0); // Solidity automatically throws when dividing by 0 // uint256 c = _a / _b; // assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold return _a / _b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 _a, uint256 _b) internal pure returns (uint256) { assert(_b <= _a); return _a - _b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) { c = _a + _b; assert(c >= _a); return c; } } contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; /** * @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) returns (bool) { balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } } contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) allowed; /** * @dev Transfer tokens from one address to another * @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) returns (bool) { var _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = _allowance.sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @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) constant returns (uint256 remaining) { return allowed[_owner][_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 */ function increaseApproval (address _spender, uint _addedValue) returns (bool success) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function decreaseApproval (address _spender, uint _subtractedValue) returns (bool success) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } contract LinkToken is StandardToken, ERC677Token { uint public constant totalSupply = 10**27; string public constant name = "ChainLink Token"; uint8 public constant decimals = 18; string public constant symbol = "LINK"; function LinkToken() public { balances[msg.sender] = totalSupply; } /** * @dev transfer token to a specified address with additional data if the recipient is a contract. * @param _to The address to transfer to. * @param _value The amount to be transferred. * @param _data The extra data to be passed to the receiving contract. */ function transferAndCall(address _to, uint _value, bytes _data) public validRecipient(_to) returns (bool success) { return super.transferAndCall(_to, _value, _data); } /** * @dev transfer token to a specified address. * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint _value) public validRecipient(_to) returns (bool success) { return super.transfer(_to, _value); } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * @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 validRecipient(_spender) returns (bool) { return super.approve(_spender, _value); } /** * @dev Transfer tokens from one address to another * @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 validRecipient(_to) returns (bool) { return super.transferFrom(_from, _to, _value); } // MODIFIERS modifier validRecipient(address _recipient) { require(_recipient != address(0) && _recipient != address(this)); _; } }
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]
Contract Creation Code
608060405234801561001057600080fd5b503360009081526001602052604090206b033b2e3c9fd0803ce80000009055610aca8061003e6000396000f3006080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a7578063313ce567146101d15780634000aea0146101fc578063661884631461026557806370a082311461028957806395d89b41146102aa578063a9059cbb146102bf578063d73dd623146102e3578063dd62ed3e14610307575b600080fd5b3480156100ca57600080fd5b506100d361032e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610365565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103a6565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103b6565b3480156101dd57600080fd5b506101e66103f9565b6040805160ff9092168252519081900360200190f35b34801561020857600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261016c948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506103fe9650505050505050565b34801561027157600080fd5b5061016c600160a060020a0360043516602435610438565b34801561029557600080fd5b50610195600160a060020a0360043516610528565b3480156102b657600080fd5b506100d3610543565b3480156102cb57600080fd5b5061016c600160a060020a036004351660243561057a565b3480156102ef57600080fd5b5061016c600160a060020a03600435166024356105b3565b34801561031357600080fd5b50610195600160a060020a036004358116906024351661064c565b60408051808201909152600f81527f436861696e4c696e6b20546f6b656e0000000000000000000000000000000000602082015281565b600082600160a060020a038116158015906103895750600160a060020a0381163014155b151561039457600080fd5b61039e8484610677565b949350505050565b6b033b2e3c9fd0803ce800000081565b600082600160a060020a038116158015906103da5750600160a060020a0381163014155b15156103e557600080fd5b6103f08585856106dd565b95945050505050565b601281565b600083600160a060020a038116158015906104225750600160a060020a0381163014155b151561042d57600080fd5b6103f08585856107e9565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561048d57336000908152600260209081526040808320600160a060020a03881684529091528120556104c2565b61049d818463ffffffff6108ce16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60408051808201909152600481527f4c494e4b00000000000000000000000000000000000000000000000000000000602082015281565b600082600160a060020a0381161580159061059e5750600160a060020a0381163014155b15156105a957600080fd5b61039e84846108e0565b336000908152600260209081526040808320600160a060020a03861684529091528120546105e7908363ffffffff61099016565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600160a060020a0383166000818152600260209081526040808320338452825280832054938352600190915281205490919061071f908463ffffffff6108ce16565b600160a060020a038087166000908152600160205260408082209390935590861681522054610754908463ffffffff61099016565b600160a060020a03851660009081526001602052604090205561077d818463ffffffff6108ce16565b600160a060020a03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b60006107f584846108e0565b5083600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610870578181015183820152602001610858565b50505050905090810190601f16801561089d5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a36108b4846109a3565b156108c4576108c48484846109ab565b5060019392505050565b6000828211156108da57fe5b50900390565b33600090815260016020526040812054610900908363ffffffff6108ce16565b3360009081526001602052604080822092909255600160a060020a03851681522054610932908363ffffffff61099016565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b8181018281101561099d57fe5b92915050565b6000903b1190565b6040517fa4c0ed360000000000000000000000000000000000000000000000000000000081523360048201818152602483018590526060604484019081528451606485015284518794600160a060020a0386169463a4c0ed369490938993899360840190602085019080838360005b83811015610a32578181015183820152602001610a1a565b50505050905090810190601f168015610a5f5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015610a8057600080fd5b505af1158015610a94573d6000803e3d6000fd5b50505050505050505600a165627a7a723058208c29d7ab8c64b0dfda9889aed4f76314821de735e9d95147c05c9db1d96dac880029
Deployed Bytecode
0x6080604052600436106100b95763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100be578063095ea7b31461014857806318160ddd1461018057806323b872dd146101a7578063313ce567146101d15780634000aea0146101fc578063661884631461026557806370a082311461028957806395d89b41146102aa578063a9059cbb146102bf578063d73dd623146102e3578063dd62ed3e14610307575b600080fd5b3480156100ca57600080fd5b506100d361032e565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561010d5781810151838201526020016100f5565b50505050905090810190601f16801561013a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015457600080fd5b5061016c600160a060020a0360043516602435610365565b604080519115158252519081900360200190f35b34801561018c57600080fd5b506101956103a6565b60408051918252519081900360200190f35b3480156101b357600080fd5b5061016c600160a060020a03600435811690602435166044356103b6565b3480156101dd57600080fd5b506101e66103f9565b6040805160ff9092168252519081900360200190f35b34801561020857600080fd5b50604080516020600460443581810135601f810184900484028501840190955284845261016c948235600160a060020a03169460248035953695946064949201919081908401838280828437509497506103fe9650505050505050565b34801561027157600080fd5b5061016c600160a060020a0360043516602435610438565b34801561029557600080fd5b50610195600160a060020a0360043516610528565b3480156102b657600080fd5b506100d3610543565b3480156102cb57600080fd5b5061016c600160a060020a036004351660243561057a565b3480156102ef57600080fd5b5061016c600160a060020a03600435166024356105b3565b34801561031357600080fd5b50610195600160a060020a036004358116906024351661064c565b60408051808201909152600f81527f436861696e4c696e6b20546f6b656e0000000000000000000000000000000000602082015281565b600082600160a060020a038116158015906103895750600160a060020a0381163014155b151561039457600080fd5b61039e8484610677565b949350505050565b6b033b2e3c9fd0803ce800000081565b600082600160a060020a038116158015906103da5750600160a060020a0381163014155b15156103e557600080fd5b6103f08585856106dd565b95945050505050565b601281565b600083600160a060020a038116158015906104225750600160a060020a0381163014155b151561042d57600080fd5b6103f08585856107e9565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561048d57336000908152600260209081526040808320600160a060020a03881684529091528120556104c2565b61049d818463ffffffff6108ce16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b600160a060020a031660009081526001602052604090205490565b60408051808201909152600481527f4c494e4b00000000000000000000000000000000000000000000000000000000602082015281565b600082600160a060020a0381161580159061059e5750600160a060020a0381163014155b15156105a957600080fd5b61039e84846108e0565b336000908152600260209081526040808320600160a060020a03861684529091528120546105e7908363ffffffff61099016565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b600160a060020a0383166000818152600260209081526040808320338452825280832054938352600190915281205490919061071f908463ffffffff6108ce16565b600160a060020a038087166000908152600160205260408082209390935590861681522054610754908463ffffffff61099016565b600160a060020a03851660009081526001602052604090205561077d818463ffffffff6108ce16565b600160a060020a03808716600081815260026020908152604080832033845282529182902094909455805187815290519288169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3506001949350505050565b60006107f584846108e0565b5083600160a060020a031633600160a060020a03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c1685856040518083815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610870578181015183820152602001610858565b50505050905090810190601f16801561089d5780820380516001836020036101000a031916815260200191505b50935050505060405180910390a36108b4846109a3565b156108c4576108c48484846109ab565b5060019392505050565b6000828211156108da57fe5b50900390565b33600090815260016020526040812054610900908363ffffffff6108ce16565b3360009081526001602052604080822092909255600160a060020a03851681522054610932908363ffffffff61099016565b600160a060020a0384166000818152600160209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b8181018281101561099d57fe5b92915050565b6000903b1190565b6040517fa4c0ed360000000000000000000000000000000000000000000000000000000081523360048201818152602483018590526060604484019081528451606485015284518794600160a060020a0386169463a4c0ed369490938993899360840190602085019080838360005b83811015610a32578181015183820152602001610a1a565b50505050905090810190601f168015610a5f5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015610a8057600080fd5b505af1158015610a94573d6000803e3d6000fd5b50505050505050505600a165627a7a723058208c29d7ab8c64b0dfda9889aed4f76314821de735e9d95147c05c9db1d96dac880029
Deployed Bytecode Sourcemap
6829:2155:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6931:47;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6931:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;6931:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8189:168;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8189:168:0;-1:-1:-1;;;;;8189:168:0;;;;;;;;;;;;;;;;;;;;;;;;;6885:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6885:41:0;;;;;;;;;;;;;;;;;;;;8640:184;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8640:184:0;-1:-1:-1;;;;;8640:184:0;;;;;;;;;;;;6983:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6983:35:0;;;;;;;;;;;;;;;;;;;;;;;7437:193;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7437:193:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7437:193:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7437:193:0;;-1:-1:-1;7437:193:0;;-1:-1:-1;;;;;;;7437:193:0;6405:415;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6405:415:0;-1:-1:-1;;;;;6405:415:0;;;;;;;3988:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3988:106:0;-1:-1:-1;;;;;3988:106:0;;;;;7023:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7023:38:0;;;;7791:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7791:159:0;-1:-1:-1;;;;;7791:159:0;;;;;;;6130:269;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6130:269:0;-1:-1:-1;;;;;6130:269:0;;;;;;;5743:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5743:135:0;-1:-1:-1;;;;;5743:135:0;;;;;;;;;;6931:47;;;;;;;;;;;;;;;;;;;:::o;8189:168::-;8296:4;8272:8;-1:-1:-1;;;;;8909:24:0;;;;;;:55;;-1:-1:-1;;;;;;8937:27:0;;8959:4;8937:27;;8909:55;8901:64;;;;;;;;8319:32;8333:8;8344:6;8319:13;:32::i;:::-;8312:39;8189:168;-1:-1:-1;;;;8189:168:0:o;6885:41::-;6920:6;6885:41;:::o;8640:184::-;8757:4;8738:3;-1:-1:-1;;;;;8909:24:0;;;;;;:55;;-1:-1:-1;;;;;;8937:27:0;;8959:4;8937:27;;8909:55;8901:64;;;;;;;;8780:38;8799:5;8806:3;8811:6;8780:18;:38::i;:::-;8773:45;8640:184;-1:-1:-1;;;;;8640:184:0:o;6983:35::-;7016:2;6983:35;:::o;7437:193::-;7552:12;7533:3;-1:-1:-1;;;;;8909:24:0;;;;;;:55;;-1:-1:-1;;;;;;8937:27:0;;8959:4;8937:27;;8909:55;8901:64;;;;;;;;7583:41;7605:3;7610:6;7618:5;7583:21;:41::i;6405:415::-;6533:10;6488:12;6525:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6525:29:0;;;;;;;;;;6565:27;;;6561:168;;;6611:10;6635:1;6603:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6603:29:0;;;;;;;;;:33;6561:168;;;6691:30;:8;6704:16;6691:30;:12;:30;:::i;:::-;6667:10;6659:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6659:29:0;;;;;;;;;:62;6561:168;6744:10;6766:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6735:61:0;;6766:29;;;;;;;;;;;6735:61;;;;;;;;;6744:10;6735:61;;;;;;;;;;;-1:-1:-1;6810:4:0;;6405:415;-1:-1:-1;;;6405:415:0:o;3988:106::-;-1:-1:-1;;;;;4072:16:0;4041:15;4072:16;;;:8;:16;;;;;;;3988:106::o;7023:38::-;;;;;;;;;;;;;;;;;;;:::o;7791:159::-;7886:12;7867:3;-1:-1:-1;;;;;8909:24:0;;;;;;:55;;-1:-1:-1;;;;;;8937:27:0;;8959:4;8937:27;;8909:55;8901:64;;;;;;;;7917:27;7932:3;7937:6;7917:14;:27::i;6130:269::-;6269:10;6208:12;6261:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6261:29:0;;;;;;;;;;:46;;6295:11;6261:46;:33;:46;:::i;:::-;6237:10;6229:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6229:29:0;;;;;;;;;;;;:78;;;6314:61;;;;;;6229:29;;6314:61;;;;;;;;;;;-1:-1:-1;6389:4:0;6130:269;;;;:::o;5743:135::-;-1:-1:-1;;;;;5847:15:0;;;5814:17;5847:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;5743:135::o;5236:180::-;5317:10;5296:4;5309:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;5309:29:0;;;;;;;;;;;:38;;;5354;;;;;;;5296:4;;5309:29;;5317:10;;5354:38;;;;;;;;-1:-1:-1;5406:4:0;5236:180;;;;:::o;4497:500::-;-1:-1:-1;;;;;4602:14:0;;4572:4;4602:14;;;:7;:14;;;;;;;;4617:10;4602:26;;;;;;;;4805:15;;;:8;:15;;;;;;4572:4;;4602:26;4805:27;;4825:6;4805:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;4787:15:0;;;;;;;:8;:15;;;;;;:45;;;;4855:13;;;;;;;:25;;4873:6;4855:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;4839:13:0;;;;;;:8;:13;;;;;:41;4916:22;:10;4931:6;4916:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;4887:14:0;;;;;;;:7;:14;;;;;;;;4902:10;4887:26;;;;;;;;:51;;;;4945:28;;;;;;;;;;;4887:14;;4945:28;;;;;;;;;;;-1:-1:-1;4987:4:0;;4497:500;-1:-1:-1;;;;4497:500:0:o;1271:292::-;1361:12;1385:27;1400:3;1405:6;1385:14;:27::i;:::-;;1440:3;-1:-1:-1;;;;;1419:40:0;1428:10;-1:-1:-1;;;;;1419:40:0;;1445:6;1453:5;1419:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;1419:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1470:15;1481:3;1470:10;:15::i;:::-;1466:74;;;1496:36;1513:3;1518:6;1526:5;1496:16;:36::i;:::-;-1:-1:-1;1553:4:0;1271:292;;;;;:::o;2947:119::-;3007:7;3030:8;;;;3023:16;;;;-1:-1:-1;3053:7:0;;;2947:119::o;3542:236::-;3643:10;3598:4;3634:20;;;:8;:20;;;;;;:32;;3659:6;3634:32;:24;:32;:::i;:::-;3620:10;3611:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;3689:13:0;;;;;;:25;;3707:6;3689:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3673:13:0;;;;;;:8;:13;;;;;;;;;:41;;;;3721:33;;;;;;;3673:13;;3730:10;;3721:33;;;;;;;;;;-1:-1:-1;3768:4:0;3542:236;;;;:::o;3133:132::-;3215:7;;;3236;;;;3229:15;;;;3133:132;;;;:::o;1790:174::-;1852:12;1915:18;;1948:10;;1790:174::o;1587:197::-;1727:51;;;;;1752:10;1727:51;;;;;;;;;;;;;;;;;;;;;;;;;;;1716:3;;-1:-1:-1;;;;;1727:24:0;;;;;1752:10;;1764:6;;1772:5;;1727:51;;;;;;;;;;1675:23;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;1727:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1727:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1727:51:0;;;;1587:197;;;;:::o
Swarm Source
bzzr://8c29d7ab8c64b0dfda9889aed4f76314821de735e9d95147c05c9db1d96dac88
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.