Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 7 from a total of 7 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Trigger Token Se... | 12496998 | 1409 days ago | IN | 0 ETH | 0.0801353 | ||||
Trigger Token Se... | 12309241 | 1438 days ago | IN | 0 ETH | 0.0529006 | ||||
Trigger Token Se... | 12111563 | 1469 days ago | IN | 0 ETH | 0.20187795 | ||||
Trigger Token Se... | 11893620 | 1502 days ago | IN | 0 ETH | 0.0752848 | ||||
Transfer Ownersh... | 11893618 | 1502 days ago | IN | 0 ETH | 0.00616 | ||||
Set TGE Date | 11893616 | 1502 days ago | IN | 0 ETH | 0.0086404 | ||||
Set Token Addres... | 11893615 | 1502 days ago | IN | 0 ETH | 0.0088424 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
DistibutionContract3
Compiler Version
v0.5.8+commit.23d335f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-02-20 */ /** *Submitted for verification at Etherscan.io on 2020-09-28 */ /** *Submitted for verification at Etherscan.io on 2018-09-01 */ pragma solidity 0.5.8; // File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @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: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } // File: openzeppelin-solidity/contracts/ownership/Ownable.sol /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); emit OwnershipTransferred(owner, newOwner); owner = newOwner; } } // File: openzeppelin-solidity/contracts/lifecycle/Pausable.sol /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; emit Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; emit Unpause(); } } // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. contract DistibutionContract3 is Pausable { using SafeMath for uint256; uint256 constant public decimals = 1 ether; address[] public tokenOwners ; /* Tracks distributions mapping (iterable) */ uint256 public TGEDate = 0; /* Date From where the distribution starts (TGE) */ uint256 constant public month = 30 days; uint256 constant public year = 365 days; uint256 public lastDateDistribution = 0; mapping(address => DistributionStep[]) public distributions; /* Distribution object */ ERC20 public erc20; struct DistributionStep { uint256 amountAllocated; uint256 currentAllocated; uint256 unlockDay; uint256 amountSent; } constructor() public{ /* Private Sale 3 */ setInitialDistribution(0x6B8b3A59527c3DD984c508f27413a4c7B4352EEd, 80000, 1*month); setInitialDistribution(0x6B8b3A59527c3DD984c508f27413a4c7B4352EEd, 80000, 2*month); setInitialDistribution(0x6B8b3A59527c3DD984c508f27413a4c7B4352EEd, 80000, 3*month); setInitialDistribution(0x8e76aB487a510cc62f5dE305e98fc738aeC82405, 60000, 1*month); setInitialDistribution(0x8e76aB487a510cc62f5dE305e98fc738aeC82405, 60000, 2*month); setInitialDistribution(0x8e76aB487a510cc62f5dE305e98fc738aeC82405, 60000, 3*month); setInitialDistribution(0xd6C5e78cc909014e26620d8ff4dB4463C792E310, 130000, 1*month); setInitialDistribution(0xd6C5e78cc909014e26620d8ff4dB4463C792E310, 130000, 2*month); setInitialDistribution(0xd6C5e78cc909014e26620d8ff4dB4463C792E310, 130000, 3*month); setInitialDistribution(0xFc6EFF3ECE4FD66B3C97d53605A93a4E5963bBf0, 50000, 1*month); setInitialDistribution(0xFc6EFF3ECE4FD66B3C97d53605A93a4E5963bBf0, 50000, 2*month); setInitialDistribution(0xFc6EFF3ECE4FD66B3C97d53605A93a4E5963bBf0, 50000, 3*month); setInitialDistribution(0xB50c06686657C2f2131fd04918bF20840B83Bd51, 30000, 1*month); setInitialDistribution(0xB50c06686657C2f2131fd04918bF20840B83Bd51, 30000, 2*month); setInitialDistribution(0xB50c06686657C2f2131fd04918bF20840B83Bd51, 30000, 3*month); setInitialDistribution(0x1f4e65DED886DC708a278f05ea107244A8161bf7, 30000, 1*month); setInitialDistribution(0x1f4e65DED886DC708a278f05ea107244A8161bf7, 30000, 2*month); setInitialDistribution(0x1f4e65DED886DC708a278f05ea107244A8161bf7, 30000, 3*month); setInitialDistribution(0x883aD562D0a83569dA00DdF88C96C348519c0030, 25000, 1*month); setInitialDistribution(0x883aD562D0a83569dA00DdF88C96C348519c0030, 25000, 2*month); setInitialDistribution(0x883aD562D0a83569dA00DdF88C96C348519c0030, 25000, 3*month); setInitialDistribution(0xEEff483b297016938400575043752A2d10d7579A, 50000, 1*month); setInitialDistribution(0xEEff483b297016938400575043752A2d10d7579A, 50000, 2*month); setInitialDistribution(0xEEff483b297016938400575043752A2d10d7579A, 50000, 3*month); setInitialDistribution(0x0Ed67dAaacf97acF041cc65f04A632a8811347fF, 70000, 1*month); setInitialDistribution(0x0Ed67dAaacf97acF041cc65f04A632a8811347fF, 70000, 2*month); setInitialDistribution(0x0Ed67dAaacf97acF041cc65f04A632a8811347fF, 70000, 3*month); setInitialDistribution(0xA7cC7B0f40763a5baEc1AF3f631eb7B6e56cacD4, 17500, 1*month); setInitialDistribution(0xA7cC7B0f40763a5baEc1AF3f631eb7B6e56cacD4, 17500, 2*month); setInitialDistribution(0xA7cC7B0f40763a5baEc1AF3f631eb7B6e56cacD4, 17500, 3*month); setInitialDistribution(0xB90e7F5fE86775ea8A2ea5241d8D745265F721D2, 100000, 1*month); setInitialDistribution(0xB90e7F5fE86775ea8A2ea5241d8D745265F721D2, 100000, 2*month); setInitialDistribution(0xB90e7F5fE86775ea8A2ea5241d8D745265F721D2, 100000, 3*month); setInitialDistribution(0x778C029675d3e2435Cf4C207E981D37c2174bec8, 40000, 1*month); setInitialDistribution(0x778C029675d3e2435Cf4C207E981D37c2174bec8, 40000, 2*month); setInitialDistribution(0x778C029675d3e2435Cf4C207E981D37c2174bec8, 40000, 3*month); setInitialDistribution(0xE1176052966f14802BB3755bbdfcaA712B4708e8, 17500, 1*month); setInitialDistribution(0xE1176052966f14802BB3755bbdfcaA712B4708e8, 17500, 2*month); setInitialDistribution(0xE1176052966f14802BB3755bbdfcaA712B4708e8, 17500, 3*month); setInitialDistribution(0x3c87E00da8551C73032496Aa60D9BD980510CBAF, 70000, 1*month); setInitialDistribution(0x3c87E00da8551C73032496Aa60D9BD980510CBAF, 70000, 2*month); setInitialDistribution(0x3c87E00da8551C73032496Aa60D9BD980510CBAF, 70000, 3*month); setInitialDistribution(0x53A2f447C61152917493679F8105811198648d81, 60000, 1*month); setInitialDistribution(0x53A2f447C61152917493679F8105811198648d81, 60000, 2*month); setInitialDistribution(0x53A2f447C61152917493679F8105811198648d81, 60000, 3*month); setInitialDistribution(0x7Da633fcF51838e688676AD30C2cC6A08c59c316, 10000, 1*month); setInitialDistribution(0x7Da633fcF51838e688676AD30C2cC6A08c59c316, 10000, 2*month); setInitialDistribution(0x7Da633fcF51838e688676AD30C2cC6A08c59c316, 10000, 3*month); setInitialDistribution(0x7Aa48800c1f5cb80A670cB66635dD382237777c6, 30000, 1*month); setInitialDistribution(0x7Aa48800c1f5cb80A670cB66635dD382237777c6, 30000, 2*month); setInitialDistribution(0x7Aa48800c1f5cb80A670cB66635dD382237777c6, 30000, 3*month); setInitialDistribution(0x5FD7E077dA76E286bD0A50bC545A5883108C364f, 40000, 1*month); setInitialDistribution(0x5FD7E077dA76E286bD0A50bC545A5883108C364f, 40000, 2*month); setInitialDistribution(0x5FD7E077dA76E286bD0A50bC545A5883108C364f, 40000, 3*month); setInitialDistribution(0x9aA562422Ed5079E5C3C38A0733392543653C3db, 120000, 1*month); setInitialDistribution(0x9aA562422Ed5079E5C3C38A0733392543653C3db, 120000, 2*month); setInitialDistribution(0x9aA562422Ed5079E5C3C38A0733392543653C3db, 120000, 3*month); } function setTokenAddress(address _tokenAddress) external onlyOwner whenNotPaused { erc20 = ERC20(_tokenAddress); } function safeGuardAllTokens(address _address) external onlyOwner whenPaused { /* In case of needed urgency for the sake of contract bug */ require(erc20.transfer(_address, erc20.balanceOf(address(this)))); } function setTGEDate(uint256 _time) external onlyOwner whenNotPaused { TGEDate = _time; } /** * Should allow any address to trigger it, but since the calls are atomic it should do only once per day */ function triggerTokenSend() external whenNotPaused { /* Require TGE Date already been set */ require(TGEDate != 0, "TGE date not set yet"); /* TGE has not started */ require(block.timestamp > TGEDate, "TGE still hasn´t started"); /* Test that the call be only done once per day */ require(block.timestamp.sub(lastDateDistribution) > 1 days, "Can only be called once a day"); lastDateDistribution = block.timestamp; /* Go thru all tokenOwners */ for(uint i = 0; i < tokenOwners.length; i++) { /* Get Address Distribution */ DistributionStep[] memory d = distributions[tokenOwners[i]]; /* Go thru all distributions array */ for(uint j = 0; j < d.length; j++){ if( (block.timestamp.sub(TGEDate) > d[j].unlockDay) /* Verify if unlockDay has passed */ && (d[j].currentAllocated > 0) /* Verify if currentAllocated > 0, so that address has tokens to be sent still */ ){ uint256 sendingAmount; sendingAmount = d[j].currentAllocated; distributions[tokenOwners[i]][j].currentAllocated = distributions[tokenOwners[i]][j].currentAllocated.sub(sendingAmount); distributions[tokenOwners[i]][j].amountSent = distributions[tokenOwners[i]][j].amountSent.add(sendingAmount); require(erc20.transfer(tokenOwners[i], sendingAmount)); } } } } function setInitialDistribution(address _address, uint256 _tokenAmount, uint256 _unlockDays) internal onlyOwner whenNotPaused { /* Add tokenOwner to Eachable Mapping */ bool isAddressPresent = false; /* Verify if tokenOwner was already added */ for(uint i = 0; i < tokenOwners.length; i++) { if(tokenOwners[i] == _address){ isAddressPresent = true; } } /* Create DistributionStep Object */ DistributionStep memory distributionStep = DistributionStep(_tokenAmount * decimals, _tokenAmount * decimals, _unlockDays, 0); /* Attach */ distributions[_address].push(distributionStep); /* If Address not present in array of iterable token owners */ if(!isAddressPresent){ tokenOwners.push(_address); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[{"name":"_tokenAddress","type":"address"}],"name":"setTokenAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"distributions","outputs":[{"name":"amountAllocated","type":"uint256"},{"name":"currentAllocated","type":"uint256"},{"name":"unlockDay","type":"uint256"},{"name":"amountSent","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_time","type":"uint256"}],"name":"setTGEDate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"month","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastDateDistribution","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"erc20","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"triggerTokenSend","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"safeGuardAllTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TGEDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"year","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"tokenOwners","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
608060405260008054600160a01b60ff021916815560028190556003553480156200002957600080fd5b50600080546001600160a01b031916331790556200006a736b8b3a59527c3dd984c508f27413a4c7b4352eed6201388062278d0062000ac9602090811b901c565b6200009a736b8b3a59527c3dd984c508f27413a4c7b4352eed6201388062278d0060020262000ac960201b60201c565b620000ca736b8b3a59527c3dd984c508f27413a4c7b4352eed6201388062278d0060030262000ac960201b60201c565b620000f9738e76ab487a510cc62f5de305e98fc738aec8240561ea6062278d0060010262000ac960201b60201c565b62000128738e76ab487a510cc62f5de305e98fc738aec8240561ea6062278d0060020262000ac960201b60201c565b62000157738e76ab487a510cc62f5de305e98fc738aec8240561ea6062278d0060030262000ac960201b60201c565b6200018773d6c5e78cc909014e26620d8ff4db4463c792e3106201fbd062278d0060010262000ac960201b60201c565b620001b773d6c5e78cc909014e26620d8ff4db4463c792e3106201fbd062278d0060020262000ac960201b60201c565b620001e773d6c5e78cc909014e26620d8ff4db4463c792e3106201fbd062278d0060030262000ac960201b60201c565b6200021673fc6eff3ece4fd66b3c97d53605a93a4e5963bbf061c35062278d0060010262000ac960201b60201c565b6200024573fc6eff3ece4fd66b3c97d53605a93a4e5963bbf061c35062278d0060020262000ac960201b60201c565b6200027473fc6eff3ece4fd66b3c97d53605a93a4e5963bbf061c35062278d0060030262000ac960201b60201c565b620002a373b50c06686657c2f2131fd04918bf20840b83bd5161753062278d0060010262000ac960201b60201c565b620002d273b50c06686657c2f2131fd04918bf20840b83bd5161753062278d0060020262000ac960201b60201c565b6200030173b50c06686657c2f2131fd04918bf20840b83bd5161753062278d0060030262000ac960201b60201c565b62000330731f4e65ded886dc708a278f05ea107244a8161bf761753062278d0060010262000ac960201b60201c565b6200035f731f4e65ded886dc708a278f05ea107244a8161bf761753062278d0060020262000ac960201b60201c565b6200038e731f4e65ded886dc708a278f05ea107244a8161bf761753062278d0060030262000ac960201b60201c565b620003bd73883ad562d0a83569da00ddf88c96c348519c00306161a862278d0060010262000ac960201b60201c565b620003ec73883ad562d0a83569da00ddf88c96c348519c00306161a862278d0060020262000ac960201b60201c565b6200041b73883ad562d0a83569da00ddf88c96c348519c00306161a862278d0060030262000ac960201b60201c565b6200044a73eeff483b297016938400575043752a2d10d7579a61c35062278d0060010262000ac960201b60201c565b6200047973eeff483b297016938400575043752a2d10d7579a61c35062278d0060020262000ac960201b60201c565b620004a873eeff483b297016938400575043752a2d10d7579a61c35062278d0060030262000ac960201b60201c565b620004d8730ed67daaacf97acf041cc65f04a632a8811347ff6201117062278d0060010262000ac960201b60201c565b62000508730ed67daaacf97acf041cc65f04a632a8811347ff6201117062278d0060020262000ac960201b60201c565b62000538730ed67daaacf97acf041cc65f04a632a8811347ff6201117062278d0060030262000ac960201b60201c565b6200056773a7cc7b0f40763a5baec1af3f631eb7b6e56cacd461445c62278d0060010262000ac960201b60201c565b6200059673a7cc7b0f40763a5baec1af3f631eb7b6e56cacd461445c62278d0060020262000ac960201b60201c565b620005c573a7cc7b0f40763a5baec1af3f631eb7b6e56cacd461445c62278d0060030262000ac960201b60201c565b620005f573b90e7f5fe86775ea8a2ea5241d8d745265f721d2620186a062278d0060010262000ac960201b60201c565b6200062573b90e7f5fe86775ea8a2ea5241d8d745265f721d2620186a062278d0060020262000ac960201b60201c565b6200065573b90e7f5fe86775ea8a2ea5241d8d745265f721d2620186a062278d0060030262000ac960201b60201c565b6200068473778c029675d3e2435cf4c207e981d37c2174bec8619c4062278d0060010262000ac960201b60201c565b620006b373778c029675d3e2435cf4c207e981d37c2174bec8619c4062278d0060020262000ac960201b60201c565b620006e273778c029675d3e2435cf4c207e981d37c2174bec8619c4062278d0060030262000ac960201b60201c565b6200071173e1176052966f14802bb3755bbdfcaa712b4708e861445c62278d0060010262000ac960201b60201c565b6200074073e1176052966f14802bb3755bbdfcaa712b4708e861445c62278d0060020262000ac960201b60201c565b6200076f73e1176052966f14802bb3755bbdfcaa712b4708e861445c62278d0060030262000ac960201b60201c565b6200079f733c87e00da8551c73032496aa60d9bd980510cbaf6201117062278d0060010262000ac960201b60201c565b620007cf733c87e00da8551c73032496aa60d9bd980510cbaf6201117062278d0060020262000ac960201b60201c565b620007ff733c87e00da8551c73032496aa60d9bd980510cbaf6201117062278d0060030262000ac960201b60201c565b6200082e7353a2f447c61152917493679f8105811198648d8161ea6062278d0060010262000ac960201b60201c565b6200085d7353a2f447c61152917493679f8105811198648d8161ea6062278d0060020262000ac960201b60201c565b6200088c7353a2f447c61152917493679f8105811198648d8161ea6062278d0060030262000ac960201b60201c565b620008bb737da633fcf51838e688676ad30c2cc6a08c59c31661271062278d0060010262000ac960201b60201c565b620008ea737da633fcf51838e688676ad30c2cc6a08c59c31661271062278d0060020262000ac960201b60201c565b62000919737da633fcf51838e688676ad30c2cc6a08c59c31661271062278d0060030262000ac960201b60201c565b62000948737aa48800c1f5cb80a670cb66635dd382237777c661753062278d0060010262000ac960201b60201c565b62000977737aa48800c1f5cb80a670cb66635dd382237777c661753062278d0060020262000ac960201b60201c565b620009a6737aa48800c1f5cb80a670cb66635dd382237777c661753062278d0060030262000ac960201b60201c565b620009d5735fd7e077da76e286bd0a50bc545a5883108c364f619c4062278d0060010262000ac960201b60201c565b62000a04735fd7e077da76e286bd0a50bc545a5883108c364f619c4062278d0060020262000ac960201b60201c565b62000a33735fd7e077da76e286bd0a50bc545a5883108c364f619c4062278d0060030262000ac960201b60201c565b62000a63739aa562422ed5079e5c3c38a0733392543653c3db6201d4c062278d0060010262000ac960201b60201c565b62000a93739aa562422ed5079e5c3c38a0733392543653c3db6201d4c062278d0060020262000ac960201b60201c565b62000ac3739aa562422ed5079e5c3c38a0733392543653c3db6201d4c062278d0060030262000ac960201b60201c565b62000c61565b6000546001600160a01b0316331462000ae157600080fd5b60005474010000000000000000000000000000000000000000900460ff161562000b0a57600080fd5b6000805b60015481101562000b5b57846001600160a01b03166001828154811062000b3157fe5b6000918252602090912001546001600160a01b0316141562000b5257600191505b60010162000b0e565b5062000b6662000c39565b5060408051608081018252670de0b6b3a7640000850280825260208083019182528284018681526000606085018181526001600160a01b038b1682526004808552968220805460018181018355918452949092208651949097029096019283559251928201929092559051600282015591516003909201919091558162000c32576001805480820182556000919091527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180546001600160a01b0319166001600160a01b0387161790555b5050505050565b6040518060800160405280600081526020016000815260200160008152602001600081525090565b610c928062000c716000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063785e9e86116100a2578063b90c72ae11610071578063b90c72ae14610231578063cb12872814610257578063f2fde38b1461025f578063f326971614610285578063f8a14f461461028d5761010b565b8063785e9e86146101f557806383e2ad63146102195780638456cb59146102215780638da5cb5b146102295761010b565b80633f4ba83a116100de5780633f4ba83a146101c15780635c975abb146101c9578063702921f5146101e557806376093957146101ed5761010b565b806326a4e8d2146101105780632d9b4b2514610138578063313ce5671461018a57806332a01103146101a4575b600080fd5b6101366004803603602081101561012657600080fd5b50356001600160a01b03166102aa565b005b6101646004803603604081101561014e57600080fd5b506001600160a01b0381351690602001356102fa565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61019261033d565b60408051918252519081900360200190f35b610136600480360360208110156101ba57600080fd5b5035610349565b61013661037c565b6101d16103e2565b604080519115158252519081900360200190f35b6101926103f2565b6101926103f9565b6101fd6103ff565b604080516001600160a01b039092168252519081900360200190f35b61013661040e565b6101366108c1565b6101fd61092e565b6101366004803603602081101561024757600080fd5b50356001600160a01b031661093d565b610192610a6c565b6101366004803603602081101561027557600080fd5b50356001600160a01b0316610a72565b610192610af7565b6101fd600480360360208110156102a357600080fd5b5035610aff565b6000546001600160a01b031633146102c157600080fd5b600054600160a01b900460ff16156102d857600080fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6004602052816000526040600020818154811061031357fe5b60009182526020909120600490910201805460018201546002830154600390930154919450925084565b670de0b6b3a764000081565b6000546001600160a01b0316331461036057600080fd5b600054600160a01b900460ff161561037757600080fd5b600255565b6000546001600160a01b0316331461039357600080fd5b600054600160a01b900460ff166103a957600080fd5b60008054600160a01b60ff02191681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a1565b600054600160a01b900460ff1681565b62278d0081565b60035481565b6005546001600160a01b031681565b600054600160a01b900460ff161561042557600080fd5b60025461047c5760408051600160e51b62461bcd02815260206004820152601460248201527f5447452064617465206e6f742073657420796574000000000000000000000000604482015290519081900360640190fd5b60025442116104d55760408051600160e51b62461bcd02815260206004820152601960248201527f544745207374696c6c206861736ec2b474207374617274656400000000000000604482015290519081900360640190fd5b620151806104ee60035442610b2690919063ffffffff16565b116105435760408051600160e51b62461bcd02815260206004820152601d60248201527f43616e206f6e6c792062652063616c6c6564206f6e6365206120646179000000604482015290519081900360640190fd5b4260035560005b6001548110156108be576060600460006001848154811061056757fe5b60009182526020808320909101546001600160a01b031683528281019390935260409182018120805483518186028101860190945280845292939092919084015b828210156106025783829060005260206000209060040201604051806080016040529081600082015481526020016001820154815260200160028201548152602001600382015481525050815260200190600101906105a8565b509293506000925050505b81518110156108b45781818151811061062257fe5b60200260200101516040015161064360025442610b2690919063ffffffff16565b1180156106675750600082828151811061065957fe5b602002602001015160200151115b156108ac57600082828151811061067a57fe5b60200260200101516020015190506106ed81600460006001888154811061069d57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190208054859081106106cd57fe5b906000526020600020906004020160010154610b2690919063ffffffff16565b60046000600187815481106106fe57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902080548490811061072e57fe5b9060005260206000209060040201600101819055506107a881600460006001888154811061075857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902080548590811061078857fe5b906000526020600020906004020160030154610b6f90919063ffffffff16565b60046000600187815481106107b957fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190208054849081106107e957fe5b6000918252602090912060036004909202010155600554600180546001600160a01b039092169163a9059cbb91908790811061082157fe5b60009182526020808320909101546040805163ffffffff861660e01b81526001600160a01b039092166004830152602482018790525160448083019491928390030190829087803b15801561087557600080fd5b505af1158015610889573d6000803e3d6000fd5b505050506040513d602081101561089f57600080fd5b50516108aa57600080fd5b505b60010161060d565b505060010161054a565b50565b6000546001600160a01b031633146108d857600080fd5b600054600160a01b900460ff16156108ef57600080fd5b60008054600160a01b60ff021916600160a01b1781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a1565b6000546001600160a01b031681565b6000546001600160a01b0316331461095457600080fd5b600054600160a01b900460ff1661096a57600080fd5b60055460408051600160e01b6370a0823102815230600482015290516001600160a01b039092169163a9059cbb91849184916370a08231916024808301926020929190829003018186803b1580156109c157600080fd5b505afa1580156109d5573d6000803e3d6000fd5b505050506040513d60208110156109eb57600080fd5b50516040805163ffffffff851660e01b81526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b158015610a3757600080fd5b505af1158015610a4b573d6000803e3d6000fd5b505050506040513d6020811015610a6157600080fd5b50516108be57600080fd5b60025481565b6000546001600160a01b03163314610a8957600080fd5b6001600160a01b038116610a9c57600080fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6301e1338081565b60018181548110610b0c57fe5b6000918252602090912001546001600160a01b0316905081565b6000610b6883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610bcc565b9392505050565b600082820183811015610b685760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115610c5e57604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c23578181015183820152602001610c0b565b50505050905090810190601f168015610c505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea165627a7a72305820b31d4ac89488d4b7f92a84d3345c9c1b04a4a5e380622d5350a3be81498b7b810029
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063785e9e86116100a2578063b90c72ae11610071578063b90c72ae14610231578063cb12872814610257578063f2fde38b1461025f578063f326971614610285578063f8a14f461461028d5761010b565b8063785e9e86146101f557806383e2ad63146102195780638456cb59146102215780638da5cb5b146102295761010b565b80633f4ba83a116100de5780633f4ba83a146101c15780635c975abb146101c9578063702921f5146101e557806376093957146101ed5761010b565b806326a4e8d2146101105780632d9b4b2514610138578063313ce5671461018a57806332a01103146101a4575b600080fd5b6101366004803603602081101561012657600080fd5b50356001600160a01b03166102aa565b005b6101646004803603604081101561014e57600080fd5b506001600160a01b0381351690602001356102fa565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61019261033d565b60408051918252519081900360200190f35b610136600480360360208110156101ba57600080fd5b5035610349565b61013661037c565b6101d16103e2565b604080519115158252519081900360200190f35b6101926103f2565b6101926103f9565b6101fd6103ff565b604080516001600160a01b039092168252519081900360200190f35b61013661040e565b6101366108c1565b6101fd61092e565b6101366004803603602081101561024757600080fd5b50356001600160a01b031661093d565b610192610a6c565b6101366004803603602081101561027557600080fd5b50356001600160a01b0316610a72565b610192610af7565b6101fd600480360360208110156102a357600080fd5b5035610aff565b6000546001600160a01b031633146102c157600080fd5b600054600160a01b900460ff16156102d857600080fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6004602052816000526040600020818154811061031357fe5b60009182526020909120600490910201805460018201546002830154600390930154919450925084565b670de0b6b3a764000081565b6000546001600160a01b0316331461036057600080fd5b600054600160a01b900460ff161561037757600080fd5b600255565b6000546001600160a01b0316331461039357600080fd5b600054600160a01b900460ff166103a957600080fd5b60008054600160a01b60ff02191681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a1565b600054600160a01b900460ff1681565b62278d0081565b60035481565b6005546001600160a01b031681565b600054600160a01b900460ff161561042557600080fd5b60025461047c5760408051600160e51b62461bcd02815260206004820152601460248201527f5447452064617465206e6f742073657420796574000000000000000000000000604482015290519081900360640190fd5b60025442116104d55760408051600160e51b62461bcd02815260206004820152601960248201527f544745207374696c6c206861736ec2b474207374617274656400000000000000604482015290519081900360640190fd5b620151806104ee60035442610b2690919063ffffffff16565b116105435760408051600160e51b62461bcd02815260206004820152601d60248201527f43616e206f6e6c792062652063616c6c6564206f6e6365206120646179000000604482015290519081900360640190fd5b4260035560005b6001548110156108be576060600460006001848154811061056757fe5b60009182526020808320909101546001600160a01b031683528281019390935260409182018120805483518186028101860190945280845292939092919084015b828210156106025783829060005260206000209060040201604051806080016040529081600082015481526020016001820154815260200160028201548152602001600382015481525050815260200190600101906105a8565b509293506000925050505b81518110156108b45781818151811061062257fe5b60200260200101516040015161064360025442610b2690919063ffffffff16565b1180156106675750600082828151811061065957fe5b602002602001015160200151115b156108ac57600082828151811061067a57fe5b60200260200101516020015190506106ed81600460006001888154811061069d57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190208054859081106106cd57fe5b906000526020600020906004020160010154610b2690919063ffffffff16565b60046000600187815481106106fe57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902080548490811061072e57fe5b9060005260206000209060040201600101819055506107a881600460006001888154811061075857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902080548590811061078857fe5b906000526020600020906004020160030154610b6f90919063ffffffff16565b60046000600187815481106107b957fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190208054849081106107e957fe5b6000918252602090912060036004909202010155600554600180546001600160a01b039092169163a9059cbb91908790811061082157fe5b60009182526020808320909101546040805163ffffffff861660e01b81526001600160a01b039092166004830152602482018790525160448083019491928390030190829087803b15801561087557600080fd5b505af1158015610889573d6000803e3d6000fd5b505050506040513d602081101561089f57600080fd5b50516108aa57600080fd5b505b60010161060d565b505060010161054a565b50565b6000546001600160a01b031633146108d857600080fd5b600054600160a01b900460ff16156108ef57600080fd5b60008054600160a01b60ff021916600160a01b1781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a1565b6000546001600160a01b031681565b6000546001600160a01b0316331461095457600080fd5b600054600160a01b900460ff1661096a57600080fd5b60055460408051600160e01b6370a0823102815230600482015290516001600160a01b039092169163a9059cbb91849184916370a08231916024808301926020929190829003018186803b1580156109c157600080fd5b505afa1580156109d5573d6000803e3d6000fd5b505050506040513d60208110156109eb57600080fd5b50516040805163ffffffff851660e01b81526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b158015610a3757600080fd5b505af1158015610a4b573d6000803e3d6000fd5b505050506040513d6020811015610a6157600080fd5b50516108be57600080fd5b60025481565b6000546001600160a01b03163314610a8957600080fd5b6001600160a01b038116610a9c57600080fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6301e1338081565b60018181548110610b0c57fe5b6000918252602090912001546001600160a01b0316905081565b6000610b6883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610bcc565b9392505050565b600082820183811015610b685760408051600160e51b62461bcd02815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115610c5e57604051600160e51b62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c23578181015183820152602001610c0b565b50505050905090810190601f168015610c505780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea165627a7a72305820b31d4ac89488d4b7f92a84d3345c9c1b04a4a5e380622d5350a3be81498b7b810029
Deployed Bytecode Sourcemap
9484:9213:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9484:9213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15643:129;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15643:129:0;-1:-1:-1;;;;;15643:129:0;;:::i;:::-;;9928:59;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9928:59:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9568:42;;;:::i;:::-;;;;;;;;;;;;;;;;16014:103;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16014:103:0;;:::i;8707:105::-;;;:::i;8032:26::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;9784:39;;;:::i;9876:::-;;;:::i;10026:18::-;;;:::i;:::-;;;;-1:-1:-1;;;;;10026:18:0;;;;;;;;;;;;;;16256:1562;;;:::i;8511:103::-;;;:::i;6920:20::-;;;:::i;15784:222::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15784:222:0;-1:-1:-1;;;;;15784:222:0;;:::i;9699:26::-;;;:::i;7569:192::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7569:192:0;-1:-1:-1;;;;;7569:192:0;;:::i;9830:39::-;;;:::i;9617:28::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9617:28:0;;:::i;15643:129::-;7369:5;;-1:-1:-1;;;;;7369:5:0;7355:10;:19;7347:28;;;;;;8218:6;;-1:-1:-1;;;8218:6:0;;;;8217:7;8209:16;;;;;;15736:5;:28;;-1:-1:-1;;;;;;15736:28:0;-1:-1:-1;;;;;15736:28:0;;;;;;;;;;15643:129::o;9928:59::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9928:59:0;-1:-1:-1;9928:59:0;:::o;9568:42::-;9603:7;9568:42;:::o;16014:103::-;7369:5;;-1:-1:-1;;;;;7369:5:0;7355:10;:19;7347:28;;;;;;8218:6;;-1:-1:-1;;;8218:6:0;;;;8217:7;8209:16;;;;;;16094:7;:15;16014:103::o;8707:105::-;7369:5;;-1:-1:-1;;;;;7369:5:0;7355:10;:19;7347:28;;;;;;8394:6;;-1:-1:-1;;;8394:6:0;;;;8386:15;;;;;;8774:5;8765:14;;-1:-1:-1;;;;;;8765:14:0;;;8795:9;;;;8774:5;8795:9;8707:105::o;8032:26::-;;;-1:-1:-1;;;8032:26:0;;;;;:::o;9784:39::-;9816:7;9784:39;:::o;9876:::-;;;;:::o;10026:18::-;;;-1:-1:-1;;;;;10026:18:0;;:::o;16256:1562::-;8218:6;;-1:-1:-1;;;8218:6:0;;;;8217:7;8209:16;;;;;;16376:7;;16368:45;;;;;-1:-1:-1;;;;;16368:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16485:7;;16467:15;:25;16459:63;;;;;-1:-1:-1;;;;;16459:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16645:6;16601:41;16621:20;;16601:15;:19;;:41;;;;:::i;:::-;:50;16593:92;;;;;-1:-1:-1;;;;;16593:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16719:15;16696:20;:38;16788:6;16784:1024;16804:11;:18;16800:22;;16784:1024;;;16888:27;16918:13;:29;16932:11;16944:1;16932:14;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16932:14:0;16918:29;;;;;;;;;;;;;;;16888:59;;;;;;;;;;;;;;;;;;;16918:29;;16888:59;16932:14;16888:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16888:59:0;;-1:-1:-1;17017:6:0;;-1:-1:-1;;;17013:784:0;17033:1;:8;17029:1;:12;17013:784;;;17102:1;17104;17102:4;;;;;;;;;;;;;;:14;;;17071:28;17091:7;;17071:15;:19;;:28;;;;:::i;:::-;:45;17070:136;;;;;17204:1;17180;17182;17180:4;;;;;;;;;;;;;;:21;;;:25;17070:136;17066:716;;;17330:21;17390:1;17392;17390:4;;;;;;;;;;;;;;:21;;;17374:37;;17486:68;17540:13;17486;:29;17500:11;17512:1;17500:14;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17500:14:0;17486:29;;;;;;;;;;;;:32;;17516:1;;17486:32;;;;;;;;;;;;;;;;:49;;;:53;;:68;;;;:::i;:::-;17434:13;:29;17448:11;17460:1;17448:14;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17448:14:0;17434:29;;;;;;;;;;;;:32;;17464:1;;17434:32;;;;;;;;;;;;;;;;:49;;:120;;;;17623:62;17671:13;17623;:29;17637:11;17649:1;17637:14;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17637:14:0;17623:29;;;;;;;;;;;;:32;;17653:1;;17623:32;;;;;;;;;;;;;;;;:43;;;:47;;:62;;;;:::i;:::-;17577:13;:29;17591:11;17603:1;17591:14;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17591:14:0;17577:29;;;;;;;;;;;;:32;;17607:1;;17577:32;;;;;;;;;;;;;;:43;:32;;;;;:43;:108;17716:5;;;17731:14;;-1:-1:-1;;;;;17716:5:0;;;;:14;;:5;17743:1;;17731:14;;;;;;;;;;;;;;;;;;17716:45;;;;;;;;;;-1:-1:-1;;;;;17731:14:0;;;17716:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:2:-1;;;;30:1;27;20:12;5:2;17716:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17716:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17716:45:0;17708:54;;;;;;17066:716;;17043:3;;17013:784;;;-1:-1:-1;;16824:3:0;;16784:1024;;;;16256:1562::o;8511:103::-;7369:5;;-1:-1:-1;;;;;7369:5:0;7355:10;:19;7347:28;;;;;;8218:6;;-1:-1:-1;;;8218:6:0;;;;8217:7;8209:16;;;;;;8570:6;:13;;-1:-1:-1;;;;;;8570:13:0;-1:-1:-1;;;8570:13:0;;;8599:7;;;;8570:6;8599:7;8511:103::o;6920:20::-;;;-1:-1:-1;;;;;6920:20:0;;:::o;15784:222::-;7369:5;;-1:-1:-1;;;;;7369:5:0;7355:10;:19;7347:28;;;;;;8394:6;;-1:-1:-1;;;8394:6:0;;;;8386:15;;;;;;15941:5;;15966:30;;;-1:-1:-1;;;;;15966:30:0;;15990:4;15966:30;;;;;;-1:-1:-1;;;;;15941:5:0;;;;:14;;15956:8;;15941:5;;15966:15;;:30;;;;;;;;;;;;;;15941:5;15966:30;;;5:2:-1;;;;30:1;27;20:12;5:2;15966:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15966:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15966:30:0;15941:56;;;;;;;;;;-1:-1:-1;;;;;15941:56:0;;;;;;;;;;;;;;;;;;;;15966:30;;15941:56;;;;;;;-1:-1:-1;15941:56:0;;;;5:2:-1;;;;30:1;27;20:12;5:2;15941:56:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15941:56:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15941:56:0;15933:65;;;;;9699:26;;;;:::o;7569:192::-;7369:5;;-1:-1:-1;;;;;7369:5:0;7355:10;:19;7347:28;;;;;;-1:-1:-1;;;;;7650:22:0;;7642:31;;;;;;7710:5;;;7689:37;;-1:-1:-1;;;;;7689:37:0;;;;7710:5;;;7689:37;;;7737:5;:16;;-1:-1:-1;;;;;;7737:16:0;-1:-1:-1;;;;;7737:16:0;;;;;;;;;;7569:192::o;9830:39::-;9861:8;9830:39;:::o;9617:28::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9617:28:0;;-1:-1:-1;9617:28:0;:::o;1967:136::-;2025:7;2052:43;2056:1;2059;2052:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2045:50;1967:136;-1:-1:-1;;;1967:136:0:o;1511:181::-;1569:7;1601:5;;;1625:6;;;;1617:46;;;;;-1:-1:-1;;;;;1617:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;2440:192;2526:7;2562:12;2554:6;;;;2546:29;;;;-1:-1:-1;;;;;2546: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;2546:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2598:5:0;;;2440:192::o
Swarm Source
bzzr://b31d4ac89488d4b7f92a84d3345c9c1b04a4a5e380622d5350a3be81498b7b81
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.