Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Sponsored
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
0x60606040 | 5304721 | 1826 days 56 mins ago | IN | Create: BsktToken | 0 ETH | 0.0072089 |
Loading...
Loading
Contract Name:
BsktToken
Compiler Version
v0.4.21+commit.dfe3193c
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-03-26 */ pragma solidity ^0.4.18; // File: zeppelin-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. */ function Ownable() 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)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } // File: zeppelin-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; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } // File: zeppelin-solidity/contracts/math/SafeMath.sol /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 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 c; } /** * @dev Substracts 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) { uint256 c = a + b; assert(c >= a); return c; } } // File: zeppelin-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); } // File: zeppelin-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: zeppelin-solidity/contracts/token/ERC20/BasicToken.sol /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @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) { require(_to != address(0)); require(_value <= balances[msg.sender]); // SafeMath.sub will throw if there is not enough balance. 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) public view returns (uint256 balance) { return balances[_owner]; } } // File: zeppelin-solidity/contracts/token/ERC20/StandardToken.sol /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal 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) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].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. * * 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) { 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) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @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 * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval(address _spender, uint _addedValue) public returns (bool) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); 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 * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) { 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; } } // File: contracts/BsktToken.sol library AddressArrayUtils { /// @return Returns index and ok for the first occurrence starting from /// index 0 function index(address[] addresses, address a) internal pure returns (uint, bool) { for (uint i = 0; i < addresses.length; i++) { if (addresses[i] == a) { return (i, true); } } return (0, false); } } /// @title BsktToken /// @notice Bskt tokens are transferable, and can be created and redeemed by /// anyone. To create, a user must approve the contract to move the underlying /// tokens, then call `create`. /// @author Cryptofin contract BsktToken is StandardToken, Pausable { using SafeMath for uint256; using AddressArrayUtils for address[]; string public name; string public symbol; uint8 constant public decimals = 18; struct TokenInfo { address addr; uint256 quantity; } uint256 private creationUnit_; TokenInfo[] public tokens; event Mint(address indexed to, uint256 amount); event Burn(address indexed from, uint256 amount); /// @notice Requires value to be divisible by creationUnit /// @param value Number to be checked modifier requireMultiple(uint256 value) { require((value % creationUnit_) == 0); _; } /// @notice Requires value to be non-zero /// @param value Number to be checked modifier requireNonZero(uint256 value) { require(value > 0); _; } /// @notice Initializes contract with a list of ERC20 token addresses and /// corresponding minimum number of units required for a creation unit /// @param addresses Addresses of the underlying ERC20 token contracts /// @param quantities Number of token base units required per creation unit /// @param _creationUnit Number of base units per creation unit function BsktToken( address[] addresses, uint256[] quantities, uint256 _creationUnit, string _name, string _symbol ) public { require(0 < addresses.length && addresses.length < 256); require(addresses.length == quantities.length); require(_creationUnit >= 1); for (uint256 i = 0; i < addresses.length; i++) { tokens.push(TokenInfo({ addr: addresses[i], quantity: quantities[i] })); } creationUnit_ = _creationUnit; name = _name; symbol = _symbol; } /// @notice Returns the creationUnit /// @dev Creation quantity concept is similar but not identical to the one /// described by EIP777 /// @return creationUnit_ Amount required for one creation unit function creationUnit() external view returns(uint256) { return creationUnit_; } /// @notice Creates Bskt tokens in exchange for underlying tokens. Before /// calling, underlying tokens must be approved to be moved by the Bskt /// contract. The number of approved tokens required depends on baseUnits. /// @dev If any underlying tokens' `transferFrom` fails (eg. the token is /// frozen), create will no longer work. At this point a token upgrade will /// be necessary. /// @param baseUnits Number of base units to create. Must be a multiple of /// creationUnit. function create(uint256 baseUnits) external whenNotPaused() requireNonZero(baseUnits) requireMultiple(baseUnits) { // Check overflow require((totalSupply_ + baseUnits) > totalSupply_); for (uint256 i = 0; i < tokens.length; i++) { TokenInfo memory token = tokens[i]; ERC20 erc20 = ERC20(token.addr); uint256 amount = baseUnits.div(creationUnit_).mul(token.quantity); require(erc20.transferFrom(msg.sender, address(this), amount)); } mint(msg.sender, baseUnits); } /// @notice Redeems Bskt tokens in exchange for underlying tokens /// @param baseUnits Number of base units to redeem. Must be a multiple of /// creationUnit. /// @param tokensToSkip Underlying token addresses to skip redemption for. /// Intended to be used to skip frozen or broken tokens which would prevent /// all underlying tokens from being withdrawn due to a revert. Skipped /// tokens are left in the Bskt contract and are unclaimable. function redeem(uint256 baseUnits, address[] tokensToSkip) external requireNonZero(baseUnits) requireMultiple(baseUnits) { require(baseUnits <= totalSupply_); require(baseUnits <= balances[msg.sender]); require(tokensToSkip.length <= tokens.length); // Total supply check not required since a user would have to have // balance greater than the total supply // Burn before to prevent re-entrancy burn(msg.sender, baseUnits); for (uint256 i = 0; i < tokens.length; i++) { TokenInfo memory token = tokens[i]; ERC20 erc20 = ERC20(token.addr); uint256 index; bool ok; (index, ok) = tokensToSkip.index(token.addr); if (ok) { continue; } uint256 amount = baseUnits.div(creationUnit_).mul(token.quantity); require(erc20.transfer(msg.sender, amount)); } } /// @return addresses Underlying token addresses function tokenAddresses() external view returns (address[]){ address[] memory addresses = new address[](tokens.length); for (uint256 i = 0; i < tokens.length; i++) { addresses[i] = tokens[i].addr; } return addresses; } /// @return quantities Number of token base units required per creation unit function tokenQuantities() external view returns (uint256[]){ uint256[] memory quantities = new uint256[](tokens.length); for (uint256 i = 0; i < tokens.length; i++) { quantities[i] = tokens[i].quantity; } return quantities; } // @dev Mints new Bskt tokens // @param to Address to mint to // @param amount Amount to mint // @return ok Whether the operation was successful function mint(address to, uint256 amount) internal returns (bool) { totalSupply_ = totalSupply_.add(amount); balances[to] = balances[to].add(amount); Mint(to, amount); Transfer(address(0), to, amount); return true; } // @dev Burns Bskt tokens // @param from Address to burn from // @param amount Amount to burn // @return ok Whether the operation was successful function burn(address from, uint256 amount) internal returns (bool) { totalSupply_ = totalSupply_.sub(amount); balances[from] = balances[from].sub(amount); Burn(from, amount); Transfer(from, address(0), amount); return true; } // @notice Look up token quantity and whether token exists // @param token Token address to look up // @return (quantity, ok) Units of underlying token, and whether the // token was found function getQuantity(address token) internal view returns (uint256, bool) { for (uint256 i = 0; i < tokens.length; i++) { if (tokens[i].addr == token) { return (tokens[i].quantity, true); } } return (0, false); } /// @notice Owner: Withdraw excess funds which don't belong to Bskt Token /// holders /// @param token ERC20 token address to withdraw function withdrawExcessToken(address token) external onlyOwner { ERC20 erc20 = ERC20(token); uint256 withdrawAmount; uint256 amountOwned = erc20.balanceOf(address(this)); uint256 quantity; bool ok; (quantity, ok) = getQuantity(token); if (ok) { withdrawAmount = amountOwned.sub( totalSupply_.div(creationUnit_).mul(quantity) ); } else { withdrawAmount = amountOwned; } require(erc20.transfer(owner, withdrawAmount)); } /// @notice Owner: Withdraw Ether function withdrawEther() external onlyOwner { owner.transfer(this.balance); } /// @notice Fallback function function() external payable { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"baseUnits","type":"uint256"},{"name":"tokensToSkip","type":"address[]"}],"name":"redeem","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"creationUnit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenQuantities","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":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"tokens","outputs":[{"name":"addr","type":"address"},{"name":"quantity","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","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":false,"inputs":[],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"baseUnits","type":"uint256"}],"name":"create","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":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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenAddresses","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"}],"name":"withdrawExcessToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","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"},{"inputs":[{"name":"addresses","type":"address[]"},{"name":"quantities","type":"uint256[]"},{"name":"_creationUnit","type":"uint256"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"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"},{"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
60606040526000600360146101000a81548160ff02191690831515021790555034156200002b57600080fd5b60405162002bba38038062002bba83398101604052808051820191906020018051820191906020018051906020019091908051820191906020018051820191905050600033600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085516000108015620000c457506101008651105b1515620000d057600080fd5b84518651141515620000e157600080fd5b60018410151515620000f257600080fd5b600090505b8551811015620001e957600780548060010182816200011791906200022e565b9160005260206000209060020201600060408051908101604052808a868151811015156200014157fe5b9060200190602002015173ffffffffffffffffffffffffffffffffffffffff16815260200189868151811015156200017557fe5b90602001906020020151815250909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101555050508080600101915050620000f7565b8360068190555082600490805190602001906200020892919062000263565b5081600590805190602001906200022192919062000263565b5050505050505062000363565b8154818355818115116200025e576002028160020283600052602060002091820191016200025d9190620002ea565b5b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002a657805160ff1916838001178555620002d7565b82800160010185558215620002d7579182015b82811115620002d6578251825591602001919060010190620002b9565b5b509050620002e691906200033b565b5090565b6200033891905b808211156200033457600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600182016000905550600201620002f1565b5090565b90565b6200036091905b808211156200035c57600081600090555060010162000342565b5090565b90565b61284780620003736000396000f30060606040526004361061013e576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde03146101405780630959bd1a146101ce578063095ea7b314610205578063119e5cdf1461025f57806318160ddd146102885780632075eec6146102b157806323b872dd1461031b578063313ce567146103945780633f4ba83a146103c35780634f64b2be146103d85780635c975abb14610442578063661884631461046f57806370a08231146104c95780637362377b14610516578063780900dc1461052b5780638456cb591461054e5780638da5cb5b1461056357806395d89b41146105b8578063a9059cbb14610646578063a9989b93146106a0578063ce6b34671461070a578063d73dd62314610743578063dd62ed3e1461079d578063f2fde38b14610809575b005b341561014b57600080fd5b610153610842565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610193578082015181840152602081019050610178565b50505050905090810190601f1680156101c05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101d957600080fd5b610203600480803590602001909190803590602001908201803590602001919091929050506108e0565b005b341561021057600080fd5b610245600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610ba5565b604051808215151515815260200191505060405180910390f35b341561026a57600080fd5b610272610c97565b6040518082815260200191505060405180910390f35b341561029357600080fd5b61029b610ca1565b6040518082815260200191505060405180910390f35b34156102bc57600080fd5b6102c4610cab565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156103075780820151818401526020810190506102ec565b505050509050019250505060405180910390f35b341561032657600080fd5b61037a600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610d47565b604051808215151515815260200191505060405180910390f35b341561039f57600080fd5b6103a7611101565b604051808260ff1660ff16815260200191505060405180910390f35b34156103ce57600080fd5b6103d6611106565b005b34156103e357600080fd5b6103f960048080359060200190919050506111c6565b604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390f35b341561044d57600080fd5b610455611219565b604051808215151515815260200191505060405180910390f35b341561047a57600080fd5b6104af600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061122c565b604051808215151515815260200191505060405180910390f35b34156104d457600080fd5b610500600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506114bd565b6040518082815260200191505060405180910390f35b341561052157600080fd5b610529611505565b005b341561053657600080fd5b61054c60048080359060200190919050506115dc565b005b341561055957600080fd5b61056161182f565b005b341561056e57600080fd5b6105766118f0565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156105c357600080fd5b6105cb611916565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561060b5780820151818401526020810190506105f0565b50505050905090810190601f1680156106385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561065157600080fd5b610686600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919080359060200190919050506119b4565b604051808215151515815260200191505060405180910390f35b34156106ab57600080fd5b6106b3611bd3565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156106f65780820151818401526020810190506106db565b505050509050019250505060405180910390f35b341561071557600080fd5b610741600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050611cbd565b005b341561074e57600080fd5b610783600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050611f22565b604051808215151515815260200191505060405180910390f35b34156107a857600080fd5b6107f3600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff1690602001909190505061211e565b6040518082815260200191505060405180910390f35b341561081457600080fd5b610840600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506121a5565b005b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108d85780601f106108ad576101008083540402835291602001916108d8565b820191906000526020600020905b8154815290600101906020018083116108bb57829003601f168201915b505050505081565b60006108ea6127c3565b6000806000808860008111151561090057600080fd5b8960006006548281151561091057fe5b0614151561091d57600080fd5b6001548b1115151561092e57600080fd5b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548b1115151561097b57600080fd5b6007805490508a8a90501115151561099257600080fd5b61099c338c6122fd565b50600097505b600780549050881015610b98576007888154811015156109be57fe5b90600052602060002090600202016040805190810160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600182015481525050965086600001519550610a8687600001518b8b8080602002602001604051908101604052809392919081815260200183836020028082843782019150505050505061246b90919063ffffffff16565b80955081965050508315610a9957610b8b565b610ac48760200151610ab66006548e6124f490919063ffffffff16565b61250f90919063ffffffff16565b92508573ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33856040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1515610b6857600080fd5b5af11515610b7557600080fd5b505050604051805190501515610b8a57600080fd5b5b87806001019850506109a2565b5050505050505050505050565b600081600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b6000600654905090565b6000600154905090565b610cb36127f3565b610cbb6127f3565b6000600780549050604051805910610cd05750595b90808252806020026020018201604052509150600090505b600780549050811015610d3f57600781815481101515610d0457fe5b9060005260206000209060020201600101548282815181101515610d2457fe5b90602001906020020181815250508080600101915050610ce8565b819250505090565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515610d8457600080fd5b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515610dd157600080fd5b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515610e5c57600080fd5b610ead826000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254a90919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610f40826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256390919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061101182600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254a90919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a3600190509392505050565b601281565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561116257600080fd5b600360149054906101000a900460ff16151561117d57600080fd5b6000600360146101000a81548160ff0219169083151502179055507f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b6007818154811015156111d557fe5b90600052602060002090600202016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b600360149054906101000a900460ff1681565b600080600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508083111561133d576000600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113d1565b611350838261254a90919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561156157600080fd5b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f1935050505015156115da57600080fd5b565b60006115e66127c3565b600080600360149054906101000a900460ff1615151561160557600080fd5b8460008111151561161557600080fd5b8560006006548281151561162557fe5b0614151561163257600080fd5b600154876001540111151561164657600080fd5b600095505b60078054905086101561181b5760078681548110151561166757fe5b90600052602060002090600202016040805190810160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160018201548152505094508460000151935061171485602001516117066006548a6124f490919063ffffffff16565b61250f90919063ffffffff16565b92508373ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15156117ec57600080fd5b5af115156117f957600080fd5b50505060405180519050151561180e57600080fd5b858060010196505061164b565b6118253388612581565b5050505050505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561188b57600080fd5b600360149054906101000a900460ff161515156118a757600080fd5b6001600360146101000a81548160ff0219169083151502179055507f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119ac5780601f10611981576101008083540402835291602001916119ac565b820191906000526020600020905b81548152906001019060200180831161198f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156119f157600080fd5b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548211151515611a3e57600080fd5b611a8f826000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254a90919063ffffffff16565b6000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611b22826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256390919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b611bdb612807565b611be3612807565b6000600780549050604051805910611bf85750595b90808252806020026020018201604052509150600090505b600780549050811015611cb557600781815481101515611c2c57fe5b906000526020600020906002020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168282815181101515611c6c57fe5b9060200190602002019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508080600101915050611c10565b819250505090565b6000806000806000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611d2157600080fd5b8594508473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1515611dbe57600080fd5b5af11515611dcb57600080fd5b505050604051805190509250611de0866126ef565b80925081935050508015611e3057611e29611e1a83611e0c6006546001546124f490919063ffffffff16565b61250f90919063ffffffff16565b8461254a90919063ffffffff16565b9350611e34565b8293505b8473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1515611ef857600080fd5b5af11515611f0557600080fd5b505050604051805190501515611f1a57600080fd5b505050505050565b6000611fb382600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256390919063ffffffff16565b600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561220157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561223d57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006123148260015461254a90919063ffffffff16565b60018190555061236b826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461254a90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5836040518082815260200191505060405180910390a2600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b60008060008090505b84518110156124e1578373ffffffffffffffffffffffffffffffffffffffff1685828151811015156124a257fe5b9060200190602002015173ffffffffffffffffffffffffffffffffffffffff1614156124d457806001925092506124ec565b8080600101915050612474565b600080819150925092505b509250929050565b600080828481151561250257fe5b0490508091505092915050565b60008060008414156125245760009150612543565b828402905082848281151561253557fe5b0414151561253f57fe5b8091505b5092915050565b600082821115151561255857fe5b818303905092915050565b600080828401905083811015151561257757fe5b8091505092915050565b60006125988260015461256390919063ffffffff16565b6001819055506125ef826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256390919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885836040518082815260200191505060405180910390a28273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a36001905092915050565b60008060008090505b6007805490508110156127b2578373ffffffffffffffffffffffffffffffffffffffff1660078281548110151561272b57fe5b906000526020600020906002020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156127a55760078181548110151561278857fe5b9060005260206000209060020201600101546001925092506127bd565b80806001019150506126f8565b600080819150925092505b50915091565b6040805190810160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600081525090565b602060405190810160405280600081525090565b6020604051908101604052806000815250905600a165627a7a72305820e989a05c626097de79d7d3e8dbb0f36f78189669027691513c2d1ee86985c2c5002900000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000e8d4a51000000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000d26114cd6ee289accf82350c8d8487fedb8a0c07000000000000000000000000b8c77482e45f1f44de1745f52c74426c631bdd52000000000000000000000000e0b7927c4af23765cb51314a0e0521a9645f0e2a000000000000000000000000d4fa1460f537bb9085d22c7bccb5dd450ef28e3a0000000000000000000000009f8f72aa9304c8b593d555f12ef6589cc3a579a2000000000000000000000000744d70fdbe2ba4cf95131626614a1763df805b9e000000000000000000000000e94327d07fc17907b4db788e5adf2ed424addff6000000000000000000000000e41d2489571d322189246dafa5ebde1f4699f498000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd200000000000000000000000000d4c435f5b09f855c3317c8524cb1f586e42795fa000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000016c0b1d3980000000000000000000000000000000000000000000000000000001613d25ec50000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000234a014600000000000000000000000000000000000000000000000000000305d2cfe0700000000000000000000000000000000000000000000000000000000273e432f900000000000000000000000000000000000000000000000000000073d7c251c90000000000000000000000000000000000000000000000000000001de86ef2890000000000000000000000000000000000000000000000000000014269d7cd430000000000000000000000000000000000000000000000000000000000000006455243323058000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034531300000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000e8d4a51000000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003a0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000d26114cd6ee289accf82350c8d8487fedb8a0c07000000000000000000000000b8c77482e45f1f44de1745f52c74426c631bdd52000000000000000000000000e0b7927c4af23765cb51314a0e0521a9645f0e2a000000000000000000000000d4fa1460f537bb9085d22c7bccb5dd450ef28e3a0000000000000000000000009f8f72aa9304c8b593d555f12ef6589cc3a579a2000000000000000000000000744d70fdbe2ba4cf95131626614a1763df805b9e000000000000000000000000e94327d07fc17907b4db788e5adf2ed424addff6000000000000000000000000e41d2489571d322189246dafa5ebde1f4699f498000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd200000000000000000000000000d4c435f5b09f855c3317c8524cb1f586e42795fa000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000016c0b1d3980000000000000000000000000000000000000000000000000000001613d25ec50000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000234a014600000000000000000000000000000000000000000000000000000305d2cfe0700000000000000000000000000000000000000000000000000000000273e432f900000000000000000000000000000000000000000000000000000073d7c251c90000000000000000000000000000000000000000000000000000001de86ef2890000000000000000000000000000000000000000000000000000014269d7cd430000000000000000000000000000000000000000000000000000000000000006455243323058000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034531300000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : addresses (address[]): 0xd26114cd6EE289AccF82350c8d8487fedB8A0C07,0xB8c77482e45F1F44dE1745F52C74426C631bDD52,0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A,0xd4fa1460F537bb9085d22C7bcCB5DD450Ef28e3a,0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2,0x744d70FDBE2Ba4CF95131626614a1763DF805B9E,0xE94327D07Fc17907b4DB788E5aDf2ed424adDff6,0xE41d2489571d322189246DaFA5ebDe1F4699F498,0xdd974D5C2e2928deA5F71b9825b8b646686BD200,0xd4c435F5B09F855C3317c8524Cb1F586E42795fa
Arg [1] : quantities (uint256[]): 97722160024,94821834437,2,4,592052550,3323546558576,10534269689,497541075401,128453636745,1384755219779
Arg [2] : _creationUnit (uint256): 1000000000000
Arg [3] : _name (string): ERC20X
Arg [4] : _symbol (string): E10
-----Encoded View---------------
31 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [2] : 000000000000000000000000000000000000000000000000000000e8d4a51000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000360
Arg [4] : 00000000000000000000000000000000000000000000000000000000000003a0
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 000000000000000000000000d26114cd6ee289accf82350c8d8487fedb8a0c07
Arg [7] : 000000000000000000000000b8c77482e45f1f44de1745f52c74426c631bdd52
Arg [8] : 000000000000000000000000e0b7927c4af23765cb51314a0e0521a9645f0e2a
Arg [9] : 000000000000000000000000d4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Arg [10] : 0000000000000000000000009f8f72aa9304c8b593d555f12ef6589cc3a579a2
Arg [11] : 000000000000000000000000744d70fdbe2ba4cf95131626614a1763df805b9e
Arg [12] : 000000000000000000000000e94327d07fc17907b4db788e5adf2ed424addff6
Arg [13] : 000000000000000000000000e41d2489571d322189246dafa5ebde1f4699f498
Arg [14] : 000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd200
Arg [15] : 000000000000000000000000d4c435f5b09f855c3317c8524cb1f586e42795fa
Arg [16] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [17] : 00000000000000000000000000000000000000000000000000000016c0b1d398
Arg [18] : 0000000000000000000000000000000000000000000000000000001613d25ec5
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [21] : 00000000000000000000000000000000000000000000000000000000234a0146
Arg [22] : 00000000000000000000000000000000000000000000000000000305d2cfe070
Arg [23] : 0000000000000000000000000000000000000000000000000000000273e432f9
Arg [24] : 00000000000000000000000000000000000000000000000000000073d7c251c9
Arg [25] : 0000000000000000000000000000000000000000000000000000001de86ef289
Arg [26] : 0000000000000000000000000000000000000000000000000000014269d7cd43
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [28] : 4552433230580000000000000000000000000000000000000000000000000000
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [30] : 4531300000000000000000000000000000000000000000000000000000000000
Swarm Source
bzzr://e989a05c626097de79d7d3e8dbb0f36f78189669027691513c2d1ee86985c2c5
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.
[ 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.