Polygon Sponsored slots available. Book your slot here!
Overview
POL Balance
0 POL
POL Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Name:
CTDB37
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2023-02-18 */ //Copyright ©️ 2023 by Capital Trust Group Limited //* Author : [email protected] // File: contracts\open-zeppelin-contracts\token\ERC20\IERC20.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.16; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through `transferFrom`. This is * zero by default. * * This value changes when `approve` or `transferFrom` are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * > Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an `Approval` event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to `approve`. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: contracts\open-zeppelin-contracts\math\SafeMath.sol pragma solidity ^0.8.16; /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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-solidity/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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); 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) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } // File: contracts\open-zeppelin-contracts\token\ERC20\ERC20.sol pragma solidity ^0.8.16; /** * @dev Implementation of the `IERC20` interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using `_mint`. * For a generic mechanism see `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an `Approval` event is emitted on calls to `transferFrom`. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard `decreaseAllowance` and `increaseAllowance` * functions have been added to mitigate the well-known issues around setting * allowances. See `IERC20.approve`. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev See `IERC20.transferFrom`. * * Emits an `Approval` event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of `ERC20`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to `transfer`, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a `Transfer` event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a `Transfer` event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a `Transfer` event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an `Approval` event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See `_burn` and `_approve`. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } } // File: contracts\ERC20\TokenMintERC20Token.sol pragma solidity ^0.8.16; /** * @title TokenMintERC20Token * @author TokenMint (visit https://tokenmint.io) * * @dev Standard ERC20 token with burning and optional functions implemented. * For full specification of ERC-20 standard see: * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md */ contract CTDB37 is ERC20 { string private _name; string private _symbol; uint8 private _decimals; address public owner; constructor(string memory names, string memory symbols, uint8 decimales, uint256 totalSupply, address payable feeReceiver, address tokenOwnerAddress)payable{ _name = names; _symbol = symbols; _decimals = decimales; // set tokenOwnerAddress as owner of all tokens _mint(tokenOwnerAddress, totalSupply); // pay the service fee for contract deployment feeReceiver.transfer(msg.value); owner= tokenOwnerAddress; } function mint(uint256 value) public { require(msg.sender==owner,"only Owner can call this function"); _mint(msg.sender, value); } /** * @dev Burns a specific amount of tokens. * @param value The amount of lowest token units to be burned. */ function burn(uint256 value) public { require(msg.sender==owner,"only Owner can call this function"); _burn(msg.sender, value); } // optional functions from ERC20 stardard /** * @return the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @return the symbol of the token. */ function symbol() public view returns (string memory) { return _symbol; } /** * @return the number of decimals of the token. */ function decimals() public view returns (uint8) { return _decimals; } function transferOwnership(address _owner) public { require(msg.sender==owner,"only Owner can call this function"); owner = _owner; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"names","type":"string"},{"internalType":"string","name":"symbols","type":"string"},{"internalType":"uint8","name":"decimales","type":"uint8"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"address payable","name":"feeReceiver","type":"address"},{"internalType":"address","name":"tokenOwnerAddress","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040516200261e3803806200261e8339818101604052810190620000299190620005c2565b85600390816200003a9190620008dd565b5084600490816200004c9190620008dd565b5083600560006101000a81548160ff021916908360ff1602179055506200007a81846200010f60201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015620000c1573d6000803e3d6000fd5b5080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050505062000b51565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001789062000a25565b60405180910390fd5b6200019d81600254620002a960201b620009a51790919060201c565b600281905550620001fb816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620002a960201b620009a51790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200029d919062000a58565b60405180910390a35050565b6000808284620002ba919062000aa4565b90508381101562000302576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f99062000b2f565b60405180910390fd5b8091505092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000375826200032a565b810181811067ffffffffffffffff821117156200039757620003966200033b565b5b80604052505050565b6000620003ac6200030c565b9050620003ba82826200036a565b919050565b600067ffffffffffffffff821115620003dd57620003dc6200033b565b5b620003e8826200032a565b9050602081019050919050565b60005b8381101562000415578082015181840152602081019050620003f8565b60008484015250505050565b6000620004386200043284620003bf565b620003a0565b90508281526020810184848401111562000457576200045662000325565b5b62000464848285620003f5565b509392505050565b600082601f83011262000484576200048362000320565b5b81516200049684826020860162000421565b91505092915050565b600060ff82169050919050565b620004b7816200049f565b8114620004c357600080fd5b50565b600081519050620004d781620004ac565b92915050565b6000819050919050565b620004f281620004dd565b8114620004fe57600080fd5b50565b6000815190506200051281620004e7565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005458262000518565b9050919050565b620005578162000538565b81146200056357600080fd5b50565b60008151905062000577816200054c565b92915050565b60006200058a8262000518565b9050919050565b6200059c816200057d565b8114620005a857600080fd5b50565b600081519050620005bc8162000591565b92915050565b60008060008060008060c08789031215620005e257620005e162000316565b5b600087015167ffffffffffffffff8111156200060357620006026200031b565b5b6200061189828a016200046c565b965050602087015167ffffffffffffffff8111156200063557620006346200031b565b5b6200064389828a016200046c565b95505060406200065689828a01620004c6565b94505060606200066989828a0162000501565b93505060806200067c89828a0162000566565b92505060a06200068f89828a01620005ab565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006ef57607f821691505b602082108103620007055762000704620006a7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200076f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000730565b6200077b868362000730565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007be620007b8620007b284620004dd565b62000793565b620004dd565b9050919050565b6000819050919050565b620007da836200079d565b620007f2620007e982620007c5565b8484546200073d565b825550505050565b600090565b62000809620007fa565b62000816818484620007cf565b505050565b5b818110156200083e5762000832600082620007ff565b6001810190506200081c565b5050565b601f8211156200088d5762000857816200070b565b620008628462000720565b8101602085101562000872578190505b6200088a620008818562000720565b8301826200081b565b50505b505050565b600082821c905092915050565b6000620008b26000198460080262000892565b1980831691505092915050565b6000620008cd83836200089f565b9150826002028217905092915050565b620008e8826200069c565b67ffffffffffffffff8111156200090457620009036200033b565b5b620009108254620006d6565b6200091d82828562000842565b600060209050601f83116001811462000955576000841562000940578287015190505b6200094c8582620008bf565b865550620009bc565b601f19841662000965866200070b565b60005b828110156200098f5784890151825560018201915060208501945060208101905062000968565b86831015620009af5784890151620009ab601f8916826200089f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a0d601f83620009c4565b915062000a1a82620009d5565b602082019050919050565b6000602082019050818103600083015262000a4081620009fe565b9050919050565b62000a5281620004dd565b82525050565b600060208201905062000a6f600083018462000a47565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ab182620004dd565b915062000abe83620004dd565b925082820190508082111562000ad95762000ad862000a75565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000b17601b83620009c4565b915062000b248262000adf565b602082019050919050565b6000602082019050818103600083015262000b4a8162000b08565b9050919050565b611abd8062000b616000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610288578063a9059cbb146102b8578063dd62ed3e146102e8578063f2fde38b14610318576100f5565b806370a08231146102005780638da5cb5b1461023057806395d89b411461024e578063a0712d681461026c576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610334565b60405161010f9190611237565b60405180910390f35b610132600480360381019061012d91906112f2565b6103c6565b60405161013f919061134d565b60405180910390f35b6101506103dd565b60405161015d9190611377565b60405180910390f35b610180600480360381019061017b9190611392565b6103e7565b60405161018d919061134d565b60405180910390f35b61019e610498565b6040516101ab9190611401565b60405180910390f35b6101ce60048036038101906101c991906112f2565b6104af565b6040516101db919061134d565b60405180910390f35b6101fe60048036038101906101f9919061141c565b610554565b005b61021a60048036038101906102159190611449565b6105f1565b6040516102279190611377565b60405180910390f35b610238610639565b6040516102459190611485565b60405180910390f35b61025661065f565b6040516102639190611237565b60405180910390f35b6102866004803603810190610281919061141c565b6106f1565b005b6102a2600480360381019061029d91906112f2565b61078e565b6040516102af919061134d565b60405180910390f35b6102d260048036038101906102cd91906112f2565b610833565b6040516102df919061134d565b60405180910390f35b61030260048036038101906102fd91906114a0565b61084a565b60405161030f9190611377565b60405180910390f35b610332600480360381019061032d9190611449565b6108d1565b005b6060600380546103439061150f565b80601f016020809104026020016040519081016040528092919081815260200182805461036f9061150f565b80156103bc5780601f10610391576101008083540402835291602001916103bc565b820191906000526020600020905b81548152906001019060200180831161039f57829003601f168201915b5050505050905090565b60006103d3338484610a03565b6001905092915050565b6000600254905090565b60006103f4848484610bcc565b61048d843361048885600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3a90919063ffffffff16565b610a03565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600061054a338461054585600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109a590919063ffffffff16565b610a03565b6001905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105db906115b2565b60405180910390fd5b6105ee3382610e99565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461066e9061150f565b80601f016020809104026020016040519081016040528092919081815260200182805461069a9061150f565b80156106e75780601f106106bc576101008083540402835291602001916106e7565b820191906000526020600020905b8154815290600101906020018083116106ca57829003601f168201915b5050505050905090565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610778906115b2565b60405180910390fd5b61078b3382611020565b50565b6000610829338461082485600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3a90919063ffffffff16565b610a03565b6001905092915050565b6000610840338484610bcc565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610961576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610958906115b2565b60405180910390fd5b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008082846109b49190611601565b9050838110156109f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f090611681565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6990611713565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad8906117a5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bbf9190611377565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290611837565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca1906118c9565b60405180910390fd5b610cfb816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3a90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d8e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109a590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e2d9190611377565b60405180910390a3505050565b600082821115610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7690611935565b60405180910390fd5b60008284610e8d9190611955565b90508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff906119fb565b60405180910390fd5b610f1d81600254610e3a90919063ffffffff16565b600281905550610f74816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110149190611377565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690611a67565b60405180910390fd5b6110a4816002546109a590919063ffffffff16565b6002819055506110fb816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109a590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161119b9190611377565b60405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111e15780820151818401526020810190506111c6565b60008484015250505050565b6000601f19601f8301169050919050565b6000611209826111a7565b61121381856111b2565b93506112238185602086016111c3565b61122c816111ed565b840191505092915050565b6000602082019050818103600083015261125181846111fe565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112898261125e565b9050919050565b6112998161127e565b81146112a457600080fd5b50565b6000813590506112b681611290565b92915050565b6000819050919050565b6112cf816112bc565b81146112da57600080fd5b50565b6000813590506112ec816112c6565b92915050565b6000806040838503121561130957611308611259565b5b6000611317858286016112a7565b9250506020611328858286016112dd565b9150509250929050565b60008115159050919050565b61134781611332565b82525050565b6000602082019050611362600083018461133e565b92915050565b611371816112bc565b82525050565b600060208201905061138c6000830184611368565b92915050565b6000806000606084860312156113ab576113aa611259565b5b60006113b9868287016112a7565b93505060206113ca868287016112a7565b92505060406113db868287016112dd565b9150509250925092565b600060ff82169050919050565b6113fb816113e5565b82525050565b600060208201905061141660008301846113f2565b92915050565b60006020828403121561143257611431611259565b5b6000611440848285016112dd565b91505092915050565b60006020828403121561145f5761145e611259565b5b600061146d848285016112a7565b91505092915050565b61147f8161127e565b82525050565b600060208201905061149a6000830184611476565b92915050565b600080604083850312156114b7576114b6611259565b5b60006114c5858286016112a7565b92505060206114d6858286016112a7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061152757607f821691505b60208210810361153a576115396114e0565b5b50919050565b7f6f6e6c79204f776e65722063616e2063616c6c20746869732066756e6374696f60008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061159c6021836111b2565b91506115a782611540565b604082019050919050565b600060208201905081810360008301526115cb8161158f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061160c826112bc565b9150611617836112bc565b925082820190508082111561162f5761162e6115d2565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061166b601b836111b2565b915061167682611635565b602082019050919050565b6000602082019050818103600083015261169a8161165e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116fd6024836111b2565b9150611708826116a1565b604082019050919050565b6000602082019050818103600083015261172c816116f0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061178f6022836111b2565b915061179a82611733565b604082019050919050565b600060208201905081810360008301526117be81611782565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118216025836111b2565b915061182c826117c5565b604082019050919050565b6000602082019050818103600083015261185081611814565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118b36023836111b2565b91506118be82611857565b604082019050919050565b600060208201905081810360008301526118e2816118a6565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b600061191f601e836111b2565b915061192a826118e9565b602082019050919050565b6000602082019050818103600083015261194e81611912565b9050919050565b6000611960826112bc565b915061196b836112bc565b9250828203905081811115611983576119826115d2565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006119e56021836111b2565b91506119f082611989565b604082019050919050565b60006020820190508181036000830152611a14816119d8565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a51601f836111b2565b9150611a5c82611a1b565b602082019050919050565b60006020820190508181036000830152611a8081611a44565b905091905056fea2646970667358221220bf456bf00ea64c303c4802a12422be0eef5a8a70db5076788f15355c4207237c64736f6c6343000810003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000084595161401484a0000000000000000000000000000003ab76ce53c8d859d1eeb0dbbd93fa3f3a6dba6200000000000000000000000003ab76ce53c8d859d1eeb0dbbd93fa3f3a6dba620000000000000000000000000000000000000000000000000000000000000002d4361706974616c2054727573742047726f7570204469676974616c20426f6e64202d2050726f6a6563742033370000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064354444233370000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610288578063a9059cbb146102b8578063dd62ed3e146102e8578063f2fde38b14610318576100f5565b806370a08231146102005780638da5cb5b1461023057806395d89b411461024e578063a0712d681461026c576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610334565b60405161010f9190611237565b60405180910390f35b610132600480360381019061012d91906112f2565b6103c6565b60405161013f919061134d565b60405180910390f35b6101506103dd565b60405161015d9190611377565b60405180910390f35b610180600480360381019061017b9190611392565b6103e7565b60405161018d919061134d565b60405180910390f35b61019e610498565b6040516101ab9190611401565b60405180910390f35b6101ce60048036038101906101c991906112f2565b6104af565b6040516101db919061134d565b60405180910390f35b6101fe60048036038101906101f9919061141c565b610554565b005b61021a60048036038101906102159190611449565b6105f1565b6040516102279190611377565b60405180910390f35b610238610639565b6040516102459190611485565b60405180910390f35b61025661065f565b6040516102639190611237565b60405180910390f35b6102866004803603810190610281919061141c565b6106f1565b005b6102a2600480360381019061029d91906112f2565b61078e565b6040516102af919061134d565b60405180910390f35b6102d260048036038101906102cd91906112f2565b610833565b6040516102df919061134d565b60405180910390f35b61030260048036038101906102fd91906114a0565b61084a565b60405161030f9190611377565b60405180910390f35b610332600480360381019061032d9190611449565b6108d1565b005b6060600380546103439061150f565b80601f016020809104026020016040519081016040528092919081815260200182805461036f9061150f565b80156103bc5780601f10610391576101008083540402835291602001916103bc565b820191906000526020600020905b81548152906001019060200180831161039f57829003601f168201915b5050505050905090565b60006103d3338484610a03565b6001905092915050565b6000600254905090565b60006103f4848484610bcc565b61048d843361048885600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3a90919063ffffffff16565b610a03565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600061054a338461054585600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109a590919063ffffffff16565b610a03565b6001905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105db906115b2565b60405180910390fd5b6105ee3382610e99565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461066e9061150f565b80601f016020809104026020016040519081016040528092919081815260200182805461069a9061150f565b80156106e75780601f106106bc576101008083540402835291602001916106e7565b820191906000526020600020905b8154815290600101906020018083116106ca57829003601f168201915b5050505050905090565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610778906115b2565b60405180910390fd5b61078b3382611020565b50565b6000610829338461082485600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3a90919063ffffffff16565b610a03565b6001905092915050565b6000610840338484610bcc565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610961576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610958906115b2565b60405180910390fd5b80600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008082846109b49190611601565b9050838110156109f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f090611681565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6990611713565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad8906117a5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bbf9190611377565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3290611837565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca1906118c9565b60405180910390fd5b610cfb816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3a90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d8e816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109a590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e2d9190611377565b60405180910390a3505050565b600082821115610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7690611935565b60405180910390fd5b60008284610e8d9190611955565b90508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff906119fb565b60405180910390fd5b610f1d81600254610e3a90919063ffffffff16565b600281905550610f74816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110149190611377565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690611a67565b60405180910390fd5b6110a4816002546109a590919063ffffffff16565b6002819055506110fb816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109a590919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161119b9190611377565b60405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111e15780820151818401526020810190506111c6565b60008484015250505050565b6000601f19601f8301169050919050565b6000611209826111a7565b61121381856111b2565b93506112238185602086016111c3565b61122c816111ed565b840191505092915050565b6000602082019050818103600083015261125181846111fe565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112898261125e565b9050919050565b6112998161127e565b81146112a457600080fd5b50565b6000813590506112b681611290565b92915050565b6000819050919050565b6112cf816112bc565b81146112da57600080fd5b50565b6000813590506112ec816112c6565b92915050565b6000806040838503121561130957611308611259565b5b6000611317858286016112a7565b9250506020611328858286016112dd565b9150509250929050565b60008115159050919050565b61134781611332565b82525050565b6000602082019050611362600083018461133e565b92915050565b611371816112bc565b82525050565b600060208201905061138c6000830184611368565b92915050565b6000806000606084860312156113ab576113aa611259565b5b60006113b9868287016112a7565b93505060206113ca868287016112a7565b92505060406113db868287016112dd565b9150509250925092565b600060ff82169050919050565b6113fb816113e5565b82525050565b600060208201905061141660008301846113f2565b92915050565b60006020828403121561143257611431611259565b5b6000611440848285016112dd565b91505092915050565b60006020828403121561145f5761145e611259565b5b600061146d848285016112a7565b91505092915050565b61147f8161127e565b82525050565b600060208201905061149a6000830184611476565b92915050565b600080604083850312156114b7576114b6611259565b5b60006114c5858286016112a7565b92505060206114d6858286016112a7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061152757607f821691505b60208210810361153a576115396114e0565b5b50919050565b7f6f6e6c79204f776e65722063616e2063616c6c20746869732066756e6374696f60008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b600061159c6021836111b2565b91506115a782611540565b604082019050919050565b600060208201905081810360008301526115cb8161158f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061160c826112bc565b9150611617836112bc565b925082820190508082111561162f5761162e6115d2565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061166b601b836111b2565b915061167682611635565b602082019050919050565b6000602082019050818103600083015261169a8161165e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116fd6024836111b2565b9150611708826116a1565b604082019050919050565b6000602082019050818103600083015261172c816116f0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061178f6022836111b2565b915061179a82611733565b604082019050919050565b600060208201905081810360008301526117be81611782565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118216025836111b2565b915061182c826117c5565b604082019050919050565b6000602082019050818103600083015261185081611814565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118b36023836111b2565b91506118be82611857565b604082019050919050565b600060208201905081810360008301526118e2816118a6565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b600061191f601e836111b2565b915061192a826118e9565b602082019050919050565b6000602082019050818103600083015261194e81611912565b9050919050565b6000611960826112bc565b915061196b836112bc565b9250828203905081811115611983576119826115d2565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006119e56021836111b2565b91506119f082611989565b604082019050919050565b60006020820190508181036000830152611a14816119d8565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611a51601f836111b2565b9150611a5c82611a1b565b602082019050919050565b60006020820190508181036000830152611a8081611a44565b905091905056fea2646970667358221220bf456bf00ea64c303c4802a12422be0eef5a8a70db5076788f15355c4207237c64736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000084595161401484a0000000000000000000000000000003ab76ce53c8d859d1eeb0dbbd93fa3f3a6dba6200000000000000000000000003ab76ce53c8d859d1eeb0dbbd93fa3f3a6dba620000000000000000000000000000000000000000000000000000000000000002d4361706974616c2054727573742047726f7570204469676974616c20426f6e64202d2050726f6a6563742033370000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064354444233370000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : names (string): Capital Trust Group Digital Bond - Project 37
Arg [1] : symbols (string): CTDB37
Arg [2] : decimales (uint8): 18
Arg [3] : totalSupply (uint256): 10000000000000000000000000
Arg [4] : feeReceiver (address): 0x3ab76cE53C8d859D1eeb0dbbD93Fa3F3A6DBA620
Arg [5] : tokenOwnerAddress (address): 0x3ab76cE53C8d859D1eeb0dbbD93Fa3F3A6DBA620
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000084595161401484a000000
Arg [4] : 0000000000000000000000003ab76ce53c8d859d1eeb0dbbd93fa3f3a6dba620
Arg [5] : 0000000000000000000000003ab76ce53c8d859d1eeb0dbbd93fa3f3a6dba620
Arg [6] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [7] : 4361706974616c2054727573742047726f7570204469676974616c20426f6e64
Arg [8] : 202d2050726f6a65637420333700000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [10] : 4354444233370000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
15129:1767:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16322:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9246:148;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8269:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9865:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16634:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10530:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16058:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8423:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15249:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16470:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15766:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11239:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8746:156;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8965:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16731:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16322:81;16359:13;16390:5;16383:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16322:81;:::o;9246:148::-;9311:4;9328:36;9337:10;9349:7;9358:5;9328:8;:36::i;:::-;9382:4;9375:11;;9246:148;;;;:::o;8269:91::-;8313:7;8340:12;;8333:19;;8269:91;:::o;9865:256::-;9954:4;9971:36;9981:6;9989:9;10000:6;9971:9;:36::i;:::-;10018:73;10027:6;10035:10;10047:43;10083:6;10047:11;:19;10059:6;10047:19;;;;;;;;;;;;;;;:31;10067:10;10047:31;;;;;;;;;;;;;;;;:35;;:43;;;;:::i;:::-;10018:8;:73::i;:::-;10109:4;10102:11;;9865:256;;;;;:::o;16634:89::-;16675:5;16698:9;;;;;;;;;;;16691:16;;16634:89;:::o;10530:206::-;10610:4;10627:79;10636:10;10648:7;10657:48;10694:10;10657:11;:23;10669:10;10657:23;;;;;;;;;;;;;;;:32;10681:7;10657:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;10627:8;:79::i;:::-;10724:4;10717:11;;10530:206;;;;:::o;16058:150::-;16125:5;;;;;;;;;;;16113:17;;:10;:17;;;16105:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;16176:24;16182:10;16194:5;16176;:24::i;:::-;16058:150;:::o;8423:110::-;8480:7;8507:9;:18;8517:7;8507:18;;;;;;;;;;;;;;;;8500:25;;8423:110;;;:::o;15249:21::-;;;;;;;;;;;;;:::o;16470:85::-;16509:13;16540:7;16533:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16470:85;:::o;15766:150::-;15833:5;;;;;;;;;;;15821:17;;:10;:17;;;15813:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;15884:24;15890:10;15902:5;15884;:24::i;:::-;15766:150;:::o;11239:216::-;11324:4;11341:84;11350:10;11362:7;11371:53;11408:15;11371:11;:23;11383:10;11371:23;;;;;;;;;;;;;;;:32;11395:7;11371:32;;;;;;;;;;;;;;;;:36;;:53;;;;:::i;:::-;11341:8;:84::i;:::-;11443:4;11436:11;;11239:216;;;;:::o;8746:156::-;8815:4;8832:40;8842:10;8854:9;8865:6;8832:9;:40::i;:::-;8890:4;8883:11;;8746:156;;;;:::o;8965:134::-;9037:7;9064:11;:18;9076:5;9064:18;;;;;;;;;;;;;;;:27;9083:7;9064:27;;;;;;;;;;;;;;;;9057:34;;8965:134;;;;:::o;16731:162::-;16818:5;;;;;;;;;;;16806:17;;:10;:17;;;16798:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;16879:6;16871:5;;:14;;;;;;;;;;;;;;;;;;16731:162;:::o;3925:181::-;3983:7;4003:9;4019:1;4015;:5;;;;:::i;:::-;4003:17;;4044:1;4039;:6;;4031:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;4097:1;4090:8;;;3925:181;;;;:::o;14042:335::-;14152:1;14135:19;;:5;:19;;;14127:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14233:1;14214:21;;:7;:21;;;14206:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14317:5;14287:11;:18;14299:5;14287:18;;;;;;;;;;;;;;;:27;14306:7;14287:27;;;;;;;;;;;;;;;:35;;;;14354:7;14338:31;;14347:5;14338:31;;;14363:5;14338:31;;;;;;:::i;:::-;;;;;;;;14042:335;;;:::o;11945:429::-;12061:1;12043:20;;:6;:20;;;12035:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12145:1;12124:23;;:9;:23;;;12116:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12220:29;12242:6;12220:9;:17;12230:6;12220:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;12200:9;:17;12210:6;12200:17;;;;;;;;;;;;;;;:49;;;;12283:32;12308:6;12283:9;:20;12293:9;12283:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;12260:9;:20;12270:9;12260:20;;;;;;;;;;;;;;;:55;;;;12348:9;12331:35;;12340:6;12331:35;;;12359:6;12331:35;;;;;;:::i;:::-;;;;;;;;11945:429;;;:::o;4381:184::-;4439:7;4472:1;4467;:6;;4459:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;4519:9;4535:1;4531;:5;;;;:::i;:::-;4519:17;;4556:1;4549:8;;;4381:184;;;;:::o;13296:306::-;13390:1;13371:21;;:7;:21;;;13363:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13458:23;13475:5;13458:12;;:16;;:23;;;;:::i;:::-;13443:12;:38;;;;13513:29;13536:5;13513:9;:18;13523:7;13513:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;13492:9;:18;13502:7;13492:18;;;;;;;;;;;;;;;:50;;;;13584:1;13558:36;;13567:7;13558:36;;;13588:5;13558:36;;;;;;:::i;:::-;;;;;;;;13296:306;;:::o;12655:308::-;12750:1;12731:21;;:7;:21;;;12723:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12816:24;12833:6;12816:12;;:16;;:24;;;;:::i;:::-;12801:12;:39;;;;12872:30;12895:6;12872:9;:18;12882:7;12872:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;12851:9;:18;12861:7;12851:18;;;;;;;;;;;;;;;:51;;;;12939:7;12918:37;;12935:1;12918:37;;;12948:6;12918:37;;;;;;:::i;:::-;;;;;;;;12655:308;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:220::-;7007:34;7003:1;6995:6;6991:14;6984:58;7076:3;7071:2;7063:6;7059:15;7052:28;6867:220;:::o;7093:366::-;7235:3;7256:67;7320:2;7315:3;7256:67;:::i;:::-;7249:74;;7332:93;7421:3;7332:93;:::i;:::-;7450:2;7445:3;7441:12;7434:19;;7093:366;;;:::o;7465:419::-;7631:4;7669:2;7658:9;7654:18;7646:26;;7718:9;7712:4;7708:20;7704:1;7693:9;7689:17;7682:47;7746:131;7872:4;7746:131;:::i;:::-;7738:139;;7465:419;;;:::o;7890:180::-;7938:77;7935:1;7928:88;8035:4;8032:1;8025:15;8059:4;8056:1;8049:15;8076:191;8116:3;8135:20;8153:1;8135:20;:::i;:::-;8130:25;;8169:20;8187:1;8169:20;:::i;:::-;8164:25;;8212:1;8209;8205:9;8198:16;;8233:3;8230:1;8227:10;8224:36;;;8240:18;;:::i;:::-;8224:36;8076:191;;;;:::o;8273:177::-;8413:29;8409:1;8401:6;8397:14;8390:53;8273:177;:::o;8456:366::-;8598:3;8619:67;8683:2;8678:3;8619:67;:::i;:::-;8612:74;;8695:93;8784:3;8695:93;:::i;:::-;8813:2;8808:3;8804:12;8797:19;;8456:366;;;:::o;8828:419::-;8994:4;9032:2;9021:9;9017:18;9009:26;;9081:9;9075:4;9071:20;9067:1;9056:9;9052:17;9045:47;9109:131;9235:4;9109:131;:::i;:::-;9101:139;;8828:419;;;:::o;9253:223::-;9393:34;9389:1;9381:6;9377:14;9370:58;9462:6;9457:2;9449:6;9445:15;9438:31;9253:223;:::o;9482:366::-;9624:3;9645:67;9709:2;9704:3;9645:67;:::i;:::-;9638:74;;9721:93;9810:3;9721:93;:::i;:::-;9839:2;9834:3;9830:12;9823:19;;9482:366;;;:::o;9854:419::-;10020:4;10058:2;10047:9;10043:18;10035:26;;10107:9;10101:4;10097:20;10093:1;10082:9;10078:17;10071:47;10135:131;10261:4;10135:131;:::i;:::-;10127:139;;9854:419;;;:::o;10279:221::-;10419:34;10415:1;10407:6;10403:14;10396:58;10488:4;10483:2;10475:6;10471:15;10464:29;10279:221;:::o;10506:366::-;10648:3;10669:67;10733:2;10728:3;10669:67;:::i;:::-;10662:74;;10745:93;10834:3;10745:93;:::i;:::-;10863:2;10858:3;10854:12;10847:19;;10506:366;;;:::o;10878:419::-;11044:4;11082:2;11071:9;11067:18;11059:26;;11131:9;11125:4;11121:20;11117:1;11106:9;11102:17;11095:47;11159:131;11285:4;11159:131;:::i;:::-;11151:139;;10878:419;;;:::o;11303:224::-;11443:34;11439:1;11431:6;11427:14;11420:58;11512:7;11507:2;11499:6;11495:15;11488:32;11303:224;:::o;11533:366::-;11675:3;11696:67;11760:2;11755:3;11696:67;:::i;:::-;11689:74;;11772:93;11861:3;11772:93;:::i;:::-;11890:2;11885:3;11881:12;11874:19;;11533:366;;;:::o;11905:419::-;12071:4;12109:2;12098:9;12094:18;12086:26;;12158:9;12152:4;12148:20;12144:1;12133:9;12129:17;12122:47;12186:131;12312:4;12186:131;:::i;:::-;12178:139;;11905:419;;;:::o;12330:222::-;12470:34;12466:1;12458:6;12454:14;12447:58;12539:5;12534:2;12526:6;12522:15;12515:30;12330:222;:::o;12558:366::-;12700:3;12721:67;12785:2;12780:3;12721:67;:::i;:::-;12714:74;;12797:93;12886:3;12797:93;:::i;:::-;12915:2;12910:3;12906:12;12899:19;;12558:366;;;:::o;12930:419::-;13096:4;13134:2;13123:9;13119:18;13111:26;;13183:9;13177:4;13173:20;13169:1;13158:9;13154:17;13147:47;13211:131;13337:4;13211:131;:::i;:::-;13203:139;;12930:419;;;:::o;13355:180::-;13495:32;13491:1;13483:6;13479:14;13472:56;13355:180;:::o;13541:366::-;13683:3;13704:67;13768:2;13763:3;13704:67;:::i;:::-;13697:74;;13780:93;13869:3;13780:93;:::i;:::-;13898:2;13893:3;13889:12;13882:19;;13541:366;;;:::o;13913:419::-;14079:4;14117:2;14106:9;14102:18;14094:26;;14166:9;14160:4;14156:20;14152:1;14141:9;14137:17;14130:47;14194:131;14320:4;14194:131;:::i;:::-;14186:139;;13913:419;;;:::o;14338:194::-;14378:4;14398:20;14416:1;14398:20;:::i;:::-;14393:25;;14432:20;14450:1;14432:20;:::i;:::-;14427:25;;14476:1;14473;14469:9;14461:17;;14500:1;14494:4;14491:11;14488:37;;;14505:18;;:::i;:::-;14488:37;14338:194;;;;:::o;14538:220::-;14678:34;14674:1;14666:6;14662:14;14655:58;14747:3;14742:2;14734:6;14730:15;14723:28;14538:220;:::o;14764:366::-;14906:3;14927:67;14991:2;14986:3;14927:67;:::i;:::-;14920:74;;15003:93;15092:3;15003:93;:::i;:::-;15121:2;15116:3;15112:12;15105:19;;14764:366;;;:::o;15136:419::-;15302:4;15340:2;15329:9;15325:18;15317:26;;15389:9;15383:4;15379:20;15375:1;15364:9;15360:17;15353:47;15417:131;15543:4;15417:131;:::i;:::-;15409:139;;15136:419;;;:::o;15561:181::-;15701:33;15697:1;15689:6;15685:14;15678:57;15561:181;:::o;15748:366::-;15890:3;15911:67;15975:2;15970:3;15911:67;:::i;:::-;15904:74;;15987:93;16076:3;15987:93;:::i;:::-;16105:2;16100:3;16096:12;16089:19;;15748:366;;;:::o;16120:419::-;16286:4;16324:2;16313:9;16309:18;16301:26;;16373:9;16367:4;16363:20;16359:1;16348:9;16344:17;16337:47;16401:131;16527:4;16401:131;:::i;:::-;16393:139;;16120:419;;;:::o
Swarm Source
ipfs://bf456bf00ea64c303c4802a12422be0eef5a8a70db5076788f15355c4207237c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.