Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MCB
Compiler Version
v0.6.10+commit.00c0fcaf
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-01-29 */ /** *Submitted for verification at Etherscan.io on 2020-07-17 */ pragma solidity ^0.6.0; contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } contract ContextUpgradeSafe is Initializable { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } uint256[50] private __gap; } 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. * * IMPORTANT: 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); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract ERC20UpgradeSafe is Initializable, ContextUpgradeSafe, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name, string memory symbol) internal initializer { __Context_init_unchained(); __ERC20_init_unchained(name, symbol); } function __ERC20_init_unchained(string memory name, string memory symbol) internal initializer { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override 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 virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); 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 `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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 virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][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 virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); 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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _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 virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _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 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @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 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } uint256[44] private __gap; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, _msgSender())); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. */ abstract contract AccessControlUpgradeSafe is Initializable, ContextUpgradeSafe { function __AccessControl_init() internal initializer { __Context_init_unchained(); __AccessControl_init_unchained(); } function __AccessControl_init_unchained() internal initializer { } using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } uint256[49] private __gap; } /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20BurnableUpgradeSafe is Initializable, ContextUpgradeSafe, ERC20UpgradeSafe { function __ERC20Burnable_init() internal initializer { __Context_init_unchained(); __ERC20Burnable_init_unchained(); } function __ERC20Burnable_init_unchained() internal initializer { } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } uint256[50] private __gap; } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract PausableUpgradeSafe is Initializable, ContextUpgradeSafe { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal initializer { __Context_init_unchained(); __Pausable_init_unchained(); } function __Pausable_init_unchained() internal initializer { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } uint256[49] private __gap; } /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20PausableUpgradeSafe is Initializable, ERC20UpgradeSafe, PausableUpgradeSafe { function __ERC20Pausable_init() internal initializer { __Context_init_unchained(); __Pausable_init_unchained(); __ERC20Pausable_init_unchained(); } function __ERC20Pausable_init_unchained() internal initializer { } /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } uint256[50] private __gap; } contract ERC20PresetMinterPauserUpgradeSafe is Initializable, ContextUpgradeSafe, AccessControlUpgradeSafe, ERC20BurnableUpgradeSafe, ERC20PausableUpgradeSafe { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the * account that deploys the contract. * * See {ERC20-constructor}. */ function initialize(string memory name, string memory symbol) public { __ERC20PresetMinterPauser_init(name, symbol); } function __ERC20PresetMinterPauser_init(string memory name, string memory symbol) internal initializer { __Context_init_unchained(); __AccessControl_init_unchained(); __ERC20_init_unchained(name, symbol); __ERC20Burnable_init_unchained(); __Pausable_init_unchained(); __ERC20Pausable_init_unchained(); __ERC20PresetMinterPauser_init_unchained(name, symbol); } function __ERC20PresetMinterPauser_init_unchained(string memory name, string memory symbol) internal initializer { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } /** * @dev Creates `amount` new tokens for `to`. * * See {ERC20-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint(address to, uint256 amount) public { require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint"); _mint(to, amount); } /** * @dev Pauses all token transfers. * * See {ERC20Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC20Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause"); _unpause(); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override(ERC20UpgradeSafe, ERC20PausableUpgradeSafe) { super._beforeTokenTransfer(from, to, amount); } uint256[50] private __gap; } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } } /** * @dev MCB token */ contract MCB is ERC20PresetMinterPauserUpgradeSafe { /** * @dev proposal 19: MCB new tokenomics * * https://forum.mcdex.io/t/proposal-19-mcb-new-tokenomics/262 */ function proposal19() public { require(msg.sender == 0xD18019DbD648F9c2794Dd3F130ad7490f7F3c173, "proxyAdmin only"); _burn(0x38ca50c6E3391A5bf73c2504bd9Cd9c0b9D89053, balanceOf(0x38ca50c6E3391A5bf73c2504bd9Cd9c0b9D89053)); _burn(0xA8f13A7E97a624e6d0B88D0a4fe7080BE7b6cA21, balanceOf(0xA8f13A7E97a624e6d0B88D0a4fe7080BE7b6cA21)); _burn(0xE26b8A84028Fe92A2f473B7C114Ec95cEF73927E, balanceOf(0xE26b8A84028Fe92A2f473B7C114Ec95cEF73927E)); _burn(0x34A99cb066777495Ad8Ff3Def0C39bDeC72AdaE3, balanceOf(0x34A99cb066777495Ad8Ff3Def0C39bDeC72AdaE3)); _burn(0x42fF3D43979F083c8aa3166298789261B66DC926, balanceOf(0x42fF3D43979F083c8aa3166298789261B66DC926)); _burn(0x89108A54d94152DB363318f8085dc8b7ABF03323, balanceOf(0x89108A54d94152DB363318f8085dc8b7ABF03323)); _burn(0xe078bE6AcC9c1e23474d23E2AB2Aa0c528c1494E, balanceOf(0xe078bE6AcC9c1e23474d23E2AB2Aa0c528c1494E)); _burn(0x490a11E5195Bb6f1C9c555E744F6bC1B35A3EaEA, balanceOf(0x490a11E5195Bb6f1C9c555E744F6bC1B35A3EaEA)); _burn(0xE87352f80CF096584d473D7821ffB220ffCCEEDD, balanceOf(0xE87352f80CF096584d473D7821ffB220ffCCEEDD)); _burn(0xDd35BD8A76c711783Ae2EF5Ed0d6bb3fee18fDC3, balanceOf(0xDd35BD8A76c711783Ae2EF5Ed0d6bb3fee18fDC3)); _burn(0x21c09C55Af2643023eFE8775Ae20dd23a53585aB, balanceOf(0x21c09C55Af2643023eFE8775Ae20dd23a53585aB)); _burn(0x5BBbAf040a017966c9e966eDBb9221b37B2C2923, balanceOf(0x5BBbAf040a017966c9e966eDBb9221b37B2C2923)); _burn(0xd72a41aa286F045e9A4d55F589EdaE141CfC4952, balanceOf(0xd72a41aa286F045e9A4d55F589EdaE141CfC4952)); _burn(0x92D8736ce002E9CA4b864377A2FF65b74340D04c, balanceOf(0x92D8736ce002E9CA4b864377A2FF65b74340D04c)); _burn(0xBa9a70A5dD74343C0dfAA3826D14e96297da171C, balanceOf(0xBa9a70A5dD74343C0dfAA3826D14e96297da171C)); _burn(0xb7F09DA3E0E75D7342d3Ec01649903857F0b5075, balanceOf(0xb7F09DA3E0E75D7342d3Ec01649903857F0b5075)); _burn(0xa9e23857CD6eb5c7ED2159edD68aB5B24285F977, balanceOf(0xa9e23857CD6eb5c7ED2159edD68aB5B24285F977)); _burn(0x9cc56b52387ed71C8C29fFAD7416f973f0555902, balanceOf(0x9cc56b52387ed71C8C29fFAD7416f973f0555902)); _burn(0x7dbCC4335cCADc2993279052eA070Bd2C0786D85, balanceOf(0x7dbCC4335cCADc2993279052eA070Bd2C0786D85)); _burn(0x4add71348F750B038869AB0ce6C3309a922d1892, balanceOf(0x4add71348F750B038869AB0ce6C3309a922d1892)); _burn(0x532fe523A638b714dDfBd820D41C68f9E2C6E1Db, balanceOf(0x532fe523A638b714dDfBd820D41C68f9E2C6E1Db)); _burn(0xB0F0E4C0615E1905ED08905BF4486f73E7eddD63, balanceOf(0xB0F0E4C0615E1905ED08905BF4486f73E7eddD63)); _burn(0x21C6E6b19AD4011a5bd270214d98382319de1BcB, balanceOf(0x21C6E6b19AD4011a5bd270214d98382319de1BcB)); _burn(0xf6e88D5acA2D9FbEd26de198D2f78DEE1c97a369, balanceOf(0xf6e88D5acA2D9FbEd26de198D2f78DEE1c97a369)); _burn(0x6AE6BE7B8E48F8Ad3ebCCcEDAc31841BC1516239, balanceOf(0x6AE6BE7B8E48F8Ad3ebCCcEDAc31841BC1516239)); _burn(0x17eC352286D1a8117d39674B6FD20f1E06969408, balanceOf(0x17eC352286D1a8117d39674B6FD20f1E06969408)); _burn(0x278d33A37c206966Cb6447963ccA9246c137A036, balanceOf(0x278d33A37c206966Cb6447963ccA9246c137A036)); _burn(0xdCa445B99eA5E9bDe70169fC9977032535B1ee02, balanceOf(0xdCa445B99eA5E9bDe70169fC9977032535B1ee02)); _burn(0x5910a985197cEDCCFba0C3A27bD37A46cB0F8011, balanceOf(0x5910a985197cEDCCFba0C3A27bD37A46cB0F8011)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":"amount","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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposal19","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50612579806100206000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636511d1f511610104578063a217fddf116100a2578063d539139311610071578063d53913931461067a578063d547741f14610682578063dd62ed3e146106ae578063e63ab1e9146106dc576101cf565b8063a217fddf146105fd578063a457c2d714610605578063a9059cbb14610631578063ca15c8731461065d576101cf565b80638456cb59116100de5780638456cb59146105825780639010d07c1461058a57806391d14854146105c957806395d89b41146105f5576101cf565b80636511d1f51461052857806370a082311461053057806379cc679014610556576101cf565b806336568abe1161017157806340c10f191161014b57806340c10f19146103aa57806342966c68146103d65780634cd88b76146103f35780635c975abb14610520576101cf565b806336568abe1461034a57806339509351146103765780633f4ba83a146103a2576101cf565b806323b872dd116101ad57806323b872dd146102ab578063248a9ca3146102e15780632f2ff15d146102fe578063313ce5671461032c576101cf565b806306fdde03146101d4578063095ea7b31461025157806318160ddd14610291575b600080fd5b6101dc6106e4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102165781810151838201526020016101fe565b50505050905090810190601f1680156102435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561026757600080fd5b506001600160a01b03813516906020013561077b565b604080519115158252519081900360200190f35b610299610799565b60408051918252519081900360200190f35b61027d600480360360608110156102c157600080fd5b506001600160a01b0381358116916020810135909116906040013561079f565b610299600480360360208110156102f757600080fd5b503561082c565b61032a6004803603604081101561031457600080fd5b50803590602001356001600160a01b0316610841565b005b6103346108ad565b6040805160ff9092168252519081900360200190f35b61032a6004803603604081101561036057600080fd5b50803590602001356001600160a01b03166108b6565b61027d6004803603604081101561038c57600080fd5b506001600160a01b038135169060200135610917565b61032a61096b565b61032a600480360360408110156103c057600080fd5b506001600160a01b0381351690602001356109dc565b61032a600480360360208110156103ec57600080fd5b5035610a4d565b61032a6004803603604081101561040957600080fd5b81019060208101813564010000000081111561042457600080fd5b82018360208201111561043657600080fd5b8035906020019184600183028401116401000000008311171561045857600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156104ab57600080fd5b8201836020820111156104bd57600080fd5b803590602001918460018302840111640100000000831117156104df57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a61945050505050565b61027d610a6b565b61032a610a74565b6102996004803603602081101561054657600080fd5b50356001600160a01b03166110d0565b61032a6004803603604081101561056c57600080fd5b506001600160a01b0381351690602001356110eb565b61032a61114b565b6105ad600480360360408110156105a057600080fd5b50803590602001356111ba565b604080516001600160a01b039092168252519081900360200190f35b61027d600480360360408110156105df57600080fd5b50803590602001356001600160a01b03166111df565b6101dc6111fd565b61029961125e565b61027d6004803603604081101561061b57600080fd5b506001600160a01b038135169060200135611263565b61027d6004803603604081101561064757600080fd5b506001600160a01b0381351690602001356112d1565b6102996004803603602081101561067357600080fd5b50356112e5565b6102996112fc565b61032a6004803603604081101561069857600080fd5b50803590602001356001600160a01b031661131f565b610299600480360360408110156106c457600080fd5b506001600160a01b0381358116916020013516611378565b6102996113a3565b609a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107705780601f1061074557610100808354040283529160200191610770565b820191906000526020600020905b81548152906001019060200180831161075357829003601f168201915b505050505090505b90565b600061078f6107886113c6565b84846113ca565b5060015b92915050565b60995490565b60006107ac8484846114b6565b610822846107b86113c6565b61081d85604051806060016040528060288152602001612375602891396001600160a01b038a166000908152609860205260408120906107f66113c6565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61161f16565b6113ca565b5060019392505050565b60009081526065602052604090206002015490565b6000828152606560205260409020600201546108649061085f6113c6565b6111df565b61089f5760405162461bcd60e51b815260040180806020018281038252602f815260200180612273602f913960400191505060405180910390fd5b6108a982826116b6565b5050565b609c5460ff1690565b6108be6113c6565b6001600160a01b0316816001600160a01b03161461090d5760405162461bcd60e51b815260040180806020018281038252602f8152602001806124eb602f913960400191505060405180910390fd5b6108a98282611725565b600061078f6109246113c6565b8461081d85609860006109356113c6565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61179416565b604080516a5041555345525f524f4c4560a81b8152905190819003600b0190206109979061085f6113c6565b6109d25760405162461bcd60e51b81526004018080602001828103825260398152602001806122c46039913960400191505060405180910390fd5b6109da6117ee565b565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b019020610a089061085f6113c6565b610a435760405162461bcd60e51b815260040180806020018281038252603681526020018061239d6036913960400191505060405180910390fd5b6108a9828261188c565b610a5e610a586113c6565b8261198a565b50565b6108a98282611a92565b60fb5460ff1690565b73d18019dbd648f9c2794dd3f130ad7490f7f3c1733314610ace576040805162461bcd60e51b815260206004820152600f60248201526e70726f787941646d696e206f6e6c7960881b604482015290519081900360640190fd5b610b087338ca50c6e3391a5bf73c2504bd9cd9c0b9d89053610b037338ca50c6e3391a5bf73c2504bd9cd9c0b9d890536110d0565b61198a565b610b3d73a8f13a7e97a624e6d0b88d0a4fe7080be7b6ca21610b0373a8f13a7e97a624e6d0b88d0a4fe7080be7b6ca216110d0565b610b7273e26b8a84028fe92a2f473b7c114ec95cef73927e610b0373e26b8a84028fe92a2f473b7c114ec95cef73927e6110d0565b610ba77334a99cb066777495ad8ff3def0c39bdec72adae3610b037334a99cb066777495ad8ff3def0c39bdec72adae36110d0565b610bdc7342ff3d43979f083c8aa3166298789261b66dc926610b037342ff3d43979f083c8aa3166298789261b66dc9266110d0565b610c117389108a54d94152db363318f8085dc8b7abf03323610b037389108a54d94152db363318f8085dc8b7abf033236110d0565b610c4673e078be6acc9c1e23474d23e2ab2aa0c528c1494e610b0373e078be6acc9c1e23474d23e2ab2aa0c528c1494e6110d0565b610c7b73490a11e5195bb6f1c9c555e744f6bc1b35a3eaea610b0373490a11e5195bb6f1c9c555e744f6bc1b35a3eaea6110d0565b610cb073e87352f80cf096584d473d7821ffb220ffcceedd610b0373e87352f80cf096584d473d7821ffb220ffcceedd6110d0565b610ce573dd35bd8a76c711783ae2ef5ed0d6bb3fee18fdc3610b0373dd35bd8a76c711783ae2ef5ed0d6bb3fee18fdc36110d0565b610d1a7321c09c55af2643023efe8775ae20dd23a53585ab610b037321c09c55af2643023efe8775ae20dd23a53585ab6110d0565b610d4f735bbbaf040a017966c9e966edbb9221b37b2c2923610b03735bbbaf040a017966c9e966edbb9221b37b2c29236110d0565b610d8473d72a41aa286f045e9a4d55f589edae141cfc4952610b0373d72a41aa286f045e9a4d55f589edae141cfc49526110d0565b610db97392d8736ce002e9ca4b864377a2ff65b74340d04c610b037392d8736ce002e9ca4b864377a2ff65b74340d04c6110d0565b610dee73ba9a70a5dd74343c0dfaa3826d14e96297da171c610b0373ba9a70a5dd74343c0dfaa3826d14e96297da171c6110d0565b610e2373b7f09da3e0e75d7342d3ec01649903857f0b5075610b0373b7f09da3e0e75d7342d3ec01649903857f0b50756110d0565b610e5873a9e23857cd6eb5c7ed2159edd68ab5b24285f977610b0373a9e23857cd6eb5c7ed2159edd68ab5b24285f9776110d0565b610e8d739cc56b52387ed71c8c29ffad7416f973f0555902610b03739cc56b52387ed71c8c29ffad7416f973f05559026110d0565b610ec2737dbcc4335ccadc2993279052ea070bd2c0786d85610b03737dbcc4335ccadc2993279052ea070bd2c0786d856110d0565b610ef7734add71348f750b038869ab0ce6c3309a922d1892610b03734add71348f750b038869ab0ce6c3309a922d18926110d0565b610f2c73532fe523a638b714ddfbd820d41c68f9e2c6e1db610b0373532fe523a638b714ddfbd820d41c68f9e2c6e1db6110d0565b610f6173b0f0e4c0615e1905ed08905bf4486f73e7eddd63610b0373b0f0e4c0615e1905ed08905bf4486f73e7eddd636110d0565b610f967321c6e6b19ad4011a5bd270214d98382319de1bcb610b037321c6e6b19ad4011a5bd270214d98382319de1bcb6110d0565b610fcb73f6e88d5aca2d9fbed26de198d2f78dee1c97a369610b0373f6e88d5aca2d9fbed26de198d2f78dee1c97a3696110d0565b611000736ae6be7b8e48f8ad3ebcccedac31841bc1516239610b03736ae6be7b8e48f8ad3ebcccedac31841bc15162396110d0565b6110357317ec352286d1a8117d39674b6fd20f1e06969408610b037317ec352286d1a8117d39674b6fd20f1e069694086110d0565b61106a73278d33a37c206966cb6447963cca9246c137a036610b0373278d33a37c206966cb6447963cca9246c137a0366110d0565b61109f73dca445b99ea5e9bde70169fc9977032535b1ee02610b0373dca445b99ea5e9bde70169fc9977032535b1ee026110d0565b6109da735910a985197cedccfba0c3a27bd37a46cb0f8011610b03735910a985197cedccfba0c3a27bd37a46cb0f80115b6001600160a01b031660009081526097602052604090205490565b6000611128826040518060600160405280602481526020016124016024913961111b866111166113c6565b611378565b919063ffffffff61161f16565b905061113c836111366113c6565b836113ca565b611146838361198a565b505050565b604080516a5041555345525f524f4c4560a81b8152905190819003600b0190206111779061085f6113c6565b6111b25760405162461bcd60e51b815260040180806020018281038252603781526020018061248f6037913960400191505060405180910390fd5b6109da611b71565b60008281526065602052604081206111d8908363ffffffff611bf216565b9392505050565b60008281526065602052604081206111d8908363ffffffff611bfe16565b609b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107705780601f1061074557610100808354040283529160200191610770565b600081565b600061078f6112706113c6565b8461081d856040518060600160405280602581526020016124c6602591396098600061129a6113c6565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61161f16565b600061078f6112de6113c6565b84846114b6565b600081815260656020526040812061079390611c13565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902081565b60008281526065602052604090206002015461133d9061085f6113c6565b61090d5760405162461bcd60e51b81526004018080602001828103825260308152602001806123456030913960400191505060405180910390fd5b6001600160a01b03918216600090815260986020908152604080832093909416825291909152205490565b604080516a5041555345525f524f4c4560a81b8152905190819003600b01902081565b3390565b6001600160a01b03831661140f5760405162461bcd60e51b815260040180806020018281038252602481526020018061246b6024913960400191505060405180910390fd5b6001600160a01b0382166114545760405162461bcd60e51b81526004018080602001828103825260228152602001806122fd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260986020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166114fb5760405162461bcd60e51b81526004018080602001828103825260258152602001806124466025913960400191505060405180910390fd5b6001600160a01b0382166115405760405162461bcd60e51b81526004018080602001828103825260238152602001806122506023913960400191505060405180910390fd5b61154b838383611c1e565b61158e8160405180606001604052806026815260200161231f602691396001600160a01b038616600090815260976020526040902054919063ffffffff61161f16565b6001600160a01b0380851660009081526097602052604080822093909355908416815220546115c3908263ffffffff61179416565b6001600160a01b0380841660008181526097602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156116ae5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561167357818101518382015260200161165b565b50505050905090810190601f1680156116a05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008281526065602052604090206116d4908263ffffffff611c2916565b156108a9576116e16113c6565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152606560205260409020611743908263ffffffff611c3e16565b156108a9576117506113c6565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000828201838110156111d8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60fb5460ff1661183c576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b60fb805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61186f6113c6565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b0382166118e7576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6118f360008383611c1e565b609954611906908263ffffffff61179416565b6099556001600160a01b038216600090815260976020526040902054611932908263ffffffff61179416565b6001600160a01b03831660008181526097602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166119cf5760405162461bcd60e51b81526004018080602001828103825260218152602001806124256021913960400191505060405180910390fd5b6119db82600083611c1e565b611a1e816040518060600160405280602281526020016122a2602291396001600160a01b038516600090815260976020526040902054919063ffffffff61161f16565b6001600160a01b038316600090815260976020526040902055609954611a4a908263ffffffff611c5316565b6099556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600054610100900460ff1680611aab5750611aab611c95565b80611ab9575060005460ff16155b611af45760405162461bcd60e51b815260040180806020018281038252602e8152602001806123d3602e913960400191505060405180910390fd5b600054610100900460ff16158015611b1f576000805460ff1961ff0019909116610100171660011790555b611b27611c9b565b611b2f611c9b565b611b398383611d3c565b611b41611c9b565b611b49611e14565b611b51611c9b565b611b5b8383611ebf565b8015611146576000805461ff0019169055505050565b60fb5460ff1615611bbc576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b60fb805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861186f6113c6565b60006111d88383611fb6565b60006111d8836001600160a01b03841661201a565b600061079382612032565b611146838383612036565b60006111d8836001600160a01b038416612085565b60006111d8836001600160a01b0384166120cf565b60006111d883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061161f565b303b1590565b600054610100900460ff1680611cb45750611cb4611c95565b80611cc2575060005460ff16155b611cfd5760405162461bcd60e51b815260040180806020018281038252602e8152602001806123d3602e913960400191505060405180910390fd5b600054610100900460ff16158015611d28576000805460ff1961ff0019909116610100171660011790555b8015610a5e576000805461ff001916905550565b600054610100900460ff1680611d555750611d55611c95565b80611d63575060005460ff16155b611d9e5760405162461bcd60e51b815260040180806020018281038252602e8152602001806123d3602e913960400191505060405180910390fd5b600054610100900460ff16158015611dc9576000805460ff1961ff0019909116610100171660011790555b8251611ddc90609a906020860190612195565b508151611df090609b906020850190612195565b50609c805460ff191660121790558015611146576000805461ff0019169055505050565b600054610100900460ff1680611e2d5750611e2d611c95565b80611e3b575060005460ff16155b611e765760405162461bcd60e51b815260040180806020018281038252602e8152602001806123d3602e913960400191505060405180910390fd5b600054610100900460ff16158015611ea1576000805460ff1961ff0019909116610100171660011790555b60fb805460ff191690558015610a5e576000805461ff001916905550565b600054610100900460ff1680611ed85750611ed8611c95565b80611ee6575060005460ff16155b611f215760405162461bcd60e51b815260040180806020018281038252602e8152602001806123d3602e913960400191505060405180910390fd5b600054610100900460ff16158015611f4c576000805460ff1961ff0019909116610100171660011790555b611f5e6000611f596113c6565b61089f565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b019020611f8a90611f596113c6565b604080516a5041555345525f524f4c4560a81b8152905190819003600b019020611b5b90611f596113c6565b81546000908210611ff85760405162461bcd60e51b815260040180806020018281038252602281526020018061222e6022913960400191505060405180910390fd5b82600001828154811061200757fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b612041838383611146565b612049610a6b565b156111465760405162461bcd60e51b815260040180806020018281038252602a81526020018061251a602a913960400191505060405180910390fd5b6000612091838361201a565b6120c757508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610793565b506000610793565b6000818152600183016020526040812054801561218b578354600019808301919081019060009087908390811061210257fe5b906000526020600020015490508087600001848154811061211f57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061214f57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610793565b6000915050610793565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106121d657805160ff1916838001178555612203565b82800160010185558215612203579182015b828111156122035782518255916020019190600101906121e8565b5061220f929150612213565b5090565b61077891905b8082111561220f576000815560010161221956fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e706175736545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e74436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20706175736545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220dfa8b91dd20bf514447c60a0bcaccc3f1922a62b92475f5795d57ef332740aa364736f6c634300060a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636511d1f511610104578063a217fddf116100a2578063d539139311610071578063d53913931461067a578063d547741f14610682578063dd62ed3e146106ae578063e63ab1e9146106dc576101cf565b8063a217fddf146105fd578063a457c2d714610605578063a9059cbb14610631578063ca15c8731461065d576101cf565b80638456cb59116100de5780638456cb59146105825780639010d07c1461058a57806391d14854146105c957806395d89b41146105f5576101cf565b80636511d1f51461052857806370a082311461053057806379cc679014610556576101cf565b806336568abe1161017157806340c10f191161014b57806340c10f19146103aa57806342966c68146103d65780634cd88b76146103f35780635c975abb14610520576101cf565b806336568abe1461034a57806339509351146103765780633f4ba83a146103a2576101cf565b806323b872dd116101ad57806323b872dd146102ab578063248a9ca3146102e15780632f2ff15d146102fe578063313ce5671461032c576101cf565b806306fdde03146101d4578063095ea7b31461025157806318160ddd14610291575b600080fd5b6101dc6106e4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102165781810151838201526020016101fe565b50505050905090810190601f1680156102435780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561026757600080fd5b506001600160a01b03813516906020013561077b565b604080519115158252519081900360200190f35b610299610799565b60408051918252519081900360200190f35b61027d600480360360608110156102c157600080fd5b506001600160a01b0381358116916020810135909116906040013561079f565b610299600480360360208110156102f757600080fd5b503561082c565b61032a6004803603604081101561031457600080fd5b50803590602001356001600160a01b0316610841565b005b6103346108ad565b6040805160ff9092168252519081900360200190f35b61032a6004803603604081101561036057600080fd5b50803590602001356001600160a01b03166108b6565b61027d6004803603604081101561038c57600080fd5b506001600160a01b038135169060200135610917565b61032a61096b565b61032a600480360360408110156103c057600080fd5b506001600160a01b0381351690602001356109dc565b61032a600480360360208110156103ec57600080fd5b5035610a4d565b61032a6004803603604081101561040957600080fd5b81019060208101813564010000000081111561042457600080fd5b82018360208201111561043657600080fd5b8035906020019184600183028401116401000000008311171561045857600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156104ab57600080fd5b8201836020820111156104bd57600080fd5b803590602001918460018302840111640100000000831117156104df57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a61945050505050565b61027d610a6b565b61032a610a74565b6102996004803603602081101561054657600080fd5b50356001600160a01b03166110d0565b61032a6004803603604081101561056c57600080fd5b506001600160a01b0381351690602001356110eb565b61032a61114b565b6105ad600480360360408110156105a057600080fd5b50803590602001356111ba565b604080516001600160a01b039092168252519081900360200190f35b61027d600480360360408110156105df57600080fd5b50803590602001356001600160a01b03166111df565b6101dc6111fd565b61029961125e565b61027d6004803603604081101561061b57600080fd5b506001600160a01b038135169060200135611263565b61027d6004803603604081101561064757600080fd5b506001600160a01b0381351690602001356112d1565b6102996004803603602081101561067357600080fd5b50356112e5565b6102996112fc565b61032a6004803603604081101561069857600080fd5b50803590602001356001600160a01b031661131f565b610299600480360360408110156106c457600080fd5b506001600160a01b0381358116916020013516611378565b6102996113a3565b609a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107705780601f1061074557610100808354040283529160200191610770565b820191906000526020600020905b81548152906001019060200180831161075357829003601f168201915b505050505090505b90565b600061078f6107886113c6565b84846113ca565b5060015b92915050565b60995490565b60006107ac8484846114b6565b610822846107b86113c6565b61081d85604051806060016040528060288152602001612375602891396001600160a01b038a166000908152609860205260408120906107f66113c6565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61161f16565b6113ca565b5060019392505050565b60009081526065602052604090206002015490565b6000828152606560205260409020600201546108649061085f6113c6565b6111df565b61089f5760405162461bcd60e51b815260040180806020018281038252602f815260200180612273602f913960400191505060405180910390fd5b6108a982826116b6565b5050565b609c5460ff1690565b6108be6113c6565b6001600160a01b0316816001600160a01b03161461090d5760405162461bcd60e51b815260040180806020018281038252602f8152602001806124eb602f913960400191505060405180910390fd5b6108a98282611725565b600061078f6109246113c6565b8461081d85609860006109356113c6565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61179416565b604080516a5041555345525f524f4c4560a81b8152905190819003600b0190206109979061085f6113c6565b6109d25760405162461bcd60e51b81526004018080602001828103825260398152602001806122c46039913960400191505060405180910390fd5b6109da6117ee565b565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b019020610a089061085f6113c6565b610a435760405162461bcd60e51b815260040180806020018281038252603681526020018061239d6036913960400191505060405180910390fd5b6108a9828261188c565b610a5e610a586113c6565b8261198a565b50565b6108a98282611a92565b60fb5460ff1690565b73d18019dbd648f9c2794dd3f130ad7490f7f3c1733314610ace576040805162461bcd60e51b815260206004820152600f60248201526e70726f787941646d696e206f6e6c7960881b604482015290519081900360640190fd5b610b087338ca50c6e3391a5bf73c2504bd9cd9c0b9d89053610b037338ca50c6e3391a5bf73c2504bd9cd9c0b9d890536110d0565b61198a565b610b3d73a8f13a7e97a624e6d0b88d0a4fe7080be7b6ca21610b0373a8f13a7e97a624e6d0b88d0a4fe7080be7b6ca216110d0565b610b7273e26b8a84028fe92a2f473b7c114ec95cef73927e610b0373e26b8a84028fe92a2f473b7c114ec95cef73927e6110d0565b610ba77334a99cb066777495ad8ff3def0c39bdec72adae3610b037334a99cb066777495ad8ff3def0c39bdec72adae36110d0565b610bdc7342ff3d43979f083c8aa3166298789261b66dc926610b037342ff3d43979f083c8aa3166298789261b66dc9266110d0565b610c117389108a54d94152db363318f8085dc8b7abf03323610b037389108a54d94152db363318f8085dc8b7abf033236110d0565b610c4673e078be6acc9c1e23474d23e2ab2aa0c528c1494e610b0373e078be6acc9c1e23474d23e2ab2aa0c528c1494e6110d0565b610c7b73490a11e5195bb6f1c9c555e744f6bc1b35a3eaea610b0373490a11e5195bb6f1c9c555e744f6bc1b35a3eaea6110d0565b610cb073e87352f80cf096584d473d7821ffb220ffcceedd610b0373e87352f80cf096584d473d7821ffb220ffcceedd6110d0565b610ce573dd35bd8a76c711783ae2ef5ed0d6bb3fee18fdc3610b0373dd35bd8a76c711783ae2ef5ed0d6bb3fee18fdc36110d0565b610d1a7321c09c55af2643023efe8775ae20dd23a53585ab610b037321c09c55af2643023efe8775ae20dd23a53585ab6110d0565b610d4f735bbbaf040a017966c9e966edbb9221b37b2c2923610b03735bbbaf040a017966c9e966edbb9221b37b2c29236110d0565b610d8473d72a41aa286f045e9a4d55f589edae141cfc4952610b0373d72a41aa286f045e9a4d55f589edae141cfc49526110d0565b610db97392d8736ce002e9ca4b864377a2ff65b74340d04c610b037392d8736ce002e9ca4b864377a2ff65b74340d04c6110d0565b610dee73ba9a70a5dd74343c0dfaa3826d14e96297da171c610b0373ba9a70a5dd74343c0dfaa3826d14e96297da171c6110d0565b610e2373b7f09da3e0e75d7342d3ec01649903857f0b5075610b0373b7f09da3e0e75d7342d3ec01649903857f0b50756110d0565b610e5873a9e23857cd6eb5c7ed2159edd68ab5b24285f977610b0373a9e23857cd6eb5c7ed2159edd68ab5b24285f9776110d0565b610e8d739cc56b52387ed71c8c29ffad7416f973f0555902610b03739cc56b52387ed71c8c29ffad7416f973f05559026110d0565b610ec2737dbcc4335ccadc2993279052ea070bd2c0786d85610b03737dbcc4335ccadc2993279052ea070bd2c0786d856110d0565b610ef7734add71348f750b038869ab0ce6c3309a922d1892610b03734add71348f750b038869ab0ce6c3309a922d18926110d0565b610f2c73532fe523a638b714ddfbd820d41c68f9e2c6e1db610b0373532fe523a638b714ddfbd820d41c68f9e2c6e1db6110d0565b610f6173b0f0e4c0615e1905ed08905bf4486f73e7eddd63610b0373b0f0e4c0615e1905ed08905bf4486f73e7eddd636110d0565b610f967321c6e6b19ad4011a5bd270214d98382319de1bcb610b037321c6e6b19ad4011a5bd270214d98382319de1bcb6110d0565b610fcb73f6e88d5aca2d9fbed26de198d2f78dee1c97a369610b0373f6e88d5aca2d9fbed26de198d2f78dee1c97a3696110d0565b611000736ae6be7b8e48f8ad3ebcccedac31841bc1516239610b03736ae6be7b8e48f8ad3ebcccedac31841bc15162396110d0565b6110357317ec352286d1a8117d39674b6fd20f1e06969408610b037317ec352286d1a8117d39674b6fd20f1e069694086110d0565b61106a73278d33a37c206966cb6447963cca9246c137a036610b0373278d33a37c206966cb6447963cca9246c137a0366110d0565b61109f73dca445b99ea5e9bde70169fc9977032535b1ee02610b0373dca445b99ea5e9bde70169fc9977032535b1ee026110d0565b6109da735910a985197cedccfba0c3a27bd37a46cb0f8011610b03735910a985197cedccfba0c3a27bd37a46cb0f80115b6001600160a01b031660009081526097602052604090205490565b6000611128826040518060600160405280602481526020016124016024913961111b866111166113c6565b611378565b919063ffffffff61161f16565b905061113c836111366113c6565b836113ca565b611146838361198a565b505050565b604080516a5041555345525f524f4c4560a81b8152905190819003600b0190206111779061085f6113c6565b6111b25760405162461bcd60e51b815260040180806020018281038252603781526020018061248f6037913960400191505060405180910390fd5b6109da611b71565b60008281526065602052604081206111d8908363ffffffff611bf216565b9392505050565b60008281526065602052604081206111d8908363ffffffff611bfe16565b609b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107705780601f1061074557610100808354040283529160200191610770565b600081565b600061078f6112706113c6565b8461081d856040518060600160405280602581526020016124c6602591396098600061129a6113c6565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61161f16565b600061078f6112de6113c6565b84846114b6565b600081815260656020526040812061079390611c13565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b01902081565b60008281526065602052604090206002015461133d9061085f6113c6565b61090d5760405162461bcd60e51b81526004018080602001828103825260308152602001806123456030913960400191505060405180910390fd5b6001600160a01b03918216600090815260986020908152604080832093909416825291909152205490565b604080516a5041555345525f524f4c4560a81b8152905190819003600b01902081565b3390565b6001600160a01b03831661140f5760405162461bcd60e51b815260040180806020018281038252602481526020018061246b6024913960400191505060405180910390fd5b6001600160a01b0382166114545760405162461bcd60e51b81526004018080602001828103825260228152602001806122fd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260986020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166114fb5760405162461bcd60e51b81526004018080602001828103825260258152602001806124466025913960400191505060405180910390fd5b6001600160a01b0382166115405760405162461bcd60e51b81526004018080602001828103825260238152602001806122506023913960400191505060405180910390fd5b61154b838383611c1e565b61158e8160405180606001604052806026815260200161231f602691396001600160a01b038616600090815260976020526040902054919063ffffffff61161f16565b6001600160a01b0380851660009081526097602052604080822093909355908416815220546115c3908263ffffffff61179416565b6001600160a01b0380841660008181526097602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156116ae5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561167357818101518382015260200161165b565b50505050905090810190601f1680156116a05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008281526065602052604090206116d4908263ffffffff611c2916565b156108a9576116e16113c6565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152606560205260409020611743908263ffffffff611c3e16565b156108a9576117506113c6565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000828201838110156111d8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60fb5460ff1661183c576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b60fb805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61186f6113c6565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b0382166118e7576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6118f360008383611c1e565b609954611906908263ffffffff61179416565b6099556001600160a01b038216600090815260976020526040902054611932908263ffffffff61179416565b6001600160a01b03831660008181526097602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166119cf5760405162461bcd60e51b81526004018080602001828103825260218152602001806124256021913960400191505060405180910390fd5b6119db82600083611c1e565b611a1e816040518060600160405280602281526020016122a2602291396001600160a01b038516600090815260976020526040902054919063ffffffff61161f16565b6001600160a01b038316600090815260976020526040902055609954611a4a908263ffffffff611c5316565b6099556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600054610100900460ff1680611aab5750611aab611c95565b80611ab9575060005460ff16155b611af45760405162461bcd60e51b815260040180806020018281038252602e8152602001806123d3602e913960400191505060405180910390fd5b600054610100900460ff16158015611b1f576000805460ff1961ff0019909116610100171660011790555b611b27611c9b565b611b2f611c9b565b611b398383611d3c565b611b41611c9b565b611b49611e14565b611b51611c9b565b611b5b8383611ebf565b8015611146576000805461ff0019169055505050565b60fb5460ff1615611bbc576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b60fb805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861186f6113c6565b60006111d88383611fb6565b60006111d8836001600160a01b03841661201a565b600061079382612032565b611146838383612036565b60006111d8836001600160a01b038416612085565b60006111d8836001600160a01b0384166120cf565b60006111d883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061161f565b303b1590565b600054610100900460ff1680611cb45750611cb4611c95565b80611cc2575060005460ff16155b611cfd5760405162461bcd60e51b815260040180806020018281038252602e8152602001806123d3602e913960400191505060405180910390fd5b600054610100900460ff16158015611d28576000805460ff1961ff0019909116610100171660011790555b8015610a5e576000805461ff001916905550565b600054610100900460ff1680611d555750611d55611c95565b80611d63575060005460ff16155b611d9e5760405162461bcd60e51b815260040180806020018281038252602e8152602001806123d3602e913960400191505060405180910390fd5b600054610100900460ff16158015611dc9576000805460ff1961ff0019909116610100171660011790555b8251611ddc90609a906020860190612195565b508151611df090609b906020850190612195565b50609c805460ff191660121790558015611146576000805461ff0019169055505050565b600054610100900460ff1680611e2d5750611e2d611c95565b80611e3b575060005460ff16155b611e765760405162461bcd60e51b815260040180806020018281038252602e8152602001806123d3602e913960400191505060405180910390fd5b600054610100900460ff16158015611ea1576000805460ff1961ff0019909116610100171660011790555b60fb805460ff191690558015610a5e576000805461ff001916905550565b600054610100900460ff1680611ed85750611ed8611c95565b80611ee6575060005460ff16155b611f215760405162461bcd60e51b815260040180806020018281038252602e8152602001806123d3602e913960400191505060405180910390fd5b600054610100900460ff16158015611f4c576000805460ff1961ff0019909116610100171660011790555b611f5e6000611f596113c6565b61089f565b604080516a4d494e5445525f524f4c4560a81b8152905190819003600b019020611f8a90611f596113c6565b604080516a5041555345525f524f4c4560a81b8152905190819003600b019020611b5b90611f596113c6565b81546000908210611ff85760405162461bcd60e51b815260040180806020018281038252602281526020018061222e6022913960400191505060405180910390fd5b82600001828154811061200757fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b612041838383611146565b612049610a6b565b156111465760405162461bcd60e51b815260040180806020018281038252602a81526020018061251a602a913960400191505060405180910390fd5b6000612091838361201a565b6120c757508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610793565b506000610793565b6000818152600183016020526040812054801561218b578354600019808301919081019060009087908390811061210257fe5b906000526020600020015490508087600001848154811061211f57fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061214f57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610793565b6000915050610793565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106121d657805160ff1916838001178555612203565b82800160010185558215612203579182015b828111156122035782518255916020019190600101906121e8565b5061220f929150612213565b5090565b61077891905b8082111561220f576000815560010161221956fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e706175736545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e74436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20706175736545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220dfa8b91dd20bf514447c60a0bcaccc3f1922a62b92475f5795d57ef332740aa364736f6c634300060a0033
Deployed Bytecode Sourcemap
44655:3533:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18788:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20894:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20894:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;19863:100;;;:::i;:::-;;;;;;;;;;;;;;;;21537:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21537:321:0;;;;;;;;;;;;;;;;;:::i;31513:114::-;;;;;;;;;;;;;;;;-1:-1:-1;31513:114:0;;:::i;31889:227::-;;;;;;;;;;;;;;;;-1:-1:-1;31889:227:0;;;;;;-1:-1:-1;;;;;31889:227:0;;:::i;:::-;;19715:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33098:209;;;;;;;;;;;;;;;;-1:-1:-1;33098:209:0;;;;;;-1:-1:-1;;;;;33098:209:0;;:::i;22267:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22267:218:0;;;;;;;;:::i;41571:170::-;;;:::i;40778:197::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40778:197:0;;;;;;;;:::i;35306:91::-;;;;;;;;;;;;;;;;-1:-1:-1;35306:91:0;;:::i;39721:132::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39721:132:0;;;;;;;;-1:-1:-1;39721:132:0;;-1:-1:-1;;39721:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39721:132:0;;-1:-1:-1;39721:132:0;;-1:-1:-1;;;;;39721:132:0:i;37256:78::-;;;:::i;44840:3345::-;;;:::i;20026:119::-;;;;;;;;;;;;;;;;-1:-1:-1;20026:119:0;-1:-1:-1;;;;;20026:119:0;;:::i;35716:295::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35716:295:0;;;;;;;;:::i;41189:164::-;;;:::i;31186:138::-;;;;;;;;;;;;;;;;-1:-1:-1;31186:138:0;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;31186:138:0;;;;;;;;;;;;;;30147:139;;;;;;;;;;;;;;;;-1:-1:-1;30147:139:0;;;;;;-1:-1:-1;;;;;30147:139:0;;:::i;18990:87::-;;;:::i;29315:49::-;;;:::i;22988:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22988:269:0;;;;;;;;:::i;20358:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20358:175:0;;;;;;;;:::i;30460:127::-;;;;;;;;;;;;;;;;-1:-1:-1;30460:127:0;;:::i;39396:62::-;;;:::i;32361:230::-;;;;;;;;;;;;;;;;-1:-1:-1;32361:230:0;;;;;;-1:-1:-1;;;;;32361:230:0;;:::i;20596:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20596:151:0;;;;;;;;;;:::i;39465:62::-;;;:::i;18788:83::-;18858:5;18851:12;;;;;;;;-1:-1:-1;;18851:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18825:13;;18851:12;;18858:5;;18851:12;;18858:5;18851:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18788:83;;:::o;20894:169::-;20977:4;20994:39;21003:12;:10;:12::i;:::-;21017:7;21026:6;20994:8;:39::i;:::-;-1:-1:-1;21051:4:0;20894:169;;;;;:::o;19863:100::-;19943:12;;19863:100;:::o;21537:321::-;21643:4;21660:36;21670:6;21678:9;21689:6;21660:9;:36::i;:::-;21707:121;21716:6;21724:12;:10;:12::i;:::-;21738:89;21776:6;21738:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21738:19:0;;;;;;:11;:19;;;;;;21758:12;:10;:12::i;:::-;-1:-1:-1;;;;;21738:33:0;;;;;;;;;;;;-1:-1:-1;21738:33:0;;;:89;;:37;:89;:::i;:::-;21707:8;:121::i;:::-;-1:-1:-1;21846:4:0;21537:321;;;;;:::o;31513:114::-;31570:7;31597:12;;;:6;:12;;;;;:22;;;;31513:114::o;31889:227::-;31981:12;;;;:6;:12;;;;;:22;;;31973:45;;32005:12;:10;:12::i;:::-;31973:7;:45::i;:::-;31965:105;;;;-1:-1:-1;;;31965:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32083:25;32094:4;32100:7;32083:10;:25::i;:::-;31889:227;;:::o;19715:83::-;19781:9;;;;19715:83;:::o;33098:209::-;33196:12;:10;:12::i;:::-;-1:-1:-1;;;;;33185:23:0;:7;-1:-1:-1;;;;;33185:23:0;;33177:83;;;;-1:-1:-1;;;33177:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33273:26;33285:4;33291:7;33273:11;:26::i;22267:218::-;22355:4;22372:83;22381:12;:10;:12::i;:::-;22395:7;22404:50;22443:10;22404:11;:25;22416:12;:10;:12::i;:::-;-1:-1:-1;;;;;22404:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22404:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;41571:170::-;39503:24;;;-1:-1:-1;;;39503:24:0;;;;;;;;;;;;41616:34;;41637:12;:10;:12::i;41616:34::-;41608:104;;;;-1:-1:-1;;;41608:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41723:10;:8;:10::i;:::-;41571:170::o;40778:197::-;39434:24;;;-1:-1:-1;;;39434:24:0;;;;;;;;;;;;40846:34;;40867:12;:10;:12::i;40846:34::-;40838:101;;;;-1:-1:-1;;;40838:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40950:17;40956:2;40960:6;40950:5;:17::i;35306:91::-;35362:27;35368:12;:10;:12::i;:::-;35382:6;35362:5;:27::i;:::-;35306:91;:::o;39721:132::-;39801:44;39832:4;39838:6;39801:30;:44::i;37256:78::-;37319:7;;;;37256:78;:::o;44840:3345::-;44898:42;44884:10;:56;44876:84;;;;;-1:-1:-1;;;44876:84:0;;;;;;;;;;;;-1:-1:-1;;;44876:84:0;;;;;;;;;;;;;;;44967:104;44973:42;45017:53;45027:42;45017:9;:53::i;:::-;44967:5;:104::i;:::-;45078;45084:42;45128:53;45138:42;45128:9;:53::i;45078:104::-;45189;45195:42;45239:53;45249:42;45239:9;:53::i;45189:104::-;45300;45306:42;45350:53;45360:42;45350:9;:53::i;45300:104::-;45411;45417:42;45461:53;45471:42;45461:9;:53::i;45411:104::-;45522;45528:42;45572:53;45582:42;45572:9;:53::i;45522:104::-;45633;45639:42;45683:53;45693:42;45683:9;:53::i;45633:104::-;45744;45750:42;45794:53;45804:42;45794:9;:53::i;45744:104::-;45855;45861:42;45905:53;45915:42;45905:9;:53::i;45855:104::-;45966;45972:42;46016:53;46026:42;46016:9;:53::i;45966:104::-;46077;46083:42;46127:53;46137:42;46127:9;:53::i;46077:104::-;46188;46194:42;46238:53;46248:42;46238:9;:53::i;46188:104::-;46299;46305:42;46349:53;46359:42;46349:9;:53::i;46299:104::-;46410;46416:42;46460:53;46470:42;46460:9;:53::i;46410:104::-;46521;46527:42;46571:53;46581:42;46571:9;:53::i;46521:104::-;46632;46638:42;46682:53;46692:42;46682:9;:53::i;46632:104::-;46743;46749:42;46793:53;46803:42;46793:9;:53::i;46743:104::-;46854;46860:42;46904:53;46914:42;46904:9;:53::i;46854:104::-;46965;46971:42;47015:53;47025:42;47015:9;:53::i;46965:104::-;47076;47082:42;47126:53;47136:42;47126:9;:53::i;47076:104::-;47187;47193:42;47237:53;47247:42;47237:9;:53::i;47187:104::-;47298;47304:42;47348:53;47358:42;47348:9;:53::i;47298:104::-;47409;47415:42;47459:53;47469:42;47459:9;:53::i;47409:104::-;47520;47526:42;47570:53;47580:42;47570:9;:53::i;47520:104::-;47631;47637:42;47681:53;47691:42;47681:9;:53::i;47631:104::-;47742;47748:42;47792:53;47802:42;47792:9;:53::i;47742:104::-;47853;47859:42;47903:53;47913:42;47903:9;:53::i;47853:104::-;47964;47970:42;48014:53;48024:42;48014:9;:53::i;47964:104::-;48075;48081:42;48125:53;48135:42;20026:119;-1:-1:-1;;;;;20119:18:0;20092:7;20119:18;;;:9;:18;;;;;;;20026:119::o;35716:295::-;35793:26;35822:84;35859:6;35822:84;;;;;;;;;;;;;;;;;:32;35832:7;35841:12;:10;:12::i;:::-;35822:9;:32::i;:::-;:36;:84;;:36;:84;:::i;:::-;35793:113;;35919:51;35928:7;35937:12;:10;:12::i;:::-;35951:18;35919:8;:51::i;:::-;35981:22;35987:7;35996:6;35981:5;:22::i;:::-;35716:295;;;:::o;41189:164::-;39503:24;;;-1:-1:-1;;;39503:24:0;;;;;;;;;;;;41232:34;;41253:12;:10;:12::i;41232:34::-;41224:102;;;;-1:-1:-1;;;41224:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41337:8;:6;:8::i;31186:138::-;31259:7;31286:12;;;:6;:12;;;;;:30;;31310:5;31286:30;:23;:30;:::i;:::-;31279:37;31186:138;-1:-1:-1;;;31186:138:0:o;30147:139::-;30216:4;30240:12;;;:6;:12;;;;;:38;;30270:7;30240:38;:29;:38;:::i;18990:87::-;19062:7;19055:14;;;;;;;;-1:-1:-1;;19055:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19029:13;;19055:14;;19062:7;;19055:14;;19062:7;19055:14;;;;;;;;;;;;;;;;;;;;;;;;29315:49;29360:4;29315:49;:::o;22988:269::-;23081:4;23098:129;23107:12;:10;:12::i;:::-;23121:7;23130:96;23169:15;23130:96;;;;;;;;;;;;;;;;;:11;:25;23142:12;:10;:12::i;:::-;-1:-1:-1;;;;;23130:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23130:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;20358:175::-;20444:4;20461:42;20471:12;:10;:12::i;:::-;20485:9;20496:6;20461:9;:42::i;30460:127::-;30523:7;30550:12;;;:6;:12;;;;;:29;;:27;:29::i;39396:62::-;39434:24;;;-1:-1:-1;;;39434:24:0;;;;;;;;;;;;39396:62;:::o;32361:230::-;32454:12;;;;:6;:12;;;;;:22;;;32446:45;;32478:12;:10;:12::i;32446:45::-;32438:106;;;;-1:-1:-1;;;32438:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20596:151;-1:-1:-1;;;;;20712:18:0;;;20685:7;20712:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20596:151::o;39465:62::-;39503:24;;;-1:-1:-1;;;39503:24:0;;;;;;;;;;;;39465:62;:::o;9864:106::-;9952:10;9864:106;:::o;26135:346::-;-1:-1:-1;;;;;26237:19:0;;26229:68;;;;-1:-1:-1;;;26229:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26316:21:0;;26308:68;;;;-1:-1:-1;;;26308:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26389:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26441:32;;;;;;;;;;;;;;;;;26135:346;;;:::o;23747:539::-;-1:-1:-1;;;;;23853:20:0;;23845:70;;;;-1:-1:-1;;;23845:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23934:23:0;;23926:71;;;;-1:-1:-1;;;23926:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24010:47;24031:6;24039:9;24050:6;24010:20;:47::i;:::-;24090:71;24112:6;24090:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24090:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;24070:17:0;;;;;;;:9;:17;;;;;;:91;;;;24195:20;;;;;;;:32;;24220:6;24195:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;24172:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;24243:35;;;;;;;24172:20;;24243:35;;;;;;;;;;;;;23747:539;;;:::o;14033:192::-;14119:7;14155:12;14147:6;;;;14139:29;;;;-1:-1:-1;;;14139:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;14191:5:0;;;14033:192::o;34218:188::-;34292:12;;;;:6;:12;;;;;:33;;34317:7;34292:33;:24;:33;:::i;:::-;34288:111;;;34374:12;:10;:12::i;:::-;-1:-1:-1;;;;;34347:40:0;34365:7;-1:-1:-1;;;;;34347:40:0;34359:4;34347:40;;;;;;;;;;34218:188;;:::o;34414:192::-;34489:12;;;;:6;:12;;;;;:36;;34517:7;34489:36;:27;:36;:::i;:::-;34485:114;;;34574:12;:10;:12::i;:::-;-1:-1:-1;;;;;34547:40:0;34565:7;-1:-1:-1;;;;;34547:40:0;34559:4;34547:40;;;;;;;;;;34414:192;;:::o;13146:181::-;13204:7;13236:5;;;13260:6;;;;13252:46;;;;;-1:-1:-1;;;13252:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;37989:120;37692:7;;;;37684:40;;;;;-1:-1:-1;;;37684:40:0;;;;;;;;;;;;-1:-1:-1;;;37684:40:0;;;;;;;;;;;;;;;38048:7:::1;:15:::0;;-1:-1:-1;;38048:15:0::1;::::0;;38079:22:::1;38088:12;:10;:12::i;:::-;38079:22;::::0;;-1:-1:-1;;;;;38079:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;37989:120::o:0;24567:378::-;-1:-1:-1;;;;;24651:21:0;;24643:65;;;;;-1:-1:-1;;;24643:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24721:49;24750:1;24754:7;24763:6;24721:20;:49::i;:::-;24798:12;;:24;;24815:6;24798:24;:16;:24;:::i;:::-;24783:12;:39;-1:-1:-1;;;;;24854:18:0;;;;;;:9;:18;;;;;;:30;;24877:6;24854:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;24833:18:0;;;;;;:9;:18;;;;;;;;:51;;;;24900:37;;;;;;;24833:18;;;;24900:37;;;;;;;;;;24567:378;;:::o;25277:418::-;-1:-1:-1;;;;;25361:21:0;;25353:67;;;;-1:-1:-1;;;25353:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25433:49;25454:7;25471:1;25475:6;25433:20;:49::i;:::-;25516:68;25539:6;25516:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25516:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;25495:18:0;;;;;;:9;:18;;;;;:89;25610:12;;:24;;25627:6;25610:24;:16;:24;:::i;:::-;25595:12;:39;25650:37;;;;;;;;25676:1;;-1:-1:-1;;;;;25650:37:0;;;;;;;;;;;;25277:418;;:::o;39861:427::-;483:12;;;;;;;;:31;;;499:15;:13;:15::i;:::-;483:47;;;-1:-1:-1;519:11:0;;;;518:12;483:47;475:106;;;;-1:-1:-1;;;475:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590:19;613:12;;;;;;612:13;632:83;;;;661:12;:19;;-1:-1:-1;;;;661:19:0;;;;;689:18;676:4;689:18;;;632:83;39975:26:::1;:24;:26::i;:::-;40012:32;:30;:32::i;:::-;40055:36;40078:4;40084:6;40055:22;:36::i;:::-;40102:32;:30;:32::i;:::-;40145:27;:25;:27::i;:::-;40183:32;:30;:32::i;:::-;40226:54;40267:4;40273:6;40226:40;:54::i;:::-;737:14:::0;733:57;;;777:5;762:20;;-1:-1:-1;;762:20:0;;;39861:427;;;:::o;37807:118::-;37493:7;;;;37492:8;37484:37;;;;;-1:-1:-1;;;37484:37:0;;;;;;;;;;;;-1:-1:-1;;;37484:37:0;;;;;;;;;;;;;;;37867:7:::1;:14:::0;;-1:-1:-1;;37867:14:0::1;37877:4;37867:14;::::0;;37897:20:::1;37904:12;:10;:12::i;7712:149::-:0;7786:7;7829:22;7833:3;7845:5;7829:3;:22::i;7007:158::-;7087:4;7111:46;7121:3;-1:-1:-1;;;;;7141:14:0;;7111:9;:46::i;7251:117::-;7314:7;7341:19;7349:3;7341:7;:19::i;41749:197::-;41894:44;41921:4;41927:2;41931:6;41894:26;:44::i;6453:143::-;6523:4;6547:41;6552:3;-1:-1:-1;;;;;6572:14:0;;6547:4;:41::i;6772:149::-;6845:4;6869:44;6877:3;-1:-1:-1;;;;;6897:14:0;;6869:7;:44::i;13602:136::-;13660:7;13687:43;13691:1;13694;13687:43;;;;;;;;;;;;;;;;;:3;:43::i;884:508::-;1301:4;1347:17;1379:7;884:508;:::o;9785:69::-;483:12;;;;;;;;:31;;;499:15;:13;:15::i;:::-;483:47;;;-1:-1:-1;519:11:0;;;;518:12;483:47;475:106;;;;-1:-1:-1;;;475:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590:19;613:12;;;;;;612:13;632:83;;;;661:12;:19;;-1:-1:-1;;;;661:19:0;;;;;689:18;676:4;689:18;;;632:83;737:14;733:57;;;777:5;762:20;;-1:-1:-1;;762:20:0;;;9785:69;:::o;18532:184::-;483:12;;;;;;;;:31;;;499:15;:13;:15::i;:::-;483:47;;;-1:-1:-1;519:11:0;;;;518:12;483:47;475:106;;;;-1:-1:-1;;;475:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590:19;613:12;;;;;;612:13;632:83;;;;661:12;:19;;-1:-1:-1;;;;661:19:0;;;;;689:18;676:4;689:18;;;632:83;18642:12;;::::1;::::0;:5:::1;::::0;:12:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;18665:16:0;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;18692:9:0::1;:14:::0;;-1:-1:-1;;18692:14:0::1;18704:2;18692:14;::::0;;733:57;;;;777:5;762:20;;-1:-1:-1;;762:20:0;;;18532:184;;;:::o;37056:98::-;483:12;;;;;;;;:31;;;499:15;:13;:15::i;:::-;483:47;;;-1:-1:-1;519:11:0;;;;518:12;483:47;475:106;;;;-1:-1:-1;;;475:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590:19;613:12;;;;;;612:13;632:83;;;;661:12;:19;;-1:-1:-1;;;;661:19:0;;;;;689:18;676:4;689:18;;;632:83;37129:7:::1;:15:::0;;-1:-1:-1;;37129:15:0::1;::::0;;733:57;;;;777:5;762:20;;-1:-1:-1;;762:20:0;;;37056:98;:::o;40296:280::-;483:12;;;;;;;;:31;;;499:15;:13;:15::i;:::-;483:47;;;-1:-1:-1;519:11:0;;;;518:12;483:47;475:106;;;;-1:-1:-1;;;475:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;590:19;613:12;;;;;;612:13;632:83;;;;661:12;:19;;-1:-1:-1;;;;661:19:0;;;;;689:18;676:4;689:18;;;632:83;40424:44:::1;29360:4;40455:12;:10;:12::i;:::-;40424:10;:44::i;:::-;39434:24;::::0;;-1:-1:-1;;;39434:24:0;;;;;;;;::::1;::::0;;;40481:37:::1;::::0;40505:12:::1;:10;:12::i;40481:37::-;39503:24;::::0;;-1:-1:-1;;;39503:24:0;;;;;;;;::::1;::::0;;;40529:37:::1;::::0;40553:12:::1;:10;:12::i;5995:204::-:0;6090:18;;6062:7;;6090:26;-1:-1:-1;6082:73:0;;;;-1:-1:-1;;;6082:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6173:3;:11;;6185:5;6173:18;;;;;;;;;;;;;;;;6166:25;;5995:204;;;;:::o;5327:129::-;5400:4;5424:19;;;:12;;;;;:19;;;;;;:24;;;5327:129::o;5542:109::-;5625:18;;5542:109::o;38951:238::-;39060:44;39087:4;39093:2;39097:6;39060:26;:44::i;:::-;39126:8;:6;:8::i;:::-;39125:9;39117:64;;;;-1:-1:-1;;;39117:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3107:414;3170:4;3192:21;3202:3;3207:5;3192:9;:21::i;:::-;3187:327;;-1:-1:-1;3230:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;3413:18;;3391:19;;;:12;;;:19;;;;;;:40;;;;3446:11;;3187:327;-1:-1:-1;3497:5:0;3490:12;;3697:1544;3763:4;3902:19;;;:12;;;:19;;;;;;3938:15;;3934:1300;;4373:18;;-1:-1:-1;;4324:14:0;;;;4373:22;;;;4300:21;;4373:3;;:22;;4660;;;;;;;;;;;;;;4640:42;;4806:9;4777:3;:11;;4789:13;4777:26;;;;;;;;;;;;;;;;;;;:38;;;;4883:23;;;4925:1;4883:12;;;:23;;;;;;4909:17;;;4883:43;;5035:17;;4883:3;;5035:17;;;;;;;;;;;;;;;;;;;;;;5130:3;:12;;:19;5143:5;5130:19;;;;;;;;;;;5123:26;;;5173:4;5166:11;;;;;;;;3934:1300;5217:5;5210:12;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://dfa8b91dd20bf514447c60a0bcaccc3f1922a62b92475f5795d57ef332740aa3
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.