Token Summoner Token
Overview ERC-20
Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
10,000,000,000 SUT
Holders:
852 addresses
Contract:
Decimals:
18
Balance
5,800 SUTValue
$0.00
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SUT
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-07 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.11; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * 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) { uint256 currentAllowance = _allowances[sender][_msgSender()]; if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } } _transfer(sender, recipient, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This 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); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `account` 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 += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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 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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @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. */ abstract contract Pausable is Context { /** * @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. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } /** * @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 ERC20Pausable is ERC20, Pausable { /** * @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"); } } contract Owned { address public owner; address public nominatedOwner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event OwnerNominated(address indexed newOwner); constructor(address _owner) { require(_owner != address(0), "Address cannot be 0"); owner = _owner; emit OwnershipTransferred(address(0), _owner); } function nominateNewOwner(address _owner) external onlyOwner { nominatedOwner = _owner; emit OwnerNominated(_owner); } function acceptOwnership() external { require(msg.sender == nominatedOwner, "You must be nominated before you can accept ownership"); emit OwnershipTransferred(owner, nominatedOwner); owner = nominatedOwner; nominatedOwner = address(0); } modifier onlyOwner { require(msg.sender == owner, "Only the contract owner may perform this action"); _; } } contract AccessController is Owned { mapping(bytes32 => mapping(address => bool)) public roles; event AuthorizationUpdated(bytes32 role, address target, bool authorization); constructor( bytes32[] memory _roles, address[] memory _authAddresses, bool[] memory _authorizations, address _owner ) Owned(_owner) { require(_roles.length == _authAddresses.length && _roles.length == _authorizations.length, "Input lenghts not matched"); for(uint i = 0; i < _roles.length; i++) { _setAuthorizations(_roles[i], _authAddresses[i], _authorizations[i]); } } function setAuthorizations( bytes32[] calldata _roles, address[] calldata _authAddresses, bool[] calldata _authorizations ) external onlyOwner { require(_roles.length == _authAddresses.length && _roles.length == _authorizations.length, "Input lenghts not matched"); for(uint i = 0; i < _roles.length; i++) { _setAuthorizations(_roles[i], _authAddresses[i], _authorizations[i]); } } function _setAuthorizations( bytes32 _role, address _address, bool _authorization ) internal { roles[_role][_address] = _authorization; emit AuthorizationUpdated(_role, _address, _authorization); } modifier onlyRole(bytes32 _role, address _address) { require(roles[_role][_address], string(abi.encodePacked("Caller is not ", _role))); _; } } contract SUT is ERC20Pausable, AccessController { mapping(address => bool) public transferLocked; bytes32 private constant MINTER_ROLE = "MINTER_ROLE"; bytes32 private constant BURNER_ROLE = "BURNER_ROLE"; bytes32 private constant LOCKER_ROLE = "LOCKER_ROLE"; bytes32 private constant DEPOSITOR_ROLE = "DEPOSITOR_ROLE"; event LockStatusUpdated(address target, bool status); constructor( string memory _name, string memory _symbol, address _initialHolder, uint _initialAmount, bytes32[] memory _roles, address[] memory _authAddresses, bool[] memory _authorizations, address _owner ) ERC20(_name, _symbol) AccessController( _roles, _authAddresses, _authorizations, _owner ) { _mint(_initialHolder, _initialAmount); } function setPause(bool _pauseStatus) external onlyOwner { if(_pauseStatus) { _pause(); } else { _unpause(); } } function setAddressLock(address _target, bool _lock) external onlyRole(LOCKER_ROLE, msg.sender) { transferLocked[_target] = _lock; emit LockStatusUpdated(_target, _lock); } function mint(address _recipient, uint _amount) external onlyRole(MINTER_ROLE, msg.sender) { _mint(_recipient, _amount); } function burn(address _from, uint _amount) external onlyRole(BURNER_ROLE, msg.sender) { _burn(_from, _amount); } /** * @notice called when token is deposited on root chain via Polygon POS bridge * @dev Should be callable only by ChildChainManager * Should handle deposit by minting the required amount for user * Make sure minting is done only by this function * @param _to user address for whom deposit is being done * @param _depositData abi encoded amount */ function deposit(address _to, bytes calldata _depositData) external onlyRole(DEPOSITOR_ROLE, msg.sender) { uint amount = abi.decode(_depositData, (uint)); _mint(_to, amount); } /** * @notice called when user wants to withdraw tokens back to root chain via Polygon POS bridge * @dev Should burn user's tokens. This transaction will be verified when exiting on root chain * @param _amount amount of tokens to withdraw */ function withdraw(uint _amount) external { _burn(msg.sender, _amount); } function _beforeTokenTransfer( address _from, address _to, uint _amount ) internal override { require(!transferLocked[_from], "transfer is prohibited"); super._beforeTokenTransfer(_from, _to, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_initialHolder","type":"address"},{"internalType":"uint256","name":"_initialAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_roles","type":"bytes32[]"},{"internalType":"address[]","name":"_authAddresses","type":"address[]"},{"internalType":"bool[]","name":"_authorizations","type":"bool[]"},{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"authorization","type":"bool"}],"name":"AuthorizationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"LockStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes","name":"_depositData","type":"bytes"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"nominateNewOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nominatedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"address","name":"","type":"address"}],"name":"roles","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"},{"internalType":"bool","name":"_lock","type":"bool"}],"name":"setAddressLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_roles","type":"bytes32[]"},{"internalType":"address[]","name":"_authAddresses","type":"address[]"},{"internalType":"bool[]","name":"_authorizations","type":"bool[]"}],"name":"setAuthorizations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pauseStatus","type":"bool"}],"name":"setPause","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":[{"internalType":"address","name":"","type":"address"}],"name":"transferLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200273c3803806200273c8339810160408190526200003491620007bd565b83838383808c8c816003908051906020019062000053929190620004a6565b50805162000069906004906020840190620004a6565b50506005805460ff19169055506001600160a01b038116620000d25760405162461bcd60e51b815260206004820152601360248201527f416464726573732063616e6e6f7420626520300000000000000000000000000060448201526064015b60405180910390fd5b60058054610100600160a81b0319166101006001600160a01b038416908102919091179091556040516000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508251845114801562000137575081518451145b620001855760405162461bcd60e51b815260206004820152601960248201527f496e707574206c656e67687473206e6f74206d617463686564000000000000006044820152606401620000c9565b60005b84518110156200020e57620001f9858281518110620001ab57620001ab620008cd565b6020026020010151858381518110620001c857620001c8620008cd565b6020026020010151858481518110620001e557620001e5620008cd565b60200260200101516200023360201b60201c565b806200020581620008f9565b91505062000188565b5050505050620002258686620002ab60201b60201c565b50505050505050506200096f565b60008381526007602090815260408083206001600160a01b03861680855290835292819020805460ff19168515159081179091558151878152928301939093528101919091527f1b4d6a56a87ba935d325e25e3aa8a8b959315171423da5c9b2c4e6f1f5887fc59060600160405180910390a1505050565b6001600160a01b038216620003035760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000c9565b62000311600083836200039e565b806002600082825462000325919062000917565b90915550506001600160a01b038216600090815260208190526040812080548392906200035490849062000917565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03831660009081526008602052604090205460ff1615620004095760405162461bcd60e51b815260206004820152601660248201527f7472616e736665722069732070726f68696269746564000000000000000000006044820152606401620000c9565b620004218383836200042660201b62000f431760201c565b505050565b6200043e8383836200042160201b62000fbc1760201c565b60055460ff1615620004215760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e736665722077686044820152691a5b19481c185d5cd95960b21b6064820152608401620000c9565b828054620004b49062000932565b90600052602060002090601f016020900481019282620004d8576000855562000523565b82601f10620004f357805160ff191683800117855562000523565b8280016001018555821562000523579182015b828111156200052357825182559160200191906001019062000506565b506200053192915062000535565b5090565b5b8082111562000531576000815560010162000536565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156200058d576200058d6200054c565b604052919050565b600082601f830112620005a757600080fd5b81516001600160401b03811115620005c357620005c36200054c565b6020620005d9601f8301601f1916820162000562565b8281528582848701011115620005ee57600080fd5b60005b838110156200060e578581018301518282018401528201620005f1565b83811115620006205760008385840101525b5095945050505050565b80516001600160a01b03811681146200064257600080fd5b919050565b60006001600160401b038211156200066357620006636200054c565b5060051b60200190565b600082601f8301126200067f57600080fd5b8151602062000698620006928362000647565b62000562565b82815260059290921b84018101918181019086841115620006b857600080fd5b8286015b84811015620006d55780518352918301918301620006bc565b509695505050505050565b600082601f830112620006f257600080fd5b8151602062000705620006928362000647565b82815260059290921b840181019181810190868411156200072557600080fd5b8286015b84811015620006d5576200073d816200062a565b835291830191830162000729565b600082601f8301126200075d57600080fd5b8151602062000770620006928362000647565b82815260059290921b840181019181810190868411156200079057600080fd5b8286015b84811015620006d55780518015158114620007af5760008081fd5b835291830191830162000794565b600080600080600080600080610100898b031215620007db57600080fd5b88516001600160401b0380821115620007f357600080fd5b620008018c838d0162000595565b995060208b01519150808211156200081857600080fd5b620008268c838d0162000595565b98506200083660408c016200062a565b975060608b0151965060808b01519150808211156200085457600080fd5b620008628c838d016200066d565b955060a08b01519150808211156200087957600080fd5b620008878c838d01620006e0565b945060c08b01519150808211156200089e57600080fd5b50620008ad8b828c016200074b565b925050620008be60e08a016200062a565b90509295985092959890939650565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415620009105762000910620008e3565b5060010190565b600082198211156200092d576200092d620008e3565b500190565b600181811c908216806200094757607f821691505b602082108114156200096957634e487b7160e01b600052602260045260246000fd5b50919050565b611dbd806200097f6000396000f3fe608060405234801561001057600080fd5b50600436106101a35760003560e01c80635c975abb116100ee578063a457c2d711610097578063bedb86fb11610071578063bedb86fb146103a8578063cf2c52cb146103bb578063dd62ed3e146103ce578063f8fc08b91461041457600080fd5b8063a457c2d71461036f578063a9059cbb14610382578063b1193fc41461039557600080fd5b80638da5cb5b116100c85780638da5cb5b1461032f57806395d89b41146103545780639dc29fac1461035c57600080fd5b80635c975abb146102e657806370a08231146102f157806379ba50971461032757600080fd5b80632e1a7d4d1161015057806340c10f191161012a57806340c10f191461026b578063462749501461027e57806353a47bb7146102a157600080fd5b80632e1a7d4d14610236578063313ce56714610249578063395093511461025857600080fd5b80631627540c116101815780631627540c146101fe57806318160ddd1461021157806323b872dd1461022357600080fd5b806306fdde03146101a8578063095ea7b3146101c65780631267ee1a146101e9575b600080fd5b6101b0610442565b6040516101bd919061191c565b60405180910390f35b6101d96101d43660046119b8565b6104d4565b60405190151581526020016101bd565b6101fc6101f7366004611a2e565b6104ea565b005b6101fc61020c366004611ac8565b610670565b6002545b6040519081526020016101bd565b6101d9610231366004611aea565b610771565b6101fc610244366004611b26565b610862565b604051601281526020016101bd565b6101d96102663660046119b8565b61086f565b6101fc6102793660046119b8565b6108b8565b6101d961028c366004611ac8565b60086020526000908152604090205460ff1681565b6006546102c19073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101bd565b60055460ff166101d9565b6102156102ff366004611ac8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101fc610984565b6005546102c190610100900473ffffffffffffffffffffffffffffffffffffffff1681565b6101b0610ad1565b6101fc61036a3660046119b8565b610ae0565b6101d961037d3660046119b8565b610ba6565b6101d96103903660046119b8565b610c64565b6101fc6103a3366004611b4f565b610c71565b6101fc6103b6366004611b82565b610dbd565b6101fc6103c9366004611b9d565b610e65565b6102156103dc366004611c20565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101d9610422366004611c4a565b600760209081526000928352604080842090915290825290205460ff1681565b60606003805461045190611c6d565b80601f016020809104026020016040519081016040528092919081815260200182805461047d90611c6d565b80156104ca5780601f1061049f576101008083540402835291602001916104ca565b820191906000526020600020905b8154815290600101906020018083116104ad57829003601f168201915b5050505050905090565b60006104e1338484610fc1565b50600192915050565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1633146105815760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660448201527f6f726d207468697320616374696f6e000000000000000000000000000000000060648201526084015b60405180910390fd5b848314801561058f57508481145b6105db5760405162461bcd60e51b815260206004820152601960248201527f496e707574206c656e67687473206e6f74206d617463686564000000000000006044820152606401610578565b60005b85811015610667576106558787838181106105fb576105fb611cc1565b9050602002013586868481811061061457610614611cc1565b90506020020160208101906106299190611ac8565b85858581811061063b5761063b611cc1565b90506020020160208101906106509190611b82565b611140565b8061065f81611d1f565b9150506105de565b50505050505050565b600554610100900473ffffffffffffffffffffffffffffffffffffffff1633146107025760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660448201527f6f726d207468697320616374696f6e00000000000000000000000000000000006064820152608401610578565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce2290600090a250565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461084c578281101561083f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610578565b61084c8533858403610fc1565b6108578585856111e3565b506001949350505050565b61086c3382611453565b50565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916104e19185906108b3908690611d58565b610fc1565b3360008181527ff5a2e6578420f70ab43d0f49bc7551a448b8472f35acaef5b701c2cb7dca5eee60209081526040918290205491517f43616c6c6572206973206e6f7420000000000000000000000000000000000000918101919091527f4d494e5445525f524f4c45000000000000000000000000000000000000000000602e8201819052929160ff1690604e01604051602081830303815290604052906109735760405162461bcd60e51b8152600401610578919061191c565b5061097e8484611618565b50505050565b60065473ffffffffffffffffffffffffffffffffffffffff163314610a115760405162461bcd60e51b815260206004820152603560248201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560448201527f2063616e20616363657074206f776e65727368697000000000000000000000006064820152608401610578565b60065460055460405173ffffffffffffffffffffffffffffffffffffffff92831692610100909204909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360068054600580547fffffffffffffffffffffff0000000000000000000000000000000000000000ff1661010073ffffffffffffffffffffffffffffffffffffffff8416021790557fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60606004805461045190611c6d565b3360008181527fbe4c46ef1c2078c2d6a50c6601736dd4098a8747ecd7a50216bcac6eeb72174d60209081526040918290205491517f43616c6c6572206973206e6f7420000000000000000000000000000000000000918101919091527f4255524e45525f524f4c45000000000000000000000000000000000000000000602e8201819052929160ff1690604e0160405160208183030381529060405290610b9b5760405162461bcd60e51b8152600401610578919061191c565b5061097e8484611453565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015610c4d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610578565b610c5a3385858403610fc1565b5060019392505050565b60006104e13384846111e3565b3360008181527f7f790b91388c6e3b4fe5d33821998b73c96ca7dc8c32af57d2c1cf5f050baba960209081526040918290205491517f43616c6c6572206973206e6f7420000000000000000000000000000000000000918101919091527f4c4f434b45525f524f4c45000000000000000000000000000000000000000000602e8201819052929160ff1690604e0160405160208183030381529060405290610d2c5760405162461bcd60e51b8152600401610578919061191c565b5073ffffffffffffffffffffffffffffffffffffffff841660008181526008602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168715159081179091558251938452908301527f4bcf4183cd558c49ab23b38beb27c2eaf17dca92d05b12d4d1a7578f9ae8c64c910160405180910390a150505050565b600554610100900473ffffffffffffffffffffffffffffffffffffffff163314610e4f5760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660448201527f6f726d207468697320616374696f6e00000000000000000000000000000000006064820152608401610578565b8015610e5d5761086c61172a565b61086c6117fa565b3360008181527f70b15ee48a6b4fd4338e5346493675e77b7fe533500e3e46b8742420f9c7175560209081526040918290205491517f43616c6c6572206973206e6f7420000000000000000000000000000000000000918101919091527f4445504f5349544f525f524f4c45000000000000000000000000000000000000602e8201819052929160ff1690604e0160405160208183030381529060405290610f205760405162461bcd60e51b8152600401610578919061191c565b506000610f2f84860186611b26565b9050610f3b8682611618565b505050505050565b60055460ff1615610fbc5760405162461bcd60e51b815260206004820152602a60248201527f45524332305061757361626c653a20746f6b656e207472616e7366657220776860448201527f696c6520706175736564000000000000000000000000000000000000000000006064820152608401610578565b505050565b73ffffffffffffffffffffffffffffffffffffffff83166110495760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610578565b73ffffffffffffffffffffffffffffffffffffffff82166110d25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610578565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600083815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168515159081179091558151878152928301939093528101919091527f1b4d6a56a87ba935d325e25e3aa8a8b959315171423da5c9b2c4e6f1f5887fc59060600160405180910390a1505050565b73ffffffffffffffffffffffffffffffffffffffff831661126c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610578565b73ffffffffffffffffffffffffffffffffffffffff82166112f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610578565b61130083838361189b565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020548181101561139c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610578565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152602081905260408082208585039055918516815290812080548492906113e0908490611d58565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161144691815260200190565b60405180910390a361097e565b73ffffffffffffffffffffffffffffffffffffffff82166114dc5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610578565b6114e88260008361189b565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054818110156115845760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610578565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604081208383039055600280548492906115c0908490611d70565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff821661167b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610578565b6116876000838361189b565b80600260008282546116999190611d58565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040812080548392906116d3908490611d58565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60055460ff161561177d5760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610578565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117d03390565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b60055460ff1661184c5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610578565b600580547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336117d0565b73ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16156119115760405162461bcd60e51b815260206004820152601660248201527f7472616e736665722069732070726f68696269746564000000000000000000006044820152606401610578565b610fbc838383610f43565b600060208083528351808285015260005b818110156119495785810183015185820160400152820161192d565b8181111561195b576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff811681146119b357600080fd5b919050565b600080604083850312156119cb57600080fd5b6119d48361198f565b946020939093013593505050565b60008083601f8401126119f457600080fd5b50813567ffffffffffffffff811115611a0c57600080fd5b6020830191508360208260051b8501011115611a2757600080fd5b9250929050565b60008060008060008060608789031215611a4757600080fd5b863567ffffffffffffffff80821115611a5f57600080fd5b611a6b8a838b016119e2565b90985096506020890135915080821115611a8457600080fd5b611a908a838b016119e2565b90965094506040890135915080821115611aa957600080fd5b50611ab689828a016119e2565b979a9699509497509295939492505050565b600060208284031215611ada57600080fd5b611ae38261198f565b9392505050565b600080600060608486031215611aff57600080fd5b611b088461198f565b9250611b166020850161198f565b9150604084013590509250925092565b600060208284031215611b3857600080fd5b5035919050565b803580151581146119b357600080fd5b60008060408385031215611b6257600080fd5b611b6b8361198f565b9150611b7960208401611b3f565b90509250929050565b600060208284031215611b9457600080fd5b611ae382611b3f565b600080600060408486031215611bb257600080fd5b611bbb8461198f565b9250602084013567ffffffffffffffff80821115611bd857600080fd5b818601915086601f830112611bec57600080fd5b813581811115611bfb57600080fd5b876020828501011115611c0d57600080fd5b6020830194508093505050509250925092565b60008060408385031215611c3357600080fd5b611c3c8361198f565b9150611b796020840161198f565b60008060408385031215611c5d57600080fd5b82359150611b796020840161198f565b600181811c90821680611c8157607f821691505b60208210811415611cbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611d5157611d51611cf0565b5060010190565b60008219821115611d6b57611d6b611cf0565b500190565b600082821015611d8257611d82611cf0565b50039056fea264697066735822122042a4991598c524100912bd5a6af09e45649bc8a114469f2e2a1416964eb5a5d464736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000009dca92df3ec6b793257bf26f6b926f8884d414230000000000000000000000000000000000000000204fce5e3e25026110000000000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000608f18d45f82ad45a2fb6213cb4330456e83c391000000000000000000000000000000000000000000000000000000000000000e53756d6d6f6e657220546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003535554000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014445504f5349544f525f524f4c450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000009dca92df3ec6b793257bf26f6b926f8884d414230000000000000000000000000000000000000000204fce5e3e25026110000000000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000608f18d45f82ad45a2fb6213cb4330456e83c391000000000000000000000000000000000000000000000000000000000000000e53756d6d6f6e657220546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003535554000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000014445504f5349544f525f524f4c450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001
-----Decoded View---------------
Arg [0] : _name (string): Summoner Token
Arg [1] : _symbol (string): SUT
Arg [2] : _initialHolder (address): 0x9dca92df3ec6b793257bf26f6b926f8884d41423
Arg [3] : _initialAmount (uint256): 10000000000000000000000000000
Arg [4] : _roles (bytes32[]): System.Byte[]
Arg [5] : _authAddresses (address[]): 0xa6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa
Arg [6] : _authorizations (bool[]): True
Arg [7] : _owner (address): 0x608f18d45f82ad45a2fb6213cb4330456e83c391
-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000009dca92df3ec6b793257bf26f6b926f8884d41423
Arg [3] : 0000000000000000000000000000000000000000204fce5e3e25026110000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [7] : 000000000000000000000000608f18d45f82ad45a2fb6213cb4330456e83c391
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [9] : 53756d6d6f6e657220546f6b656e000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 5355540000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [13] : 4445504f5349544f525f524f4c45000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [15] : 000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000001
Deployed ByteCode Sourcemap
21949:2645:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6119:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8459:169;;;;;;:::i;:::-;;:::i;:::-;;;1300:14:1;;1293:22;1275:41;;1263:2;1248:18;8459:169:0;1135:187:1;21091:436:0;;;;;;:::i;:::-;;:::i;:::-;;19839:153;;;;;;:::i;:::-;;:::i;7239:108::-;7327:12;;7239:108;;;3126:25:1;;;3114:2;3099:18;7239:108:0;2980:177:1;9221:573:0;;;;;;:::i;:::-;;:::i;24257:83::-;;;;;;:::i;:::-;;:::i;7081:93::-;;;7164:2;3822:36:1;;3810:2;3795:18;7081:93:0;3680:184:1;10203:215:0;;;;;;:::i;:::-;;:::i;23129:136::-;;;;;;:::i;:::-;;:::i;22004:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19451:29;;;;;;;;;;;;4045:42:1;4033:55;;;4015:74;;4003:2;3988:18;19451:29:0;3869:226:1;17436:86:0;17507:7;;;;17436:86;;7410:127;;;;;;:::i;:::-;7511:18;;7484:7;7511:18;;;;;;;;;;;;7410:127;20000:301;;;:::i;19424:20::-;;;;;;;;;;;;6338:104;;;:::i;23271:126::-;;;;;;:::i;:::-;;:::i;10921:413::-;;;;;;:::i;:::-;;:::i;7750:175::-;;;;;;:::i;:::-;;:::i;22930:193::-;;;;;;:::i;:::-;;:::i;22775:149::-;;;;;;:::i;:::-;;:::i;23793:197::-;;;;;;:::i;:::-;;:::i;7988:151::-;;;;;;:::i;:::-;8104:18;;;;8077:7;8104:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7988:151;20510:57;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;6119:100;6173:13;6206:5;6199:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6119:100;:::o;8459:169::-;8542:4;8559:39;3995:10;8582:7;8591:6;8559:8;:39::i;:::-;-1:-1:-1;8616:4:0;8459:169;;;;:::o;21091:436::-;20361:5;;;;;;;20347:10;:19;20339:92;;;;-1:-1:-1;;;20339:92:0;;6547:2:1;20339:92:0;;;6529:21:1;6586:2;6566:18;;;6559:30;6625:34;6605:18;;;6598:62;6696:17;6676:18;;;6669:45;6731:19;;20339:92:0;;;;;;;;;21270:38;;::::1;:81:::0;::::1;;;-1:-1:-1::0;21312:39:0;;::::1;21270:81;21262:126;;;::::0;-1:-1:-1;;;21262:126:0;;6963:2:1;21262:126:0::1;::::0;::::1;6945:21:1::0;7002:2;6982:18;;;6975:30;7041:27;7021:18;;;7014:55;7086:18;;21262:126:0::1;6761:349:1::0;21262:126:0::1;21401:6;21397:125;21413:17:::0;;::::1;21397:125;;;21446:68;21465:6;;21472:1;21465:9;;;;;;;:::i;:::-;;;;;;;21476:14;;21491:1;21476:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;21495:15;;21511:1;21495:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;21446;:68::i;:::-;21432:3:::0;::::1;::::0;::::1;:::i;:::-;;;;21397:125;;;;21091:436:::0;;;;;;:::o;19839:153::-;20361:5;;;;;;;20347:10;:19;20339:92;;;;-1:-1:-1;;;20339:92:0;;6547:2:1;20339:92:0;;;6529:21:1;6586:2;6566:18;;;6559:30;6625:34;6605:18;;;6598:62;6696:17;6676:18;;;6669:45;6731:19;;20339:92:0;6345:411:1;20339:92:0;19921:14:::1;:23:::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;19962:22:::1;::::0;::::1;::::0;-1:-1:-1;;19962:22:0::1;19839:153:::0;:::o;9221:573::-;9405:19;;;9361:4;9405:19;;;:11;:19;;;;;;;;3995:10;9405:33;;;;;;;;9473:17;9453:37;;9449:265;;9535:6;9515:16;:26;;9507:79;;;;-1:-1:-1;;;9507:79:0;;7895:2:1;9507:79:0;;;7877:21:1;7934:2;7914:18;;;7907:30;7973:34;7953:18;;;7946:62;8044:10;8024:18;;;8017:38;8072:19;;9507:79:0;7693:404:1;9507:79:0;9630:57;9639:6;3995:10;9680:6;9661:16;:25;9630:8;:57::i;:::-;9726:36;9736:6;9744:9;9755:6;9726:9;:36::i;:::-;-1:-1:-1;9782:4:0;;9221:573;-1:-1:-1;;;;9221:573:0:o;24257:83::-;24308:26;24314:10;24326:7;24308:5;:26::i;:::-;24257:83;:::o;10203:215::-;3995:10;10291:4;10340:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;10291:4;;10308:80;;10331:7;;10340:47;;10377:10;;10340:47;:::i;:::-;10308:8;:80::i;23129:136::-;23214:10;21835:12;:22;;;:12;;:22;;;:12;:22;;;;;21873:41;;8477:16:1;21873:41:0;;;8465:29:1;;;;23201:11:0;8510:12:1;;;8503:28;;;23201:11:0;23214:10;21835:22;;;8547:12:1;;21873:41:0;;;;;;;;;;;;21827:89;;;;;-1:-1:-1;;;21827:89:0;;;;;;;;:::i;:::-;;23233:26:::1;23239:10;23251:7;23233:5;:26::i;:::-;23129:136:::0;;;;:::o;20000:301::-;20074:14;;;;20060:10;:28;20052:107;;;;-1:-1:-1;;;20052:107:0;;8772:2:1;20052:107:0;;;8754:21:1;8811:2;8791:18;;;8784:30;8850:34;8830:18;;;8823:62;8921:23;8901:18;;;8894:51;8962:19;;20052:107:0;8570:417:1;20052:107:0;20205:14;;20198:5;;20177:43;;20205:14;;;;;;20198:5;;;;;;;20177:43;;20205:14;;20177:43;20241:14;;;20233:5;:22;;;;20241:14;;;;20233:22;;;;20266:27;;;;20000:301::o;6338:104::-;6394:13;6427:7;6420:14;;;;;:::i;23271:126::-;23351:10;21835:12;:22;;;:12;;:22;;;:12;:22;;;;;21873:41;;8477:16:1;21873:41:0;;;8465:29:1;;;;23338:11:0;8510:12:1;;;8503:28;;;23338:11:0;23351:10;21835:22;;;8547:12:1;;21873:41:0;;;;;;;;;;;;21827:89;;;;;-1:-1:-1;;;21827:89:0;;;;;;;;:::i;:::-;;23370:21:::1;23376:5;23383:7;23370:5;:21::i;10921:413::-:0;3995:10;11014:4;11058:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;11111:35;;;;11103:85;;;;-1:-1:-1;;;11103:85:0;;9194:2:1;11103:85:0;;;9176:21:1;9233:2;9213:18;;;9206:30;9272:34;9252:18;;;9245:62;9343:7;9323:18;;;9316:35;9368:19;;11103:85:0;8992:401:1;11103:85:0;11224:67;3995:10;11247:7;11275:15;11256:16;:34;11224:8;:67::i;:::-;-1:-1:-1;11322:4:0;;10921:413;-1:-1:-1;;;10921:413:0:o;7750:175::-;7836:4;7853:42;3995:10;7877:9;7888:6;7853:9;:42::i;22930:193::-;23020:10;21835:12;:22;;;:12;;:22;;;:12;:22;;;;;21873:41;;8477:16:1;21873:41:0;;;8465:29:1;;;;23007:11:0;8510:12:1;;;8503:28;;;23007:11:0;23020:10;21835:22;;;8547:12:1;;21873:41:0;;;;;;;;;;;;21827:89;;;;;-1:-1:-1;;;21827:89:0;;;;;;;;:::i;:::-;-1:-1:-1;23039:23:0::1;::::0;::::1;;::::0;;;:14:::1;:23;::::0;;;;;;;;:31;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;23084:33;;9566:74:1;;;9656:18;;;9649:50;23084:33:0::1;::::0;9539:18:1;23084:33:0::1;;;;;;;22930:193:::0;;;;:::o;22775:149::-;20361:5;;;;;;;20347:10;:19;20339:92;;;;-1:-1:-1;;;20339:92:0;;6547:2:1;20339:92:0;;;6529:21:1;6586:2;6566:18;;;6559:30;6625:34;6605:18;;;6598:62;6696:17;6676:18;;;6669:45;6731:19;;20339:92:0;6345:411:1;20339:92:0;22847:12:::1;22844:75;;;22870:8;:6;:8::i;22844:75::-;22901:10;:8;:10::i;23793:197::-:0;23892:10;21835:12;:22;;;:12;;:22;;;:12;:22;;;;;21873:41;;8477:16:1;21873:41:0;;;8465:29:1;;;;23876:14:0;8510:12:1;;;8503:28;;;23876:14:0;23892:10;21835:22;;;8547:12:1;;21873:41:0;;;;;;;;;;;;21827:89;;;;;-1:-1:-1;;;21827:89:0;;;;;;;;:::i;:::-;-1:-1:-1;23911:11:0::1;23925:32;::::0;;::::1;23936:12:::0;23925:32:::1;:::i;:::-;23911:46;;23966:18;23972:3;23977:6;23966:5;:18::i;:::-;23904:86;23793:197:::0;;;;;:::o;19113:272::-;17507:7;;;;19321:9;19313:64;;;;-1:-1:-1;;;19313:64:0;;9912:2:1;19313:64:0;;;9894:21:1;9951:2;9931:18;;;9924:30;9990:34;9970:18;;;9963:62;10061:12;10041:18;;;10034:40;10091:19;;19313:64:0;9710:406:1;19313:64:0;19113:272;;;:::o;14605:380::-;14741:19;;;14733:68;;;;-1:-1:-1;;;14733:68:0;;10323:2:1;14733:68:0;;;10305:21:1;10362:2;10342:18;;;10335:30;10401:34;10381:18;;;10374:62;10472:6;10452:18;;;10445:34;10496:19;;14733:68:0;10121:400:1;14733:68:0;14820:21;;;14812:68;;;;-1:-1:-1;;;14812:68:0;;10728:2:1;14812:68:0;;;10710:21:1;10767:2;10747:18;;;10740:30;10806:34;10786:18;;;10779:62;10877:4;10857:18;;;10850:32;10899:19;;14812:68:0;10526:398:1;14812:68:0;14893:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14945:32;;3126:25:1;;;14945:32:0;;3099:18:1;14945:32:0;;;;;;;14605:380;;;:::o;21533:230::-;21651:12;;;;:5;:12;;;;;;;;:22;;;;;;;;;;;;;:39;;;;;;;;;;;;;21704:53;;11125:25:1;;;11166:18;;;11159:83;;;;11258:18;;11251:50;;;;21704:53:0;;11113:2:1;11098:18;21704:53:0;;;;;;;21533:230;;;:::o;11824:733::-;11964:20;;;11956:70;;;;-1:-1:-1;;;11956:70:0;;11514:2:1;11956:70:0;;;11496:21:1;11553:2;11533:18;;;11526:30;11592:34;11572:18;;;11565:62;11663:7;11643:18;;;11636:35;11688:19;;11956:70:0;11312:401:1;11956:70:0;12045:23;;;12037:71;;;;-1:-1:-1;;;12037:71:0;;11920:2:1;12037:71:0;;;11902:21:1;11959:2;11939:18;;;11932:30;11998:34;11978:18;;;11971:62;12069:5;12049:18;;;12042:33;12092:19;;12037:71:0;11718:399:1;12037:71:0;12121:47;12142:6;12150:9;12161:6;12121:20;:47::i;:::-;12205:17;;;12181:21;12205:17;;;;;;;;;;;12241:23;;;;12233:74;;;;-1:-1:-1;;;12233:74:0;;12324:2:1;12233:74:0;;;12306:21:1;12363:2;12343:18;;;12336:30;12402:34;12382:18;;;12375:62;12473:8;12453:18;;;12446:36;12499:19;;12233:74:0;12122:402:1;12233:74:0;12343:17;;;;:9;:17;;;;;;;;;;;12363:22;;;12343:42;;12407:20;;;;;;;;:30;;12379:6;;12343:9;12407:30;;12379:6;;12407:30;:::i;:::-;;;;;;;;12472:9;12455:35;;12464:6;12455:35;;;12483:6;12455:35;;;;3126:25:1;;3114:2;3099:18;;2980:177;12455:35:0;;;;;;;;12503:46;19113:272;13576:591;13660:21;;;13652:67;;;;-1:-1:-1;;;13652:67:0;;12731:2:1;13652:67:0;;;12713:21:1;12770:2;12750:18;;;12743:30;12809:34;12789:18;;;12782:62;12880:3;12860:18;;;12853:31;12901:19;;13652:67:0;12529:397:1;13652:67:0;13732:49;13753:7;13770:1;13774:6;13732:20;:49::i;:::-;13819:18;;;13794:22;13819:18;;;;;;;;;;;13856:24;;;;13848:71;;;;-1:-1:-1;;;13848:71:0;;13133:2:1;13848:71:0;;;13115:21:1;13172:2;13152:18;;;13145:30;13211:34;13191:18;;;13184:62;13282:4;13262:18;;;13255:32;13304:19;;13848:71:0;12931:398:1;13848:71:0;13955:18;;;:9;:18;;;;;;;;;;13976:23;;;13955:44;;14021:12;:22;;13993:6;;13955:9;14021:22;;13993:6;;14021:22;:::i;:::-;;;;-1:-1:-1;;14061:37:0;;3126:25:1;;;14087:1:0;;14061:37;;;;;;3114:2:1;3099:18;14061:37:0;;;;;;;19113:272;;;:::o;12844:399::-;12928:21;;;12920:65;;;;-1:-1:-1;;;12920:65:0;;13666:2:1;12920:65:0;;;13648:21:1;13705:2;13685:18;;;13678:30;13744:33;13724:18;;;13717:61;13795:18;;12920:65:0;13464:355:1;12920:65:0;12998:49;13027:1;13031:7;13040:6;12998:20;:49::i;:::-;13076:6;13060:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;13093:18:0;;;:9;:18;;;;;;;;;;:28;;13115:6;;13093:9;:28;;13115:6;;13093:28;:::i;:::-;;;;-1:-1:-1;;13137:37:0;;3126:25:1;;;13137:37:0;;;;13154:1;;13137:37;;3114:2:1;3099:18;13137:37:0;;;;;;;12844:399;;:::o;18236:118::-;17507:7;;;;17761:9;17753:38;;;;-1:-1:-1;;;17753:38:0;;14026:2:1;17753:38:0;;;14008:21:1;14065:2;14045:18;;;14038:30;14104:18;14084;;;14077:46;14140:18;;17753:38:0;13824:340:1;17753:38:0;18296:7:::1;:14:::0;;;::::1;18306:4;18296:14;::::0;;18326:20:::1;18333:12;3995:10:::0;;3915:98;18333:12:::1;18326:20;::::0;4045:42:1;4033:55;;;4015:74;;4003:2;3988:18;18326:20:0::1;;;;;;;18236:118::o:0;18495:120::-;17507:7;;;;18031:41;;;;-1:-1:-1;;;18031:41:0;;14371:2:1;18031:41:0;;;14353:21:1;14410:2;14390:18;;;14383:30;14449:22;14429:18;;;14422:50;14489:18;;18031:41:0;14169:344:1;18031:41:0;18554:7:::1;:15:::0;;;::::1;::::0;;18585:22:::1;3995:10:::0;18594:12:::1;3915:98:::0;24346:243;24472:21;;;;;;;:14;:21;;;;;;;;24471:22;24463:64;;;;-1:-1:-1;;;24463:64:0;;14720:2:1;24463:64:0;;;14702:21:1;14759:2;14739:18;;;14732:30;14798:24;14778:18;;;14771:52;14840:18;;24463:64:0;14518:346:1;24463:64:0;24536:47;24563:5;24570:3;24575:7;24536:26;:47::i;14:656:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;586:2:1;574:15;591:66;570:88;555:104;;;;661:2;551:113;;14:656;-1:-1:-1;;;14:656:1:o;675:196::-;743:20;;803:42;792:54;;782:65;;772:93;;861:1;858;851:12;772:93;675:196;;;:::o;876:254::-;944:6;952;1005:2;993:9;984:7;980:23;976:32;973:52;;;1021:1;1018;1011:12;973:52;1044:29;1063:9;1044:29;:::i;:::-;1034:39;1120:2;1105:18;;;;1092:32;;-1:-1:-1;;;876:254:1:o;1327:367::-;1390:8;1400:6;1454:3;1447:4;1439:6;1435:17;1431:27;1421:55;;1472:1;1469;1462:12;1421:55;-1:-1:-1;1495:20:1;;1538:18;1527:30;;1524:50;;;1570:1;1567;1560:12;1524:50;1607:4;1599:6;1595:17;1583:29;;1667:3;1660:4;1650:6;1647:1;1643:14;1635:6;1631:27;1627:38;1624:47;1621:67;;;1684:1;1681;1674:12;1621:67;1327:367;;;;;:::o;1699:1085::-;1854:6;1862;1870;1878;1886;1894;1947:2;1935:9;1926:7;1922:23;1918:32;1915:52;;;1963:1;1960;1953:12;1915:52;2003:9;1990:23;2032:18;2073:2;2065:6;2062:14;2059:34;;;2089:1;2086;2079:12;2059:34;2128:70;2190:7;2181:6;2170:9;2166:22;2128:70;:::i;:::-;2217:8;;-1:-1:-1;2102:96:1;-1:-1:-1;2305:2:1;2290:18;;2277:32;;-1:-1:-1;2321:16:1;;;2318:36;;;2350:1;2347;2340:12;2318:36;2389:72;2453:7;2442:8;2431:9;2427:24;2389:72;:::i;:::-;2480:8;;-1:-1:-1;2363:98:1;-1:-1:-1;2568:2:1;2553:18;;2540:32;;-1:-1:-1;2584:16:1;;;2581:36;;;2613:1;2610;2603:12;2581:36;;2652:72;2716:7;2705:8;2694:9;2690:24;2652:72;:::i;:::-;1699:1085;;;;-1:-1:-1;1699:1085:1;;-1:-1:-1;1699:1085:1;;2743:8;;1699:1085;-1:-1:-1;;;1699:1085:1:o;2789:186::-;2848:6;2901:2;2889:9;2880:7;2876:23;2872:32;2869:52;;;2917:1;2914;2907:12;2869:52;2940:29;2959:9;2940:29;:::i;:::-;2930:39;2789:186;-1:-1:-1;;;2789:186:1:o;3162:328::-;3239:6;3247;3255;3308:2;3296:9;3287:7;3283:23;3279:32;3276:52;;;3324:1;3321;3314:12;3276:52;3347:29;3366:9;3347:29;:::i;:::-;3337:39;;3395:38;3429:2;3418:9;3414:18;3395:38;:::i;:::-;3385:48;;3480:2;3469:9;3465:18;3452:32;3442:42;;3162:328;;;;;:::o;3495:180::-;3554:6;3607:2;3595:9;3586:7;3582:23;3578:32;3575:52;;;3623:1;3620;3613:12;3575:52;-1:-1:-1;3646:23:1;;3495:180;-1:-1:-1;3495:180:1:o;4100:160::-;4165:20;;4221:13;;4214:21;4204:32;;4194:60;;4250:1;4247;4240:12;4265:254;4330:6;4338;4391:2;4379:9;4370:7;4366:23;4362:32;4359:52;;;4407:1;4404;4397:12;4359:52;4430:29;4449:9;4430:29;:::i;:::-;4420:39;;4478:35;4509:2;4498:9;4494:18;4478:35;:::i;:::-;4468:45;;4265:254;;;;;:::o;4524:180::-;4580:6;4633:2;4621:9;4612:7;4608:23;4604:32;4601:52;;;4649:1;4646;4639:12;4601:52;4672:26;4688:9;4672:26;:::i;4709:665::-;4788:6;4796;4804;4857:2;4845:9;4836:7;4832:23;4828:32;4825:52;;;4873:1;4870;4863:12;4825:52;4896:29;4915:9;4896:29;:::i;:::-;4886:39;;4976:2;4965:9;4961:18;4948:32;4999:18;5040:2;5032:6;5029:14;5026:34;;;5056:1;5053;5046:12;5026:34;5094:6;5083:9;5079:22;5069:32;;5139:7;5132:4;5128:2;5124:13;5120:27;5110:55;;5161:1;5158;5151:12;5110:55;5201:2;5188:16;5227:2;5219:6;5216:14;5213:34;;;5243:1;5240;5233:12;5213:34;5288:7;5283:2;5274:6;5270:2;5266:15;5262:24;5259:37;5256:57;;;5309:1;5306;5299:12;5256:57;5340:2;5336;5332:11;5322:21;;5362:6;5352:16;;;;;4709:665;;;;;:::o;5379:260::-;5447:6;5455;5508:2;5496:9;5487:7;5483:23;5479:32;5476:52;;;5524:1;5521;5514:12;5476:52;5547:29;5566:9;5547:29;:::i;:::-;5537:39;;5595:38;5629:2;5618:9;5614:18;5595:38;:::i;5644:254::-;5712:6;5720;5773:2;5761:9;5752:7;5748:23;5744:32;5741:52;;;5789:1;5786;5779:12;5741:52;5825:9;5812:23;5802:33;;5854:38;5888:2;5877:9;5873:18;5854:38;:::i;5903:437::-;5982:1;5978:12;;;;6025;;;6046:61;;6100:4;6092:6;6088:17;6078:27;;6046:61;6153:2;6145:6;6142:14;6122:18;6119:38;6116:218;;;6190:77;6187:1;6180:88;6291:4;6288:1;6281:15;6319:4;6316:1;6309:15;6116:218;;5903:437;;;:::o;7115:184::-;7167:77;7164:1;7157:88;7264:4;7261:1;7254:15;7288:4;7285:1;7278:15;7304:184;7356:77;7353:1;7346:88;7453:4;7450:1;7443:15;7477:4;7474:1;7467:15;7493:195;7532:3;7563:66;7556:5;7553:77;7550:103;;;7633:18;;:::i;:::-;-1:-1:-1;7680:1:1;7669:13;;7493:195::o;8102:128::-;8142:3;8173:1;8169:6;8166:1;8163:13;8160:39;;;8179:18;;:::i;:::-;-1:-1:-1;8215:9:1;;8102:128::o;13334:125::-;13374:4;13402:1;13399;13396:8;13393:34;;;13407:18;;:::i;:::-;-1:-1:-1;13444:9:1;;13334:125::o
Swarm Source
ipfs://42a4991598c524100912bd5a6af09e45649bc8a114469f2e2a1416964eb5a5d4